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

com.aliyun.sdk.service.gpdb20160503.models.CheckServiceLinkedRoleResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.gpdb20160503.models;

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

/**
 * {@link CheckServiceLinkedRoleResponseBody} extends {@link TeaModel}
 *
 * 

CheckServiceLinkedRoleResponseBody

*/ public class CheckServiceLinkedRoleResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("HasServiceLinkedRole") private String hasServiceLinkedRole; @com.aliyun.core.annotation.NameInMap("RegionId") private String regionId; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private CheckServiceLinkedRoleResponseBody(Builder builder) { this.hasServiceLinkedRole = builder.hasServiceLinkedRole; this.regionId = builder.regionId; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static CheckServiceLinkedRoleResponseBody create() { return builder().build(); } /** * @return hasServiceLinkedRole */ public String getHasServiceLinkedRole() { return this.hasServiceLinkedRole; } /** * @return regionId */ public String getRegionId() { return this.regionId; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private String hasServiceLinkedRole; private String regionId; private String requestId; /** * Indicates whether an SLR is created. */ public Builder hasServiceLinkedRole(String hasServiceLinkedRole) { this.hasServiceLinkedRole = hasServiceLinkedRole; return this; } /** * The ID of the region. */ public Builder regionId(String regionId) { this.regionId = regionId; return this; } /** * The ID of the request. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public CheckServiceLinkedRoleResponseBody build() { return new CheckServiceLinkedRoleResponseBody(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy