Skip to content

Commit

Permalink
Generated 2021-09-31 for BPStudio.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Sep 24, 2024
1 parent b03d36d commit 4275876
Show file tree
Hide file tree
Showing 17 changed files with 1,265 additions and 1 deletion.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-bpstudio/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-09-24 Version: 2.0.8
- Generated 2021-09-31 for `BPStudio`.

2024-09-03 Version: 2.0.7
- Generated 2021-09-31 for `BPStudio`.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-bpstudio/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-bpstudio</artifactId>
<packaging>jar</packaging>
<version>2.0.7</version>
<version>2.0.8</version>
<name>aliyun-java-sdk-bpstudio</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.aliyuncs.bpstudio.model.v20210931;

import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;

/**
* @author auto create
* @version
*/
public class GetResource4ModifyRecordRequest extends RpcAcsRequest<GetResource4ModifyRecordResponse> {


private Long nextToken;

private Long maxResults;

private String applicationId;
public GetResource4ModifyRecordRequest() {
super("BPStudio", "2021-09-31", "GetResource4ModifyRecord", "bpstudio");
setProtocol(ProtocolType.HTTPS);
setMethod(MethodType.POST);
}

public Long getNextToken() {
return this.nextToken;
}

public void setNextToken(Long nextToken) {
this.nextToken = nextToken;
if(nextToken != null){
putBodyParameter("NextToken", nextToken.toString());
}
}

public Long getMaxResults() {
return this.maxResults;
}

public void setMaxResults(Long maxResults) {
this.maxResults = maxResults;
if(maxResults != null){
putBodyParameter("MaxResults", maxResults.toString());
}
}

public String getApplicationId() {
return this.applicationId;
}

public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
if(applicationId != null){
putBodyParameter("ApplicationId", applicationId);
}
}

@Override
public Class<GetResource4ModifyRecordResponse> getResponseClass() {
return GetResource4ModifyRecordResponse.class;
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,160 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.aliyuncs.bpstudio.model.v20210931;

import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.GetResource4ModifyRecordResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
* @author auto create
* @version
*/
public class GetResource4ModifyRecordResponse extends AcsResponse {

private String requestId;

private String message;

private String code;

private String totalCount;

private String nextToken;

private String accessDeniedDetail;

private List<Item> data;

public String getRequestId() {
return this.requestId;
}

public void setRequestId(String requestId) {
this.requestId = requestId;
}

public String getMessage() {
return this.message;
}

public void setMessage(String message) {
this.message = message;
}

public String getCode() {
return this.code;
}

public void setCode(String code) {
this.code = code;
}

public String getTotalCount() {
return this.totalCount;
}

public void setTotalCount(String totalCount) {
this.totalCount = totalCount;
}

public String getNextToken() {
return this.nextToken;
}

public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}

public String getAccessDeniedDetail() {
return this.accessDeniedDetail;
}

public void setAccessDeniedDetail(String accessDeniedDetail) {
this.accessDeniedDetail = accessDeniedDetail;
}

public List<Item> getData() {
return this.data;
}

public void setData(List<Item> data) {
this.data = data;
}

public static class Item {

private String resourceId;

private String type;

private String status;

private String modifyTime;

private String attribute;

public String getResourceId() {
return this.resourceId;
}

public void setResourceId(String resourceId) {
this.resourceId = resourceId;
}

public String getType() {
return this.type;
}

public void setType(String type) {
this.type = type;
}

public String getStatus() {
return this.status;
}

public void setStatus(String status) {
this.status = status;
}

public String getModifyTime() {
return this.modifyTime;
}

public void setModifyTime(String modifyTime) {
this.modifyTime = modifyTime;
}

public String getAttribute() {
return this.attribute;
}

public void setAttribute(String attribute) {
this.attribute = attribute;
}
}

@Override
public GetResource4ModifyRecordResponse getInstance(UnmarshallerContext context) {
return GetResource4ModifyRecordResponseUnmarshaller.unmarshall(this, context);
}

@Override
public boolean checkShowJsonItemName() {
return false;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.aliyuncs.bpstudio.model.v20210931;

import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;

/**
* @author auto create
* @version
*/
public class GetResult4QueryInstancePrice4ModifyRequest extends RpcAcsRequest<GetResult4QueryInstancePrice4ModifyResponse> {


private String applicationId;

private String taskId;
public GetResult4QueryInstancePrice4ModifyRequest() {
super("BPStudio", "2021-09-31", "GetResult4QueryInstancePrice4Modify", "bpstudio");
setProtocol(ProtocolType.HTTPS);
setMethod(MethodType.POST);
}

public String getApplicationId() {
return this.applicationId;
}

public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
if(applicationId != null){
putBodyParameter("ApplicationId", applicationId);
}
}

public String getTaskId() {
return this.taskId;
}

public void setTaskId(String taskId) {
this.taskId = taskId;
if(taskId != null){
putBodyParameter("TaskId", taskId);
}
}

@Override
public Class<GetResult4QueryInstancePrice4ModifyResponse> getResponseClass() {
return GetResult4QueryInstancePrice4ModifyResponse.class;
}

}
Loading

0 comments on commit 4275876

Please sign in to comment.