com.aliyun.sdk.service.apig20240327.models.DeleteHttpApiRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-apig20240327 Show documentation
Show all versions of alibabacloud-apig20240327 Show documentation
Alibaba Cloud APIG (20240327) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.apig20240327.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DeleteHttpApiRequest} extends {@link RequestModel}
*
* DeleteHttpApiRequest
*/
public class DeleteHttpApiRequest extends Request {
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("httpApiId")
@com.aliyun.core.annotation.Validation(required = true)
private String httpApiId;
private DeleteHttpApiRequest(Builder builder) {
super(builder);
this.httpApiId = builder.httpApiId;
}
public static Builder builder() {
return new Builder();
}
public static DeleteHttpApiRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return httpApiId
*/
public String getHttpApiId() {
return this.httpApiId;
}
public static final class Builder extends Request.Builder {
private String httpApiId;
private Builder() {
super();
}
private Builder(DeleteHttpApiRequest request) {
super(request);
this.httpApiId = request.httpApiId;
}
/**
* The ID of the HTTP API to be deleted.
* This parameter is required.
*
* example:
* api-xxx
*/
public Builder httpApiId(String httpApiId) {
this.putPathParameter("httpApiId", httpApiId);
this.httpApiId = httpApiId;
return this;
}
@Override
public DeleteHttpApiRequest build() {
return new DeleteHttpApiRequest(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy