Support Latest APIs.

This commit is contained in:
sdk-team
2022-06-21 08:26:06 +00:00
parent e46b4256d6
commit 8f41f27e09
4 changed files with 16 additions and 1 deletions

View File

@@ -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.

View File

@@ -1 +1 @@
1.36.1152
1.36.1153

View File

@@ -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

View File

@@ -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);
}