Fix normandy query api.

This commit is contained in:
sdk-team
2022-02-16 02:37:36 +00:00
parent 99a78222f2
commit 1435718263
10 changed files with 52 additions and 1 deletions

View File

@@ -36,6 +36,8 @@ public:
void setType(const std::string &type);
std::string getResourceType() const;
void setResourceType(const std::string &resourceType);
bool getIsWhite() const;
void setIsWhite(bool isWhite);
std::string getAcceptLanguage() const;
void setAcceptLanguage(const std::string &acceptLanguage);
@@ -43,6 +45,7 @@ private:
std::string gatewayUniqueId_;
std::string type_;
std::string resourceType_;
bool isWhite_;
std::string acceptLanguage_;
};
} // namespace Model

View File

@@ -30,12 +30,15 @@ class ALIBABACLOUD_MSE_EXPORT ListClusterTypesRequest : public RpcServiceRequest
public:
ListClusterTypesRequest();
~ListClusterTypesRequest();
std::string getConnectType() const;
void setConnectType(const std::string &connectType);
std::string getRegionId() const;
void setRegionId(const std::string &regionId);
std::string getAcceptLanguage() const;
void setAcceptLanguage(const std::string &acceptLanguage);
private:
std::string connectType_;
std::string regionId_;
std::string acceptLanguage_;
};

View File

@@ -30,10 +30,13 @@ class ALIBABACLOUD_MSE_EXPORT QueryClusterSpecificationRequest : public RpcServi
public:
QueryClusterSpecificationRequest();
~QueryClusterSpecificationRequest();
std::string getConnectType() const;
void setConnectType(const std::string &connectType);
std::string getAcceptLanguage() const;
void setAcceptLanguage(const std::string &acceptLanguage);
private:
std::string connectType_;
std::string acceptLanguage_;
};
} // namespace Model

View File

@@ -36,6 +36,8 @@ public:
void setType(const std::string &type);
std::string getContent() const;
void setContent(const std::string &content);
bool getIsWhite() const;
void setIsWhite(bool isWhite);
long getId() const;
void setId(long id);
std::string getResourceType() const;
@@ -49,6 +51,7 @@ private:
std::string gatewayUniqueId_;
std::string type_;
std::string content_;
bool isWhite_;
long id_;
std::string resourceType_;
std::string acceptLanguage_;