Skip to content

Commit

Permalink
Generated 2019-09-10 for ROS.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Jul 24, 2024
1 parent 33cbc71 commit 9da5eee
Show file tree
Hide file tree
Showing 18 changed files with 222 additions and 28 deletions.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-ros/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-07-24 Version: 3.6.4
- Generated 2019-09-10 for `ROS`.

2024-01-29 Version: 3.6.3
- CreateStack support BusinessInfo parameter.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-ros/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-ros</artifactId>
<packaging>jar</packaging>
<version>3.6.3</version>
<version>3.6.4</version>
<name>aliyun-java-sdk-ros</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 @@ -27,6 +27,8 @@ public class CreateDiagnosticRequest extends RpcAcsRequest<CreateDiagnosticRespo

private String diagnosticKey;

private String lang;

private String diagnosticType;

private String product;
Expand All @@ -50,6 +52,17 @@ public void setDiagnosticKey(String diagnosticKey) {
}
}

public String getLang() {
return this.lang;
}

public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}

public String getDiagnosticType() {
return this.diagnosticType;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,9 @@ public static class SourceResources {
@SerializedName("ResourceId")
private String resourceId;

@SerializedName("RelatedResourceTypeFilter")
private List<String> relatedResourceTypeFilter;

@SerializedName("RegionId")
private String regionId;

Expand All @@ -206,6 +209,14 @@ public void setResourceId(String resourceId) {
this.resourceId = resourceId;
}

public List<String> getRelatedResourceTypeFilter() {
return this.relatedResourceTypeFilter;
}

public void setRelatedResourceTypeFilter(List<String> relatedResourceTypeFilter) {
this.relatedResourceTypeFilter = relatedResourceTypeFilter;
}

public String getRegionId() {
return this.regionId;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,16 @@
public class DeleteStackRequest extends RpcAcsRequest<DeleteStackResponse> {


private List<String> deleteOptionss;

private Boolean retainAllResources;

private String stackId;

private List<String> deleteOptionss;
private Long parallelism;

private List<String> retainResourcess;

private Boolean retainAllResources;

private String ramRoleName;
public DeleteStackRequest() {
super("ROS", "2019-09-10", "DeleteStack", "ros");
Expand All @@ -44,6 +46,30 @@ public DeleteStackRequest() {
} catch (Exception e) {}
}

public List<String> getDeleteOptionss() {
return this.deleteOptionss;
}

public void setDeleteOptionss(List<String> deleteOptionss) {
this.deleteOptionss = deleteOptionss;
if (deleteOptionss != null) {
for (int i = 0; i < deleteOptionss.size(); i++) {
putQueryParameter("DeleteOptions." + (i + 1) , deleteOptionss.get(i));
}
}
}

public Boolean getRetainAllResources() {
return this.retainAllResources;
}

public void setRetainAllResources(Boolean retainAllResources) {
this.retainAllResources = retainAllResources;
if(retainAllResources != null){
putQueryParameter("RetainAllResources", retainAllResources.toString());
}
}

public String getStackId() {
return this.stackId;
}
Expand All @@ -55,17 +81,15 @@ public void setStackId(String stackId) {
}
}

public List<String> getDeleteOptionss() {
return this.deleteOptionss;
public Long getParallelism() {
return this.parallelism;
}

public void setDeleteOptionss(List<String> deleteOptionss) {
this.deleteOptionss = deleteOptionss;
if (deleteOptionss != null) {
for (int i = 0; i < deleteOptionss.size(); i++) {
putQueryParameter("DeleteOptions." + (i + 1) , deleteOptionss.get(i));
}
}
public void setParallelism(Long parallelism) {
this.parallelism = parallelism;
if(parallelism != null){
putQueryParameter("Parallelism", parallelism.toString());
}
}

public List<String> getRetainResourcess() {
Expand All @@ -81,17 +105,6 @@ public void setRetainResourcess(List<String> retainResourcess) {
}
}

public Boolean getRetainAllResources() {
return this.retainAllResources;
}

public void setRetainAllResources(Boolean retainAllResources) {
this.retainAllResources = retainAllResources;
if(retainAllResources != null){
putQueryParameter("RetainAllResources", retainAllResources.toString());
}
}

public String getRamRoleName() {
return this.ramRoleName;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ public static class StackGroup {

private String templateContent;

private String createTime;

private String updateTime;

private List<Parameter> parameters;

private List<String> rdFolderIds;
Expand Down Expand Up @@ -155,6 +159,22 @@ public void setTemplateContent(String templateContent) {
this.templateContent = templateContent;
}

public String getCreateTime() {
return this.createTime;
}

public void setCreateTime(String createTime) {
this.createTime = createTime;
}

public String getUpdateTime() {
return this.updateTime;
}

public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}

public List<Parameter> getParameters() {
return this.parameters;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ public class GetStackInstanceRequest extends RpcAcsRequest<GetStackInstanceRespo

private String stackInstanceRegionId;

private String stackInstanceAccountId;
private String stackInstanceAccountId;

private String outputOption;
public GetStackInstanceRequest() {
super("ROS", "2019-09-10", "GetStackInstance", "ros");
setMethod(MethodType.POST);
Expand Down Expand Up @@ -70,6 +72,17 @@ public void setStackInstanceAccountId(String stackInstanceAccountId) {
if(stackInstanceAccountId != null){
putQueryParameter("StackInstanceAccountId", stackInstanceAccountId);
}
}

public String getOutputOption() {
return this.outputOption;
}

public void setOutputOption(String outputOption) {
this.outputOption = outputOption;
if(outputOption != null){
putQueryParameter("OutputOption", outputOption);
}
}

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

package com.aliyuncs.ros.model.v20190910;

import java.util.List;
import java.util.List;
import java.util.Map;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ros.transform.v20190910.GetStackInstanceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
Expand Down Expand Up @@ -69,6 +70,8 @@ public static class StackInstance {

private List<ParameterOverride> parameterOverrides;

private List<Map<Object,Object>> outputs;

public String getStatus() {
return this.status;
}
Expand Down Expand Up @@ -157,6 +160,14 @@ public void setParameterOverrides(List<ParameterOverride> parameterOverrides) {
this.parameterOverrides = parameterOverrides;
}

public List<Map<Object,Object>> getOutputs() {
return this.outputs;
}

public void setOutputs(List<Map<Object,Object>> outputs) {
this.outputs = outputs;
}

public static class ParameterOverride {

private String parameterKey;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ public class GetStackResponse extends AcsResponse {

private Integer notCheckedStackResourceCount;

private String rollbackFailedRootReason;

private List<Parameter> parameters;

private List<Tag> tags;
Expand Down Expand Up @@ -332,6 +334,14 @@ public void setNotCheckedStackResourceCount(Integer notCheckedStackResourceCount
this.notCheckedStackResourceCount = notCheckedStackResourceCount;
}

public String getRollbackFailedRootReason() {
return this.rollbackFailedRootReason;
}

public void setRollbackFailedRootReason(String rollbackFailedRootReason) {
this.rollbackFailedRootReason = rollbackFailedRootReason;
}

public List<Parameter> getParameters() {
return this.parameters;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ public static class ParameterConstraint {

private List<OriginalConstraint> originalConstraints;

private List<QueryTimeoutDetail> queryTimeoutDetails;

private List<String> allowedValues;

private List<String> associationParameterNames;
Expand Down Expand Up @@ -125,6 +127,14 @@ public void setOriginalConstraints(List<OriginalConstraint> originalConstraints)
this.originalConstraints = originalConstraints;
}

public List<QueryTimeoutDetail> getQueryTimeoutDetails() {
return this.queryTimeoutDetails;
}

public void setQueryTimeoutDetails(List<QueryTimeoutDetail> queryTimeoutDetails) {
this.queryTimeoutDetails = queryTimeoutDetails;
}

public List<String> getAllowedValues() {
return this.allowedValues;
}
Expand Down Expand Up @@ -255,6 +265,39 @@ public void setAllowedValues1(List<String> allowedValues1) {
this.allowedValues1 = allowedValues1;
}
}

public static class QueryTimeoutDetail {

private String resourceType;

private String resourceName;

private String errorMessage;

public String getResourceType() {
return this.resourceType;
}

public void setResourceType(String resourceType) {
this.resourceType = resourceType;
}

public String getResourceName() {
return this.resourceName;
}

public void setResourceName(String resourceName) {
this.resourceName = resourceName;
}

public String getErrorMessage() {
return this.errorMessage;
}

public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
}
}

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

private String resourceType;

private List<String> relatedResourceTypeFilter;

public String getResourceId() {
return this.resourceId;
}
Expand All @@ -262,6 +264,14 @@ public String getResourceType() {
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
}

public List<String> getRelatedResourceTypeFilter() {
return this.relatedResourceTypeFilter;
}

public void setRelatedResourceTypeFilter(List<String> relatedResourceTypeFilter) {
this.relatedResourceTypeFilter = relatedResourceTypeFilter;
}
}

public static class Stack {
Expand Down
Loading

0 comments on commit 9da5eee

Please sign in to comment.