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

com.aliyun.sdk.service.edas20170801.models.GetK8sServicesRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.edas20170801.models;

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

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

GetK8sServicesRequest

*/ public class GetK8sServicesRequest extends Request { @Query @NameInMap("AppId") @Validation(required = true) private String appId; private GetK8sServicesRequest(Builder builder) { super(builder); this.appId = builder.appId; } public static Builder builder() { return new Builder(); } public static GetK8sServicesRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } public static final class Builder extends Request.Builder { private String appId; private Builder() { super(); } private Builder(GetK8sServicesRequest request) { super(request); this.appId = request.appId; } /** * The ID of the application. */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } @Override public GetK8sServicesRequest build() { return new GetK8sServicesRequest(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy