FtParamListRequest.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Copyright 2009-2017 Alibaba Cloud All rights reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef ALIBABACLOUD_FT_MODEL_FTPARAMLISTREQUEST_H_
  17. #define ALIBABACLOUD_FT_MODEL_FTPARAMLISTREQUEST_H_
  18. #include <alibabacloud/ft/FtExport.h>
  19. #include <alibabacloud/core/RpcServiceRequest.h>
  20. #include <string>
  21. #include <vector>
  22. #include <map>
  23. namespace AlibabaCloud {
  24. namespace Ft {
  25. namespace Model {
  26. class ALIBABACLOUD_FT_EXPORT FtParamListRequest : public RpcServiceRequest {
  27. public:
  28. struct Disk {
  29. };
  30. FtParamListRequest();
  31. ~FtParamListRequest();
  32. std::vector<Disk> getDisk() const;
  33. void setDisk(const std::vector<Disk> &disk);
  34. std::string getName() const;
  35. void setName(const std::string &name);
  36. private:
  37. std::vector<Disk> disk_;
  38. std::string name_;
  39. };
  40. } // namespace Model
  41. } // namespace Ft
  42. } // namespace AlibabaCloud
  43. #endif // !ALIBABACLOUD_FT_MODEL_FTPARAMLISTREQUEST_H_