CreateBandwidthPackageRequest.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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_VPC_MODEL_CREATEBANDWIDTHPACKAGEREQUEST_H_
  17. #define ALIBABACLOUD_VPC_MODEL_CREATEBANDWIDTHPACKAGEREQUEST_H_
  18. #include <string>
  19. #include <vector>
  20. #include <alibabacloud/vpc/VpcRequest.h>
  21. namespace AlibabaCloud
  22. {
  23. namespace Vpc
  24. {
  25. namespace Model
  26. {
  27. class ALIBABACLOUD_VPC_EXPORT CreateBandwidthPackageRequest : public VpcRequest
  28. {
  29. public:
  30. CreateBandwidthPackageRequest();
  31. ~CreateBandwidthPackageRequest();
  32. long getResourceOwnerId()const;
  33. void setResourceOwnerId(long resourceOwnerId);
  34. std::string getResourceOwnerAccount()const;
  35. void setResourceOwnerAccount(const std::string& resourceOwnerAccount);
  36. std::string getClientToken()const;
  37. void setClientToken(const std::string& clientToken);
  38. int getBandwidth()const;
  39. void setBandwidth(int bandwidth);
  40. std::string getOwnerAccount()const;
  41. void setOwnerAccount(const std::string& ownerAccount);
  42. std::string getISP()const;
  43. void setISP(const std::string& iSP);
  44. std::string getDescription()const;
  45. void setDescription(const std::string& description);
  46. long getOwnerId()const;
  47. void setOwnerId(long ownerId);
  48. std::string getRegionId()const;
  49. void setRegionId(const std::string& regionId);
  50. std::string getZone()const;
  51. void setZone(const std::string& zone);
  52. std::string getInternetChargeType()const;
  53. void setInternetChargeType(const std::string& internetChargeType);
  54. std::string getName()const;
  55. void setName(const std::string& name);
  56. std::string getNatGatewayId()const;
  57. void setNatGatewayId(const std::string& natGatewayId);
  58. int getIpCount()const;
  59. void setIpCount(int ipCount);
  60. private:
  61. long resourceOwnerId_;
  62. std::string resourceOwnerAccount_;
  63. std::string clientToken_;
  64. int bandwidth_;
  65. std::string ownerAccount_;
  66. std::string iSP_;
  67. std::string description_;
  68. long ownerId_;
  69. std::string regionId_;
  70. std::string zone_;
  71. std::string internetChargeType_;
  72. std::string name_;
  73. std::string natGatewayId_;
  74. int ipCount_;
  75. };
  76. }
  77. }
  78. }
  79. #endif // !ALIBABACLOUD_VPC_MODEL_CREATEBANDWIDTHPACKAGEREQUEST_H_