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/CreateInstanceRequest.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 CreateInstanceRequest extends RoaAcsRequest<CreateInstanceResponse> {
public CreateInstanceRequest() {
super("Airec", "2020-11-26", "CreateInstance", "airec");
setUriPattern("/v2/openapi/instances");
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) {}
}
@Override
public Class<CreateInstanceResponse> getResponseClass() {
return CreateInstanceResponse.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/CreateInstanceResponse.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.CreateInstanceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateInstanceResponse 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 CreateInstanceResponse getInstance(UnmarshallerContext context) {
return CreateInstanceResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/CreateRankingModelRequest.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 CreateRankingModelRequest extends RoaAcsRequest<CreateRankingModelResponse> {
private String instanceId;
private Boolean dryRun;
public CreateRankingModelRequest() {
super("Airec", "2020-11-26", "CreateRankingModel", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/ranking-models");
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 Boolean getDryRun() {
return this.dryRun;
}
public void setDryRun(Boolean dryRun) {
this.dryRun = dryRun;
if(dryRun != null){
putQueryParameter("dryRun", dryRun.toString());
}
}
@Override
public Class<CreateRankingModelResponse> getResponseClass() {
return CreateRankingModelResponse.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/CreateRankingModelResponse.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.CreateRankingModelResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateRankingModelResponse 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 rankingModelId;
private String gmtModified;
private String gmtCreate;
private Map<Object,Object> meta;
public String getRankingModelId() {
return this.rankingModelId;
}
public void setRankingModelId(String rankingModelId) {
this.rankingModelId = rankingModelId;
}
public String getGmtModified() {
return this.gmtModified;
}
public void setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public void setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
}
public Map<Object,Object> getMeta() {
return this.meta;
}
public void setMeta(Map<Object,Object> meta) {
this.meta = meta;
}
}
@Override
public CreateRankingModelResponse getInstance(UnmarshallerContext context) {
return CreateRankingModelResponseUnmarshaller.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/CreateRankingModelTemplateRequest.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 CreateRankingModelTemplateRequest extends RoaAcsRequest<CreateRankingModelTemplateResponse> {
private String instanceId;
public CreateRankingModelTemplateRequest() {
super("Airec", "2020-11-26", "CreateRankingModelTemplate", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/ranking-model-templates");
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<CreateRankingModelTemplateResponse> getResponseClass() {
return CreateRankingModelTemplateResponse.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/CreateRankingModelTemplateResponse.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.CreateRankingModelTemplateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateRankingModelTemplateResponse 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 CreateRankingModelTemplateResponse getInstance(UnmarshallerContext context) {
return CreateRankingModelTemplateResponseUnmarshaller.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/CreateRankingSystemRequest.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 CreateRankingSystemRequest extends RoaAcsRequest<CreateRankingSystemResponse> {
private String instanceId;
public CreateRankingSystemRequest() {
super("Airec", "2020-11-26", "CreateRankingSystem", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/ranking-systems");
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<CreateRankingSystemResponse> getResponseClass() {
return CreateRankingSystemResponse.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/CreateRankingSystemResponse.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.CreateRankingSystemResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateRankingSystemResponse 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 CreateRankingSystemResponse getInstance(UnmarshallerContext context) {
return CreateRankingSystemResponseUnmarshaller.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/CreateRuleRequest.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 CreateRuleRequest extends RoaAcsRequest<CreateRuleResponse> {
private String instanceId;
public CreateRuleRequest() {
super("Airec", "2020-11-26", "CreateRule", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/rules");
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<CreateRuleResponse> getResponseClass() {
return CreateRuleResponse.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/CreateRuleResponse.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.CreateRuleResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateRuleResponse 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 String gmtModified;
private String status;
private String gmtCreate;
public String getRuleId() {
return this.ruleId;
}
public void setRuleId(String ruleId) {
this.ruleId = ruleId;
}
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 CreateRuleResponse getInstance(UnmarshallerContext context) {
return CreateRuleResponseUnmarshaller.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/CreateSampleFormatConfigRequest.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 CreateSampleFormatConfigRequest extends RoaAcsRequest<CreateSampleFormatConfigResponse> {
private String instanceId;
private String sampleId;
private String body;
public CreateSampleFormatConfigRequest() {
super("Airec", "2020-11-26", "CreateSampleFormatConfig", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/samples/[sampleId]/format-configs");
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 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<CreateSampleFormatConfigResponse> getResponseClass() {
return CreateSampleFormatConfigResponse.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/CreateSampleFormatConfigResponse.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.CreateSampleFormatConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateSampleFormatConfigResponse 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 CreateSampleFormatConfigResponse getInstance(UnmarshallerContext context) {
return CreateSampleFormatConfigResponseUnmarshaller.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/CreateSceneRequest.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 CreateSceneRequest extends RoaAcsRequest<CreateSceneResponse> {
private String instanceId;
private Boolean dryRun;
public CreateSceneRequest() {
super("Airec", "2020-11-26", "CreateScene", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/scenes");
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 Boolean getDryRun() {
return this.dryRun;
}
public void setDryRun(Boolean dryRun) {
this.dryRun = dryRun;
if(dryRun != null){
putQueryParameter("dryRun", dryRun.toString());
}
}
@Override
public Class<CreateSceneResponse> getResponseClass() {
return CreateSceneResponse.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/CreateSceneResponse.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.CreateSceneResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateSceneResponse 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 CreateSceneResponse getInstance(UnmarshallerContext context) {
return CreateSceneResponseUnmarshaller.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/CreateUmengTokenRequest.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 CreateUmengTokenRequest extends RoaAcsRequest<CreateUmengTokenResponse> {
private String code;
public CreateUmengTokenRequest() {
super("Airec", "2020-11-26", "CreateUmengToken", "airec");
setUriPattern("/v2/openapi/umeng/token");
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 getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
if(code != null){
putQueryParameter("code", code);
}
}
@Override
public Class<CreateUmengTokenResponse> getResponseClass() {
return CreateUmengTokenResponse.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/CreateUmengTokenResponse.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.CreateUmengTokenResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateUmengTokenResponse 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 CreateUmengTokenResponse getInstance(UnmarshallerContext context) {
return CreateUmengTokenResponseUnmarshaller.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/DecribeRankingModelRequest.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 DecribeRankingModelRequest extends RoaAcsRequest<DecribeRankingModelResponse> {
private String instanceId;
private String rankingModelId;
public DecribeRankingModelRequest() {
super("Airec", "2020-11-26", "DecribeRankingModel", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/ranking-models/[rankingModelId]");
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 getRankingModelId() {
return this.rankingModelId;
}
public void setRankingModelId(String rankingModelId) {
this.rankingModelId = rankingModelId;
if(rankingModelId != null){
putPathParameter("rankingModelId", rankingModelId);
}
}
@Override
public Class<DecribeRankingModelResponse> getResponseClass() {
return DecribeRankingModelResponse.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/DecribeRankingModelResponse.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.DecribeRankingModelResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DecribeRankingModelResponse 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 rankingModelId;
private String gmtModified;
private String gmtCreate;
private Map<Object,Object> meta;
public String getRankingModelId() {
return this.rankingModelId;
}
public void setRankingModelId(String rankingModelId) {
this.rankingModelId = rankingModelId;
}
public String getGmtModified() {
return this.gmtModified;
}
public void setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public void setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
}
public Map<Object,Object> getMeta() {
return this.meta;
}
public void setMeta(Map<Object,Object> meta) {
this.meta = meta;
}
}
@Override
public DecribeRankingModelResponse getInstance(UnmarshallerContext context) {
return DecribeRankingModelResponseUnmarshaller.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/DeleteDataSetRequest.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 DeleteDataSetRequest extends RoaAcsRequest<DeleteDataSetResponse> {
private String versionId;
private String instanceId;
public DeleteDataSetRequest() {
super("Airec", "2020-11-26", "DeleteDataSet", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/dataSets/[versionId]");
setMethod(MethodType.DELETE);
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<DeleteDataSetResponse> getResponseClass() {
return DeleteDataSetResponse.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/DeleteDataSetResponse.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.DeleteDataSetResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteDataSetResponse 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 DeleteDataSetResponse getInstance(UnmarshallerContext context) {
return DeleteDataSetResponseUnmarshaller.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/DeleteExperimentRequest.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 DeleteExperimentRequest extends RoaAcsRequest<DeleteExperimentResponse> {
private String instanceId;
private String sceneId;
private String experimentId;
public DeleteExperimentRequest() {
super("Airec", "2020-11-26", "DeleteExperiment", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/scenes/[sceneId]/experiments/[experimentId]");
setMethod(MethodType.DELETE);
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<DeleteExperimentResponse> getResponseClass() {
return DeleteExperimentResponse.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/DeleteExperimentResponse.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.DeleteExperimentResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteExperimentResponse 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 DeleteExperimentResponse getInstance(UnmarshallerContext context) {
return DeleteExperimentResponseUnmarshaller.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/DeleteExtraDataSourceRequest.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 DeleteExtraDataSourceRequest extends RoaAcsRequest<DeleteExtraDataSourceResponse> {
private String instanceId;
private String dataSourceId;
private String type;
public DeleteExtraDataSourceRequest() {
super("Airec", "2020-11-26", "DeleteExtraDataSource", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/extra-data-sources/[type]/[dataSourceId]");
setMethod(MethodType.DELETE);
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 getDataSourceId() {
return this.dataSourceId;
}
public void setDataSourceId(String dataSourceId) {
this.dataSourceId = dataSourceId;
if(dataSourceId != null){
putPathParameter("dataSourceId", dataSourceId);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putPathParameter("type", type);
}
}
@Override
public Class<DeleteExtraDataSourceResponse> getResponseClass() {
return DeleteExtraDataSourceResponse.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/DeleteExtraDataSourceResponse.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.DeleteExtraDataSourceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteExtraDataSourceResponse 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 type;
private String gmtCreate;
private String gmtModified;
private String dataSourceId;
private Meta meta;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
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 String getDataSourceId() {
return this.dataSourceId;
}
public void setDataSourceId(String dataSourceId) {
this.dataSourceId = dataSourceId;
}
public Meta getMeta() {
return this.meta;
}
public void setMeta(Meta meta) {
this.meta = meta;
}
public static class Meta {
private Boolean internal;
private String metaType;
private String projectName;
private String tableName;
private String type;
private Long updateFrequency;
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 getProjectName() {
return this.projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
}
public String getTableName() {
return this.tableName;
}
public void setTableName(String tableName) {
this.tableName = tableName;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public Long getUpdateFrequency() {
return this.updateFrequency;
}
public void setUpdateFrequency(Long updateFrequency) {
this.updateFrequency = updateFrequency;
}
}
}
@Override
public DeleteExtraDataSourceResponse getInstance(UnmarshallerContext context) {
return DeleteExtraDataSourceResponseUnmarshaller.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/DeleteFilteringAlgorithmRequest.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 DeleteFilteringAlgorithmRequest extends RoaAcsRequest<DeleteFilteringAlgorithmResponse> {
private String instanceId;
private String algorithmId;
public DeleteFilteringAlgorithmRequest() {
super("Airec", "2020-11-26", "DeleteFilteringAlgorithm", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/filtering-algorithms/[algorithmId]");
setMethod(MethodType.DELETE);
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<DeleteFilteringAlgorithmResponse> getResponseClass() {
return DeleteFilteringAlgorithmResponse.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/DeleteFilteringAlgorithmResponse.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.DeleteFilteringAlgorithmResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteFilteringAlgorithmResponse 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 DeleteFilteringAlgorithmResponse getInstance(UnmarshallerContext context) {
return DeleteFilteringAlgorithmResponseUnmarshaller.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/DeleteFlowControlTaskRequest.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 DeleteFlowControlTaskRequest extends RoaAcsRequest<DeleteFlowControlTaskResponse> {
private String instanceId;
private String taskId;
public DeleteFlowControlTaskRequest() {
super("Airec", "2020-11-26", "DeleteFlowControlTask", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/flowControlTasks/[taskId]");
setMethod(MethodType.DELETE);
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<DeleteFlowControlTaskResponse> getResponseClass() {
return DeleteFlowControlTaskResponse.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/DeleteFlowControlTaskResponse.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.DeleteFlowControlTaskResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteFlowControlTaskResponse 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 DeleteFlowControlTaskResponse getInstance(UnmarshallerContext context) {
return DeleteFlowControlTaskResponseUnmarshaller.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/DeleteRankingModelRequest.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 DeleteRankingModelRequest extends RoaAcsRequest<DeleteRankingModelResponse> {
private String instanceId;
private String rankingModelId;
public DeleteRankingModelRequest() {
super("Airec", "2020-11-26", "DeleteRankingModel", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/ranking-models/[rankingModelId]");
setMethod(MethodType.DELETE);
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 getRankingModelId() {
return this.rankingModelId;
}
public void setRankingModelId(String rankingModelId) {
this.rankingModelId = rankingModelId;
if(rankingModelId != null){
putPathParameter("rankingModelId", rankingModelId);
}
}
@Override
public Class<DeleteRankingModelResponse> getResponseClass() {
return DeleteRankingModelResponse.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/DeleteRankingModelResponse.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.DeleteRankingModelResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteRankingModelResponse 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 rankingModelId;
private Map<Object,Object> meta;
public String getRankingModelId() {
return this.rankingModelId;
}
public void setRankingModelId(String rankingModelId) {
this.rankingModelId = rankingModelId;
}
public Map<Object,Object> getMeta() {
return this.meta;
}
public void setMeta(Map<Object,Object> meta) {
this.meta = meta;
}
}
@Override
public DeleteRankingModelResponse getInstance(UnmarshallerContext context) {
return DeleteRankingModelResponseUnmarshaller.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/DeleteRankingModelTemplateRequest.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 DeleteRankingModelTemplateRequest extends RoaAcsRequest<DeleteRankingModelTemplateResponse> {
private String instanceId;
private String templateId;
public DeleteRankingModelTemplateRequest() {
super("Airec", "2020-11-26", "DeleteRankingModelTemplate", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/ranking-model-templates/[templateId]");
setMethod(MethodType.DELETE);
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<DeleteRankingModelTemplateResponse> getResponseClass() {
return DeleteRankingModelTemplateResponse.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/DeleteRankingModelTemplateResponse.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.DeleteRankingModelTemplateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteRankingModelTemplateResponse 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 DeleteRankingModelTemplateResponse getInstance(UnmarshallerContext context) {
return DeleteRankingModelTemplateResponseUnmarshaller.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/DeleteRankingModelVersionRequest.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 DeleteRankingModelVersionRequest extends RoaAcsRequest<DeleteRankingModelVersionResponse> {
private String versionId;
private String instanceId;
public DeleteRankingModelVersionRequest() {
super("Airec", "2020-11-26", "DeleteRankingModelVersion", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/ranking-model-versions/[versionId]");
setMethod(MethodType.DELETE);
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<DeleteRankingModelVersionResponse> getResponseClass() {
return DeleteRankingModelVersionResponse.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/DeleteRankingModelVersionResponse.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.DeleteRankingModelVersionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteRankingModelVersionResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteRankingModelVersionResponse getInstance(UnmarshallerContext context) {
return DeleteRankingModelVersionResponseUnmarshaller.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/DeleteRankingSystemRequest.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 DeleteRankingSystemRequest extends RoaAcsRequest<DeleteRankingSystemResponse> {
private String instanceId;
private String name;
public DeleteRankingSystemRequest() {
super("Airec", "2020-11-26", "DeleteRankingSystem", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/ranking-systems/[name]");
setMethod(MethodType.DELETE);
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);
}
}
@Override
public Class<DeleteRankingSystemResponse> getResponseClass() {
return DeleteRankingSystemResponse.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/DeleteRankingSystemResponse.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.DeleteRankingSystemResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteRankingSystemResponse 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 DeleteRankingSystemResponse getInstance(UnmarshallerContext context) {
return DeleteRankingSystemResponseUnmarshaller.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/DeleteSampleRequest.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 DeleteSampleRequest extends RoaAcsRequest<DeleteSampleResponse> {
private String instanceId;
private String sampleId;
public DeleteSampleRequest() {
super("Airec", "2020-11-26", "DeleteSample", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/samples/[sampleId]");
setMethod(MethodType.DELETE);
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);
}
}
@Override
public Class<DeleteSampleResponse> getResponseClass() {
return DeleteSampleResponse.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/DeleteSampleResponse.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.DeleteSampleResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteSampleResponse 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 DeleteSampleResponse getInstance(UnmarshallerContext context) {
return DeleteSampleResponseUnmarshaller.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/DeleteSceneRequest.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 DeleteSceneRequest extends RoaAcsRequest<DeleteSceneResponse> {
private String instanceId;
private String sceneId;
public DeleteSceneRequest() {
super("Airec", "2020-11-26", "DeleteScene", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/scenes/[sceneId]");
setMethod(MethodType.DELETE);
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<DeleteSceneResponse> getResponseClass() {
return DeleteSceneResponse.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/DeleteSceneResponse.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.DeleteSceneResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteSceneResponse 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;
public String getSceneId() {
return this.sceneId;
}
public void setSceneId(String sceneId) {
this.sceneId = sceneId;
}
}
@Override
public DeleteSceneResponse getInstance(UnmarshallerContext context) {
return DeleteSceneResponseUnmarshaller.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/DeployRankingSystemRequest.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 DeployRankingSystemRequest extends RoaAcsRequest<DeployRankingSystemResponse> {
private String instanceId;
private String name;
private String body;
public DeployRankingSystemRequest() {
super("Airec", "2020-11-26", "DeployRankingSystem", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/ranking-systems/[name]/actions/deploy");
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<DeployRankingSystemResponse> getResponseClass() {
return DeployRankingSystemResponse.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/DeployRankingSystemResponse.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.DeployRankingSystemResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeployRankingSystemResponse 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 DeployRankingSystemResponse getInstance(UnmarshallerContext context) {
return DeployRankingSystemResponseUnmarshaller.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/DescribeBaseExperimentRequest.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 DescribeBaseExperimentRequest extends RoaAcsRequest<DescribeBaseExperimentResponse> {
private String instanceId;
private String sceneId;
public DescribeBaseExperimentRequest() {
super("Airec", "2020-11-26", "DescribeBaseExperiment", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/scenes/[sceneId]/base-experiment");
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 getSceneId() {
return this.sceneId;
}
public void setSceneId(String sceneId) {
this.sceneId = sceneId;
if(sceneId != null){
putPathParameter("sceneId", sceneId);
}
}
@Override
public Class<DescribeBaseExperimentResponse> getResponseClass() {
return DescribeBaseExperimentResponse.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/DescribeBaseExperimentResponse.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.DescribeBaseExperimentResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeBaseExperimentResponse 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 DescribeBaseExperimentResponse getInstance(UnmarshallerContext context) {
return DescribeBaseExperimentResponseUnmarshaller.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/DescribeCustomAnalysisTaskRequest.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 DescribeCustomAnalysisTaskRequest extends RoaAcsRequest<DescribeCustomAnalysisTaskResponse> {
private String instanceId;
private String type;
private String taskId;
public DescribeCustomAnalysisTaskRequest() {
super("Airec", "2020-11-26", "DescribeCustomAnalysisTask", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/dashboard/custom-analysis-tasks/[taskId]");
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 getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("type", type);
}
}
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
if(taskId != null){
putPathParameter("taskId", taskId);
}
}
@Override
public Class<DescribeCustomAnalysisTaskResponse> getResponseClass() {
return DescribeCustomAnalysisTaskResponse.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/DescribeCustomAnalysisTaskResponse.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.DescribeCustomAnalysisTaskResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeCustomAnalysisTaskResponse extends AcsResponse {
private String requestId;
private Map<Object,Object> result;
private String code;
private String message;
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;
}
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;
}
@Override
public DescribeCustomAnalysisTaskResponse getInstance(UnmarshallerContext context) {
return DescribeCustomAnalysisTaskResponseUnmarshaller.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/DescribeDataSetMessageRequest.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 DescribeDataSetMessageRequest extends RoaAcsRequest<DescribeDataSetMessageResponse> {
private String versionId;
private String instanceId;
public DescribeDataSetMessageRequest() {
super("Airec", "2020-11-26", "DescribeDataSetMessage", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/dataSets/[versionId]/messages");
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 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<DescribeDataSetMessageResponse> getResponseClass() {
return DescribeDataSetMessageResponse.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/DescribeDataSetMessageResponse.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.DescribeDataSetMessageResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDataSetMessageResponse 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 message;
private String timestamp;
private String errorLevel;
private String errorType;
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getTimestamp() {
return this.timestamp;
}
public void setTimestamp(String timestamp) {
this.timestamp = timestamp;
}
public String getErrorLevel() {
return this.errorLevel;
}
public void setErrorLevel(String errorLevel) {
this.errorLevel = errorLevel;
}
public String getErrorType() {
return this.errorType;
}
public void setErrorType(String errorType) {
this.errorType = errorType;
}
}
@Override
public DescribeDataSetMessageResponse getInstance(UnmarshallerContext context) {
return DescribeDataSetMessageResponseUnmarshaller.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/DescribeDefaultAlgorithmsRequest.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 DescribeDefaultAlgorithmsRequest extends RoaAcsRequest<DescribeDefaultAlgorithmsResponse> {
private String instanceId;
private String sceneId;
public DescribeDefaultAlgorithmsRequest() {
super("Airec", "2020-11-26", "DescribeDefaultAlgorithms", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/scenes/[sceneId]/default-algorithms");
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 getSceneId() {
return this.sceneId;
}
public void setSceneId(String sceneId) {
this.sceneId = sceneId;
if(sceneId != null){
putPathParameter("sceneId", sceneId);
}
}
@Override
public Class<DescribeDefaultAlgorithmsResponse> getResponseClass() {
return DescribeDefaultAlgorithmsResponse.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/DescribeDefaultAlgorithmsResponse.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.DescribeDefaultAlgorithmsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDefaultAlgorithmsResponse extends AcsResponse {
private String requestId;
private List<ResultItem> result;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<ResultItem> getResult() {
return this.result;
}
public void setResult(List<ResultItem> result) {
this.result = result;
}
public static class ResultItem {
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 DescribeDefaultAlgorithmsResponse getInstance(UnmarshallerContext context) {
return DescribeDefaultAlgorithmsResponseUnmarshaller.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/DescribeExperimentEnvProgressRequest.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 DescribeExperimentEnvProgressRequest extends RoaAcsRequest<DescribeExperimentEnvProgressResponse> {
private String instanceId;
private String sceneId;
public DescribeExperimentEnvProgressRequest() {
super("Airec", "2020-11-26", "DescribeExperimentEnvProgress", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/scenes/[sceneId]/experiment-progress");
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 getSceneId() {
return this.sceneId;
}
public void setSceneId(String sceneId) {
this.sceneId = sceneId;
if(sceneId != null){
putPathParameter("sceneId", sceneId);
}
}
@Override
public Class<DescribeExperimentEnvProgressResponse> getResponseClass() {
return DescribeExperimentEnvProgressResponse.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/DescribeExperimentEnvProgressResponse.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.DescribeExperimentEnvProgressResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeExperimentEnvProgressResponse 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 Integer progress;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public Integer getProgress() {
return this.progress;
}
public void setProgress(Integer progress) {
this.progress = progress;
}
}
@Override
public DescribeExperimentEnvProgressResponse getInstance(UnmarshallerContext context) {
return DescribeExperimentEnvProgressResponseUnmarshaller.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/DescribeExperimentEnvRequest.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 DescribeExperimentEnvRequest extends RoaAcsRequest<DescribeExperimentEnvResponse> {
private String instanceId;
private String sceneId;
public DescribeExperimentEnvRequest() {
super("Airec", "2020-11-26", "DescribeExperimentEnv", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/scenes/[sceneId]/experiment-env");
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 getSceneId() {
return this.sceneId;
}
public void setSceneId(String sceneId) {
this.sceneId = sceneId;
if(sceneId != null){
putPathParameter("sceneId", sceneId);
}
}
@Override
public Class<DescribeExperimentEnvResponse> getResponseClass() {
return DescribeExperimentEnvResponse.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/DescribeExperimentEnvResponse.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.DescribeExperimentEnvResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeExperimentEnvResponse 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 Integer bucketCount;
private String divideType;
public Integer getBucketCount() {
return this.bucketCount;
}
public void setBucketCount(Integer bucketCount) {
this.bucketCount = bucketCount;
}
public String getDivideType() {
return this.divideType;
}
public void setDivideType(String divideType) {
this.divideType = divideType;
}
}
@Override
public DescribeExperimentEnvResponse getInstance(UnmarshallerContext context) {
return DescribeExperimentEnvResponseUnmarshaller.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/DescribeExperimentRequest.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 DescribeExperimentRequest extends RoaAcsRequest<DescribeExperimentResponse> {
private String instanceId;
private String sceneId;
private String experimentId;
public DescribeExperimentRequest() {
super("Airec", "2020-11-26", "DescribeExperiment", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/scenes/[sceneId]/experiments/[experimentId]");
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 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<DescribeExperimentResponse> getResponseClass() {
return DescribeExperimentResponse.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/DescribeExperimentResponse.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.DescribeExperimentResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeExperimentResponse 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 DescribeExperimentResponse getInstance(UnmarshallerContext context) {
return DescribeExperimentResponseUnmarshaller.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/DescribeFilteringAlgorithmRequest.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 DescribeFilteringAlgorithmRequest extends RoaAcsRequest<DescribeFilteringAlgorithmResponse> {
private String instanceId;
private String algorithmId;
public DescribeFilteringAlgorithmRequest() {
super("Airec", "2020-11-26", "DescribeFilteringAlgorithm", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/filtering-algorithms/[algorithmId]");
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 getAlgorithmId() {
return this.algorithmId;
}
public void setAlgorithmId(String algorithmId) {
this.algorithmId = algorithmId;
if(algorithmId != null){
putPathParameter("algorithmId", algorithmId);
}
}
@Override
public Class<DescribeFilteringAlgorithmResponse> getResponseClass() {
return DescribeFilteringAlgorithmResponse.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/DescribeFilteringAlgorithmResponse.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.DescribeFilteringAlgorithmResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeFilteringAlgorithmResponse 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 DescribeFilteringAlgorithmResponse getInstance(UnmarshallerContext context) {
return DescribeFilteringAlgorithmResponseUnmarshaller.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/DescribeInstanceRequest.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 DescribeInstanceRequest extends RoaAcsRequest<DescribeInstanceResponse> {
private String instanceId;
public DescribeInstanceRequest() {
super("Airec", "2020-11-26", "DescribeInstance", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]");
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<DescribeInstanceResponse> getResponseClass() {
return DescribeInstanceResponse.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/DescribeInstanceResponse.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.DescribeInstanceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeInstanceResponse 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 regionId;
private String type;
private String lockMode;
private String expiredTime;
private String scene;
private String status;
private String gmtCreate;
private String chargeType;
private String industry;
private String commodityCode;
private String gmtModified;
private String dataSetVersion;
private String name;
private String instanceId;
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getLockMode() {
return this.lockMode;
}
public void setLockMode(String lockMode) {
this.lockMode = lockMode;
}
public String getExpiredTime() {
return this.expiredTime;
}
public void setExpiredTime(String expiredTime) {
this.expiredTime = expiredTime;
}
public String getScene() {
return this.scene;
}
public void setScene(String scene) {
this.scene = scene;
}
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 getChargeType() {
return this.chargeType;
}
public void setChargeType(String chargeType) {
this.chargeType = chargeType;
}
public String getIndustry() {
return this.industry;
}
public void setIndustry(String industry) {
this.industry = industry;
}
public String getCommodityCode() {
return this.commodityCode;
}
public void setCommodityCode(String commodityCode) {
this.commodityCode = commodityCode;
}
public String getGmtModified() {
return this.gmtModified;
}
public void setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
}
public String getDataSetVersion() {
return this.dataSetVersion;
}
public void setDataSetVersion(String dataSetVersion) {
this.dataSetVersion = dataSetVersion;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
}
@Override
public DescribeInstanceResponse getInstance(UnmarshallerContext context) {
return DescribeInstanceResponseUnmarshaller.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/DescribeLatestTaskRequest.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 DescribeLatestTaskRequest extends RoaAcsRequest<DescribeLatestTaskResponse> {
private String instanceId;
private String algorithmId;
public DescribeLatestTaskRequest() {
super("Airec", "2020-11-26", "DescribeLatestTask", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/filtering-algorithms/[algorithmId]/tasks/latest");
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 getAlgorithmId() {
return this.algorithmId;
}
public void setAlgorithmId(String algorithmId) {
this.algorithmId = algorithmId;
if(algorithmId != null){
putPathParameter("algorithmId", algorithmId);
}
}
@Override
public Class<DescribeLatestTaskResponse> getResponseClass() {
return DescribeLatestTaskResponse.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/DescribeLatestTaskResponse.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.DescribeLatestTaskResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeLatestTaskResponse extends AcsResponse {
private String requestId;
private List<IndexVersion> result;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<IndexVersion> getResult() {
return this.result;
}
public void setResult(List<IndexVersion> result) {
this.result = result;
}
public static class IndexVersion {
private String code;
private String switchedTime;
private Boolean rollbackEnabled;
private String message;
private String flowType;
private Integer costSeconds;
private String builtTime;
private String versionId;
private Long size;
private String status;
private Integer progress;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getSwitchedTime() {
return this.switchedTime;
}
public void setSwitchedTime(String switchedTime) {
this.switchedTime = switchedTime;
}
public Boolean getRollbackEnabled() {
return this.rollbackEnabled;
}
public void setRollbackEnabled(Boolean rollbackEnabled) {
this.rollbackEnabled = rollbackEnabled;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getFlowType() {
return this.flowType;
}
public void setFlowType(String flowType) {
this.flowType = flowType;
}
public Integer getCostSeconds() {
return this.costSeconds;
}
public void setCostSeconds(Integer costSeconds) {
this.costSeconds = costSeconds;
}
public String getBuiltTime() {
return this.builtTime;
}
public void setBuiltTime(String builtTime) {
this.builtTime = builtTime;
}
public String getVersionId() {
return this.versionId;
}
public void setVersionId(String versionId) {
this.versionId = versionId;
}
public Long getSize() {
return this.size;
}
public void setSize(Long size) {
this.size = size;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public Integer getProgress() {
return this.progress;
}
public void setProgress(Integer progress) {
this.progress = progress;
}
}
@Override
public DescribeLatestTaskResponse getInstance(UnmarshallerContext context) {
return DescribeLatestTaskResponseUnmarshaller.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/DescribeQuotaRequest.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 DescribeQuotaRequest extends RoaAcsRequest<DescribeQuotaResponse> {
private String instanceId;
public DescribeQuotaRequest() {
super("Airec", "2020-11-26", "DescribeQuota", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/quota");
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<DescribeQuotaResponse> getResponseClass() {
return DescribeQuotaResponse.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/DescribeQuotaResponse.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.DescribeQuotaResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeQuotaResponse 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 Long itemCountUsed;
private Long itemCount;
private Long userCount;
private Long userCountUsed;
private Integer qps;
private Integer currentQps;
public Long getItemCountUsed() {
return this.itemCountUsed;
}
public void setItemCountUsed(Long itemCountUsed) {
this.itemCountUsed = itemCountUsed;
}
public Long getItemCount() {
return this.itemCount;
}
public void setItemCount(Long itemCount) {
this.itemCount = itemCount;
}
public Long getUserCount() {
return this.userCount;
}
public void setUserCount(Long userCount) {
this.userCount = userCount;
}
public Long getUserCountUsed() {
return this.userCountUsed;
}
public void setUserCountUsed(Long userCountUsed) {
this.userCountUsed = userCountUsed;
}
public Integer getQps() {
return this.qps;
}
public void setQps(Integer qps) {
this.qps = qps;
}
public Integer getCurrentQps() {
return this.currentQps;
}
public void setCurrentQps(Integer currentQps) {
this.currentQps = currentQps;
}
}
@Override
public DescribeQuotaResponse getInstance(UnmarshallerContext context) {
return DescribeQuotaResponseUnmarshaller.unmarshall(this, context);
}
}
|
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/DescribeRegionsRequest.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 DescribeRegionsRequest extends RoaAcsRequest<DescribeRegionsResponse> {
private String acceptLanguage;
public DescribeRegionsRequest() {
super("Airec", "2020-11-26", "DescribeRegions", "airec");
setUriPattern("/v2/openapi/configurations/regions");
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 getAcceptLanguage() {
return this.acceptLanguage;
}
public void setAcceptLanguage(String acceptLanguage) {
this.acceptLanguage = acceptLanguage;
if(acceptLanguage != null){
putQueryParameter("acceptLanguage", acceptLanguage);
}
}
@Override
public Class<DescribeRegionsResponse> getResponseClass() {
return DescribeRegionsResponse.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/DescribeRegionsResponse.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.DescribeRegionsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeRegionsResponse 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 regionId;
private String endpoint;
private String status;
private String localName;
private String consoleUrl;
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
public String getEndpoint() {
return this.endpoint;
}
public void setEndpoint(String endpoint) {
this.endpoint = endpoint;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getLocalName() {
return this.localName;
}
public void setLocalName(String localName) {
this.localName = localName;
}
public String getConsoleUrl() {
return this.consoleUrl;
}
public void setConsoleUrl(String consoleUrl) {
this.consoleUrl = consoleUrl;
}
}
@Override
public DescribeRegionsResponse getInstance(UnmarshallerContext context) {
return DescribeRegionsResponseUnmarshaller.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/DescribeRuleRequest.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 DescribeRuleRequest extends RoaAcsRequest<DescribeRuleResponse> {
private String instanceId;
private String ruleType;
private String sceneId;
private String ruleId;
public DescribeRuleRequest() {
super("Airec", "2020-11-26", "DescribeRule", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/rules/[ruleId]");
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 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<DescribeRuleResponse> getResponseClass() {
return DescribeRuleResponse.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/DescribeRuleResponse.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.DescribeRuleResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeRuleResponse 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 String gmtModified;
private String status;
private String gmtCreate;
public String getRuleId() {
return this.ruleId;
}
public void setRuleId(String ruleId) {
this.ruleId = ruleId;
}
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 DescribeRuleResponse getInstance(UnmarshallerContext context) {
return DescribeRuleResponseUnmarshaller.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/DescribeSceneBucketRequest.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 DescribeSceneBucketRequest extends RoaAcsRequest<DescribeSceneBucketResponse> {
private String instanceId;
private String sceneId;
public DescribeSceneBucketRequest() {
super("Airec", "2020-11-26", "DescribeSceneBucket", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/scenes/[sceneId]/experiment-bucket");
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 getSceneId() {
return this.sceneId;
}
public void setSceneId(String sceneId) {
this.sceneId = sceneId;
if(sceneId != null){
putPathParameter("sceneId", sceneId);
}
}
@Override
public Class<DescribeSceneBucketResponse> getResponseClass() {
return DescribeSceneBucketResponse.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/DescribeSceneBucketResponse.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.DescribeSceneBucketResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSceneBucketResponse 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 Integer num;
private String inUse;
private Map<Object,Object> detail;
public Integer getNum() {
return this.num;
}
public void setNum(Integer num) {
this.num = num;
}
public String getInUse() {
return this.inUse;
}
public void setInUse(String inUse) {
this.inUse = inUse;
}
public Map<Object,Object> getDetail() {
return this.detail;
}
public void setDetail(Map<Object,Object> detail) {
this.detail = detail;
}
}
@Override
public DescribeSceneBucketResponse getInstance(UnmarshallerContext context) {
return DescribeSceneBucketResponseUnmarshaller.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/DescribeSceneRequest.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 DescribeSceneRequest extends RoaAcsRequest<DescribeSceneResponse> {
private String instanceId;
private String sceneId;
public DescribeSceneRequest() {
super("Airec", "2020-11-26", "DescribeScene", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/scenes/[sceneId]");
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 getSceneId() {
return this.sceneId;
}
public void setSceneId(String sceneId) {
this.sceneId = sceneId;
if(sceneId != null){
putPathParameter("sceneId", sceneId);
}
}
@Override
public Class<DescribeSceneResponse> getResponseClass() {
return DescribeSceneResponse.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/DescribeSceneResponse.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.DescribeSceneResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSceneResponse 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 DescribeSceneResponse getInstance(UnmarshallerContext context) {
return DescribeSceneResponseUnmarshaller.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/DescribeSceneThroughputRequest.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 DescribeSceneThroughputRequest extends RoaAcsRequest<DescribeSceneThroughputResponse> {
private String instanceId;
private String sceneId;
public DescribeSceneThroughputRequest() {
super("Airec", "2020-11-26", "DescribeSceneThroughput", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/scenes/[sceneId]/throughput");
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 getSceneId() {
return this.sceneId;
}
public void setSceneId(String sceneId) {
this.sceneId = sceneId;
if(sceneId != null){
putPathParameter("sceneId", sceneId);
}
}
@Override
public Class<DescribeSceneThroughputResponse> getResponseClass() {
return DescribeSceneThroughputResponse.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/DescribeSceneThroughputResponse.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.DescribeSceneThroughputResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSceneThroughputResponse 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 Long pvCount;
public Long getPvCount() {
return this.pvCount;
}
public void setPvCount(Long pvCount) {
this.pvCount = pvCount;
}
}
@Override
public DescribeSceneThroughputResponse getInstance(UnmarshallerContext context) {
return DescribeSceneThroughputResponseUnmarshaller.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/DescribeSyncReportDetailRequest.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 DescribeSyncReportDetailRequest extends RoaAcsRequest<DescribeSyncReportDetailResponse> {
private String instanceId;
private String levelType;
private Long endTime;
private Long startTime;
private String type;
public DescribeSyncReportDetailRequest() {
super("Airec", "2020-11-26", "DescribeSyncReportDetail", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/sync-reports/detail");
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 getLevelType() {
return this.levelType;
}
public void setLevelType(String levelType) {
this.levelType = levelType;
if(levelType != null){
putQueryParameter("levelType", levelType);
}
}
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<DescribeSyncReportDetailResponse> getResponseClass() {
return DescribeSyncReportDetailResponse.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/DescribeSyncReportDetailResponse.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.DescribeSyncReportDetailResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSyncReportDetailResponse 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 Boolean sampleDisplay;
private String type;
private Integer errorCount;
private Float errorPercent;
private Boolean defaultDisplay;
private List<HistoryDataItem> historyData;
public Boolean getSampleDisplay() {
return this.sampleDisplay;
}
public void setSampleDisplay(Boolean sampleDisplay) {
this.sampleDisplay = sampleDisplay;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public Integer getErrorCount() {
return this.errorCount;
}
public void setErrorCount(Integer errorCount) {
this.errorCount = errorCount;
}
public Float getErrorPercent() {
return this.errorPercent;
}
public void setErrorPercent(Float errorPercent) {
this.errorPercent = errorPercent;
}
public Boolean getDefaultDisplay() {
return this.defaultDisplay;
}
public void setDefaultDisplay(Boolean defaultDisplay) {
this.defaultDisplay = defaultDisplay;
}
public List<HistoryDataItem> getHistoryData() {
return this.historyData;
}
public void setHistoryData(List<HistoryDataItem> historyData) {
this.historyData = historyData;
}
public static class HistoryDataItem {
private Float errorPercent;
private Long startTime;
private Long endTime;
public Float getErrorPercent() {
return this.errorPercent;
}
public void setErrorPercent(Float errorPercent) {
this.errorPercent = errorPercent;
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
}
}
@Override
public DescribeSyncReportDetailResponse getInstance(UnmarshallerContext context) {
return DescribeSyncReportDetailResponseUnmarshaller.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/DescribeSyncReportOutliersRequest.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 DescribeSyncReportOutliersRequest extends RoaAcsRequest<DescribeSyncReportOutliersResponse> {
private String instanceId;
private String levelType;
private Long endTime;
private Long startTime;
private String type;
private String key;
public DescribeSyncReportOutliersRequest() {
super("Airec", "2020-11-26", "DescribeSyncReportOutliers", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/sync-reports/outliers");
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 getLevelType() {
return this.levelType;
}
public void setLevelType(String levelType) {
this.levelType = levelType;
if(levelType != null){
putQueryParameter("levelType", levelType);
}
}
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);
}
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
if(key != null){
putQueryParameter("key", key);
}
}
@Override
public Class<DescribeSyncReportOutliersResponse> getResponseClass() {
return DescribeSyncReportOutliersResponse.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/DescribeSyncReportOutliersResponse.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.DescribeSyncReportOutliersResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSyncReportOutliersResponse 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 DescribeSyncReportOutliersResponse getInstance(UnmarshallerContext context) {
return DescribeSyncReportOutliersResponseUnmarshaller.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/DescribeUserMetricsRequest.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 DescribeUserMetricsRequest extends RoaAcsRequest<DescribeUserMetricsResponse> {
private String metricType;
private String instanceId;
private Long endTime;
private Long startTime;
public DescribeUserMetricsRequest() {
super("Airec", "2020-11-26", "DescribeUserMetrics", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/metrics");
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 getMetricType() {
return this.metricType;
}
public void setMetricType(String metricType) {
this.metricType = metricType;
if(metricType != null){
putQueryParameter("metricType", metricType);
}
}
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<DescribeUserMetricsResponse> getResponseClass() {
return DescribeUserMetricsResponse.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/DescribeUserMetricsResponse.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.DescribeUserMetricsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeUserMetricsResponse 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 sceneId;
private List<DataPointsItem> dataPoints;
public String getSceneId() {
return this.sceneId;
}
public void setSceneId(String sceneId) {
this.sceneId = sceneId;
}
public List<DataPointsItem> getDataPoints() {
return this.dataPoints;
}
public void setDataPoints(List<DataPointsItem> dataPoints) {
this.dataPoints = dataPoints;
}
public static class DataPointsItem {
private Float val;
private Long startTime;
private Long endTime;
public Float getVal() {
return this.val;
}
public void setVal(Float val) {
this.val = val;
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
}
}
@Override
public DescribeUserMetricsResponse getInstance(UnmarshallerContext context) {
return DescribeUserMetricsResponseUnmarshaller.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/DowngradeInstanceRequest.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 DowngradeInstanceRequest extends RoaAcsRequest<DowngradeInstanceResponse> {
private String instanceId;
public DowngradeInstanceRequest() {
super("Airec", "2020-11-26", "DowngradeInstance", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/actions/downgrade");
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<DowngradeInstanceResponse> getResponseClass() {
return DowngradeInstanceResponse.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/DowngradeInstanceResponse.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.DowngradeInstanceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DowngradeInstanceResponse 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 DowngradeInstanceResponse getInstance(UnmarshallerContext context) {
return DowngradeInstanceResponseUnmarshaller.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/EnableExperimentRequest.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 EnableExperimentRequest extends RoaAcsRequest<EnableExperimentResponse> {
private String instanceId;
private String sceneId;
public EnableExperimentRequest() {
super("Airec", "2020-11-26", "EnableExperiment", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/scenes/[sceneId]/actions/enable-experiment");
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 getSceneId() {
return this.sceneId;
}
public void setSceneId(String sceneId) {
this.sceneId = sceneId;
if(sceneId != null){
putPathParameter("sceneId", sceneId);
}
}
@Override
public Class<EnableExperimentResponse> getResponseClass() {
return EnableExperimentResponse.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/EnableExperimentResponse.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.EnableExperimentResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class EnableExperimentResponse 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 EnableExperimentResponse getInstance(UnmarshallerContext context) {
return EnableExperimentResponseUnmarshaller.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/GenerateSampleRequest.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 GenerateSampleRequest extends RoaAcsRequest<GenerateSampleResponse> {
private String instanceId;
private String sampleId;
public GenerateSampleRequest() {
super("Airec", "2020-11-26", "GenerateSample", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/samples/[sampleId]/actions/generate");
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);
}
}
@Override
public Class<GenerateSampleResponse> getResponseClass() {
return GenerateSampleResponse.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/GenerateSampleResponse.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.GenerateSampleResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GenerateSampleResponse 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 GenerateSampleResponse getInstance(UnmarshallerContext context) {
return GenerateSampleResponseUnmarshaller.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/GetExtraDataSourceRequest.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 GetExtraDataSourceRequest extends RoaAcsRequest<GetExtraDataSourceResponse> {
private String instanceId;
private String dataSourceId;
private String type;
public GetExtraDataSourceRequest() {
super("Airec", "2020-11-26", "GetExtraDataSource", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/extra-data-sources/[type]/[dataSourceId]");
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 getDataSourceId() {
return this.dataSourceId;
}
public void setDataSourceId(String dataSourceId) {
this.dataSourceId = dataSourceId;
if(dataSourceId != null){
putPathParameter("dataSourceId", dataSourceId);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putPathParameter("type", type);
}
}
@Override
public Class<GetExtraDataSourceResponse> getResponseClass() {
return GetExtraDataSourceResponse.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/GetExtraDataSourceResponse.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.GetExtraDataSourceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetExtraDataSourceResponse 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 type;
private String gmtCreate;
private String gmtModified;
private String dataSourceId;
private Meta meta;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
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 String getDataSourceId() {
return this.dataSourceId;
}
public void setDataSourceId(String dataSourceId) {
this.dataSourceId = dataSourceId;
}
public Meta getMeta() {
return this.meta;
}
public void setMeta(Meta meta) {
this.meta = meta;
}
public static class Meta {
private Boolean internal;
private String metaType;
private String projectName;
private String tableName;
private String type;
private Long updateFrequency;
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 getProjectName() {
return this.projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
}
public String getTableName() {
return this.tableName;
}
public void setTableName(String tableName) {
this.tableName = tableName;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public Long getUpdateFrequency() {
return this.updateFrequency;
}
public void setUpdateFrequency(Long updateFrequency) {
this.updateFrequency = updateFrequency;
}
}
}
@Override
public GetExtraDataSourceResponse getInstance(UnmarshallerContext context) {
return GetExtraDataSourceResponseUnmarshaller.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/GetFlowControlTaskRequest.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 GetFlowControlTaskRequest extends RoaAcsRequest<GetFlowControlTaskResponse> {
private String instanceId;
private String taskId;
public GetFlowControlTaskRequest() {
super("Airec", "2020-11-26", "GetFlowControlTask", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/flowControlTasks/[taskId]");
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 getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
if(taskId != null){
putPathParameter("taskId", taskId);
}
}
@Override
public Class<GetFlowControlTaskResponse> getResponseClass() {
return GetFlowControlTaskResponse.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/GetFlowControlTaskResponse.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.GetFlowControlTaskResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetFlowControlTaskResponse extends AcsResponse {
private String requestId;
private List<ResultItem> result;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<ResultItem> getResult() {
return this.result;
}
public void setResult(List<ResultItem> result) {
this.result = result;
}
public static class ResultItem {
private String gmtCreate;
private String gmtModified;
private String status;
private String taskId;
private Meta meta;
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 getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public Meta getMeta() {
return this.meta;
}
public void setMeta(Meta meta) {
this.meta = meta;
}
public static class Meta {
private String description;
private Long endTime;
private String metaType;
private String sceneIds;
private Long startTime;
private String taskName;
private List<SelectionParamsItem> selectionParams;
private Target target;
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
public String getMetaType() {
return this.metaType;
}
public void setMetaType(String metaType) {
this.metaType = metaType;
}
public String getSceneIds() {
return this.sceneIds;
}
public void setSceneIds(String sceneIds) {
this.sceneIds = sceneIds;
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public String getTaskName() {
return this.taskName;
}
public void setTaskName(String taskName) {
this.taskName = taskName;
}
public List<SelectionParamsItem> getSelectionParams() {
return this.selectionParams;
}
public void setSelectionParams(List<SelectionParamsItem> selectionParams) {
this.selectionParams = selectionParams;
}
public Target getTarget() {
return this.target;
}
public void setTarget(Target target) {
this.target = target;
}
public static class SelectionParamsItem {
private String selectType;
private String selectValue;
private String selectionOperation;
public String getSelectType() {
return this.selectType;
}
public void setSelectType(String selectType) {
this.selectType = selectType;
}
public String getSelectValue() {
return this.selectValue;
}
public void setSelectValue(String selectValue) {
this.selectValue = selectValue;
}
public String getSelectionOperation() {
return this.selectionOperation;
}
public void setSelectionOperation(String selectionOperation) {
this.selectionOperation = selectionOperation;
}
}
public static class Target {
private String type;
private Long value;
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public Long getValue() {
return this.value;
}
public void setValue(Long value) {
this.value = value;
}
}
}
}
@Override
public GetFlowControlTaskResponse getInstance(UnmarshallerContext context) {
return GetFlowControlTaskResponseUnmarshaller.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/GetLatestDataDiagnoseTaskStatusRequest.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 GetLatestDataDiagnoseTaskStatusRequest extends RoaAcsRequest<GetLatestDataDiagnoseTaskStatusResponse> {
private String instanceId;
public GetLatestDataDiagnoseTaskStatusRequest() {
super("Airec", "2020-11-26", "GetLatestDataDiagnoseTaskStatus", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/data-diagnose-task/status");
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<GetLatestDataDiagnoseTaskStatusResponse> getResponseClass() {
return GetLatestDataDiagnoseTaskStatusResponse.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/GetLatestDataDiagnoseTaskStatusResponse.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.GetLatestDataDiagnoseTaskStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetLatestDataDiagnoseTaskStatusResponse 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 GetLatestDataDiagnoseTaskStatusResponse getInstance(UnmarshallerContext context) {
return GetLatestDataDiagnoseTaskStatusResponseUnmarshaller.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/GetRankingModelTemplateRequest.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 GetRankingModelTemplateRequest extends RoaAcsRequest<GetRankingModelTemplateResponse> {
private String instanceId;
private String templateId;
public GetRankingModelTemplateRequest() {
super("Airec", "2020-11-26", "GetRankingModelTemplate", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/ranking-model-templates/[templateId]");
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 getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
if(templateId != null){
putPathParameter("templateId", templateId);
}
}
@Override
public Class<GetRankingModelTemplateResponse> getResponseClass() {
return GetRankingModelTemplateResponse.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/GetRankingModelTemplateResponse.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.GetRankingModelTemplateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetRankingModelTemplateResponse 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 GetRankingModelTemplateResponse getInstance(UnmarshallerContext context) {
return GetRankingModelTemplateResponseUnmarshaller.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/GetRankingModelVersionRequest.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 GetRankingModelVersionRequest extends RoaAcsRequest<GetRankingModelVersionResponse> {
private String versionId;
private String instanceId;
public GetRankingModelVersionRequest() {
super("Airec", "2020-11-26", "GetRankingModelVersion", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/ranking-model-versions/[versionId]");
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 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<GetRankingModelVersionResponse> getResponseClass() {
return GetRankingModelVersionResponse.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/GetRankingModelVersionResponse.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.GetRankingModelVersionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetRankingModelVersionResponse 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 runTime;
private String runLog;
private String templateName;
private String name;
private String templateId;
private RunResult runResult;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getRunTime() {
return this.runTime;
}
public void setRunTime(String runTime) {
this.runTime = runTime;
}
public String getRunLog() {
return this.runLog;
}
public void setRunLog(String runLog) {
this.runLog = runLog;
}
public String getTemplateName() {
return this.templateName;
}
public void setTemplateName(String templateName) {
this.templateName = templateName;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
}
public RunResult getRunResult() {
return this.runResult;
}
public void setRunResult(RunResult runResult) {
this.runResult = runResult;
}
public static class RunResult {
private String assessAuc;
private String assessGauc;
private String assessLoss;
private String trainAuc;
private String trainGauc;
private String trainLoss;
public String getAssessAuc() {
return this.assessAuc;
}
public void setAssessAuc(String assessAuc) {
this.assessAuc = assessAuc;
}
public String getAssessGauc() {
return this.assessGauc;
}
public void setAssessGauc(String assessGauc) {
this.assessGauc = assessGauc;
}
public String getAssessLoss() {
return this.assessLoss;
}
public void setAssessLoss(String assessLoss) {
this.assessLoss = assessLoss;
}
public String getTrainAuc() {
return this.trainAuc;
}
public void setTrainAuc(String trainAuc) {
this.trainAuc = trainAuc;
}
public String getTrainGauc() {
return this.trainGauc;
}
public void setTrainGauc(String trainGauc) {
this.trainGauc = trainGauc;
}
public String getTrainLoss() {
return this.trainLoss;
}
public void setTrainLoss(String trainLoss) {
this.trainLoss = trainLoss;
}
}
}
@Override
public GetRankingModelVersionResponse getInstance(UnmarshallerContext context) {
return GetRankingModelVersionResponseUnmarshaller.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/GetRankingSystemHistoryRequest.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 GetRankingSystemHistoryRequest extends RoaAcsRequest<GetRankingSystemHistoryResponse> {
private String instanceId;
private String operateId;
private String name;
public GetRankingSystemHistoryRequest() {
super("Airec", "2020-11-26", "GetRankingSystemHistory", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/ranking-systems/[name]/histories/[operateId]");
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 getOperateId() {
return this.operateId;
}
public void setOperateId(String operateId) {
this.operateId = operateId;
if(operateId != null){
putPathParameter("operateId", operateId);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putPathParameter("name", name);
}
}
@Override
public Class<GetRankingSystemHistoryResponse> getResponseClass() {
return GetRankingSystemHistoryResponse.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/GetRankingSystemHistoryResponse.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.GetRankingSystemHistoryResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetRankingSystemHistoryResponse 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 operateTime;
private String operateId;
private String operateType;
private String name;
private Meta meta;
public String getOperateTime() {
return this.operateTime;
}
public void setOperateTime(String operateTime) {
this.operateTime = operateTime;
}
public String getOperateId() {
return this.operateId;
}
public void setOperateId(String operateId) {
this.operateId = operateId;
}
public String getOperateType() {
return this.operateType;
}
public void setOperateType(String operateType) {
this.operateType = operateType;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
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 modelTemplateName;
private String predictEngineType;
private String previousOperateId;
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 getModelTemplateName() {
return this.modelTemplateName;
}
public void setModelTemplateName(String modelTemplateName) {
this.modelTemplateName = modelTemplateName;
}
public String getPredictEngineType() {
return this.predictEngineType;
}
public void setPredictEngineType(String predictEngineType) {
this.predictEngineType = predictEngineType;
}
public String getPreviousOperateId() {
return this.previousOperateId;
}
public void setPreviousOperateId(String previousOperateId) {
this.previousOperateId = previousOperateId;
}
public PredictEngine getPredictEngine() {
return this.predictEngine;
}
public void setPredictEngine(PredictEngine predictEngine) {
this.predictEngine = predictEngine;
}
public static class PredictEngine {
private String resourceId;
private String version;
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;
}
}
}
}
@Override
public GetRankingSystemHistoryResponse getInstance(UnmarshallerContext context) {
return GetRankingSystemHistoryResponseUnmarshaller.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/GetRankingSystemRequest.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 GetRankingSystemRequest extends RoaAcsRequest<GetRankingSystemResponse> {
private String instanceId;
private String name;
public GetRankingSystemRequest() {
super("Airec", "2020-11-26", "GetRankingSystem", "airec");
setUriPattern("/v2/openapi/instances/[instanceId]/ranking-systems/[name]");
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 getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putPathParameter("name", name);
}
}
@Override
public Class<GetRankingSystemResponse> getResponseClass() {
return GetRankingSystemResponse.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/GetRankingSystemResponse.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.GetRankingSystemResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetRankingSystemResponse 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 GetRankingSystemResponse getInstance(UnmarshallerContext context) {
return GetRankingSystemResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.