ModifyDBClusterServerlessConfRequest.h 3.0 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_POLARDB_MODEL_MODIFYDBCLUSTERSERVERLESSCONFREQUEST_H_
  17. #define ALIBABACLOUD_POLARDB_MODEL_MODIFYDBCLUSTERSERVERLESSCONFREQUEST_H_
  18. #include <alibabacloud/polardb/PolardbExport.h>
  19. #include <alibabacloud/core/RpcServiceRequest.h>
  20. #include <string>
  21. #include <vector>
  22. #include <map>
  23. namespace AlibabaCloud {
  24. namespace Polardb {
  25. namespace Model {
  26. class ALIBABACLOUD_POLARDB_EXPORT ModifyDBClusterServerlessConfRequest : public RpcServiceRequest {
  27. public:
  28. ModifyDBClusterServerlessConfRequest();
  29. ~ModifyDBClusterServerlessConfRequest();
  30. std::string getScaleRoNumMax() const;
  31. void setScaleRoNumMax(const std::string &scaleRoNumMax);
  32. long getResourceOwnerId() const;
  33. void setResourceOwnerId(long resourceOwnerId);
  34. std::string getScaleApRoNumMax() const;
  35. void setScaleApRoNumMax(const std::string &scaleApRoNumMax);
  36. std::string getScaleMax() const;
  37. void setScaleMax(const std::string &scaleMax);
  38. std::string getAccessKeyId() const;
  39. void setAccessKeyId(const std::string &accessKeyId);
  40. std::string getSecondsUntilAutoPause() const;
  41. void setSecondsUntilAutoPause(const std::string &secondsUntilAutoPause);
  42. std::string getScaleApRoNumMin() const;
  43. void setScaleApRoNumMin(const std::string &scaleApRoNumMin);
  44. std::string getScaleMin() const;
  45. void setScaleMin(const std::string &scaleMin);
  46. std::string getResourceOwnerAccount() const;
  47. void setResourceOwnerAccount(const std::string &resourceOwnerAccount);
  48. std::string getDBClusterId() const;
  49. void setDBClusterId(const std::string &dBClusterId);
  50. std::string getOwnerAccount() const;
  51. void setOwnerAccount(const std::string &ownerAccount);
  52. long getOwnerId() const;
  53. void setOwnerId(long ownerId);
  54. std::string getScaleRoNumMin() const;
  55. void setScaleRoNumMin(const std::string &scaleRoNumMin);
  56. std::string getAllowShutDown() const;
  57. void setAllowShutDown(const std::string &allowShutDown);
  58. private:
  59. std::string scaleRoNumMax_;
  60. long resourceOwnerId_;
  61. std::string scaleApRoNumMax_;
  62. std::string scaleMax_;
  63. std::string accessKeyId_;
  64. std::string secondsUntilAutoPause_;
  65. std::string scaleApRoNumMin_;
  66. std::string scaleMin_;
  67. std::string resourceOwnerAccount_;
  68. std::string dBClusterId_;
  69. std::string ownerAccount_;
  70. long ownerId_;
  71. std::string scaleRoNumMin_;
  72. std::string allowShutDown_;
  73. };
  74. } // namespace Model
  75. } // namespace Polardb
  76. } // namespace AlibabaCloud
  77. #endif // !ALIBABACLOUD_POLARDB_MODEL_MODIFYDBCLUSTERSERVERLESSCONFREQUEST_H_