com.aliyun.sdk.service.cloudapi20160714.models.ModifyVpcAccessAndUpdateApisResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-cloudapi20160714 Show documentation
Show all versions of alibabacloud-cloudapi20160714 Show documentation
Alibaba Cloud CloudAPI (20160714) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloudapi20160714.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ModifyVpcAccessAndUpdateApisResponseBody} extends {@link TeaModel}
*
* ModifyVpcAccessAndUpdateApisResponseBody
*/
public class ModifyVpcAccessAndUpdateApisResponseBody extends TeaModel {
@NameInMap("OperationId")
private String operationId;
@NameInMap("RequestId")
private String requestId;
private ModifyVpcAccessAndUpdateApisResponseBody(Builder builder) {
this.operationId = builder.operationId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ModifyVpcAccessAndUpdateApisResponseBody create() {
return builder().build();
}
/**
* @return operationId
*/
public String getOperationId() {
return this.operationId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String operationId;
private String requestId;
/**
* The ID of the asynchronous task.
*
*
* >
*
* * If the associated API is updated, you can use the task ID in the **DescribeUpdateVpcInfoTask** operation to query the update result.
*/
public Builder operationId(String operationId) {
this.operationId = operationId;
return this;
}
/**
* The ID of the request.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ModifyVpcAccessAndUpdateApisResponseBody build() {
return new ModifyVpcAccessAndUpdateApisResponseBody(this);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy