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