|
@@ -32,8 +32,12 @@ public:
|
|
|
~StartTerminalSessionRequest();
|
|
~StartTerminalSessionRequest();
|
|
|
long getResourceOwnerId() const;
|
|
long getResourceOwnerId() const;
|
|
|
void setResourceOwnerId(long resourceOwnerId);
|
|
void setResourceOwnerId(long resourceOwnerId);
|
|
|
|
|
+ std::string getCommandLine() const;
|
|
|
|
|
+ void setCommandLine(const std::string &commandLine);
|
|
|
std::string getRegionId() const;
|
|
std::string getRegionId() const;
|
|
|
void setRegionId(const std::string ®ionId);
|
|
void setRegionId(const std::string ®ionId);
|
|
|
|
|
+ std::string getTargetServer() const;
|
|
|
|
|
+ void setTargetServer(const std::string &targetServer);
|
|
|
std::string getResourceOwnerAccount() const;
|
|
std::string getResourceOwnerAccount() const;
|
|
|
void setResourceOwnerAccount(const std::string &resourceOwnerAccount);
|
|
void setResourceOwnerAccount(const std::string &resourceOwnerAccount);
|
|
|
std::string getOwnerAccount() const;
|
|
std::string getOwnerAccount() const;
|
|
@@ -47,7 +51,9 @@ public:
|
|
|
|
|
|
|
|
private:
|
|
private:
|
|
|
long resourceOwnerId_;
|
|
long resourceOwnerId_;
|
|
|
|
|
+ std::string commandLine_;
|
|
|
std::string regionId_;
|
|
std::string regionId_;
|
|
|
|
|
+ std::string targetServer_;
|
|
|
std::string resourceOwnerAccount_;
|
|
std::string resourceOwnerAccount_;
|
|
|
std::string ownerAccount_;
|
|
std::string ownerAccount_;
|
|
|
long ownerId_;
|
|
long ownerId_;
|