CreateRouterInterfaceRequest.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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_CREATEROUTERINTERFACEREQUEST_H_
  17. #define ALIBABACLOUD_VPC_MODEL_CREATEROUTERINTERFACEREQUEST_H_
  18. #include <string>
  19. #include <vector>
  20. #include <alibabacloud/core/RpcServiceRequest.h>
  21. #include <alibabacloud/vpc/VpcExport.h>
  22. namespace AlibabaCloud
  23. {
  24. namespace Vpc
  25. {
  26. namespace Model
  27. {
  28. class ALIBABACLOUD_VPC_EXPORT CreateRouterInterfaceRequest : public RpcServiceRequest
  29. {
  30. public:
  31. CreateRouterInterfaceRequest();
  32. ~CreateRouterInterfaceRequest();
  33. std::string getAccessPointId()const;
  34. void setAccessPointId(const std::string& accessPointId);
  35. std::string getOppositeRouterId()const;
  36. void setOppositeRouterId(const std::string& oppositeRouterId);
  37. std::string getOppositeAccessPointId()const;
  38. void setOppositeAccessPointId(const std::string& oppositeAccessPointId);
  39. long getResourceOwnerId()const;
  40. void setResourceOwnerId(long resourceOwnerId);
  41. std::string getRole()const;
  42. void setRole(const std::string& role);
  43. std::string getClientToken()const;
  44. void setClientToken(const std::string& clientToken);
  45. std::string getHealthCheckTargetIp()const;
  46. void setHealthCheckTargetIp(const std::string& healthCheckTargetIp);
  47. std::string getDescription()const;
  48. void setDescription(const std::string& description);
  49. std::string getSpec()const;
  50. void setSpec(const std::string& spec);
  51. std::string getRegionId()const;
  52. void setRegionId(const std::string& regionId);
  53. std::string getOppositeInterfaceId()const;
  54. void setOppositeInterfaceId(const std::string& oppositeInterfaceId);
  55. std::string getInstanceChargeType()const;
  56. void setInstanceChargeType(const std::string& instanceChargeType);
  57. int getPeriod()const;
  58. void setPeriod(int period);
  59. bool getAutoPay()const;
  60. void setAutoPay(bool autoPay);
  61. std::string getResourceOwnerAccount()const;
  62. void setResourceOwnerAccount(const std::string& resourceOwnerAccount);
  63. std::string getOppositeRegionId()const;
  64. void setOppositeRegionId(const std::string& oppositeRegionId);
  65. std::string getOwnerAccount()const;
  66. void setOwnerAccount(const std::string& ownerAccount);
  67. long getOwnerId()const;
  68. void setOwnerId(long ownerId);
  69. std::string getOppositeInterfaceOwnerId()const;
  70. void setOppositeInterfaceOwnerId(const std::string& oppositeInterfaceOwnerId);
  71. std::string getRouterType()const;
  72. void setRouterType(const std::string& routerType);
  73. std::string getHealthCheckSourceIp()const;
  74. void setHealthCheckSourceIp(const std::string& healthCheckSourceIp);
  75. std::string getRouterId()const;
  76. void setRouterId(const std::string& routerId);
  77. std::string getOppositeRouterType()const;
  78. void setOppositeRouterType(const std::string& oppositeRouterType);
  79. std::string getName()const;
  80. void setName(const std::string& name);
  81. std::string getPricingCycle()const;
  82. void setPricingCycle(const std::string& pricingCycle);
  83. private:
  84. std::string accessPointId_;
  85. std::string oppositeRouterId_;
  86. std::string oppositeAccessPointId_;
  87. long resourceOwnerId_;
  88. std::string role_;
  89. std::string clientToken_;
  90. std::string healthCheckTargetIp_;
  91. std::string description_;
  92. std::string spec_;
  93. std::string regionId_;
  94. std::string oppositeInterfaceId_;
  95. std::string instanceChargeType_;
  96. int period_;
  97. bool autoPay_;
  98. std::string resourceOwnerAccount_;
  99. std::string oppositeRegionId_;
  100. std::string ownerAccount_;
  101. long ownerId_;
  102. std::string oppositeInterfaceOwnerId_;
  103. std::string routerType_;
  104. std::string healthCheckSourceIp_;
  105. std::string routerId_;
  106. std::string oppositeRouterType_;
  107. std::string name_;
  108. std::string pricingCycle_;
  109. };
  110. }
  111. }
  112. }
  113. #endif // !ALIBABACLOUD_VPC_MODEL_CREATEROUTERINTERFACEREQUEST_H_