com.aliyun.sdk.service.ens20171110.models.DeleteEnsRouteEntryRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-ens20171110 Show documentation
Show all versions of alibabacloud-ens20171110 Show documentation
Alibaba Cloud Ens (20171110) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ens20171110.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DeleteEnsRouteEntryRequest} extends {@link RequestModel}
*
* DeleteEnsRouteEntryRequest
*/
public class DeleteEnsRouteEntryRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("RouteEntryId")
@com.aliyun.core.annotation.Validation(required = true)
private String routeEntryId;
private DeleteEnsRouteEntryRequest(Builder builder) {
super(builder);
this.routeEntryId = builder.routeEntryId;
}
public static Builder builder() {
return new Builder();
}
public static DeleteEnsRouteEntryRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return routeEntryId
*/
public String getRouteEntryId() {
return this.routeEntryId;
}
public static final class Builder extends Request.Builder {
private String routeEntryId;
private Builder() {
super();
}
private Builder(DeleteEnsRouteEntryRequest request) {
super(request);
this.routeEntryId = request.routeEntryId;
}
/**
* The ID of the route that you want to delete.
* This parameter is required.
*
* example:
* rte-8vbmb2890wiret5maqq25
*/
public Builder routeEntryId(String routeEntryId) {
this.putQueryParameter("RouteEntryId", routeEntryId);
this.routeEntryId = routeEntryId;
return this;
}
@Override
public DeleteEnsRouteEntryRequest build() {
return new DeleteEnsRouteEntryRequest(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy