@@ -30,6 +30,10 @@ public class ListEndpointGroupsRequest extends Request {
3030 @ com .aliyun .core .annotation .NameInMap ("EndpointGroupId" )
3131 private String endpointGroupId ;
3232
33+ @ com .aliyun .core .annotation .Query
34+ @ com .aliyun .core .annotation .NameInMap ("EndpointGroupRegion" )
35+ private String endpointGroupRegion ;
36+
3337 @ com .aliyun .core .annotation .Query
3438 @ com .aliyun .core .annotation .NameInMap ("EndpointGroupType" )
3539 private String endpointGroupType ;
@@ -61,6 +65,7 @@ private ListEndpointGroupsRequest(Builder builder) {
6165 this .acceleratorId = builder .acceleratorId ;
6266 this .accessLogSwitch = builder .accessLogSwitch ;
6367 this .endpointGroupId = builder .endpointGroupId ;
68+ this .endpointGroupRegion = builder .endpointGroupRegion ;
6469 this .endpointGroupType = builder .endpointGroupType ;
6570 this .listenerId = builder .listenerId ;
6671 this .pageNumber = builder .pageNumber ;
@@ -103,6 +108,13 @@ public String getEndpointGroupId() {
103108 return this .endpointGroupId ;
104109 }
105110
111+ /**
112+ * @return endpointGroupRegion
113+ */
114+ public String getEndpointGroupRegion () {
115+ return this .endpointGroupRegion ;
116+ }
117+
106118 /**
107119 * @return endpointGroupType
108120 */
@@ -149,6 +161,7 @@ public static final class Builder extends Request.Builder<ListEndpointGroupsRequ
149161 private String acceleratorId ;
150162 private String accessLogSwitch ;
151163 private String endpointGroupId ;
164+ private String endpointGroupRegion ;
152165 private String endpointGroupType ;
153166 private String listenerId ;
154167 private Integer pageNumber ;
@@ -165,6 +178,7 @@ private Builder(ListEndpointGroupsRequest request) {
165178 this .acceleratorId = request .acceleratorId ;
166179 this .accessLogSwitch = request .accessLogSwitch ;
167180 this .endpointGroupId = request .endpointGroupId ;
181+ this .endpointGroupRegion = request .endpointGroupRegion ;
168182 this .endpointGroupType = request .endpointGroupType ;
169183 this .listenerId = request .listenerId ;
170184 this .pageNumber = request .pageNumber ;
@@ -214,6 +228,15 @@ public Builder endpointGroupId(String endpointGroupId) {
214228 return this ;
215229 }
216230
231+ /**
232+ * EndpointGroupRegion.
233+ */
234+ public Builder endpointGroupRegion (String endpointGroupRegion ) {
235+ this .putQueryParameter ("EndpointGroupRegion" , endpointGroupRegion );
236+ this .endpointGroupRegion = endpointGroupRegion ;
237+ return this ;
238+ }
239+
217240 /**
218241 * <p>The type of the endpoint group. Valid values: Valid values:</p>
219242 * <ul>
0 commit comments