24
24
public class ListApplicationRequest extends RpcAcsRequest <ListApplicationResponse > {
25
25
26
26
27
- private String resourceId ;
28
-
29
- private String templateId ;
30
-
31
27
private String resourceGroupId ;
32
28
33
29
private Integer nextToken ;
34
30
35
- private Integer maxResults ;
36
-
37
31
private String keyword ;
38
32
33
+ private String resourceId ;
34
+
35
+ private Boolean showHide ;
36
+
37
+ private String templateId ;
38
+
39
+ private Integer maxResults ;
40
+
39
41
private Long orderType ;
40
42
41
43
private String status ;
@@ -44,28 +46,6 @@ public ListApplicationRequest() {
44
46
setMethod (MethodType .POST );
45
47
}
46
48
47
- public String getResourceId () {
48
- return this .resourceId ;
49
- }
50
-
51
- public void setResourceId (String resourceId ) {
52
- this .resourceId = resourceId ;
53
- if (resourceId != null ){
54
- putBodyParameter ("ResourceId" , resourceId );
55
- }
56
- }
57
-
58
- public String getTemplateId () {
59
- return this .templateId ;
60
- }
61
-
62
- public void setTemplateId (String templateId ) {
63
- this .templateId = templateId ;
64
- if (templateId != null ){
65
- putBodyParameter ("TemplateId" , templateId );
66
- }
67
- }
68
-
69
49
public String getResourceGroupId () {
70
50
return this .resourceGroupId ;
71
51
}
@@ -88,17 +68,6 @@ public void setNextToken(Integer nextToken) {
88
68
}
89
69
}
90
70
91
- public Integer getMaxResults () {
92
- return this .maxResults ;
93
- }
94
-
95
- public void setMaxResults (Integer maxResults ) {
96
- this .maxResults = maxResults ;
97
- if (maxResults != null ){
98
- putBodyParameter ("MaxResults" , maxResults .toString ());
99
- }
100
- }
101
-
102
71
public String getKeyword () {
103
72
return this .keyword ;
104
73
}
@@ -110,6 +79,50 @@ public void setKeyword(String keyword) {
110
79
}
111
80
}
112
81
82
+ public String getResourceId () {
83
+ return this .resourceId ;
84
+ }
85
+
86
+ public void setResourceId (String resourceId ) {
87
+ this .resourceId = resourceId ;
88
+ if (resourceId != null ){
89
+ putBodyParameter ("ResourceId" , resourceId );
90
+ }
91
+ }
92
+
93
+ public Boolean getShowHide () {
94
+ return this .showHide ;
95
+ }
96
+
97
+ public void setShowHide (Boolean showHide ) {
98
+ this .showHide = showHide ;
99
+ if (showHide != null ){
100
+ putBodyParameter ("ShowHide" , showHide .toString ());
101
+ }
102
+ }
103
+
104
+ public String getTemplateId () {
105
+ return this .templateId ;
106
+ }
107
+
108
+ public void setTemplateId (String templateId ) {
109
+ this .templateId = templateId ;
110
+ if (templateId != null ){
111
+ putBodyParameter ("TemplateId" , templateId );
112
+ }
113
+ }
114
+
115
+ public Integer getMaxResults () {
116
+ return this .maxResults ;
117
+ }
118
+
119
+ public void setMaxResults (Integer maxResults ) {
120
+ this .maxResults = maxResults ;
121
+ if (maxResults != null ){
122
+ putBodyParameter ("MaxResults" , maxResults .toString ());
123
+ }
124
+ }
125
+
113
126
public Long getOrderType () {
114
127
return this .orderType ;
115
128
}
0 commit comments