Explorar o código

Support Latest APIs.

sdk-team %!s(int64=4) %!d(string=hai) anos
pai
achega
8f41f27e09

+ 3 - 0
CHANGELOG

@@ -1,3 +1,6 @@
+2022-06-21 Version: 1.36.1153
+- Support Latest APIs.
+
 2022-06-21 Version: 1.36.1152
 - Release RecognizeTurkeyIdentityCard RecognizeMalaysiaIdentityCard RecognizeRussiaIdentityCard RecognizeIndonesiaIdentityCard RecognizeUkraineIdentityCard RecognizeVietnamIdentityCard.
 

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.1152
+1.36.1153

+ 3 - 0
alb/include/alibabacloud/alb/model/ListListenersRequest.h

@@ -42,6 +42,8 @@ public:
 	void setListenerIds(const std::vector<std::string> &listenerIds);
 	int getMaxResults() const;
 	void setMaxResults(int maxResults);
+	std::string getStatus() const;
+	void setStatus(const std::string &status);
 
 private:
 	std::vector<std::string> loadBalancerIds_;
@@ -50,6 +52,7 @@ private:
 	std::string listenerProtocol_;
 	std::vector<std::string> listenerIds_;
 	int maxResults_;
+	std::string status_;
 };
 } // namespace Model
 } // namespace Alb

+ 9 - 0
alb/src/model/ListListenersRequest.cc

@@ -83,3 +83,12 @@ void ListListenersRequest::setMaxResults(int maxResults) {
   setParameter(std::string("MaxResults"), std::to_string(maxResults));
 }
 
+std::string ListListenersRequest::getStatus() const {
+  return status_;
+}
+
+void ListListenersRequest::setStatus(const std::string &status) {
+  status_ = status;
+  setParameter(std::string("Status"), status);
+}
+