index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/ModifyRankingModelTemplateRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class ModifyRankingModelTemplateRequest extends RoaAcsRequest<ModifyRankingModelTemplateResponse> { private String instanceId; private String templateId; private String body; public ModifyRankingModelTemplateRequest() { super("Airec", "2020-11-26", "ModifyRankingModelTemplate", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/ranking-model-templates/[templateId]"); setMethod(MethodType.PUT); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getTemplateId() { return this.templateId; } public void setTemplateId(String templateId) { this.templateId = templateId; if(templateId != null){ putPathParameter("templateId", templateId); } } public String getBody() { return this.body; } public void setBody(String body) { this.body = body; if(body != null){ putBodyParameter("body", body); } } @Override public Class<ModifyRankingModelTemplateResponse> getResponseClass() { return ModifyRankingModelTemplateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/ModifyRankingModelTemplateResponse.java
/* * 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.airec.model.v20201126; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.ModifyRankingModelTemplateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ModifyRankingModelTemplateResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String status; private Long versionNum; private String templateId; private Meta meta; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public Long getVersionNum() { return this.versionNum; } public void setVersionNum(Long versionNum) { this.versionNum = versionNum; } public String getTemplateId() { return this.templateId; } public void setTemplateId(String templateId) { this.templateId = templateId; } public Meta getMeta() { return this.meta; } public void setMeta(Meta meta) { this.meta = meta; } public static class Meta { private Boolean authorized; private Boolean autoRun; private Long autoRunTime; private String autoRunType; private String conf; private String lastEditTime; private String ossArn; private String ossBucket; private String ossEndpoint; private String sampleId; private String sampleName; private Long sampleTimeWindow; private String sampleTimeWindowType; private String type; private String name; private String deployStatus; private Boolean canDeploy; public Boolean getAuthorized() { return this.authorized; } public void setAuthorized(Boolean authorized) { this.authorized = authorized; } public Boolean getAutoRun() { return this.autoRun; } public void setAutoRun(Boolean autoRun) { this.autoRun = autoRun; } public Long getAutoRunTime() { return this.autoRunTime; } public void setAutoRunTime(Long autoRunTime) { this.autoRunTime = autoRunTime; } public String getAutoRunType() { return this.autoRunType; } public void setAutoRunType(String autoRunType) { this.autoRunType = autoRunType; } public String getConf() { return this.conf; } public void setConf(String conf) { this.conf = conf; } public String getLastEditTime() { return this.lastEditTime; } public void setLastEditTime(String lastEditTime) { this.lastEditTime = lastEditTime; } public String getOssArn() { return this.ossArn; } public void setOssArn(String ossArn) { this.ossArn = ossArn; } public String getOssBucket() { return this.ossBucket; } public void setOssBucket(String ossBucket) { this.ossBucket = ossBucket; } public String getOssEndpoint() { return this.ossEndpoint; } public void setOssEndpoint(String ossEndpoint) { this.ossEndpoint = ossEndpoint; } public String getSampleId() { return this.sampleId; } public void setSampleId(String sampleId) { this.sampleId = sampleId; } public String getSampleName() { return this.sampleName; } public void setSampleName(String sampleName) { this.sampleName = sampleName; } public Long getSampleTimeWindow() { return this.sampleTimeWindow; } public void setSampleTimeWindow(Long sampleTimeWindow) { this.sampleTimeWindow = sampleTimeWindow; } public String getSampleTimeWindowType() { return this.sampleTimeWindowType; } public void setSampleTimeWindowType(String sampleTimeWindowType) { this.sampleTimeWindowType = sampleTimeWindowType; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getDeployStatus() { return this.deployStatus; } public void setDeployStatus(String deployStatus) { this.deployStatus = deployStatus; } public Boolean getCanDeploy() { return this.canDeploy; } public void setCanDeploy(Boolean canDeploy) { this.canDeploy = canDeploy; } } } @Override public ModifyRankingModelTemplateResponse getInstance(UnmarshallerContext context) { return ModifyRankingModelTemplateResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/ModifyRankingSystemRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class ModifyRankingSystemRequest extends RoaAcsRequest<ModifyRankingSystemResponse> { private String instanceId; private String name; private String body; public ModifyRankingSystemRequest() { super("Airec", "2020-11-26", "ModifyRankingSystem", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/ranking-systems/[name]"); setMethod(MethodType.PUT); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putPathParameter("name", name); } } public String getBody() { return this.body; } public void setBody(String body) { this.body = body; if(body != null){ putBodyParameter("body", body); } } @Override public Class<ModifyRankingSystemResponse> getResponseClass() { return ModifyRankingSystemResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/ModifyRankingSystemResponse.java
/* * 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.airec.model.v20201126; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.ModifyRankingSystemResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ModifyRankingSystemResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String applyStatus; private String deployStatus; private String name; private String modelTemplateId; private List<Long> sceneIdList; private Meta meta; public String getApplyStatus() { return this.applyStatus; } public void setApplyStatus(String applyStatus) { this.applyStatus = applyStatus; } public String getDeployStatus() { return this.deployStatus; } public void setDeployStatus(String deployStatus) { this.deployStatus = deployStatus; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getModelTemplateId() { return this.modelTemplateId; } public void setModelTemplateId(String modelTemplateId) { this.modelTemplateId = modelTemplateId; } public List<Long> getSceneIdList() { return this.sceneIdList; } public void setSceneIdList(List<Long> sceneIdList) { this.sceneIdList = sceneIdList; } public Meta getMeta() { return this.meta; } public void setMeta(Meta meta) { this.meta = meta; } public static class Meta { private Boolean autoDeploy; private String autoDeployAuc; private String conf; private String predictEngineType; private String modelVersionName; private String failMsg; private PredictEngine predictEngine; public Boolean getAutoDeploy() { return this.autoDeploy; } public void setAutoDeploy(Boolean autoDeploy) { this.autoDeploy = autoDeploy; } public String getAutoDeployAuc() { return this.autoDeployAuc; } public void setAutoDeployAuc(String autoDeployAuc) { this.autoDeployAuc = autoDeployAuc; } public String getConf() { return this.conf; } public void setConf(String conf) { this.conf = conf; } public String getPredictEngineType() { return this.predictEngineType; } public void setPredictEngineType(String predictEngineType) { this.predictEngineType = predictEngineType; } public String getModelVersionName() { return this.modelVersionName; } public void setModelVersionName(String modelVersionName) { this.modelVersionName = modelVersionName; } public String getFailMsg() { return this.failMsg; } public void setFailMsg(String failMsg) { this.failMsg = failMsg; } public PredictEngine getPredictEngine() { return this.predictEngine; } public void setPredictEngine(PredictEngine predictEngine) { this.predictEngine = predictEngine; } public static class PredictEngine { private String resourceId; private String version; private String clusterId; public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; } public String getVersion() { return this.version; } public void setVersion(String version) { this.version = version; } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; } } } } @Override public ModifyRankingSystemResponse getInstance(UnmarshallerContext context) { return ModifyRankingSystemResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/ModifyRuleRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class ModifyRuleRequest extends RoaAcsRequest<ModifyRuleResponse> { private String instanceId; private String ruleId; public ModifyRuleRequest() { super("Airec", "2020-11-26", "ModifyRule", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/rules/[ruleId]"); setMethod(MethodType.PUT); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getRuleId() { return this.ruleId; } public void setRuleId(String ruleId) { this.ruleId = ruleId; if(ruleId != null){ putPathParameter("ruleId", ruleId); } } @Override public Class<ModifyRuleResponse> getResponseClass() { return ModifyRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/ModifyRuleResponse.java
/* * 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.airec.model.v20201126; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.ModifyRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ModifyRuleResponse extends AcsResponse { private String code; private String requestId; private String message; private Result result; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String ruleId; private Map<Object,Object> ruleMeta; private String gmtModified; private String status; private String gmtCreate; public String getRuleId() { return this.ruleId; } public void setRuleId(String ruleId) { this.ruleId = ruleId; } public Map<Object,Object> getRuleMeta() { return this.ruleMeta; } public void setRuleMeta(Map<Object,Object> ruleMeta) { this.ruleMeta = ruleMeta; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; } } @Override public ModifyRuleResponse getInstance(UnmarshallerContext context) { return ModifyRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/ModifySampleRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class ModifySampleRequest extends RoaAcsRequest<ModifySampleResponse> { private String instanceId; private String sampleId; private String body; public ModifySampleRequest() { super("Airec", "2020-11-26", "ModifySample", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/samples/[sampleId]"); setMethod(MethodType.PUT); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getSampleId() { return this.sampleId; } public void setSampleId(String sampleId) { this.sampleId = sampleId; if(sampleId != null){ putPathParameter("sampleId", sampleId); } } public String getBody() { return this.body; } public void setBody(String body) { this.body = body; if(body != null){ putBodyParameter("body", body); } } @Override public Class<ModifySampleResponse> getResponseClass() { return ModifySampleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/ModifySampleResponse.java
/* * 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.airec.model.v20201126; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.ModifySampleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ModifySampleResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String status; private String gmtCreate; private String gmtModified; private String sampleId; private Meta meta; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } public String getSampleId() { return this.sampleId; } public void setSampleId(String sampleId) { this.sampleId = sampleId; } public Meta getMeta() { return this.meta; } public void setMeta(Meta meta) { this.meta = meta; } public static class Meta { private Boolean autoUpdate; private Long autoUpdateFrequency; private String clonedId; private String metaType; private String name; private String storeConfig; private String type; private Config config; private ExtendParams extendParams; public Boolean getAutoUpdate() { return this.autoUpdate; } public void setAutoUpdate(Boolean autoUpdate) { this.autoUpdate = autoUpdate; } public Long getAutoUpdateFrequency() { return this.autoUpdateFrequency; } public void setAutoUpdateFrequency(Long autoUpdateFrequency) { this.autoUpdateFrequency = autoUpdateFrequency; } public String getClonedId() { return this.clonedId; } public void setClonedId(String clonedId) { this.clonedId = clonedId; } public String getMetaType() { return this.metaType; } public void setMetaType(String metaType) { this.metaType = metaType; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getStoreConfig() { return this.storeConfig; } public void setStoreConfig(String storeConfig) { this.storeConfig = storeConfig; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public Config getConfig() { return this.config; } public void setConfig(Config config) { this.config = config; } public ExtendParams getExtendParams() { return this.extendParams; } public void setExtendParams(ExtendParams extendParams) { this.extendParams = extendParams; } public static class Config { private List<WeightLogicListItem> weightLogicList; private List<String> bhvTableSourceIds; private FeatureConfig featureConfig; private LabelLogic labelLogic; public List<WeightLogicListItem> getWeightLogicList() { return this.weightLogicList; } public void setWeightLogicList(List<WeightLogicListItem> weightLogicList) { this.weightLogicList = weightLogicList; } public List<String> getBhvTableSourceIds() { return this.bhvTableSourceIds; } public void setBhvTableSourceIds(List<String> bhvTableSourceIds) { this.bhvTableSourceIds = bhvTableSourceIds; } public FeatureConfig getFeatureConfig() { return this.featureConfig; } public void setFeatureConfig(FeatureConfig featureConfig) { this.featureConfig = featureConfig; } public LabelLogic getLabelLogic() { return this.labelLogic; } public void setLabelLogic(LabelLogic labelLogic) { this.labelLogic = labelLogic; } public static class WeightLogicListItem { private String bhv; private String weight; public String getBhv() { return this.bhv; } public void setBhv(String bhv) { this.bhv = bhv; } public String getWeight() { return this.weight; } public void setWeight(String weight) { this.weight = weight; } } public static class FeatureConfig { private String itemFeatures; private String userFeatures; public String getItemFeatures() { return this.itemFeatures; } public void setItemFeatures(String itemFeatures) { this.itemFeatures = itemFeatures; } public String getUserFeatures() { return this.userFeatures; } public void setUserFeatures(String userFeatures) { this.userFeatures = userFeatures; } } public static class LabelLogic { private Long bhvTimeWindow; private String negativeBhvTypes; private String positiveBhvTypes; public Long getBhvTimeWindow() { return this.bhvTimeWindow; } public void setBhvTimeWindow(Long bhvTimeWindow) { this.bhvTimeWindow = bhvTimeWindow; } public String getNegativeBhvTypes() { return this.negativeBhvTypes; } public void setNegativeBhvTypes(String negativeBhvTypes) { this.negativeBhvTypes = negativeBhvTypes; } public String getPositiveBhvTypes() { return this.positiveBhvTypes; } public void setPositiveBhvTypes(String positiveBhvTypes) { this.positiveBhvTypes = positiveBhvTypes; } } } public static class ExtendParams { private Long latestTaskStatus; private Long sampleCount; public Long getLatestTaskStatus() { return this.latestTaskStatus; } public void setLatestTaskStatus(Long latestTaskStatus) { this.latestTaskStatus = latestTaskStatus; } public Long getSampleCount() { return this.sampleCount; } public void setSampleCount(Long sampleCount) { this.sampleCount = sampleCount; } } } } @Override public ModifySampleResponse getInstance(UnmarshallerContext context) { return ModifySampleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/ModifySceneRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class ModifySceneRequest extends RoaAcsRequest<ModifySceneResponse> { private String instanceId; private String sceneId; public ModifySceneRequest() { super("Airec", "2020-11-26", "ModifyScene", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/scenes/[sceneId]"); setMethod(MethodType.PUT); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getSceneId() { return this.sceneId; } public void setSceneId(String sceneId) { this.sceneId = sceneId; if(sceneId != null){ putPathParameter("sceneId", sceneId); } } @Override public Class<ModifySceneResponse> getResponseClass() { return ModifySceneResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/ModifySceneResponse.java
/* * 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.airec.model.v20201126; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.ModifySceneResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ModifySceneResponse extends AcsResponse { private String code; private String requestId; private String message; private Result result; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String sceneId; private String gmtModified; private String status; private String gmtCreate; public String getSceneId() { return this.sceneId; } public void setSceneId(String sceneId) { this.sceneId = sceneId; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; } } @Override public ModifySceneResponse getInstance(UnmarshallerContext context) { return ModifySceneResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/OfflineFilteringAlgorithmRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class OfflineFilteringAlgorithmRequest extends RoaAcsRequest<OfflineFilteringAlgorithmResponse> { private String instanceId; private String algorithmId; public OfflineFilteringAlgorithmRequest() { super("Airec", "2020-11-26", "OfflineFilteringAlgorithm", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/filtering-algorithms/[algorithmId]/actions/offline"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getAlgorithmId() { return this.algorithmId; } public void setAlgorithmId(String algorithmId) { this.algorithmId = algorithmId; if(algorithmId != null){ putPathParameter("algorithmId", algorithmId); } } @Override public Class<OfflineFilteringAlgorithmResponse> getResponseClass() { return OfflineFilteringAlgorithmResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/OfflineFilteringAlgorithmResponse.java
/* * 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.airec.model.v20201126; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.OfflineFilteringAlgorithmResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class OfflineFilteringAlgorithmResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String gmtModified; private String status; private String gmtCreate; private String algorithmId; private Meta meta; public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; } public String getAlgorithmId() { return this.algorithmId; } public void setAlgorithmId(String algorithmId) { this.algorithmId = algorithmId; } public Meta getMeta() { return this.meta; } public void setMeta(Meta meta) { this.meta = meta; } public static class Meta { private String taskId; private String metaType; private String type; private String category; private String tableName; private String clusterId; private String cron; private String description; private String projectName; private String algorithmName; private Boolean cronEnabled; private ExtInfo extInfo; private Threshold threshold; public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; } public String getMetaType() { return this.metaType; } public void setMetaType(String metaType) { this.metaType = metaType; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getCategory() { return this.category; } public void setCategory(String category) { this.category = category; } public String getTableName() { return this.tableName; } public void setTableName(String tableName) { this.tableName = tableName; } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; } public String getCron() { return this.cron; } public void setCron(String cron) { this.cron = cron; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getProjectName() { return this.projectName; } public void setProjectName(String projectName) { this.projectName = projectName; } public String getAlgorithmName() { return this.algorithmName; } public void setAlgorithmName(String algorithmName) { this.algorithmName = algorithmName; } public Boolean getCronEnabled() { return this.cronEnabled; } public void setCronEnabled(Boolean cronEnabled) { this.cronEnabled = cronEnabled; } public ExtInfo getExtInfo() { return this.extInfo; } public void setExtInfo(ExtInfo extInfo) { this.extInfo = extInfo; } public Threshold getThreshold() { return this.threshold; } public void setThreshold(Threshold threshold) { this.threshold = threshold; } public static class ExtInfo { private String kvSeparator; private String itemSeparator; public String getKvSeparator() { return this.kvSeparator; } public void setKvSeparator(String kvSeparator) { this.kvSeparator = kvSeparator; } public String getItemSeparator() { return this.itemSeparator; } public void setItemSeparator(String itemSeparator) { this.itemSeparator = itemSeparator; } } public static class Threshold { private Integer sourceDataSizeThreshold; private Integer sourceDataRecordThreshold; private Integer indexSizeThreshold; private Integer indexLossThreshold; public Integer getSourceDataSizeThreshold() { return this.sourceDataSizeThreshold; } public void setSourceDataSizeThreshold(Integer sourceDataSizeThreshold) { this.sourceDataSizeThreshold = sourceDataSizeThreshold; } public Integer getSourceDataRecordThreshold() { return this.sourceDataRecordThreshold; } public void setSourceDataRecordThreshold(Integer sourceDataRecordThreshold) { this.sourceDataRecordThreshold = sourceDataRecordThreshold; } public Integer getIndexSizeThreshold() { return this.indexSizeThreshold; } public void setIndexSizeThreshold(Integer indexSizeThreshold) { this.indexSizeThreshold = indexSizeThreshold; } public Integer getIndexLossThreshold() { return this.indexLossThreshold; } public void setIndexLossThreshold(Integer indexLossThreshold) { this.indexLossThreshold = indexLossThreshold; } } } } @Override public OfflineFilteringAlgorithmResponse getInstance(UnmarshallerContext context) { return OfflineFilteringAlgorithmResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/PublishFlowControlTaskRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class PublishFlowControlTaskRequest extends RoaAcsRequest<PublishFlowControlTaskResponse> { private String instanceId; private String taskId; public PublishFlowControlTaskRequest() { super("Airec", "2020-11-26", "PublishFlowControlTask", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/flowControlTasks/[taskId]/actions/publish"); setMethod(MethodType.PUT); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; if(taskId != null){ putPathParameter("taskId", taskId); } } @Override public Class<PublishFlowControlTaskResponse> getResponseClass() { return PublishFlowControlTaskResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/PublishFlowControlTaskResponse.java
/* * 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.airec.model.v20201126; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.PublishFlowControlTaskResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class PublishFlowControlTaskResponse extends AcsResponse { private String requestId; private Boolean result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } @Override public PublishFlowControlTaskResponse getInstance(UnmarshallerContext context) { return PublishFlowControlTaskResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/PublishRuleRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class PublishRuleRequest extends RoaAcsRequest<PublishRuleResponse> { private String instanceId; private String ruleType; private String sceneId; private String ruleId; public PublishRuleRequest() { super("Airec", "2020-11-26", "PublishRule", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/rules/[ruleId]/actions/publish"); setMethod(MethodType.PUT); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getRuleType() { return this.ruleType; } public void setRuleType(String ruleType) { this.ruleType = ruleType; if(ruleType != null){ putQueryParameter("ruleType", ruleType); } } public String getSceneId() { return this.sceneId; } public void setSceneId(String sceneId) { this.sceneId = sceneId; if(sceneId != null){ putQueryParameter("sceneId", sceneId); } } public String getRuleId() { return this.ruleId; } public void setRuleId(String ruleId) { this.ruleId = ruleId; if(ruleId != null){ putPathParameter("ruleId", ruleId); } } @Override public Class<PublishRuleResponse> getResponseClass() { return PublishRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/PublishRuleResponse.java
/* * 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.airec.model.v20201126; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.PublishRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class PublishRuleResponse extends AcsResponse { private String code; private String requestId; private String message; private Result result; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String ruleId; public String getRuleId() { return this.ruleId; } public void setRuleId(String ruleId) { this.ruleId = ruleId; } } @Override public PublishRuleResponse getInstance(UnmarshallerContext context) { return PublishRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/PushColdStartDocumentRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class PushColdStartDocumentRequest extends RoaAcsRequest<PushColdStartDocumentResponse> { private String instanceId; private String tableName; private String body; public PushColdStartDocumentRequest() { super("Airec", "2020-11-26", "PushColdStartDocument", "airec"); setUriPattern("/v2/openapi/instances/cold-start/[instanceId]/tables/[tableName]/actions/bulk"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getTableName() { return this.tableName; } public void setTableName(String tableName) { this.tableName = tableName; if(tableName != null){ putPathParameter("tableName", tableName); } } public String getBody() { return this.body; } public void setBody(String body) { this.body = body; if(body != null){ putBodyParameter("body", body); } } @Override public Class<PushColdStartDocumentResponse> getResponseClass() { return PushColdStartDocumentResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/PushColdStartDocumentResponse.java
/* * 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.airec.model.v20201126; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.PushColdStartDocumentResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class PushColdStartDocumentResponse extends AcsResponse { private String requestId; private Boolean result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } @Override public PushColdStartDocumentResponse getInstance(UnmarshallerContext context) { return PushColdStartDocumentResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/PushDocumentRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class PushDocumentRequest extends RoaAcsRequest<PushDocumentResponse> { private String instanceId; private String tableName; public PushDocumentRequest() { super("Airec", "2020-11-26", "PushDocument", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/tables/[tableName]/actions/bulk"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getTableName() { return this.tableName; } public void setTableName(String tableName) { this.tableName = tableName; if(tableName != null){ putPathParameter("tableName", tableName); } } @Override public Class<PushDocumentResponse> getResponseClass() { return PushDocumentResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/PushDocumentResponse.java
/* * 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.airec.model.v20201126; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.PushDocumentResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class PushDocumentResponse extends AcsResponse { private Boolean result; private String code; private String requestId; private String message; public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public PushDocumentResponse getInstance(UnmarshallerContext context) { return PushDocumentResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/PushInterventionRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class PushInterventionRequest extends RoaAcsRequest<PushInterventionResponse> { private String instanceId; public PushInterventionRequest() { super("Airec", "2020-11-26", "PushIntervention", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/actions/intervene"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } @Override public Class<PushInterventionResponse> getResponseClass() { return PushInterventionResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/PushInterventionResponse.java
/* * 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.airec.model.v20201126; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.PushInterventionResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class PushInterventionResponse extends AcsResponse { private Boolean result; private String code; private String requestId; private String message; public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public PushInterventionResponse getInstance(UnmarshallerContext context) { return PushInterventionResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/QueryDataMessageRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class QueryDataMessageRequest extends RoaAcsRequest<QueryDataMessageResponse> { private String traceId; private String messageSource; private Long endTime; private String userType; private Long startTime; private String userId; private String itemId; private String instanceId; private String itemType; private String cmdType; private Integer size; private String sceneId; private String imei; private String bhvType; private Integer page; private String table; public QueryDataMessageRequest() { super("Airec", "2020-11-26", "QueryDataMessage", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/tables/[table]/data-message"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getTraceId() { return this.traceId; } public void setTraceId(String traceId) { this.traceId = traceId; if(traceId != null){ putQueryParameter("traceId", traceId); } } public String getMessageSource() { return this.messageSource; } public void setMessageSource(String messageSource) { this.messageSource = messageSource; if(messageSource != null){ putQueryParameter("messageSource", messageSource); } } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("endTime", endTime.toString()); } } public String getUserType() { return this.userType; } public void setUserType(String userType) { this.userType = userType; if(userType != null){ putQueryParameter("userType", userType); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("startTime", startTime.toString()); } } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; if(userId != null){ putQueryParameter("userId", userId); } } public String getItemId() { return this.itemId; } public void setItemId(String itemId) { this.itemId = itemId; if(itemId != null){ putQueryParameter("itemId", itemId); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getItemType() { return this.itemType; } public void setItemType(String itemType) { this.itemType = itemType; if(itemType != null){ putQueryParameter("itemType", itemType); } } public String getCmdType() { return this.cmdType; } public void setCmdType(String cmdType) { this.cmdType = cmdType; if(cmdType != null){ putQueryParameter("cmdType", cmdType); } } public Integer getSize() { return this.size; } public void setSize(Integer size) { this.size = size; if(size != null){ putQueryParameter("size", size.toString()); } } public String getSceneId() { return this.sceneId; } public void setSceneId(String sceneId) { this.sceneId = sceneId; if(sceneId != null){ putQueryParameter("sceneId", sceneId); } } public String getImei() { return this.imei; } public void setImei(String imei) { this.imei = imei; if(imei != null){ putQueryParameter("imei", imei); } } public String getBhvType() { return this.bhvType; } public void setBhvType(String bhvType) { this.bhvType = bhvType; if(bhvType != null){ putQueryParameter("bhvType", bhvType); } } public Integer getPage() { return this.page; } public void setPage(Integer page) { this.page = page; if(page != null){ putQueryParameter("page", page.toString()); } } public String getTable() { return this.table; } public void setTable(String table) { this.table = table; if(table != null){ putPathParameter("table", table); } } @Override public Class<QueryDataMessageResponse> getResponseClass() { return QueryDataMessageResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/QueryDataMessageResponse.java
/* * 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.airec.model.v20201126; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.QueryDataMessageResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryDataMessageResponse extends AcsResponse { private Map<Object,Object> result; private String code; private String requestId; private String message; public Map<Object,Object> getResult() { return this.result; } public void setResult(Map<Object,Object> result) { this.result = result; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public QueryDataMessageResponse getInstance(UnmarshallerContext context) { return QueryDataMessageResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/QueryDataMessageStatisticsRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class QueryDataMessageStatisticsRequest extends RoaAcsRequest<QueryDataMessageStatisticsResponse> { private String traceId; private String messageSource; private Long endTime; private String userType; private Long startTime; private String userId; private String itemId; private String instanceId; private String itemType; private String cmdType; private String sceneId; private String imei; private String bhvType; private String table; public QueryDataMessageStatisticsRequest() { super("Airec", "2020-11-26", "QueryDataMessageStatistics", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/tables/[table]/data-message-statistics"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getTraceId() { return this.traceId; } public void setTraceId(String traceId) { this.traceId = traceId; if(traceId != null){ putQueryParameter("traceId", traceId); } } public String getMessageSource() { return this.messageSource; } public void setMessageSource(String messageSource) { this.messageSource = messageSource; if(messageSource != null){ putQueryParameter("messageSource", messageSource); } } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("endTime", endTime.toString()); } } public String getUserType() { return this.userType; } public void setUserType(String userType) { this.userType = userType; if(userType != null){ putQueryParameter("userType", userType); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("startTime", startTime.toString()); } } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; if(userId != null){ putQueryParameter("userId", userId); } } public String getItemId() { return this.itemId; } public void setItemId(String itemId) { this.itemId = itemId; if(itemId != null){ putQueryParameter("itemId", itemId); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getItemType() { return this.itemType; } public void setItemType(String itemType) { this.itemType = itemType; if(itemType != null){ putQueryParameter("itemType", itemType); } } public String getCmdType() { return this.cmdType; } public void setCmdType(String cmdType) { this.cmdType = cmdType; if(cmdType != null){ putQueryParameter("cmdType", cmdType); } } public String getSceneId() { return this.sceneId; } public void setSceneId(String sceneId) { this.sceneId = sceneId; if(sceneId != null){ putQueryParameter("sceneId", sceneId); } } public String getImei() { return this.imei; } public void setImei(String imei) { this.imei = imei; if(imei != null){ putQueryParameter("imei", imei); } } public String getBhvType() { return this.bhvType; } public void setBhvType(String bhvType) { this.bhvType = bhvType; if(bhvType != null){ putQueryParameter("bhvType", bhvType); } } public String getTable() { return this.table; } public void setTable(String table) { this.table = table; if(table != null){ putPathParameter("table", table); } } @Override public Class<QueryDataMessageStatisticsResponse> getResponseClass() { return QueryDataMessageStatisticsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/QueryDataMessageStatisticsResponse.java
/* * 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.airec.model.v20201126; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.QueryDataMessageStatisticsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryDataMessageStatisticsResponse extends AcsResponse { private Map<Object,Object> result; private String code; private String requestId; private String message; public Map<Object,Object> getResult() { return this.result; } public void setResult(Map<Object,Object> result) { this.result = result; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public QueryDataMessageStatisticsResponse getInstance(UnmarshallerContext context) { return QueryDataMessageStatisticsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/QueryExceptionHistoryRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class QueryExceptionHistoryRequest extends RoaAcsRequest<QueryExceptionHistoryResponse> { private String instanceId; private Long endTime; private Long startTime; private String type; public QueryExceptionHistoryRequest() { super("Airec", "2020-11-26", "QueryExceptionHistory", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/sync-reports/exception-history"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("endTime", endTime.toString()); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("startTime", startTime.toString()); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("type", type); } } @Override public Class<QueryExceptionHistoryResponse> getResponseClass() { return QueryExceptionHistoryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/QueryExceptionHistoryResponse.java
/* * 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.airec.model.v20201126; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.QueryExceptionHistoryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryExceptionHistoryResponse extends AcsResponse { private Map<Object,Object> result; private String code; private String requestId; private String message; public Map<Object,Object> getResult() { return this.result; } public void setResult(Map<Object,Object> result) { this.result = result; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public QueryExceptionHistoryResponse getInstance(UnmarshallerContext context) { return QueryExceptionHistoryResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/QueryRawDataRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class QueryRawDataRequest extends RoaAcsRequest<QueryRawDataResponse> { private String itemId; private String instanceId; private String itemType; private String userType; private String imei; private String userId; private String table; public QueryRawDataRequest() { super("Airec", "2020-11-26", "QueryRawData", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/tables/[table]/raw-data"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getItemId() { return this.itemId; } public void setItemId(String itemId) { this.itemId = itemId; if(itemId != null){ putQueryParameter("itemId", itemId); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getItemType() { return this.itemType; } public void setItemType(String itemType) { this.itemType = itemType; if(itemType != null){ putQueryParameter("itemType", itemType); } } public String getUserType() { return this.userType; } public void setUserType(String userType) { this.userType = userType; if(userType != null){ putQueryParameter("userType", userType); } } public String getImei() { return this.imei; } public void setImei(String imei) { this.imei = imei; if(imei != null){ putQueryParameter("imei", imei); } } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; if(userId != null){ putQueryParameter("userId", userId); } } public String getTable() { return this.table; } public void setTable(String table) { this.table = table; if(table != null){ putPathParameter("table", table); } } @Override public Class<QueryRawDataResponse> getResponseClass() { return QueryRawDataResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/QueryRawDataResponse.java
/* * 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.airec.model.v20201126; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.QueryRawDataResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryRawDataResponse extends AcsResponse { private Map<Object,Object> result; private String code; private String message; private String requestId; public Map<Object,Object> getResult() { return this.result; } public void setResult(Map<Object,Object> result) { this.result = result; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public QueryRawDataResponse getInstance(UnmarshallerContext context) { return QueryRawDataResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/QuerySingleAggregationReportRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class QuerySingleAggregationReportRequest extends RoaAcsRequest<QuerySingleAggregationReportResponse> { private String instanceId; public QuerySingleAggregationReportRequest() { super("Airec", "2020-11-26", "QuerySingleAggregationReport", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/sync-reports/single-aggregation-report"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } @Override public Class<QuerySingleAggregationReportResponse> getResponseClass() { return QuerySingleAggregationReportResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/QuerySingleAggregationReportResponse.java
/* * 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.airec.model.v20201126; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.QuerySingleAggregationReportResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QuerySingleAggregationReportResponse extends AcsResponse { private Map<Object,Object> result; private String code; private String requestId; private String message; public Map<Object,Object> getResult() { return this.result; } public void setResult(Map<Object,Object> result) { this.result = result; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public QuerySingleAggregationReportResponse getInstance(UnmarshallerContext context) { return QuerySingleAggregationReportResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/QuerySingleReportRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class QuerySingleReportRequest extends RoaAcsRequest<QuerySingleReportResponse> { private String instanceId; private String reportType; public QuerySingleReportRequest() { super("Airec", "2020-11-26", "QuerySingleReport", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/sync-reports/single-report"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getReportType() { return this.reportType; } public void setReportType(String reportType) { this.reportType = reportType; if(reportType != null){ putQueryParameter("reportType", reportType); } } @Override public Class<QuerySingleReportResponse> getResponseClass() { return QuerySingleReportResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/QuerySingleReportResponse.java
/* * 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.airec.model.v20201126; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.QuerySingleReportResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QuerySingleReportResponse extends AcsResponse { private Map<Object,Object> result; private String code; private String requestId; private String message; public Map<Object,Object> getResult() { return this.result; } public void setResult(Map<Object,Object> result) { this.result = result; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public QuerySingleReportResponse getInstance(UnmarshallerContext context) { return QuerySingleReportResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/QuerySyncReportAggregationRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class QuerySyncReportAggregationRequest extends RoaAcsRequest<QuerySyncReportAggregationResponse> { private String instanceId; private Long endTime; private Long startTime; public QuerySyncReportAggregationRequest() { super("Airec", "2020-11-26", "QuerySyncReportAggregation", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/sync-reports/aggregation"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("endTime", endTime.toString()); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("startTime", startTime.toString()); } } @Override public Class<QuerySyncReportAggregationResponse> getResponseClass() { return QuerySyncReportAggregationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/QuerySyncReportAggregationResponse.java
/* * 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.airec.model.v20201126; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.QuerySyncReportAggregationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QuerySyncReportAggregationResponse extends AcsResponse { private Map<Object,Object> result; private String code; private String requestId; private String message; public Map<Object,Object> getResult() { return this.result; } public void setResult(Map<Object,Object> result) { this.result = result; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public QuerySyncReportAggregationResponse getInstance(UnmarshallerContext context) { return QuerySyncReportAggregationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/RebuildIndexRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class RebuildIndexRequest extends RoaAcsRequest<RebuildIndexResponse> { private String instanceId; private String algorithmId; public RebuildIndexRequest() { super("Airec", "2020-11-26", "RebuildIndex", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/filtering-algorithms/[algorithmId]/actions/rebuild"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getAlgorithmId() { return this.algorithmId; } public void setAlgorithmId(String algorithmId) { this.algorithmId = algorithmId; if(algorithmId != null){ putPathParameter("algorithmId", algorithmId); } } @Override public Class<RebuildIndexResponse> getResponseClass() { return RebuildIndexResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/RebuildIndexResponse.java
/* * 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.airec.model.v20201126; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.RebuildIndexResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RebuildIndexResponse extends AcsResponse { private String result; private String requestId; public String getResult() { return this.result; } public void setResult(String result) { this.result = result; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public RebuildIndexResponse getInstance(UnmarshallerContext context) { return RebuildIndexResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/RecommendRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class RecommendRequest extends RoaAcsRequest<RecommendResponse> { private Integer returnCount; private String recType; private String ip; private String userId; private String filter; private String serviceType; private String instanceId; private String sceneId; private String imei; private Boolean rankOpen; private String strategy; private String items; private String userInfo; public RecommendRequest() { super("Airec", "2020-11-26", "Recommend", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/actions/recommend"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getReturnCount() { return this.returnCount; } public void setReturnCount(Integer returnCount) { this.returnCount = returnCount; if(returnCount != null){ putQueryParameter("returnCount", returnCount.toString()); } } public String getRecType() { return this.recType; } public void setRecType(String recType) { this.recType = recType; if(recType != null){ putQueryParameter("recType", recType); } } public String getIp() { return this.ip; } public void setIp(String ip) { this.ip = ip; if(ip != null){ putQueryParameter("ip", ip); } } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; if(userId != null){ putQueryParameter("userId", userId); } } public String getFilter() { return this.filter; } public void setFilter(String filter) { this.filter = filter; if(filter != null){ putQueryParameter("filter", filter); } } public String getServiceType() { return this.serviceType; } public void setServiceType(String serviceType) { this.serviceType = serviceType; if(serviceType != null){ putQueryParameter("serviceType", serviceType); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getSceneId() { return this.sceneId; } public void setSceneId(String sceneId) { this.sceneId = sceneId; if(sceneId != null){ putQueryParameter("sceneId", sceneId); } } public String getImei() { return this.imei; } public void setImei(String imei) { this.imei = imei; if(imei != null){ putQueryParameter("imei", imei); } } public Boolean getRankOpen() { return this.rankOpen; } public void setRankOpen(Boolean rankOpen) { this.rankOpen = rankOpen; if(rankOpen != null){ putQueryParameter("rankOpen", rankOpen.toString()); } } public String getStrategy() { return this.strategy; } public void setStrategy(String strategy) { this.strategy = strategy; if(strategy != null){ putQueryParameter("strategy", strategy); } } public String getItems() { return this.items; } public void setItems(String items) { this.items = items; if(items != null){ putQueryParameter("items", items); } } public String getUserInfo() { return this.userInfo; } public void setUserInfo(String userInfo) { this.userInfo = userInfo; if(userInfo != null){ putQueryParameter("userInfo", userInfo); } } @Override public Class<RecommendResponse> getResponseClass() { return RecommendResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/RecommendResponse.java
/* * 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.airec.model.v20201126; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.RecommendResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RecommendResponse extends AcsResponse { private String code; private String requestId; private String message; private List<ResultItem> result; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private String matchInfo; private String traceId; private Integer position; private String itemId; private String itemType; private String traceInfo; private Float weight; private Double flowWeight; private String message; public String getMatchInfo() { return this.matchInfo; } public void setMatchInfo(String matchInfo) { this.matchInfo = matchInfo; } public String getTraceId() { return this.traceId; } public void setTraceId(String traceId) { this.traceId = traceId; } public Integer getPosition() { return this.position; } public void setPosition(Integer position) { this.position = position; } public String getItemId() { return this.itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public String getItemType() { return this.itemType; } public void setItemType(String itemType) { this.itemType = itemType; } public String getTraceInfo() { return this.traceInfo; } public void setTraceInfo(String traceInfo) { this.traceInfo = traceInfo; } public Float getWeight() { return this.weight; } public void setWeight(Float weight) { this.weight = weight; } public Double getFlowWeight() { return this.flowWeight; } public void setFlowWeight(Double flowWeight) { this.flowWeight = flowWeight; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } } @Override public RecommendResponse getInstance(UnmarshallerContext context) { return RecommendResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/RefreshFeatureTableRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class RefreshFeatureTableRequest extends RoaAcsRequest<RefreshFeatureTableResponse> { private String featureTableId; private String instanceId; private String type; public RefreshFeatureTableRequest() { super("Airec", "2020-11-26", "RefreshFeatureTable", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/feature-tables/[type]/[featureTableId]/actions/refresh"); setMethod(MethodType.PUT); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getFeatureTableId() { return this.featureTableId; } public void setFeatureTableId(String featureTableId) { this.featureTableId = featureTableId; if(featureTableId != null){ putPathParameter("featureTableId", featureTableId); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putPathParameter("type", type); } } @Override public Class<RefreshFeatureTableResponse> getResponseClass() { return RefreshFeatureTableResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/RefreshFeatureTableResponse.java
/* * 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.airec.model.v20201126; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.RefreshFeatureTableResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RefreshFeatureTableResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String status; private String featureTableId; private String type; private String gmtCreate; private String gmtModified; private Meta meta; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getFeatureTableId() { return this.featureTableId; } public void setFeatureTableId(String featureTableId) { this.featureTableId = featureTableId; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } public Meta getMeta() { return this.meta; } public void setMeta(Meta meta) { this.meta = meta; } public static class Meta { private String dataSourceId; private Boolean internal; private String metaType; private String source; private Long updateFrequency; private List<FeatureListItem> featureList; public String getDataSourceId() { return this.dataSourceId; } public void setDataSourceId(String dataSourceId) { this.dataSourceId = dataSourceId; } public Boolean getInternal() { return this.internal; } public void setInternal(Boolean internal) { this.internal = internal; } public String getMetaType() { return this.metaType; } public void setMetaType(String metaType) { this.metaType = metaType; } public String getSource() { return this.source; } public void setSource(String source) { this.source = source; } public Long getUpdateFrequency() { return this.updateFrequency; } public void setUpdateFrequency(Long updateFrequency) { this.updateFrequency = updateFrequency; } public List<FeatureListItem> getFeatureList() { return this.featureList; } public void setFeatureList(List<FeatureListItem> featureList) { this.featureList = featureList; } public static class FeatureListItem { private String comment; private String featureName; private String fieldName; private String status; public String getComment() { return this.comment; } public void setComment(String comment) { this.comment = comment; } public String getFeatureName() { return this.featureName; } public void setFeatureName(String featureName) { this.featureName = featureName; } public String getFieldName() { return this.fieldName; } public void setFieldName(String fieldName) { this.fieldName = fieldName; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } } } } @Override public RefreshFeatureTableResponse getInstance(UnmarshallerContext context) { return RefreshFeatureTableResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/RollbackRankingSystemRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class RollbackRankingSystemRequest extends RoaAcsRequest<RollbackRankingSystemResponse> { private String instanceId; private String name; private String body; public RollbackRankingSystemRequest() { super("Airec", "2020-11-26", "RollbackRankingSystem", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/ranking-systems/[name]/actions/rollback"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putPathParameter("name", name); } } public String getBody() { return this.body; } public void setBody(String body) { this.body = body; if(body != null){ putBodyParameter("body", body); } } @Override public Class<RollbackRankingSystemResponse> getResponseClass() { return RollbackRankingSystemResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/RollbackRankingSystemResponse.java
/* * 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.airec.model.v20201126; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.RollbackRankingSystemResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RollbackRankingSystemResponse extends AcsResponse { private String requestId; private Map<Object,Object> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Map<Object,Object> getResult() { return this.result; } public void setResult(Map<Object,Object> result) { this.result = result; } @Override public RollbackRankingSystemResponse getInstance(UnmarshallerContext context) { return RollbackRankingSystemResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/RunInstanceRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class RunInstanceRequest extends RoaAcsRequest<RunInstanceResponse> { private String instanceId; public RunInstanceRequest() { super("Airec", "2020-11-26", "RunInstance", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/actions/import"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } @Override public Class<RunInstanceResponse> getResponseClass() { return RunInstanceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/RunInstanceResponse.java
/* * 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.airec.model.v20201126; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.RunInstanceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RunInstanceResponse extends AcsResponse { private Boolean result; private String code; private String requestId; private String message; public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public RunInstanceResponse getInstance(UnmarshallerContext context) { return RunInstanceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/RunRankingModelTemplateRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class RunRankingModelTemplateRequest extends RoaAcsRequest<RunRankingModelTemplateResponse> { private String instanceId; private String templateId; public RunRankingModelTemplateRequest() { super("Airec", "2020-11-26", "RunRankingModelTemplate", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/ranking-model-templates/[templateId]/actions/run"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getTemplateId() { return this.templateId; } public void setTemplateId(String templateId) { this.templateId = templateId; if(templateId != null){ putPathParameter("templateId", templateId); } } @Override public Class<RunRankingModelTemplateResponse> getResponseClass() { return RunRankingModelTemplateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/RunRankingModelTemplateResponse.java
/* * 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.airec.model.v20201126; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.RunRankingModelTemplateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RunRankingModelTemplateResponse extends AcsResponse { private String requestId; private Map<Object,Object> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Map<Object,Object> getResult() { return this.result; } public void setResult(Map<Object,Object> result) { this.result = result; } @Override public RunRankingModelTemplateResponse getInstance(UnmarshallerContext context) { return RunRankingModelTemplateResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/RunSampleFormatConfigRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class RunSampleFormatConfigRequest extends RoaAcsRequest<RunSampleFormatConfigResponse> { private String mode; private String instanceId; private String sampleId; public RunSampleFormatConfigRequest() { super("Airec", "2020-11-26", "RunSampleFormatConfig", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/samples/[sampleId]/format-configs/actions/run"); setMethod(MethodType.PUT); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getMode() { return this.mode; } public void setMode(String mode) { this.mode = mode; if(mode != null){ putQueryParameter("mode", mode); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getSampleId() { return this.sampleId; } public void setSampleId(String sampleId) { this.sampleId = sampleId; if(sampleId != null){ putPathParameter("sampleId", sampleId); } } @Override public Class<RunSampleFormatConfigResponse> getResponseClass() { return RunSampleFormatConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/RunSampleFormatConfigResponse.java
/* * 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.airec.model.v20201126; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.RunSampleFormatConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RunSampleFormatConfigResponse extends AcsResponse { private String requestId; private Boolean result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } @Override public RunSampleFormatConfigResponse getInstance(UnmarshallerContext context) { return RunSampleFormatConfigResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/StopDataSetRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class StopDataSetRequest extends RoaAcsRequest<StopDataSetResponse> { private String versionId; private String instanceId; public StopDataSetRequest() { super("Airec", "2020-11-26", "StopDataSet", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/dataSets/[versionId]/actions/stop"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getVersionId() { return this.versionId; } public void setVersionId(String versionId) { this.versionId = versionId; if(versionId != null){ putPathParameter("versionId", versionId); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } @Override public Class<StopDataSetResponse> getResponseClass() { return StopDataSetResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/StopDataSetResponse.java
/* * 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.airec.model.v20201126; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.StopDataSetResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class StopDataSetResponse extends AcsResponse { private String code; private String requestId; private String message; private Result result; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String versionId; private String state; private Long gmtModified; private Long gmtCreate; private String instanceId; public String getVersionId() { return this.versionId; } public void setVersionId(String versionId) { this.versionId = versionId; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public Long getGmtModified() { return this.gmtModified; } public void setGmtModified(Long gmtModified) { this.gmtModified = gmtModified; } public Long getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(Long gmtCreate) { this.gmtCreate = gmtCreate; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } } @Override public StopDataSetResponse getInstance(UnmarshallerContext context) { return StopDataSetResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/StopFlowControlTaskRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class StopFlowControlTaskRequest extends RoaAcsRequest<StopFlowControlTaskResponse> { private String instanceId; private String taskId; public StopFlowControlTaskRequest() { super("Airec", "2020-11-26", "StopFlowControlTask", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/flowControlTasks/[taskId]/actions/stop"); setMethod(MethodType.PUT); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; if(taskId != null){ putPathParameter("taskId", taskId); } } @Override public Class<StopFlowControlTaskResponse> getResponseClass() { return StopFlowControlTaskResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/StopFlowControlTaskResponse.java
/* * 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.airec.model.v20201126; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.StopFlowControlTaskResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class StopFlowControlTaskResponse extends AcsResponse { private String requestId; private Boolean result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } @Override public StopFlowControlTaskResponse getInstance(UnmarshallerContext context) { return StopFlowControlTaskResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/UnLockIndexVersionRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class UnLockIndexVersionRequest extends RoaAcsRequest<UnLockIndexVersionResponse> { private String instanceId; private String algorithmId; public UnLockIndexVersionRequest() { super("Airec", "2020-11-26", "UnLockIndexVersion", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/filtering-algorithms/[algorithmId]/actions/unlock"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getAlgorithmId() { return this.algorithmId; } public void setAlgorithmId(String algorithmId) { this.algorithmId = algorithmId; if(algorithmId != null){ putPathParameter("algorithmId", algorithmId); } } @Override public Class<UnLockIndexVersionResponse> getResponseClass() { return UnLockIndexVersionResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/UnLockIndexVersionResponse.java
/* * 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.airec.model.v20201126; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.UnLockIndexVersionResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UnLockIndexVersionResponse extends AcsResponse { private Boolean result; private String requestId; public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public UnLockIndexVersionResponse getInstance(UnmarshallerContext context) { return UnLockIndexVersionResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/UpdateExperimentBasicInfoRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class UpdateExperimentBasicInfoRequest extends RoaAcsRequest<UpdateExperimentBasicInfoResponse> { private String instanceId; private String sceneId; private String experimentId; public UpdateExperimentBasicInfoRequest() { super("Airec", "2020-11-26", "UpdateExperimentBasicInfo", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/scenes/[sceneId]/experiments/[experimentId]/basic"); setMethod(MethodType.PUT); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getSceneId() { return this.sceneId; } public void setSceneId(String sceneId) { this.sceneId = sceneId; if(sceneId != null){ putPathParameter("sceneId", sceneId); } } public String getExperimentId() { return this.experimentId; } public void setExperimentId(String experimentId) { this.experimentId = experimentId; if(experimentId != null){ putPathParameter("experimentId", experimentId); } } @Override public Class<UpdateExperimentBasicInfoResponse> getResponseClass() { return UpdateExperimentBasicInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/UpdateExperimentBasicInfoResponse.java
/* * 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.airec.model.v20201126; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.UpdateExperimentBasicInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateExperimentBasicInfoResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Boolean base; private String onlineTime; private String offlineTime; private String description; private String status; private String name; private String experimentId; private List<Algorithm> algorithms; private List<String> buckets; public Boolean getBase() { return this.base; } public void setBase(Boolean base) { this.base = base; } public String getOnlineTime() { return this.onlineTime; } public void setOnlineTime(String onlineTime) { this.onlineTime = onlineTime; } public String getOfflineTime() { return this.offlineTime; } public void setOfflineTime(String offlineTime) { this.offlineTime = offlineTime; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getExperimentId() { return this.experimentId; } public void setExperimentId(String experimentId) { this.experimentId = experimentId; } public List<Algorithm> getAlgorithms() { return this.algorithms; } public void setAlgorithms(List<Algorithm> algorithms) { this.algorithms = algorithms; } public List<String> getBuckets() { return this.buckets; } public void setBuckets(List<String> buckets) { this.buckets = buckets; } public static class Algorithm { private String key; private String defaultValue; private String type; private String experimentValue; private Boolean hasConfig; private String category; private String name; private List<ConfigItem> config; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getDefaultValue() { return this.defaultValue; } public void setDefaultValue(String defaultValue) { this.defaultValue = defaultValue; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getExperimentValue() { return this.experimentValue; } public void setExperimentValue(String experimentValue) { this.experimentValue = experimentValue; } public Boolean getHasConfig() { return this.hasConfig; } public void setHasConfig(Boolean hasConfig) { this.hasConfig = hasConfig; } public String getCategory() { return this.category; } public void setCategory(String category) { this.category = category; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public List<ConfigItem> getConfig() { return this.config; } public void setConfig(List<ConfigItem> config) { this.config = config; } public static class ConfigItem { private String key; private String defaultValue; private String experimentValue; private String name; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getDefaultValue() { return this.defaultValue; } public void setDefaultValue(String defaultValue) { this.defaultValue = defaultValue; } public String getExperimentValue() { return this.experimentValue; } public void setExperimentValue(String experimentValue) { this.experimentValue = experimentValue; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } } } @Override public UpdateExperimentBasicInfoResponse getInstance(UnmarshallerContext context) { return UpdateExperimentBasicInfoResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/UpdateExperimentConfigRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class UpdateExperimentConfigRequest extends RoaAcsRequest<UpdateExperimentConfigResponse> { private String instanceId; private String sceneId; private String experimentId; public UpdateExperimentConfigRequest() { super("Airec", "2020-11-26", "UpdateExperimentConfig", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/scenes/[sceneId]/experiments/[experimentId]/config"); setMethod(MethodType.PUT); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getSceneId() { return this.sceneId; } public void setSceneId(String sceneId) { this.sceneId = sceneId; if(sceneId != null){ putPathParameter("sceneId", sceneId); } } public String getExperimentId() { return this.experimentId; } public void setExperimentId(String experimentId) { this.experimentId = experimentId; if(experimentId != null){ putPathParameter("experimentId", experimentId); } } @Override public Class<UpdateExperimentConfigResponse> getResponseClass() { return UpdateExperimentConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/UpdateExperimentConfigResponse.java
/* * 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.airec.model.v20201126; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.UpdateExperimentConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateExperimentConfigResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Boolean base; private String onlineTime; private String offlineTime; private String description; private String status; private String name; private String experimentId; private List<Algorithm> algorithms; private List<String> buckets; public Boolean getBase() { return this.base; } public void setBase(Boolean base) { this.base = base; } public String getOnlineTime() { return this.onlineTime; } public void setOnlineTime(String onlineTime) { this.onlineTime = onlineTime; } public String getOfflineTime() { return this.offlineTime; } public void setOfflineTime(String offlineTime) { this.offlineTime = offlineTime; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getExperimentId() { return this.experimentId; } public void setExperimentId(String experimentId) { this.experimentId = experimentId; } public List<Algorithm> getAlgorithms() { return this.algorithms; } public void setAlgorithms(List<Algorithm> algorithms) { this.algorithms = algorithms; } public List<String> getBuckets() { return this.buckets; } public void setBuckets(List<String> buckets) { this.buckets = buckets; } public static class Algorithm { private String key; private String defaultValue; private String type; private String experimentValue; private Boolean hasConfig; private String category; private String name; private List<ConfigItem> config; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getDefaultValue() { return this.defaultValue; } public void setDefaultValue(String defaultValue) { this.defaultValue = defaultValue; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getExperimentValue() { return this.experimentValue; } public void setExperimentValue(String experimentValue) { this.experimentValue = experimentValue; } public Boolean getHasConfig() { return this.hasConfig; } public void setHasConfig(Boolean hasConfig) { this.hasConfig = hasConfig; } public String getCategory() { return this.category; } public void setCategory(String category) { this.category = category; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public List<ConfigItem> getConfig() { return this.config; } public void setConfig(List<ConfigItem> config) { this.config = config; } public static class ConfigItem { private String key; private String defaultValue; private String experimentValue; private String name; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getDefaultValue() { return this.defaultValue; } public void setDefaultValue(String defaultValue) { this.defaultValue = defaultValue; } public String getExperimentValue() { return this.experimentValue; } public void setExperimentValue(String experimentValue) { this.experimentValue = experimentValue; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } } } @Override public UpdateExperimentConfigResponse getInstance(UnmarshallerContext context) { return UpdateExperimentConfigResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/UpdateExperimentStatusRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class UpdateExperimentStatusRequest extends RoaAcsRequest<UpdateExperimentStatusResponse> { private String instanceId; private String sceneId; private String experimentId; public UpdateExperimentStatusRequest() { super("Airec", "2020-11-26", "UpdateExperimentStatus", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/scenes/[sceneId]/experiments/[experimentId]/status"); setMethod(MethodType.PUT); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getSceneId() { return this.sceneId; } public void setSceneId(String sceneId) { this.sceneId = sceneId; if(sceneId != null){ putPathParameter("sceneId", sceneId); } } public String getExperimentId() { return this.experimentId; } public void setExperimentId(String experimentId) { this.experimentId = experimentId; if(experimentId != null){ putPathParameter("experimentId", experimentId); } } @Override public Class<UpdateExperimentStatusResponse> getResponseClass() { return UpdateExperimentStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/UpdateExperimentStatusResponse.java
/* * 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.airec.model.v20201126; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.UpdateExperimentStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateExperimentStatusResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Boolean base; private String onlineTime; private String offlineTime; private String description; private String status; private String name; private String experimentId; private List<Algorithm> algorithms; private List<String> buckets; public Boolean getBase() { return this.base; } public void setBase(Boolean base) { this.base = base; } public String getOnlineTime() { return this.onlineTime; } public void setOnlineTime(String onlineTime) { this.onlineTime = onlineTime; } public String getOfflineTime() { return this.offlineTime; } public void setOfflineTime(String offlineTime) { this.offlineTime = offlineTime; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getExperimentId() { return this.experimentId; } public void setExperimentId(String experimentId) { this.experimentId = experimentId; } public List<Algorithm> getAlgorithms() { return this.algorithms; } public void setAlgorithms(List<Algorithm> algorithms) { this.algorithms = algorithms; } public List<String> getBuckets() { return this.buckets; } public void setBuckets(List<String> buckets) { this.buckets = buckets; } public static class Algorithm { private String key; private String defaultValue; private String type; private String experimentValue; private Boolean hasConfig; private String category; private String name; private List<ConfigItem> config; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getDefaultValue() { return this.defaultValue; } public void setDefaultValue(String defaultValue) { this.defaultValue = defaultValue; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getExperimentValue() { return this.experimentValue; } public void setExperimentValue(String experimentValue) { this.experimentValue = experimentValue; } public Boolean getHasConfig() { return this.hasConfig; } public void setHasConfig(Boolean hasConfig) { this.hasConfig = hasConfig; } public String getCategory() { return this.category; } public void setCategory(String category) { this.category = category; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public List<ConfigItem> getConfig() { return this.config; } public void setConfig(List<ConfigItem> config) { this.config = config; } public static class ConfigItem { private String key; private String defaultValue; private String experimentValue; private String name; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getDefaultValue() { return this.defaultValue; } public void setDefaultValue(String defaultValue) { this.defaultValue = defaultValue; } public String getExperimentValue() { return this.experimentValue; } public void setExperimentValue(String experimentValue) { this.experimentValue = experimentValue; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } } } @Override public UpdateExperimentStatusResponse getInstance(UnmarshallerContext context) { return UpdateExperimentStatusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/UpgradeInstanceRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class UpgradeInstanceRequest extends RoaAcsRequest<UpgradeInstanceResponse> { private String instanceId; public UpgradeInstanceRequest() { super("Airec", "2020-11-26", "UpgradeInstance", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/actions/upgrade"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } @Override public Class<UpgradeInstanceResponse> getResponseClass() { return UpgradeInstanceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/UpgradeInstanceResponse.java
/* * 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.airec.model.v20201126; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.UpgradeInstanceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpgradeInstanceResponse extends AcsResponse { private String code; private String requestId; private String message; private Result result; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String instanceId; public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } } @Override public UpgradeInstanceResponse getInstance(UnmarshallerContext context) { return UpgradeInstanceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/ValidateInstanceRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class ValidateInstanceRequest extends RoaAcsRequest<ValidateInstanceResponse> { private String instanceId; public ValidateInstanceRequest() { super("Airec", "2020-11-26", "ValidateInstance", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/actions/validate"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } @Override public Class<ValidateInstanceResponse> getResponseClass() { return ValidateInstanceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/ValidateInstanceResponse.java
/* * 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.airec.model.v20201126; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.ValidateInstanceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ValidateInstanceResponse extends AcsResponse { private Boolean result; private String code; private String requestId; private String message; public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public ValidateInstanceResponse getInstance(UnmarshallerContext context) { return ValidateInstanceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/VerifyRankingSystemRequest.java
/* * 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.airec.model.v20201126; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.airec.Endpoint; /** * @author auto create * @version */ public class VerifyRankingSystemRequest extends RoaAcsRequest<VerifyRankingSystemResponse> { private String instanceId; private String name; private String body; public VerifyRankingSystemRequest() { super("Airec", "2020-11-26", "VerifyRankingSystem", "airec"); setUriPattern("/v2/openapi/instances/[instanceId]/ranking-systems/[name]/actions/verify"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putPathParameter("instanceId", instanceId); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putPathParameter("name", name); } } public String getBody() { return this.body; } public void setBody(String body) { this.body = body; if(body != null){ putBodyParameter("body", body); } } @Override public Class<VerifyRankingSystemResponse> getResponseClass() { return VerifyRankingSystemResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/model/v20201126/VerifyRankingSystemResponse.java
/* * 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.airec.model.v20201126; import com.aliyuncs.AcsResponse; import com.aliyuncs.airec.transform.v20201126.VerifyRankingSystemResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class VerifyRankingSystemResponse extends AcsResponse { private String requestId; private String result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getResult() { return this.result; } public void setResult(String result) { this.result = result; } @Override public VerifyRankingSystemResponse getInstance(UnmarshallerContext context) { return VerifyRankingSystemResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/AttachDatasetResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.AttachDatasetResponse; import com.aliyuncs.airec.model.v20201126.AttachDatasetResponse.Result; import com.aliyuncs.transform.UnmarshallerContext; public class AttachDatasetResponseUnmarshaller { public static AttachDatasetResponse unmarshall(AttachDatasetResponse attachDatasetResponse, UnmarshallerContext _ctx) { attachDatasetResponse.setCode(_ctx.stringValue("AttachDatasetResponse.code")); attachDatasetResponse.setRequestId(_ctx.stringValue("AttachDatasetResponse.requestId")); attachDatasetResponse.setMessage(_ctx.stringValue("AttachDatasetResponse.message")); Result result = new Result(); result.setVersionId(_ctx.stringValue("AttachDatasetResponse.result.versionId")); result.setState(_ctx.stringValue("AttachDatasetResponse.result.state")); result.setGmtModified(_ctx.longValue("AttachDatasetResponse.result.gmtModified")); result.setGmtCreate(_ctx.longValue("AttachDatasetResponse.result.gmtCreate")); result.setInstanceId(_ctx.stringValue("AttachDatasetResponse.result.instanceId")); attachDatasetResponse.setResult(result); return attachDatasetResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/AttachIndexVersionResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.AttachIndexVersionResponse; import com.aliyuncs.transform.UnmarshallerContext; public class AttachIndexVersionResponseUnmarshaller { public static AttachIndexVersionResponse unmarshall(AttachIndexVersionResponse attachIndexVersionResponse, UnmarshallerContext _ctx) { attachIndexVersionResponse.setResult(_ctx.booleanValue("AttachIndexVersionResponse.result")); attachIndexVersionResponse.setRequestId(_ctx.stringValue("AttachIndexVersionResponse.requestId")); return attachIndexVersionResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/CheckRankingModelReachableResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.CheckRankingModelReachableResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CheckRankingModelReachableResponseUnmarshaller { public static CheckRankingModelReachableResponse unmarshall(CheckRankingModelReachableResponse checkRankingModelReachableResponse, UnmarshallerContext _ctx) { checkRankingModelReachableResponse.setResult(_ctx.booleanValue("CheckRankingModelReachableResponse.result")); checkRankingModelReachableResponse.setCode(_ctx.stringValue("CheckRankingModelReachableResponse.code")); checkRankingModelReachableResponse.setRequestId(_ctx.stringValue("CheckRankingModelReachableResponse.requestId")); checkRankingModelReachableResponse.setMessage(_ctx.stringValue("CheckRankingModelReachableResponse.message")); return checkRankingModelReachableResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/CloneExperimentResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import java.util.ArrayList; import java.util.List; import com.aliyuncs.airec.model.v20201126.CloneExperimentResponse; import com.aliyuncs.airec.model.v20201126.CloneExperimentResponse.Result; import com.aliyuncs.airec.model.v20201126.CloneExperimentResponse.Result.Algorithm; import com.aliyuncs.airec.model.v20201126.CloneExperimentResponse.Result.Algorithm.ConfigItem; import com.aliyuncs.transform.UnmarshallerContext; public class CloneExperimentResponseUnmarshaller { public static CloneExperimentResponse unmarshall(CloneExperimentResponse cloneExperimentResponse, UnmarshallerContext _ctx) { cloneExperimentResponse.setRequestId(_ctx.stringValue("CloneExperimentResponse.requestId")); Result result = new Result(); result.setBase(_ctx.booleanValue("CloneExperimentResponse.result.base")); result.setOnlineTime(_ctx.stringValue("CloneExperimentResponse.result.onlineTime")); result.setOfflineTime(_ctx.stringValue("CloneExperimentResponse.result.offlineTime")); result.setDescription(_ctx.stringValue("CloneExperimentResponse.result.description")); result.setStatus(_ctx.stringValue("CloneExperimentResponse.result.status")); result.setName(_ctx.stringValue("CloneExperimentResponse.result.name")); result.setExperimentId(_ctx.stringValue("CloneExperimentResponse.result.experimentId")); List<String> buckets = new ArrayList<String>(); for (int i = 0; i < _ctx.lengthValue("CloneExperimentResponse.result.buckets.Length"); i++) { buckets.add(_ctx.stringValue("CloneExperimentResponse.result.buckets["+ i +"]")); } result.setBuckets(buckets); List<Algorithm> algorithms = new ArrayList<Algorithm>(); for (int i = 0; i < _ctx.lengthValue("CloneExperimentResponse.result.algorithms.Length"); i++) { Algorithm algorithm = new Algorithm(); algorithm.setKey(_ctx.stringValue("CloneExperimentResponse.result.algorithms["+ i +"].key")); algorithm.setDefaultValue(_ctx.stringValue("CloneExperimentResponse.result.algorithms["+ i +"].defaultValue")); algorithm.setType(_ctx.stringValue("CloneExperimentResponse.result.algorithms["+ i +"].type")); algorithm.setExperimentValue(_ctx.stringValue("CloneExperimentResponse.result.algorithms["+ i +"].experimentValue")); algorithm.setHasConfig(_ctx.booleanValue("CloneExperimentResponse.result.algorithms["+ i +"].hasConfig")); algorithm.setCategory(_ctx.stringValue("CloneExperimentResponse.result.algorithms["+ i +"].category")); algorithm.setName(_ctx.stringValue("CloneExperimentResponse.result.algorithms["+ i +"].name")); List<ConfigItem> config = new ArrayList<ConfigItem>(); for (int j = 0; j < _ctx.lengthValue("CloneExperimentResponse.result.algorithms["+ i +"].config.Length"); j++) { ConfigItem configItem = new ConfigItem(); configItem.setKey(_ctx.stringValue("CloneExperimentResponse.result.algorithms["+ i +"].config["+ j +"].key")); configItem.setDefaultValue(_ctx.stringValue("CloneExperimentResponse.result.algorithms["+ i +"].config["+ j +"].defaultValue")); configItem.setExperimentValue(_ctx.stringValue("CloneExperimentResponse.result.algorithms["+ i +"].config["+ j +"].experimentValue")); configItem.setName(_ctx.stringValue("CloneExperimentResponse.result.algorithms["+ i +"].config["+ j +"].name")); config.add(configItem); } algorithm.setConfig(config); algorithms.add(algorithm); } result.setAlgorithms(algorithms); cloneExperimentResponse.setResult(result); return cloneExperimentResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/CloneSampleResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import java.util.ArrayList; import java.util.List; import com.aliyuncs.airec.model.v20201126.CloneSampleResponse; import com.aliyuncs.airec.model.v20201126.CloneSampleResponse.Result; import com.aliyuncs.airec.model.v20201126.CloneSampleResponse.Result.Meta; import com.aliyuncs.airec.model.v20201126.CloneSampleResponse.Result.Meta.Config; import com.aliyuncs.airec.model.v20201126.CloneSampleResponse.Result.Meta.Config.FeatureConfig; import com.aliyuncs.airec.model.v20201126.CloneSampleResponse.Result.Meta.Config.LabelLogic; import com.aliyuncs.airec.model.v20201126.CloneSampleResponse.Result.Meta.Config.WeightLogicListItem; import com.aliyuncs.airec.model.v20201126.CloneSampleResponse.Result.Meta.ExtendParams; import com.aliyuncs.transform.UnmarshallerContext; public class CloneSampleResponseUnmarshaller { public static CloneSampleResponse unmarshall(CloneSampleResponse cloneSampleResponse, UnmarshallerContext _ctx) { cloneSampleResponse.setRequestId(_ctx.stringValue("CloneSampleResponse.requestId")); Result result = new Result(); result.setStatus(_ctx.stringValue("CloneSampleResponse.result.Status")); result.setGmtCreate(_ctx.stringValue("CloneSampleResponse.result.GmtCreate")); result.setGmtModified(_ctx.stringValue("CloneSampleResponse.result.GmtModified")); result.setSampleId(_ctx.stringValue("CloneSampleResponse.result.SampleId")); Meta meta = new Meta(); meta.setAutoUpdate(_ctx.booleanValue("CloneSampleResponse.result.Meta.AutoUpdate")); meta.setAutoUpdateFrequency(_ctx.longValue("CloneSampleResponse.result.Meta.AutoUpdateFrequency")); meta.setClonedId(_ctx.stringValue("CloneSampleResponse.result.Meta.ClonedId")); meta.setMetaType(_ctx.stringValue("CloneSampleResponse.result.Meta.MetaType")); meta.setName(_ctx.stringValue("CloneSampleResponse.result.Meta.Name")); meta.setStoreConfig(_ctx.stringValue("CloneSampleResponse.result.Meta.StoreConfig")); meta.setType(_ctx.stringValue("CloneSampleResponse.result.Meta.Type")); Config config = new Config(); List<String> bhvTableSourceIds = new ArrayList<String>(); for (int i = 0; i < _ctx.lengthValue("CloneSampleResponse.result.Meta.Config.BhvTableSourceIds.Length"); i++) { bhvTableSourceIds.add(_ctx.stringValue("CloneSampleResponse.result.Meta.Config.BhvTableSourceIds["+ i +"]")); } config.setBhvTableSourceIds(bhvTableSourceIds); FeatureConfig featureConfig = new FeatureConfig(); featureConfig.setItemFeatures(_ctx.stringValue("CloneSampleResponse.result.Meta.Config.FeatureConfig.ItemFeatures")); featureConfig.setUserFeatures(_ctx.stringValue("CloneSampleResponse.result.Meta.Config.FeatureConfig.UserFeatures")); config.setFeatureConfig(featureConfig); LabelLogic labelLogic = new LabelLogic(); labelLogic.setBhvTimeWindow(_ctx.longValue("CloneSampleResponse.result.Meta.Config.LabelLogic.BhvTimeWindow")); labelLogic.setNegativeBhvTypes(_ctx.stringValue("CloneSampleResponse.result.Meta.Config.LabelLogic.NegativeBhvTypes")); labelLogic.setPositiveBhvTypes(_ctx.stringValue("CloneSampleResponse.result.Meta.Config.LabelLogic.PositiveBhvTypes")); config.setLabelLogic(labelLogic); List<WeightLogicListItem> weightLogicList = new ArrayList<WeightLogicListItem>(); for (int i = 0; i < _ctx.lengthValue("CloneSampleResponse.result.Meta.Config.WeightLogicList.Length"); i++) { WeightLogicListItem weightLogicListItem = new WeightLogicListItem(); weightLogicListItem.setBhv(_ctx.stringValue("CloneSampleResponse.result.Meta.Config.WeightLogicList["+ i +"].Bhv")); weightLogicListItem.setWeight(_ctx.stringValue("CloneSampleResponse.result.Meta.Config.WeightLogicList["+ i +"].Weight")); weightLogicList.add(weightLogicListItem); } config.setWeightLogicList(weightLogicList); meta.setConfig(config); ExtendParams extendParams = new ExtendParams(); extendParams.setLatestTaskStatus(_ctx.longValue("CloneSampleResponse.result.Meta.ExtendParams.LatestTaskStatus")); extendParams.setSampleCount(_ctx.longValue("CloneSampleResponse.result.Meta.ExtendParams.SampleCount")); meta.setExtendParams(extendParams); result.setMeta(meta); cloneSampleResponse.setResult(result); return cloneSampleResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/ColdStartRankResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import java.util.ArrayList; import java.util.List; import com.aliyuncs.airec.model.v20201126.ColdStartRankResponse; import com.aliyuncs.airec.model.v20201126.ColdStartRankResponse.ResultItem; import com.aliyuncs.transform.UnmarshallerContext; public class ColdStartRankResponseUnmarshaller { public static ColdStartRankResponse unmarshall(ColdStartRankResponse coldStartRankResponse, UnmarshallerContext _ctx) { coldStartRankResponse.setRequestId(_ctx.stringValue("ColdStartRankResponse.requestId")); List<ResultItem> result = new ArrayList<ResultItem>(); for (int i = 0; i < _ctx.lengthValue("ColdStartRankResponse.result.Length"); i++) { ResultItem resultItem = new ResultItem(); resultItem.setItemId(_ctx.stringValue("ColdStartRankResponse.result["+ i +"].itemId")); resultItem.setItemType(_ctx.stringValue("ColdStartRankResponse.result["+ i +"].itemType")); resultItem.setTraceInfo(_ctx.stringValue("ColdStartRankResponse.result["+ i +"].traceInfo")); result.add(resultItem); } coldStartRankResponse.setResult(result); return coldStartRankResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/CreateCustomAnalysisTaskResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.CreateCustomAnalysisTaskResponse; import java.util.Map; import com.aliyuncs.transform.UnmarshallerContext; public class CreateCustomAnalysisTaskResponseUnmarshaller { public static CreateCustomAnalysisTaskResponse unmarshall(CreateCustomAnalysisTaskResponse createCustomAnalysisTaskResponse, UnmarshallerContext _ctx) { createCustomAnalysisTaskResponse.setRequestId(_ctx.stringValue("CreateCustomAnalysisTaskResponse.requestId")); createCustomAnalysisTaskResponse.setCode(_ctx.stringValue("CreateCustomAnalysisTaskResponse.code")); createCustomAnalysisTaskResponse.setMessage(_ctx.stringValue("CreateCustomAnalysisTaskResponse.message")); createCustomAnalysisTaskResponse.setResult(_ctx.mapValue("CreateCustomAnalysisTaskResponse.result")); return createCustomAnalysisTaskResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/CreateCustomSampleResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import java.util.ArrayList; import java.util.List; import com.aliyuncs.airec.model.v20201126.CreateCustomSampleResponse; import com.aliyuncs.airec.model.v20201126.CreateCustomSampleResponse.Result; import com.aliyuncs.airec.model.v20201126.CreateCustomSampleResponse.Result.Meta; import com.aliyuncs.airec.model.v20201126.CreateCustomSampleResponse.Result.Meta.Config; import com.aliyuncs.airec.model.v20201126.CreateCustomSampleResponse.Result.Meta.Config.FeatureConfig; import com.aliyuncs.airec.model.v20201126.CreateCustomSampleResponse.Result.Meta.Config.LabelLogic; import com.aliyuncs.airec.model.v20201126.CreateCustomSampleResponse.Result.Meta.Config.WeightLogicListItem; import com.aliyuncs.airec.model.v20201126.CreateCustomSampleResponse.Result.Meta.ExtendParams; import com.aliyuncs.transform.UnmarshallerContext; public class CreateCustomSampleResponseUnmarshaller { public static CreateCustomSampleResponse unmarshall(CreateCustomSampleResponse createCustomSampleResponse, UnmarshallerContext _ctx) { createCustomSampleResponse.setRequestId(_ctx.stringValue("CreateCustomSampleResponse.requestId")); Result result = new Result(); result.setStatus(_ctx.stringValue("CreateCustomSampleResponse.result.Status")); result.setGmtCreate(_ctx.stringValue("CreateCustomSampleResponse.result.GmtCreate")); result.setGmtModified(_ctx.stringValue("CreateCustomSampleResponse.result.GmtModified")); result.setSampleId(_ctx.stringValue("CreateCustomSampleResponse.result.SampleId")); Meta meta = new Meta(); meta.setAutoUpdate(_ctx.booleanValue("CreateCustomSampleResponse.result.Meta.AutoUpdate")); meta.setAutoUpdateFrequency(_ctx.longValue("CreateCustomSampleResponse.result.Meta.AutoUpdateFrequency")); meta.setClonedId(_ctx.stringValue("CreateCustomSampleResponse.result.Meta.ClonedId")); meta.setMetaType(_ctx.stringValue("CreateCustomSampleResponse.result.Meta.MetaType")); meta.setName(_ctx.stringValue("CreateCustomSampleResponse.result.Meta.Name")); meta.setStoreConfig(_ctx.stringValue("CreateCustomSampleResponse.result.Meta.StoreConfig")); meta.setType(_ctx.stringValue("CreateCustomSampleResponse.result.Meta.Type")); Config config = new Config(); List<String> bhvTableSourceIds = new ArrayList<String>(); for (int i = 0; i < _ctx.lengthValue("CreateCustomSampleResponse.result.Meta.Config.BhvTableSourceIds.Length"); i++) { bhvTableSourceIds.add(_ctx.stringValue("CreateCustomSampleResponse.result.Meta.Config.BhvTableSourceIds["+ i +"]")); } config.setBhvTableSourceIds(bhvTableSourceIds); FeatureConfig featureConfig = new FeatureConfig(); featureConfig.setItemFeatures(_ctx.stringValue("CreateCustomSampleResponse.result.Meta.Config.FeatureConfig.ItemFeatures")); featureConfig.setUserFeatures(_ctx.stringValue("CreateCustomSampleResponse.result.Meta.Config.FeatureConfig.UserFeatures")); config.setFeatureConfig(featureConfig); LabelLogic labelLogic = new LabelLogic(); labelLogic.setBhvTimeWindow(_ctx.longValue("CreateCustomSampleResponse.result.Meta.Config.LabelLogic.BhvTimeWindow")); labelLogic.setNegativeBhvTypes(_ctx.stringValue("CreateCustomSampleResponse.result.Meta.Config.LabelLogic.NegativeBhvTypes")); labelLogic.setPositiveBhvTypes(_ctx.stringValue("CreateCustomSampleResponse.result.Meta.Config.LabelLogic.PositiveBhvTypes")); config.setLabelLogic(labelLogic); List<WeightLogicListItem> weightLogicList = new ArrayList<WeightLogicListItem>(); for (int i = 0; i < _ctx.lengthValue("CreateCustomSampleResponse.result.Meta.Config.WeightLogicList.Length"); i++) { WeightLogicListItem weightLogicListItem = new WeightLogicListItem(); weightLogicListItem.setBhv(_ctx.stringValue("CreateCustomSampleResponse.result.Meta.Config.WeightLogicList["+ i +"].Bhv")); weightLogicListItem.setWeight(_ctx.stringValue("CreateCustomSampleResponse.result.Meta.Config.WeightLogicList["+ i +"].Weight")); weightLogicList.add(weightLogicListItem); } config.setWeightLogicList(weightLogicList); meta.setConfig(config); ExtendParams extendParams = new ExtendParams(); extendParams.setLatestTaskStatus(_ctx.longValue("CreateCustomSampleResponse.result.Meta.ExtendParams.LatestTaskStatus")); extendParams.setSampleCount(_ctx.longValue("CreateCustomSampleResponse.result.Meta.ExtendParams.SampleCount")); meta.setExtendParams(extendParams); result.setMeta(meta); createCustomSampleResponse.setResult(result); return createCustomSampleResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/CreateDataDiagnoseTaskResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.CreateDataDiagnoseTaskResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateDataDiagnoseTaskResponseUnmarshaller { public static CreateDataDiagnoseTaskResponse unmarshall(CreateDataDiagnoseTaskResponse createDataDiagnoseTaskResponse, UnmarshallerContext _ctx) { createDataDiagnoseTaskResponse.setRequestId(_ctx.stringValue("CreateDataDiagnoseTaskResponse.requestId")); createDataDiagnoseTaskResponse.setResult(_ctx.booleanValue("CreateDataDiagnoseTaskResponse.result")); return createDataDiagnoseTaskResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/CreateExtraDataSourceResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.CreateExtraDataSourceResponse; import com.aliyuncs.airec.model.v20201126.CreateExtraDataSourceResponse.Result; import com.aliyuncs.airec.model.v20201126.CreateExtraDataSourceResponse.Result.Meta; import com.aliyuncs.transform.UnmarshallerContext; public class CreateExtraDataSourceResponseUnmarshaller { public static CreateExtraDataSourceResponse unmarshall(CreateExtraDataSourceResponse createExtraDataSourceResponse, UnmarshallerContext _ctx) { createExtraDataSourceResponse.setRequestId(_ctx.stringValue("CreateExtraDataSourceResponse.requestId")); Result result = new Result(); result.setStatus(_ctx.stringValue("CreateExtraDataSourceResponse.result.Status")); result.setType(_ctx.stringValue("CreateExtraDataSourceResponse.result.Type")); result.setGmtCreate(_ctx.stringValue("CreateExtraDataSourceResponse.result.GmtCreate")); result.setGmtModified(_ctx.stringValue("CreateExtraDataSourceResponse.result.GmtModified")); result.setDataSourceId(_ctx.stringValue("CreateExtraDataSourceResponse.result.DataSourceId")); Meta meta = new Meta(); meta.setInternal(_ctx.booleanValue("CreateExtraDataSourceResponse.result.Meta.Internal")); meta.setMetaType(_ctx.stringValue("CreateExtraDataSourceResponse.result.Meta.MetaType")); meta.setProjectName(_ctx.stringValue("CreateExtraDataSourceResponse.result.Meta.ProjectName")); meta.setTableName(_ctx.stringValue("CreateExtraDataSourceResponse.result.Meta.TableName")); meta.setType(_ctx.stringValue("CreateExtraDataSourceResponse.result.Meta.Type")); meta.setUpdateFrequency(_ctx.longValue("CreateExtraDataSourceResponse.result.Meta.UpdateFrequency")); result.setMeta(meta); createExtraDataSourceResponse.setResult(result); return createExtraDataSourceResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/CreateFilteringAlgorithmResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.CreateFilteringAlgorithmResponse; import com.aliyuncs.airec.model.v20201126.CreateFilteringAlgorithmResponse.Result; import com.aliyuncs.airec.model.v20201126.CreateFilteringAlgorithmResponse.Result.Meta; import com.aliyuncs.airec.model.v20201126.CreateFilteringAlgorithmResponse.Result.Meta.Threshold; import java.util.Map; import com.aliyuncs.transform.UnmarshallerContext; public class CreateFilteringAlgorithmResponseUnmarshaller { public static CreateFilteringAlgorithmResponse unmarshall(CreateFilteringAlgorithmResponse createFilteringAlgorithmResponse, UnmarshallerContext _ctx) { createFilteringAlgorithmResponse.setRequestId(_ctx.stringValue("CreateFilteringAlgorithmResponse.requestId")); Result result = new Result(); result.setGmtModified(_ctx.stringValue("CreateFilteringAlgorithmResponse.result.gmtModified")); result.setStatus(_ctx.stringValue("CreateFilteringAlgorithmResponse.result.status")); result.setGmtCreate(_ctx.stringValue("CreateFilteringAlgorithmResponse.result.gmtCreate")); result.setAlgorithmId(_ctx.stringValue("CreateFilteringAlgorithmResponse.result.algorithmId")); Meta meta = new Meta(); meta.setType(_ctx.stringValue("CreateFilteringAlgorithmResponse.result.meta.type")); meta.setExtInfo(_ctx.mapValue("CreateFilteringAlgorithmResponse.result.meta.extInfo")); meta.setCategory(_ctx.stringValue("CreateFilteringAlgorithmResponse.result.meta.category")); meta.setStatus(_ctx.stringValue("CreateFilteringAlgorithmResponse.result.meta.status")); meta.setGmtCreate(_ctx.stringValue("CreateFilteringAlgorithmResponse.result.meta.gmtCreate")); meta.setTableName(_ctx.stringValue("CreateFilteringAlgorithmResponse.result.meta.tableName")); meta.setCron(_ctx.stringValue("CreateFilteringAlgorithmResponse.result.meta.cron")); meta.setDescription(_ctx.stringValue("CreateFilteringAlgorithmResponse.result.meta.description")); meta.setGmtModified(_ctx.stringValue("CreateFilteringAlgorithmResponse.result.meta.gmtModified")); meta.setProjectName(_ctx.stringValue("CreateFilteringAlgorithmResponse.result.meta.projectName")); meta.setAlgorithmName(_ctx.stringValue("CreateFilteringAlgorithmResponse.result.meta.algorithmName")); meta.setCronEnabled(_ctx.booleanValue("CreateFilteringAlgorithmResponse.result.meta.cronEnabled")); Threshold threshold = new Threshold(); threshold.setSourceDataSizeThreshold(_ctx.integerValue("CreateFilteringAlgorithmResponse.result.meta.threshold.sourceDataSizeThreshold")); threshold.setSourceDataRecordThreshold(_ctx.integerValue("CreateFilteringAlgorithmResponse.result.meta.threshold.sourceDataRecordThreshold")); threshold.setIndexSizeThreshold(_ctx.integerValue("CreateFilteringAlgorithmResponse.result.meta.threshold.indexSizeThreshold")); threshold.setIndexLossThreshold(_ctx.integerValue("CreateFilteringAlgorithmResponse.result.meta.threshold.indexLossThreshold")); meta.setThreshold(threshold); result.setMeta(meta); createFilteringAlgorithmResponse.setResult(result); return createFilteringAlgorithmResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/CreateFlowControlTaskResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.CreateFlowControlTaskResponse; import com.aliyuncs.airec.model.v20201126.CreateFlowControlTaskResponse.Result; import com.aliyuncs.transform.UnmarshallerContext; public class CreateFlowControlTaskResponseUnmarshaller { public static CreateFlowControlTaskResponse unmarshall(CreateFlowControlTaskResponse createFlowControlTaskResponse, UnmarshallerContext _ctx) { createFlowControlTaskResponse.setCode(_ctx.stringValue("CreateFlowControlTaskResponse.code")); createFlowControlTaskResponse.setRequestId(_ctx.stringValue("CreateFlowControlTaskResponse.requestId")); createFlowControlTaskResponse.setMessage(_ctx.stringValue("CreateFlowControlTaskResponse.message")); Result result = new Result(); result.setTaskId(_ctx.stringValue("CreateFlowControlTaskResponse.result.taskId")); result.setGmtModified(_ctx.stringValue("CreateFlowControlTaskResponse.result.gmtModified")); result.setStatus(_ctx.stringValue("CreateFlowControlTaskResponse.result.status")); result.setGmtCreate(_ctx.stringValue("CreateFlowControlTaskResponse.result.gmtCreate")); createFlowControlTaskResponse.setResult(result); return createFlowControlTaskResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/CreateInstanceResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.CreateInstanceResponse; import com.aliyuncs.airec.model.v20201126.CreateInstanceResponse.Result; import com.aliyuncs.transform.UnmarshallerContext; public class CreateInstanceResponseUnmarshaller { public static CreateInstanceResponse unmarshall(CreateInstanceResponse createInstanceResponse, UnmarshallerContext _ctx) { createInstanceResponse.setCode(_ctx.stringValue("CreateInstanceResponse.code")); createInstanceResponse.setRequestId(_ctx.stringValue("CreateInstanceResponse.requestId")); createInstanceResponse.setMessage(_ctx.stringValue("CreateInstanceResponse.message")); Result result = new Result(); result.setInstanceId(_ctx.stringValue("CreateInstanceResponse.result.instanceId")); createInstanceResponse.setResult(result); return createInstanceResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/CreateRankingModelResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.CreateRankingModelResponse; import com.aliyuncs.airec.model.v20201126.CreateRankingModelResponse.Result; import java.util.Map; import com.aliyuncs.transform.UnmarshallerContext; public class CreateRankingModelResponseUnmarshaller { public static CreateRankingModelResponse unmarshall(CreateRankingModelResponse createRankingModelResponse, UnmarshallerContext _ctx) { createRankingModelResponse.setCode(_ctx.stringValue("CreateRankingModelResponse.code")); createRankingModelResponse.setRequestId(_ctx.stringValue("CreateRankingModelResponse.requestId")); createRankingModelResponse.setMessage(_ctx.stringValue("CreateRankingModelResponse.message")); Result result = new Result(); result.setRankingModelId(_ctx.stringValue("CreateRankingModelResponse.result.rankingModelId")); result.setGmtModified(_ctx.stringValue("CreateRankingModelResponse.result.gmtModified")); result.setGmtCreate(_ctx.stringValue("CreateRankingModelResponse.result.gmtCreate")); result.setMeta(_ctx.mapValue("CreateRankingModelResponse.result.meta")); createRankingModelResponse.setResult(result); return createRankingModelResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/CreateRankingModelTemplateResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.CreateRankingModelTemplateResponse; import com.aliyuncs.airec.model.v20201126.CreateRankingModelTemplateResponse.Result; import com.aliyuncs.airec.model.v20201126.CreateRankingModelTemplateResponse.Result.Meta; import com.aliyuncs.transform.UnmarshallerContext; public class CreateRankingModelTemplateResponseUnmarshaller { public static CreateRankingModelTemplateResponse unmarshall(CreateRankingModelTemplateResponse createRankingModelTemplateResponse, UnmarshallerContext _ctx) { createRankingModelTemplateResponse.setRequestId(_ctx.stringValue("CreateRankingModelTemplateResponse.requestId")); Result result = new Result(); result.setStatus(_ctx.stringValue("CreateRankingModelTemplateResponse.result.Status")); result.setVersionNum(_ctx.longValue("CreateRankingModelTemplateResponse.result.VersionNum")); result.setTemplateId(_ctx.stringValue("CreateRankingModelTemplateResponse.result.TemplateId")); Meta meta = new Meta(); meta.setAuthorized(_ctx.booleanValue("CreateRankingModelTemplateResponse.result.Meta.Authorized")); meta.setAutoRun(_ctx.booleanValue("CreateRankingModelTemplateResponse.result.Meta.AutoRun")); meta.setAutoRunTime(_ctx.longValue("CreateRankingModelTemplateResponse.result.Meta.AutoRunTime")); meta.setAutoRunType(_ctx.stringValue("CreateRankingModelTemplateResponse.result.Meta.AutoRunType")); meta.setConf(_ctx.stringValue("CreateRankingModelTemplateResponse.result.Meta.Conf")); meta.setLastEditTime(_ctx.stringValue("CreateRankingModelTemplateResponse.result.Meta.LastEditTime")); meta.setOssArn(_ctx.stringValue("CreateRankingModelTemplateResponse.result.Meta.OssArn")); meta.setOssBucket(_ctx.stringValue("CreateRankingModelTemplateResponse.result.Meta.OssBucket")); meta.setOssEndpoint(_ctx.stringValue("CreateRankingModelTemplateResponse.result.Meta.OssEndpoint")); meta.setSampleId(_ctx.stringValue("CreateRankingModelTemplateResponse.result.Meta.SampleId")); meta.setSampleName(_ctx.stringValue("CreateRankingModelTemplateResponse.result.Meta.SampleName")); meta.setSampleTimeWindow(_ctx.longValue("CreateRankingModelTemplateResponse.result.Meta.SampleTimeWindow")); meta.setSampleTimeWindowType(_ctx.stringValue("CreateRankingModelTemplateResponse.result.Meta.SampleTimeWindowType")); meta.setType(_ctx.stringValue("CreateRankingModelTemplateResponse.result.Meta.Type")); meta.setName(_ctx.stringValue("CreateRankingModelTemplateResponse.result.Meta.Name")); meta.setDeployStatus(_ctx.stringValue("CreateRankingModelTemplateResponse.result.Meta.DeployStatus")); meta.setCanDeploy(_ctx.booleanValue("CreateRankingModelTemplateResponse.result.Meta.CanDeploy")); result.setMeta(meta); createRankingModelTemplateResponse.setResult(result); return createRankingModelTemplateResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/CreateRankingSystemResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import java.util.ArrayList; import java.util.List; import com.aliyuncs.airec.model.v20201126.CreateRankingSystemResponse; import com.aliyuncs.airec.model.v20201126.CreateRankingSystemResponse.Result; import com.aliyuncs.airec.model.v20201126.CreateRankingSystemResponse.Result.Meta; import com.aliyuncs.airec.model.v20201126.CreateRankingSystemResponse.Result.Meta.PredictEngine; import com.aliyuncs.transform.UnmarshallerContext; public class CreateRankingSystemResponseUnmarshaller { public static CreateRankingSystemResponse unmarshall(CreateRankingSystemResponse createRankingSystemResponse, UnmarshallerContext _ctx) { createRankingSystemResponse.setRequestId(_ctx.stringValue("CreateRankingSystemResponse.requestId")); Result result = new Result(); result.setApplyStatus(_ctx.stringValue("CreateRankingSystemResponse.result.ApplyStatus")); result.setDeployStatus(_ctx.stringValue("CreateRankingSystemResponse.result.DeployStatus")); result.setName(_ctx.stringValue("CreateRankingSystemResponse.result.Name")); result.setModelTemplateId(_ctx.stringValue("CreateRankingSystemResponse.result.ModelTemplateId")); List<Long> sceneIdList = new ArrayList<Long>(); for (int i = 0; i < _ctx.lengthValue("CreateRankingSystemResponse.result.SceneIdList.Length"); i++) { sceneIdList.add(_ctx.longValue("CreateRankingSystemResponse.result.SceneIdList["+ i +"]")); } result.setSceneIdList(sceneIdList); Meta meta = new Meta(); meta.setAutoDeploy(_ctx.booleanValue("CreateRankingSystemResponse.result.Meta.AutoDeploy")); meta.setAutoDeployAuc(_ctx.stringValue("CreateRankingSystemResponse.result.Meta.AutoDeployAuc")); meta.setConf(_ctx.stringValue("CreateRankingSystemResponse.result.Meta.Conf")); meta.setPredictEngineType(_ctx.stringValue("CreateRankingSystemResponse.result.Meta.PredictEngineType")); meta.setModelVersionName(_ctx.stringValue("CreateRankingSystemResponse.result.Meta.ModelVersionName")); meta.setFailMsg(_ctx.stringValue("CreateRankingSystemResponse.result.Meta.FailMsg")); PredictEngine predictEngine = new PredictEngine(); predictEngine.setResourceId(_ctx.stringValue("CreateRankingSystemResponse.result.Meta.PredictEngine.ResourceId")); predictEngine.setVersion(_ctx.stringValue("CreateRankingSystemResponse.result.Meta.PredictEngine.Version")); predictEngine.setClusterId(_ctx.stringValue("CreateRankingSystemResponse.result.Meta.PredictEngine.ClusterId")); meta.setPredictEngine(predictEngine); result.setMeta(meta); createRankingSystemResponse.setResult(result); return createRankingSystemResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/CreateRuleResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.CreateRuleResponse; import com.aliyuncs.airec.model.v20201126.CreateRuleResponse.Result; import com.aliyuncs.transform.UnmarshallerContext; public class CreateRuleResponseUnmarshaller { public static CreateRuleResponse unmarshall(CreateRuleResponse createRuleResponse, UnmarshallerContext _ctx) { createRuleResponse.setCode(_ctx.stringValue("CreateRuleResponse.code")); createRuleResponse.setRequestId(_ctx.stringValue("CreateRuleResponse.requestId")); createRuleResponse.setMessage(_ctx.stringValue("CreateRuleResponse.message")); Result result = new Result(); result.setRuleId(_ctx.stringValue("CreateRuleResponse.result.ruleId")); result.setGmtModified(_ctx.stringValue("CreateRuleResponse.result.gmtModified")); result.setStatus(_ctx.stringValue("CreateRuleResponse.result.status")); result.setGmtCreate(_ctx.stringValue("CreateRuleResponse.result.gmtCreate")); createRuleResponse.setResult(result); return createRuleResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/CreateSampleFormatConfigResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.CreateSampleFormatConfigResponse; import java.util.Map; import com.aliyuncs.transform.UnmarshallerContext; public class CreateSampleFormatConfigResponseUnmarshaller { public static CreateSampleFormatConfigResponse unmarshall(CreateSampleFormatConfigResponse createSampleFormatConfigResponse, UnmarshallerContext _ctx) { createSampleFormatConfigResponse.setRequestId(_ctx.stringValue("CreateSampleFormatConfigResponse.requestId")); createSampleFormatConfigResponse.setResult(_ctx.mapValue("CreateSampleFormatConfigResponse.result")); return createSampleFormatConfigResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/CreateSceneResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.CreateSceneResponse; import com.aliyuncs.airec.model.v20201126.CreateSceneResponse.Result; import com.aliyuncs.transform.UnmarshallerContext; public class CreateSceneResponseUnmarshaller { public static CreateSceneResponse unmarshall(CreateSceneResponse createSceneResponse, UnmarshallerContext _ctx) { createSceneResponse.setCode(_ctx.stringValue("CreateSceneResponse.code")); createSceneResponse.setRequestId(_ctx.stringValue("CreateSceneResponse.requestId")); createSceneResponse.setMessage(_ctx.stringValue("CreateSceneResponse.message")); Result result = new Result(); result.setSceneId(_ctx.stringValue("CreateSceneResponse.result.sceneId")); result.setGmtModified(_ctx.stringValue("CreateSceneResponse.result.gmtModified")); result.setStatus(_ctx.stringValue("CreateSceneResponse.result.status")); result.setGmtCreate(_ctx.stringValue("CreateSceneResponse.result.gmtCreate")); createSceneResponse.setResult(result); return createSceneResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/CreateUmengTokenResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.CreateUmengTokenResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateUmengTokenResponseUnmarshaller { public static CreateUmengTokenResponse unmarshall(CreateUmengTokenResponse createUmengTokenResponse, UnmarshallerContext _ctx) { createUmengTokenResponse.setResult(_ctx.booleanValue("CreateUmengTokenResponse.result")); createUmengTokenResponse.setCode(_ctx.stringValue("CreateUmengTokenResponse.code")); createUmengTokenResponse.setRequestId(_ctx.stringValue("CreateUmengTokenResponse.requestId")); createUmengTokenResponse.setMessage(_ctx.stringValue("CreateUmengTokenResponse.message")); return createUmengTokenResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/DecribeRankingModelResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.DecribeRankingModelResponse; import com.aliyuncs.airec.model.v20201126.DecribeRankingModelResponse.Result; import java.util.Map; import com.aliyuncs.transform.UnmarshallerContext; public class DecribeRankingModelResponseUnmarshaller { public static DecribeRankingModelResponse unmarshall(DecribeRankingModelResponse decribeRankingModelResponse, UnmarshallerContext _ctx) { decribeRankingModelResponse.setCode(_ctx.stringValue("DecribeRankingModelResponse.code")); decribeRankingModelResponse.setRequestId(_ctx.stringValue("DecribeRankingModelResponse.requestId")); decribeRankingModelResponse.setMessage(_ctx.stringValue("DecribeRankingModelResponse.message")); Result result = new Result(); result.setRankingModelId(_ctx.stringValue("DecribeRankingModelResponse.result.rankingModelId")); result.setGmtModified(_ctx.stringValue("DecribeRankingModelResponse.result.gmtModified")); result.setGmtCreate(_ctx.stringValue("DecribeRankingModelResponse.result.gmtCreate")); result.setMeta(_ctx.mapValue("DecribeRankingModelResponse.result.meta")); decribeRankingModelResponse.setResult(result); return decribeRankingModelResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/DeleteDataSetResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.DeleteDataSetResponse; import com.aliyuncs.airec.model.v20201126.DeleteDataSetResponse.Result; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteDataSetResponseUnmarshaller { public static DeleteDataSetResponse unmarshall(DeleteDataSetResponse deleteDataSetResponse, UnmarshallerContext _ctx) { deleteDataSetResponse.setCode(_ctx.stringValue("DeleteDataSetResponse.code")); deleteDataSetResponse.setRequestId(_ctx.stringValue("DeleteDataSetResponse.requestId")); deleteDataSetResponse.setMessage(_ctx.stringValue("DeleteDataSetResponse.message")); Result result = new Result(); result.setVersionId(_ctx.stringValue("DeleteDataSetResponse.result.versionId")); result.setState(_ctx.stringValue("DeleteDataSetResponse.result.state")); result.setGmtModified(_ctx.longValue("DeleteDataSetResponse.result.gmtModified")); result.setGmtCreate(_ctx.longValue("DeleteDataSetResponse.result.gmtCreate")); result.setInstanceId(_ctx.stringValue("DeleteDataSetResponse.result.instanceId")); deleteDataSetResponse.setResult(result); return deleteDataSetResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/DeleteExperimentResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.DeleteExperimentResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteExperimentResponseUnmarshaller { public static DeleteExperimentResponse unmarshall(DeleteExperimentResponse deleteExperimentResponse, UnmarshallerContext _ctx) { deleteExperimentResponse.setResult(_ctx.booleanValue("DeleteExperimentResponse.result")); deleteExperimentResponse.setRequestId(_ctx.stringValue("DeleteExperimentResponse.requestId")); return deleteExperimentResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/DeleteExtraDataSourceResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.DeleteExtraDataSourceResponse; import com.aliyuncs.airec.model.v20201126.DeleteExtraDataSourceResponse.Result; import com.aliyuncs.airec.model.v20201126.DeleteExtraDataSourceResponse.Result.Meta; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteExtraDataSourceResponseUnmarshaller { public static DeleteExtraDataSourceResponse unmarshall(DeleteExtraDataSourceResponse deleteExtraDataSourceResponse, UnmarshallerContext _ctx) { deleteExtraDataSourceResponse.setRequestId(_ctx.stringValue("DeleteExtraDataSourceResponse.requestId")); Result result = new Result(); result.setStatus(_ctx.stringValue("DeleteExtraDataSourceResponse.result.Status")); result.setType(_ctx.stringValue("DeleteExtraDataSourceResponse.result.Type")); result.setGmtCreate(_ctx.stringValue("DeleteExtraDataSourceResponse.result.GmtCreate")); result.setGmtModified(_ctx.stringValue("DeleteExtraDataSourceResponse.result.GmtModified")); result.setDataSourceId(_ctx.stringValue("DeleteExtraDataSourceResponse.result.DataSourceId")); Meta meta = new Meta(); meta.setInternal(_ctx.booleanValue("DeleteExtraDataSourceResponse.result.Meta.Internal")); meta.setMetaType(_ctx.stringValue("DeleteExtraDataSourceResponse.result.Meta.MetaType")); meta.setProjectName(_ctx.stringValue("DeleteExtraDataSourceResponse.result.Meta.ProjectName")); meta.setTableName(_ctx.stringValue("DeleteExtraDataSourceResponse.result.Meta.TableName")); meta.setType(_ctx.stringValue("DeleteExtraDataSourceResponse.result.Meta.Type")); meta.setUpdateFrequency(_ctx.longValue("DeleteExtraDataSourceResponse.result.Meta.UpdateFrequency")); result.setMeta(meta); deleteExtraDataSourceResponse.setResult(result); return deleteExtraDataSourceResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/DeleteFilteringAlgorithmResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.DeleteFilteringAlgorithmResponse; import com.aliyuncs.airec.model.v20201126.DeleteFilteringAlgorithmResponse.Result; import com.aliyuncs.airec.model.v20201126.DeleteFilteringAlgorithmResponse.Result.Meta; import com.aliyuncs.airec.model.v20201126.DeleteFilteringAlgorithmResponse.Result.Meta.ExtInfo; import com.aliyuncs.airec.model.v20201126.DeleteFilteringAlgorithmResponse.Result.Meta.Threshold; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteFilteringAlgorithmResponseUnmarshaller { public static DeleteFilteringAlgorithmResponse unmarshall(DeleteFilteringAlgorithmResponse deleteFilteringAlgorithmResponse, UnmarshallerContext _ctx) { deleteFilteringAlgorithmResponse.setRequestId(_ctx.stringValue("DeleteFilteringAlgorithmResponse.requestId")); Result result = new Result(); result.setGmtModified(_ctx.stringValue("DeleteFilteringAlgorithmResponse.result.gmtModified")); result.setStatus(_ctx.stringValue("DeleteFilteringAlgorithmResponse.result.status")); result.setGmtCreate(_ctx.stringValue("DeleteFilteringAlgorithmResponse.result.gmtCreate")); result.setAlgorithmId(_ctx.stringValue("DeleteFilteringAlgorithmResponse.result.algorithmId")); Meta meta = new Meta(); meta.setTaskId(_ctx.stringValue("DeleteFilteringAlgorithmResponse.result.meta.taskId")); meta.setMetaType(_ctx.stringValue("DeleteFilteringAlgorithmResponse.result.meta.metaType")); meta.setType(_ctx.stringValue("DeleteFilteringAlgorithmResponse.result.meta.type")); meta.setCategory(_ctx.stringValue("DeleteFilteringAlgorithmResponse.result.meta.category")); meta.setTableName(_ctx.stringValue("DeleteFilteringAlgorithmResponse.result.meta.tableName")); meta.setClusterId(_ctx.stringValue("DeleteFilteringAlgorithmResponse.result.meta.clusterId")); meta.setCron(_ctx.stringValue("DeleteFilteringAlgorithmResponse.result.meta.cron")); meta.setDescription(_ctx.stringValue("DeleteFilteringAlgorithmResponse.result.meta.description")); meta.setProjectName(_ctx.stringValue("DeleteFilteringAlgorithmResponse.result.meta.projectName")); meta.setAlgorithmName(_ctx.stringValue("DeleteFilteringAlgorithmResponse.result.meta.algorithmName")); meta.setCronEnabled(_ctx.booleanValue("DeleteFilteringAlgorithmResponse.result.meta.cronEnabled")); ExtInfo extInfo = new ExtInfo(); extInfo.setKvSeparator(_ctx.stringValue("DeleteFilteringAlgorithmResponse.result.meta.extInfo.kvSeparator")); extInfo.setItemSeparator(_ctx.stringValue("DeleteFilteringAlgorithmResponse.result.meta.extInfo.itemSeparator")); meta.setExtInfo(extInfo); Threshold threshold = new Threshold(); threshold.setSourceDataSizeThreshold(_ctx.integerValue("DeleteFilteringAlgorithmResponse.result.meta.threshold.sourceDataSizeThreshold")); threshold.setSourceDataRecordThreshold(_ctx.integerValue("DeleteFilteringAlgorithmResponse.result.meta.threshold.sourceDataRecordThreshold")); threshold.setIndexSizeThreshold(_ctx.integerValue("DeleteFilteringAlgorithmResponse.result.meta.threshold.indexSizeThreshold")); threshold.setIndexLossThreshold(_ctx.integerValue("DeleteFilteringAlgorithmResponse.result.meta.threshold.indexLossThreshold")); meta.setThreshold(threshold); result.setMeta(meta); deleteFilteringAlgorithmResponse.setResult(result); return deleteFilteringAlgorithmResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/DeleteFlowControlTaskResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.DeleteFlowControlTaskResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteFlowControlTaskResponseUnmarshaller { public static DeleteFlowControlTaskResponse unmarshall(DeleteFlowControlTaskResponse deleteFlowControlTaskResponse, UnmarshallerContext _ctx) { deleteFlowControlTaskResponse.setRequestId(_ctx.stringValue("DeleteFlowControlTaskResponse.requestId")); deleteFlowControlTaskResponse.setResult(_ctx.booleanValue("DeleteFlowControlTaskResponse.result")); return deleteFlowControlTaskResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/DeleteRankingModelResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.DeleteRankingModelResponse; import com.aliyuncs.airec.model.v20201126.DeleteRankingModelResponse.Result; import java.util.Map; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteRankingModelResponseUnmarshaller { public static DeleteRankingModelResponse unmarshall(DeleteRankingModelResponse deleteRankingModelResponse, UnmarshallerContext _ctx) { deleteRankingModelResponse.setCode(_ctx.stringValue("DeleteRankingModelResponse.code")); deleteRankingModelResponse.setRequestId(_ctx.stringValue("DeleteRankingModelResponse.requestId")); deleteRankingModelResponse.setMessage(_ctx.stringValue("DeleteRankingModelResponse.message")); Result result = new Result(); result.setRankingModelId(_ctx.stringValue("DeleteRankingModelResponse.result.rankingModelId")); result.setMeta(_ctx.mapValue("DeleteRankingModelResponse.result.meta")); deleteRankingModelResponse.setResult(result); return deleteRankingModelResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/DeleteRankingModelTemplateResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.DeleteRankingModelTemplateResponse; import com.aliyuncs.airec.model.v20201126.DeleteRankingModelTemplateResponse.Result; import com.aliyuncs.airec.model.v20201126.DeleteRankingModelTemplateResponse.Result.Meta; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteRankingModelTemplateResponseUnmarshaller { public static DeleteRankingModelTemplateResponse unmarshall(DeleteRankingModelTemplateResponse deleteRankingModelTemplateResponse, UnmarshallerContext _ctx) { deleteRankingModelTemplateResponse.setRequestId(_ctx.stringValue("DeleteRankingModelTemplateResponse.requestId")); Result result = new Result(); result.setStatus(_ctx.stringValue("DeleteRankingModelTemplateResponse.result.Status")); result.setVersionNum(_ctx.longValue("DeleteRankingModelTemplateResponse.result.VersionNum")); result.setTemplateId(_ctx.stringValue("DeleteRankingModelTemplateResponse.result.TemplateId")); Meta meta = new Meta(); meta.setAuthorized(_ctx.booleanValue("DeleteRankingModelTemplateResponse.result.Meta.Authorized")); meta.setAutoRun(_ctx.booleanValue("DeleteRankingModelTemplateResponse.result.Meta.AutoRun")); meta.setAutoRunTime(_ctx.longValue("DeleteRankingModelTemplateResponse.result.Meta.AutoRunTime")); meta.setAutoRunType(_ctx.stringValue("DeleteRankingModelTemplateResponse.result.Meta.AutoRunType")); meta.setConf(_ctx.stringValue("DeleteRankingModelTemplateResponse.result.Meta.Conf")); meta.setLastEditTime(_ctx.stringValue("DeleteRankingModelTemplateResponse.result.Meta.LastEditTime")); meta.setOssArn(_ctx.stringValue("DeleteRankingModelTemplateResponse.result.Meta.OssArn")); meta.setOssBucket(_ctx.stringValue("DeleteRankingModelTemplateResponse.result.Meta.OssBucket")); meta.setOssEndpoint(_ctx.stringValue("DeleteRankingModelTemplateResponse.result.Meta.OssEndpoint")); meta.setSampleId(_ctx.stringValue("DeleteRankingModelTemplateResponse.result.Meta.SampleId")); meta.setSampleName(_ctx.stringValue("DeleteRankingModelTemplateResponse.result.Meta.SampleName")); meta.setSampleTimeWindow(_ctx.longValue("DeleteRankingModelTemplateResponse.result.Meta.SampleTimeWindow")); meta.setSampleTimeWindowType(_ctx.stringValue("DeleteRankingModelTemplateResponse.result.Meta.SampleTimeWindowType")); meta.setType(_ctx.stringValue("DeleteRankingModelTemplateResponse.result.Meta.Type")); meta.setName(_ctx.stringValue("DeleteRankingModelTemplateResponse.result.Meta.Name")); meta.setDeployStatus(_ctx.stringValue("DeleteRankingModelTemplateResponse.result.Meta.DeployStatus")); meta.setCanDeploy(_ctx.booleanValue("DeleteRankingModelTemplateResponse.result.Meta.CanDeploy")); result.setMeta(meta); deleteRankingModelTemplateResponse.setResult(result); return deleteRankingModelTemplateResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/DeleteRankingModelVersionResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.DeleteRankingModelVersionResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteRankingModelVersionResponseUnmarshaller { public static DeleteRankingModelVersionResponse unmarshall(DeleteRankingModelVersionResponse deleteRankingModelVersionResponse, UnmarshallerContext _ctx) { deleteRankingModelVersionResponse.setRequestId(_ctx.stringValue("DeleteRankingModelVersionResponse.requestId")); return deleteRankingModelVersionResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/DeleteRankingSystemResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import java.util.ArrayList; import java.util.List; import com.aliyuncs.airec.model.v20201126.DeleteRankingSystemResponse; import com.aliyuncs.airec.model.v20201126.DeleteRankingSystemResponse.Result; import com.aliyuncs.airec.model.v20201126.DeleteRankingSystemResponse.Result.Meta; import com.aliyuncs.airec.model.v20201126.DeleteRankingSystemResponse.Result.Meta.PredictEngine; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteRankingSystemResponseUnmarshaller { public static DeleteRankingSystemResponse unmarshall(DeleteRankingSystemResponse deleteRankingSystemResponse, UnmarshallerContext _ctx) { deleteRankingSystemResponse.setRequestId(_ctx.stringValue("DeleteRankingSystemResponse.requestId")); Result result = new Result(); result.setApplyStatus(_ctx.stringValue("DeleteRankingSystemResponse.result.ApplyStatus")); result.setDeployStatus(_ctx.stringValue("DeleteRankingSystemResponse.result.DeployStatus")); result.setName(_ctx.stringValue("DeleteRankingSystemResponse.result.Name")); result.setModelTemplateId(_ctx.stringValue("DeleteRankingSystemResponse.result.ModelTemplateId")); List<Long> sceneIdList = new ArrayList<Long>(); for (int i = 0; i < _ctx.lengthValue("DeleteRankingSystemResponse.result.SceneIdList.Length"); i++) { sceneIdList.add(_ctx.longValue("DeleteRankingSystemResponse.result.SceneIdList["+ i +"]")); } result.setSceneIdList(sceneIdList); Meta meta = new Meta(); meta.setAutoDeploy(_ctx.booleanValue("DeleteRankingSystemResponse.result.Meta.AutoDeploy")); meta.setAutoDeployAuc(_ctx.stringValue("DeleteRankingSystemResponse.result.Meta.AutoDeployAuc")); meta.setConf(_ctx.stringValue("DeleteRankingSystemResponse.result.Meta.Conf")); meta.setPredictEngineType(_ctx.stringValue("DeleteRankingSystemResponse.result.Meta.PredictEngineType")); meta.setModelVersionName(_ctx.stringValue("DeleteRankingSystemResponse.result.Meta.ModelVersionName")); meta.setFailMsg(_ctx.stringValue("DeleteRankingSystemResponse.result.Meta.FailMsg")); PredictEngine predictEngine = new PredictEngine(); predictEngine.setResourceId(_ctx.stringValue("DeleteRankingSystemResponse.result.Meta.PredictEngine.ResourceId")); predictEngine.setVersion(_ctx.stringValue("DeleteRankingSystemResponse.result.Meta.PredictEngine.Version")); predictEngine.setClusterId(_ctx.stringValue("DeleteRankingSystemResponse.result.Meta.PredictEngine.ClusterId")); meta.setPredictEngine(predictEngine); result.setMeta(meta); deleteRankingSystemResponse.setResult(result); return deleteRankingSystemResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/DeleteSampleResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import java.util.ArrayList; import java.util.List; import com.aliyuncs.airec.model.v20201126.DeleteSampleResponse; import com.aliyuncs.airec.model.v20201126.DeleteSampleResponse.Result; import com.aliyuncs.airec.model.v20201126.DeleteSampleResponse.Result.Meta; import com.aliyuncs.airec.model.v20201126.DeleteSampleResponse.Result.Meta.Config; import com.aliyuncs.airec.model.v20201126.DeleteSampleResponse.Result.Meta.Config.FeatureConfig; import com.aliyuncs.airec.model.v20201126.DeleteSampleResponse.Result.Meta.Config.LabelLogic; import com.aliyuncs.airec.model.v20201126.DeleteSampleResponse.Result.Meta.Config.WeightLogicListItem; import com.aliyuncs.airec.model.v20201126.DeleteSampleResponse.Result.Meta.ExtendParams; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteSampleResponseUnmarshaller { public static DeleteSampleResponse unmarshall(DeleteSampleResponse deleteSampleResponse, UnmarshallerContext _ctx) { deleteSampleResponse.setRequestId(_ctx.stringValue("DeleteSampleResponse.requestId")); Result result = new Result(); result.setStatus(_ctx.stringValue("DeleteSampleResponse.result.Status")); result.setGmtCreate(_ctx.stringValue("DeleteSampleResponse.result.GmtCreate")); result.setGmtModified(_ctx.stringValue("DeleteSampleResponse.result.GmtModified")); result.setSampleId(_ctx.stringValue("DeleteSampleResponse.result.SampleId")); Meta meta = new Meta(); meta.setAutoUpdate(_ctx.booleanValue("DeleteSampleResponse.result.Meta.AutoUpdate")); meta.setAutoUpdateFrequency(_ctx.longValue("DeleteSampleResponse.result.Meta.AutoUpdateFrequency")); meta.setClonedId(_ctx.stringValue("DeleteSampleResponse.result.Meta.ClonedId")); meta.setMetaType(_ctx.stringValue("DeleteSampleResponse.result.Meta.MetaType")); meta.setName(_ctx.stringValue("DeleteSampleResponse.result.Meta.Name")); meta.setStoreConfig(_ctx.stringValue("DeleteSampleResponse.result.Meta.StoreConfig")); meta.setType(_ctx.stringValue("DeleteSampleResponse.result.Meta.Type")); Config config = new Config(); List<String> bhvTableSourceIds = new ArrayList<String>(); for (int i = 0; i < _ctx.lengthValue("DeleteSampleResponse.result.Meta.Config.BhvTableSourceIds.Length"); i++) { bhvTableSourceIds.add(_ctx.stringValue("DeleteSampleResponse.result.Meta.Config.BhvTableSourceIds["+ i +"]")); } config.setBhvTableSourceIds(bhvTableSourceIds); FeatureConfig featureConfig = new FeatureConfig(); featureConfig.setItemFeatures(_ctx.stringValue("DeleteSampleResponse.result.Meta.Config.FeatureConfig.ItemFeatures")); featureConfig.setUserFeatures(_ctx.stringValue("DeleteSampleResponse.result.Meta.Config.FeatureConfig.UserFeatures")); config.setFeatureConfig(featureConfig); LabelLogic labelLogic = new LabelLogic(); labelLogic.setBhvTimeWindow(_ctx.longValue("DeleteSampleResponse.result.Meta.Config.LabelLogic.BhvTimeWindow")); labelLogic.setNegativeBhvTypes(_ctx.stringValue("DeleteSampleResponse.result.Meta.Config.LabelLogic.NegativeBhvTypes")); labelLogic.setPositiveBhvTypes(_ctx.stringValue("DeleteSampleResponse.result.Meta.Config.LabelLogic.PositiveBhvTypes")); config.setLabelLogic(labelLogic); List<WeightLogicListItem> weightLogicList = new ArrayList<WeightLogicListItem>(); for (int i = 0; i < _ctx.lengthValue("DeleteSampleResponse.result.Meta.Config.WeightLogicList.Length"); i++) { WeightLogicListItem weightLogicListItem = new WeightLogicListItem(); weightLogicListItem.setBhv(_ctx.stringValue("DeleteSampleResponse.result.Meta.Config.WeightLogicList["+ i +"].Bhv")); weightLogicListItem.setWeight(_ctx.stringValue("DeleteSampleResponse.result.Meta.Config.WeightLogicList["+ i +"].Weight")); weightLogicList.add(weightLogicListItem); } config.setWeightLogicList(weightLogicList); meta.setConfig(config); ExtendParams extendParams = new ExtendParams(); extendParams.setLatestTaskStatus(_ctx.longValue("DeleteSampleResponse.result.Meta.ExtendParams.LatestTaskStatus")); extendParams.setSampleCount(_ctx.longValue("DeleteSampleResponse.result.Meta.ExtendParams.SampleCount")); meta.setExtendParams(extendParams); result.setMeta(meta); deleteSampleResponse.setResult(result); return deleteSampleResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform
java-sources/com/aliyun/aliyun-java-sdk-airec/2.3.0/com/aliyuncs/airec/transform/v20201126/DeleteSceneResponseUnmarshaller.java
/* * 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.airec.transform.v20201126; import com.aliyuncs.airec.model.v20201126.DeleteSceneResponse; import com.aliyuncs.airec.model.v20201126.DeleteSceneResponse.Result; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteSceneResponseUnmarshaller { public static DeleteSceneResponse unmarshall(DeleteSceneResponse deleteSceneResponse, UnmarshallerContext _ctx) { deleteSceneResponse.setCode(_ctx.stringValue("DeleteSceneResponse.code")); deleteSceneResponse.setRequestId(_ctx.stringValue("DeleteSceneResponse.requestId")); deleteSceneResponse.setMessage(_ctx.stringValue("DeleteSceneResponse.message")); Result result = new Result(); result.setSceneId(_ctx.stringValue("DeleteSceneResponse.result.sceneId")); deleteSceneResponse.setResult(result); return deleteSceneResponse; } }