Support Async parameter in DescribeJob API.
This commit is contained in:
@@ -39,12 +39,15 @@ public:
|
||||
void setClusterId(const std::string &clusterId);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
bool getAsync() const;
|
||||
void setAsync(bool async);
|
||||
std::vector<User> getUser() const;
|
||||
void setUser(const std::vector<User> &user);
|
||||
|
||||
private:
|
||||
std::string clusterId_;
|
||||
std::string accessKeyId_;
|
||||
bool async_;
|
||||
std::vector<User> user_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -37,12 +37,15 @@ public:
|
||||
void setClusterId(const std::string &clusterId);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
bool getAsync() const;
|
||||
void setAsync(bool async);
|
||||
std::vector<User> getUser() const;
|
||||
void setUser(const std::vector<User> &user);
|
||||
|
||||
private:
|
||||
std::string clusterId_;
|
||||
std::string accessKeyId_;
|
||||
bool async_;
|
||||
std::vector<User> user_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -36,11 +36,14 @@ public:
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
std::string getJobId() const;
|
||||
void setJobId(const std::string &jobId);
|
||||
bool getAsync() const;
|
||||
void setAsync(bool async);
|
||||
|
||||
private:
|
||||
std::string clusterId_;
|
||||
std::string accessKeyId_;
|
||||
std::string jobId_;
|
||||
bool async_;
|
||||
};
|
||||
} // namespace Model
|
||||
} // namespace EHPC
|
||||
|
||||
@@ -38,12 +38,15 @@ public:
|
||||
void setClusterId(const std::string &clusterId);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
bool getAsync() const;
|
||||
void setAsync(bool async);
|
||||
std::vector<User> getUser() const;
|
||||
void setUser(const std::vector<User> &user);
|
||||
|
||||
private:
|
||||
std::string clusterId_;
|
||||
std::string accessKeyId_;
|
||||
bool async_;
|
||||
std::vector<User> user_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -38,12 +38,15 @@ public:
|
||||
void setClusterId(const std::string &clusterId);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
bool getAsync() const;
|
||||
void setAsync(bool async);
|
||||
std::vector<User> getUser() const;
|
||||
void setUser(const std::vector<User> &user);
|
||||
|
||||
private:
|
||||
std::string clusterId_;
|
||||
std::string accessKeyId_;
|
||||
bool async_;
|
||||
std::vector<User> user_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
Reference in New Issue
Block a user