Skip to content

Commit

Permalink
ListApplicationGroups rename parameter Product to ResourceProduct
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Jul 7, 2023
1 parent 7ce483a commit 64a17a4
Show file tree
Hide file tree
Showing 23 changed files with 312 additions and 8 deletions.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-oos/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2023-07-07 Version: 1.5.11
- ListApplicationGroups rename parameter Product to ResourceProduct

2023-02-06 Version: 1.5.10
- ListApplicationGroups rename parameter Product to ResourceProduct

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-oos/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-oos</artifactId>
<packaging>jar</packaging>
<version>1.5.10</version>
<version>1.5.11</version>
<name>aliyun-java-sdk-oos</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
Expand Up @@ -15,6 +15,9 @@
package com.aliyuncs.oos.model.v20190601;

import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.oos.Endpoint;

Expand All @@ -33,6 +36,11 @@ public class CreatePatchBaselineRequest extends RpcAcsRequest<CreatePatchBaselin

private String operationSystem;

@SerializedName("rejectedPatches")
private List<String> rejectedPatches;

private String rejectedPatchesAction;

private String name;
public CreatePatchBaselineRequest() {
super("oos", "2019-06-01", "CreatePatchBaseline", "oos");
Expand Down Expand Up @@ -87,6 +95,28 @@ public void setOperationSystem(String operationSystem) {
}
}

public List<String> getRejectedPatches() {
return this.rejectedPatches;
}

public void setRejectedPatches(List<String> rejectedPatches) {
this.rejectedPatches = rejectedPatches;
if (rejectedPatches != null) {
putQueryParameter("RejectedPatches" , new Gson().toJson(rejectedPatches));
}
}

public String getRejectedPatchesAction() {
return this.rejectedPatchesAction;
}

public void setRejectedPatchesAction(String rejectedPatchesAction) {
this.rejectedPatchesAction = rejectedPatchesAction;
if(rejectedPatchesAction != null){
putQueryParameter("RejectedPatchesAction", rejectedPatchesAction);
}
}

public String getName() {
return this.name;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
*/

package com.aliyuncs.oos.model.v20190601;


import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.oos.transform.v20190601.CreatePatchBaselineResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
Expand Down Expand Up @@ -66,6 +67,10 @@ public static class PatchBaseline {

private String shareType;

private String rejectedPatchesAction;

private List<String> rejectedPatches;

public String getOperationSystem() {
return this.operationSystem;
}
Expand Down Expand Up @@ -145,6 +150,22 @@ public String getShareType() {
public void setShareType(String shareType) {
this.shareType = shareType;
}

public String getRejectedPatchesAction() {
return this.rejectedPatchesAction;
}

public void setRejectedPatchesAction(String rejectedPatchesAction) {
this.rejectedPatchesAction = rejectedPatchesAction;
}

public List<String> getRejectedPatches() {
return this.rejectedPatches;
}

public void setRejectedPatches(List<String> rejectedPatches) {
this.rejectedPatches = rejectedPatches;
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ public class GenerateExecutionPolicyRequest extends RpcAcsRequest<GenerateExecut

private String templateVersion;

private String ramRole;

private String templateName;
public GenerateExecutionPolicyRequest() {
super("oos", "2019-06-01", "GenerateExecutionPolicy", "oos");
Expand All @@ -48,6 +50,17 @@ public void setTemplateVersion(String templateVersion) {
}
}

public String getRamRole() {
return this.ramRole;
}

public void setRamRole(String ramRole) {
this.ramRole = ramRole;
if(ramRole != null){
putQueryParameter("RamRole", ramRole);
}
}

public String getTemplateName() {
return this.templateName;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ public class GenerateExecutionPolicyResponse extends AcsResponse {

private String requestId;

private String missingPolicy;

public String getPolicy() {
return this.policy;
}
Expand All @@ -44,6 +46,14 @@ public void setRequestId(String requestId) {
this.requestId = requestId;
}

public String getMissingPolicy() {
return this.missingPolicy;
}

public void setMissingPolicy(String missingPolicy) {
this.missingPolicy = missingPolicy;
}

@Override
public GenerateExecutionPolicyResponse getInstance(UnmarshallerContext context) {
return GenerateExecutionPolicyResponseUnmarshaller.unmarshall(this, context);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@

package com.aliyuncs.oos.model.v20190601;

import java.util.List;
import java.util.List;
import java.util.Map;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.oos.transform.v20190601.GetParametersByPathResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
Expand Down Expand Up @@ -101,6 +102,8 @@ public static class Parameter {

private String shareType;

private Map<Object,Object> tags;

public String getType() {
return this.type;
}
Expand Down Expand Up @@ -196,6 +199,14 @@ public String getShareType() {
public void setShareType(String shareType) {
this.shareType = shareType;
}

public Map<Object,Object> getTags() {
return this.tags;
}

public void setTags(Map<Object,Object> tags) {
this.tags = tags;
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
*/

package com.aliyuncs.oos.model.v20190601;


import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.oos.transform.v20190601.GetPatchBaselineResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
Expand Down Expand Up @@ -68,6 +69,10 @@ public static class PatchBaseline {

private String shareType;

private String rejectedPatchesAction;

private List<String> rejectedPatches;

public String getOperationSystem() {
return this.operationSystem;
}
Expand Down Expand Up @@ -155,6 +160,22 @@ public String getShareType() {
public void setShareType(String shareType) {
this.shareType = shareType;
}

public String getRejectedPatchesAction() {
return this.rejectedPatchesAction;
}

public void setRejectedPatchesAction(String rejectedPatchesAction) {
this.rejectedPatchesAction = rejectedPatchesAction;
}

public List<String> getRejectedPatches() {
return this.rejectedPatches;
}

public void setRejectedPatches(List<String> rejectedPatches) {
this.rejectedPatches = rejectedPatches;
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ public class ListApplicationsRequest extends RpcAcsRequest<ListApplicationsRespo

private String name;

private Integer maxResults;
private Integer maxResults;

private String applicationType;
public ListApplicationsRequest() {
super("oos", "2019-06-01", "ListApplications", "oos");
setMethod(MethodType.POST);
Expand Down Expand Up @@ -96,6 +98,17 @@ public void setMaxResults(Integer maxResults) {
if(maxResults != null){
putQueryParameter("MaxResults", maxResults.toString());
}
}

public String getApplicationType() {
return this.applicationType;
}

public void setApplicationType(String applicationType) {
this.applicationType = applicationType;
if(applicationType != null){
putQueryParameter("ApplicationType", applicationType);
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ public static class Application {

private String createDate;

private String applicationType;

public String getDescription() {
return this.description;
}
Expand Down Expand Up @@ -127,6 +129,14 @@ public String getCreateDate() {
public void setCreateDate(String createDate) {
this.createDate = createDate;
}

public String getApplicationType() {
return this.applicationType;
}

public void setApplicationType(String applicationType) {
this.applicationType = applicationType;
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ public class ListExecutionsRequest extends RpcAcsRequest<ListExecutionsResponse>

private Boolean includeChildExecution;

private String description;

private String mode;

private String executionId;
Expand All @@ -47,6 +49,8 @@ public class ListExecutionsRequest extends RpcAcsRequest<ListExecutionsResponse>

private String sortOrder;

private String categories;

private String resourceId;

private String startDateAfter;
Expand All @@ -57,6 +61,8 @@ public class ListExecutionsRequest extends RpcAcsRequest<ListExecutionsResponse>

private String parentExecutionId;

private String depth;

private String endDateAfter;

private Integer maxResults;
Expand Down Expand Up @@ -99,6 +105,17 @@ public void setIncludeChildExecution(Boolean includeChildExecution) {
}
}

public String getDescription() {
return this.description;
}

public void setDescription(String description) {
this.description = description;
if(description != null){
putQueryParameter("Description", description);
}
}

public String getMode() {
return this.mode;
}
Expand Down Expand Up @@ -187,6 +204,17 @@ public void setSortOrder(String sortOrder) {
}
}

public String getCategories() {
return this.categories;
}

public void setCategories(String categories) {
this.categories = categories;
if(categories != null){
putQueryParameter("Categories", categories);
}
}

public String getResourceId() {
return this.resourceId;
}
Expand Down Expand Up @@ -242,6 +270,17 @@ public void setParentExecutionId(String parentExecutionId) {
}
}

public String getDepth() {
return this.depth;
}

public void setDepth(String depth) {
this.depth = depth;
if(depth != null){
putQueryParameter("Depth", depth);
}
}

public String getEndDateAfter() {
return this.endDateAfter;
}
Expand Down
Loading

0 comments on commit 64a17a4

Please sign in to comment.