CreateCenBandwidthPackageRequest.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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_CBN_MODEL_CREATECENBANDWIDTHPACKAGEREQUEST_H_
  17. #define ALIBABACLOUD_CBN_MODEL_CREATECENBANDWIDTHPACKAGEREQUEST_H_
  18. #include <string>
  19. #include <vector>
  20. #include <alibabacloud/core/RpcServiceRequest.h>
  21. #include <alibabacloud/cbn/CbnExport.h>
  22. namespace AlibabaCloud
  23. {
  24. namespace Cbn
  25. {
  26. namespace Model
  27. {
  28. class ALIBABACLOUD_CBN_EXPORT CreateCenBandwidthPackageRequest : public RpcServiceRequest
  29. {
  30. public:
  31. CreateCenBandwidthPackageRequest();
  32. ~CreateCenBandwidthPackageRequest();
  33. long getResourceOwnerId()const;
  34. void setResourceOwnerId(long resourceOwnerId);
  35. std::string getClientToken()const;
  36. void setClientToken(const std::string& clientToken);
  37. std::string getDescription()const;
  38. void setDescription(const std::string& description);
  39. int getAutoRenewDuration()const;
  40. void setAutoRenewDuration(int autoRenewDuration);
  41. std::string getBandwidthPackageChargeType()const;
  42. void setBandwidthPackageChargeType(const std::string& bandwidthPackageChargeType);
  43. std::string getResourceGroupId()const;
  44. void setResourceGroupId(const std::string& resourceGroupId);
  45. std::string getGeographicRegionBId()const;
  46. void setGeographicRegionBId(const std::string& geographicRegionBId);
  47. int getPeriod()const;
  48. void setPeriod(int period);
  49. std::string getGeographicRegionAId()const;
  50. void setGeographicRegionAId(const std::string& geographicRegionAId);
  51. bool getAutoPay()const;
  52. void setAutoPay(bool autoPay);
  53. std::string getResourceOwnerAccount()const;
  54. void setResourceOwnerAccount(const std::string& resourceOwnerAccount);
  55. int getBandwidth()const;
  56. void setBandwidth(int bandwidth);
  57. std::string getOwnerAccount()const;
  58. void setOwnerAccount(const std::string& ownerAccount);
  59. long getOwnerId()const;
  60. void setOwnerId(long ownerId);
  61. bool getAutoRenew()const;
  62. void setAutoRenew(bool autoRenew);
  63. std::string getName()const;
  64. void setName(const std::string& name);
  65. std::string getPricingCycle()const;
  66. void setPricingCycle(const std::string& pricingCycle);
  67. private:
  68. long resourceOwnerId_;
  69. std::string clientToken_;
  70. std::string description_;
  71. int autoRenewDuration_;
  72. std::string bandwidthPackageChargeType_;
  73. std::string resourceGroupId_;
  74. std::string geographicRegionBId_;
  75. int period_;
  76. std::string geographicRegionAId_;
  77. bool autoPay_;
  78. std::string resourceOwnerAccount_;
  79. int bandwidth_;
  80. std::string ownerAccount_;
  81. long ownerId_;
  82. bool autoRenew_;
  83. std::string name_;
  84. std::string pricingCycle_;
  85. };
  86. }
  87. }
  88. }
  89. #endif // !ALIBABACLOUD_CBN_MODEL_CREATECENBANDWIDTHPACKAGEREQUEST_H_