CreateTransitRouterVbrAttachmentRequest.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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_CREATETRANSITROUTERVBRATTACHMENTREQUEST_H_
  17. #define ALIBABACLOUD_CBN_MODEL_CREATETRANSITROUTERVBRATTACHMENTREQUEST_H_
  18. #include <alibabacloud/cbn/CbnExport.h>
  19. #include <alibabacloud/core/RpcServiceRequest.h>
  20. #include <string>
  21. #include <vector>
  22. #include <map>
  23. namespace AlibabaCloud {
  24. namespace Cbn {
  25. namespace Model {
  26. class ALIBABACLOUD_CBN_EXPORT CreateTransitRouterVbrAttachmentRequest : public RpcServiceRequest {
  27. public:
  28. CreateTransitRouterVbrAttachmentRequest();
  29. ~CreateTransitRouterVbrAttachmentRequest();
  30. long getResourceOwnerId() const;
  31. void setResourceOwnerId(long resourceOwnerId);
  32. std::string getClientToken() const;
  33. void setClientToken(const std::string &clientToken);
  34. std::string getCenId() const;
  35. void setCenId(const std::string &cenId);
  36. bool getRouteTableAssociationEnabled() const;
  37. void setRouteTableAssociationEnabled(bool routeTableAssociationEnabled);
  38. std::string getVbrId() const;
  39. void setVbrId(const std::string &vbrId);
  40. std::string getTransitRouterAttachmentName() const;
  41. void setTransitRouterAttachmentName(const std::string &transitRouterAttachmentName);
  42. std::string getRegionId() const;
  43. void setRegionId(const std::string &regionId);
  44. bool getAutoPublishRouteEnabled() const;
  45. void setAutoPublishRouteEnabled(bool autoPublishRouteEnabled);
  46. bool getRouteTablePropagationEnabled() const;
  47. void setRouteTablePropagationEnabled(bool routeTablePropagationEnabled);
  48. bool getDryRun() const;
  49. void setDryRun(bool dryRun);
  50. std::string getResourceOwnerAccount() const;
  51. void setResourceOwnerAccount(const std::string &resourceOwnerAccount);
  52. std::string getOwnerAccount() const;
  53. void setOwnerAccount(const std::string &ownerAccount);
  54. long getOwnerId() const;
  55. void setOwnerId(long ownerId);
  56. std::string getTransitRouterId() const;
  57. void setTransitRouterId(const std::string &transitRouterId);
  58. std::string getResourceType() const;
  59. void setResourceType(const std::string &resourceType);
  60. std::string getTransitRouterAttachmentDescription() const;
  61. void setTransitRouterAttachmentDescription(const std::string &transitRouterAttachmentDescription);
  62. long getVbrOwnerId() const;
  63. void setVbrOwnerId(long vbrOwnerId);
  64. private:
  65. long resourceOwnerId_;
  66. std::string clientToken_;
  67. std::string cenId_;
  68. bool routeTableAssociationEnabled_;
  69. std::string vbrId_;
  70. std::string transitRouterAttachmentName_;
  71. std::string regionId_;
  72. bool autoPublishRouteEnabled_;
  73. bool routeTablePropagationEnabled_;
  74. bool dryRun_;
  75. std::string resourceOwnerAccount_;
  76. std::string ownerAccount_;
  77. long ownerId_;
  78. std::string transitRouterId_;
  79. std::string resourceType_;
  80. std::string transitRouterAttachmentDescription_;
  81. long vbrOwnerId_;
  82. };
  83. } // namespace Model
  84. } // namespace Cbn
  85. } // namespace AlibabaCloud
  86. #endif // !ALIBABACLOUD_CBN_MODEL_CREATETRANSITROUTERVBRATTACHMENTREQUEST_H_