All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.cs20151215.models.CancelOperationPlanRequest Maven / Gradle / Ivy

There is a newer version: 2.0.29
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cs20151215.models;

import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link CancelOperationPlanRequest} extends {@link RequestModel}
 *
 * 

CancelOperationPlanRequest

*/ public class CancelOperationPlanRequest extends Request { @com.aliyun.core.annotation.Path @com.aliyun.core.annotation.NameInMap("plan_id") private String planId; private CancelOperationPlanRequest(Builder builder) { super(builder); this.planId = builder.planId; } public static Builder builder() { return new Builder(); } public static CancelOperationPlanRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return planId */ public String getPlanId() { return this.planId; } public static final class Builder extends Request.Builder { private String planId; private Builder() { super(); } private Builder(CancelOperationPlanRequest request) { super(request); this.planId = request.planId; } /** * The ID of the O\&M plan. */ public Builder planId(String planId) { this.putPathParameter("plan_id", planId); this.planId = planId; return this; } @Override public CancelOperationPlanRequest build() { return new CancelOperationPlanRequest(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy