com.aliyun.sdk.service.maxcompute20220104.models.GetRolePolicyResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-maxcompute20220104 Show documentation
Show all versions of alibabacloud-maxcompute20220104 Show documentation
Alibaba Cloud MaxCompute (20220104) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.maxcompute20220104.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetRolePolicyResponseBody} extends {@link TeaModel}
*
* GetRolePolicyResponseBody
*/
public class GetRolePolicyResponseBody extends TeaModel {
@NameInMap("data")
private String data;
@NameInMap("requestId")
private String requestId;
private GetRolePolicyResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static GetRolePolicyResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public String getData() {
return this.data;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String data;
private String requestId;
/**
* The returned data.
*/
public Builder data(String data) {
this.data = data;
return this;
}
/**
* The ID of the request.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public GetRolePolicyResponseBody build() {
return new GetRolePolicyResponseBody(this);
}
}
}