Gwlb Open API released.

This commit is contained in:
sdk-team
2024-10-18 03:12:25 +00:00
parent 183190fd14
commit 61a4b220eb
3 changed files with 6 additions and 6 deletions

View File

@@ -1 +1 @@
1.36.2001
1.36.2002

View File

@@ -36,8 +36,8 @@ public:
~ListListenersRequest();
std::vector<std::string> getLoadBalancerIds() const;
void setLoadBalancerIds(const std::vector<std::string> &loadBalancerIds);
long getSkip() const;
void setSkip(long skip);
int getSkip() const;
void setSkip(int skip);
std::string getNextToken() const;
void setNextToken(const std::string &nextToken);
std::vector<Tag> getTag() const;
@@ -49,7 +49,7 @@ public:
private:
std::vector<std::string> loadBalancerIds_;
long skip_;
int skip_;
std::string nextToken_;
std::vector<Tag> tag_;
std::vector<std::string> listenerIds_;

View File

@@ -36,11 +36,11 @@ void ListListenersRequest::setLoadBalancerIds(const std::vector<ListListenersReq
}
}
long ListListenersRequest::getSkip() const {
int ListListenersRequest::getSkip() const {
return skip_;
}
void ListListenersRequest::setSkip(long skip) {
void ListListenersRequest::setSkip(int skip) {
skip_ = skip;
setBodyParameter(std::string("Skip"), std::to_string(skip));
}