ListSnapshotRequest.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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_DBFS_MODEL_LISTSNAPSHOTREQUEST_H_
  17. #define ALIBABACLOUD_DBFS_MODEL_LISTSNAPSHOTREQUEST_H_
  18. #include <string>
  19. #include <vector>
  20. #include <alibabacloud/core/RpcServiceRequest.h>
  21. #include <alibabacloud/dbfs/DBFSExport.h>
  22. namespace AlibabaCloud
  23. {
  24. namespace DBFS
  25. {
  26. namespace Model
  27. {
  28. class ALIBABACLOUD_DBFS_EXPORT ListSnapshotRequest : public RpcServiceRequest
  29. {
  30. public:
  31. ListSnapshotRequest();
  32. ~ListSnapshotRequest();
  33. std::string getSortType()const;
  34. void setSortType(const std::string& sortType);
  35. std::string getSnapshotIds()const;
  36. void setSnapshotIds(const std::string& snapshotIds);
  37. std::string getFilterValue()const;
  38. void setFilterValue(const std::string& filterValue);
  39. std::string getSnapshotName()const;
  40. void setSnapshotName(const std::string& snapshotName);
  41. int getPageNumber()const;
  42. void setPageNumber(int pageNumber);
  43. std::string getFilterKey()const;
  44. void setFilterKey(const std::string& filterKey);
  45. std::string getSortKey()const;
  46. void setSortKey(const std::string& sortKey);
  47. std::string getRegionId()const;
  48. void setRegionId(const std::string& regionId);
  49. int getPageSize()const;
  50. void setPageSize(int pageSize);
  51. std::string getFsId()const;
  52. void setFsId(const std::string& fsId);
  53. std::string getSnapshotType()const;
  54. void setSnapshotType(const std::string& snapshotType);
  55. std::string getStatus()const;
  56. void setStatus(const std::string& status);
  57. private:
  58. std::string sortType_;
  59. std::string snapshotIds_;
  60. std::string filterValue_;
  61. std::string snapshotName_;
  62. int pageNumber_;
  63. std::string filterKey_;
  64. std::string sortKey_;
  65. std::string regionId_;
  66. int pageSize_;
  67. std::string fsId_;
  68. std::string snapshotType_;
  69. std::string status_;
  70. };
  71. }
  72. }
  73. }
  74. #endif // !ALIBABACLOUD_DBFS_MODEL_LISTSNAPSHOTREQUEST_H_