com.aliyun.sdk.service.apig20240327.models.GetGatewayRequest 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 GetGatewayRequest} extends {@link RequestModel}
*
* GetGatewayRequest
*/
public class GetGatewayRequest extends Request {
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("gatewayId")
private String gatewayId;
private GetGatewayRequest(Builder builder) {
super(builder);
this.gatewayId = builder.gatewayId;
}
public static Builder builder() {
return new Builder();
}
public static GetGatewayRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return gatewayId
*/
public String getGatewayId() {
return this.gatewayId;
}
public static final class Builder extends Request.Builder {
private String gatewayId;
private Builder() {
super();
}
private Builder(GetGatewayRequest request) {
super(request);
this.gatewayId = request.gatewayId;
}
/**
* Cloud-native API Gateway ID.
*
* example:
* gw-cpv4sqdl*****
*/
public Builder gatewayId(String gatewayId) {
this.putPathParameter("gatewayId", gatewayId);
this.gatewayId = gatewayId;
return this;
}
@Override
public GetGatewayRequest build() {
return new GetGatewayRequest(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy