Преглед на файлове

Gwlb Open API released.

sdk-team преди 1 година
родител
ревизия
61a4b220eb
променени са 3 файла, в които са добавени 6 реда и са изтрити 6 реда
  1. 1 1
      VERSION
  2. 3 3
      gwlb/include/alibabacloud/gwlb/model/ListListenersRequest.h
  3. 2 2
      gwlb/src/model/ListListenersRequest.cc

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.2001
+1.36.2002

+ 3 - 3
gwlb/include/alibabacloud/gwlb/model/ListListenersRequest.h

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

+ 2 - 2
gwlb/src/model/ListListenersRequest.cc

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