com.aliyun.bpstudio20210931.models.GetExecuteOperationResultRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bpstudio20210931 Show documentation
Show all versions of bpstudio20210931 Show documentation
Alibaba Cloud BPStudio (20210931) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.bpstudio20210931.models;
import com.aliyun.tea.*;
public class GetExecuteOperationResultRequest extends TeaModel {
/**
* The ID of the operation.
* This parameter is required.
*
* example:
* op_xxxxxxxxxxxxxxxxxxxxxx
*/
@NameInMap("OperationId")
public String operationId;
/**
* The ID of the resource group. This parameter is specified to verify the permissions on the resource group.
*
* example:
* testResourceId
*/
@NameInMap("ResourceGroupId")
public String resourceGroupId;
public static GetExecuteOperationResultRequest build(java.util.Map map) throws Exception {
GetExecuteOperationResultRequest self = new GetExecuteOperationResultRequest();
return TeaModel.build(map, self);
}
public GetExecuteOperationResultRequest setOperationId(String operationId) {
this.operationId = operationId;
return this;
}
public String getOperationId() {
return this.operationId;
}
public GetExecuteOperationResultRequest setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
return this;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
}