-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
1,265 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
77 changes: 77 additions & 0 deletions
77
.../src/main/java/com/aliyuncs/bpstudio/model/v20210931/GetResource4ModifyRecordRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
|
||
} |
160 changes: 160 additions & 0 deletions
160
...src/main/java/com/aliyuncs/bpstudio/model/v20210931/GetResource4ModifyRecordResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} |
64 changes: 64 additions & 0 deletions
64
...ava/com/aliyuncs/bpstudio/model/v20210931/GetResult4QueryInstancePrice4ModifyRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
|
||
} |
Oops, something went wrong.