CreateTopicRouteTableRequest.cc 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. #include <alibabacloud/iot/model/CreateTopicRouteTableRequest.h>
  17. using AlibabaCloud::Iot::Model::CreateTopicRouteTableRequest;
  18. CreateTopicRouteTableRequest::CreateTopicRouteTableRequest() :
  19. RpcServiceRequest("iot", "2017-04-20", "CreateTopicRouteTable")
  20. {}
  21. CreateTopicRouteTableRequest::~CreateTopicRouteTableRequest()
  22. {}
  23. std::vector<std::string> CreateTopicRouteTableRequest::getDstTopic()const
  24. {
  25. return dstTopic_;
  26. }
  27. void CreateTopicRouteTableRequest::setDstTopic(const std::vector<std::string>& dstTopic)
  28. {
  29. dstTopic_ = dstTopic;
  30. for(int i = 0; i!= dstTopic.size(); i++)
  31. setParameter("DstTopic."+ std::to_string(i), dstTopic.at(i));
  32. }
  33. std::string CreateTopicRouteTableRequest::getRegionId()const
  34. {
  35. return regionId_;
  36. }
  37. void CreateTopicRouteTableRequest::setRegionId(const std::string& regionId)
  38. {
  39. regionId_ = regionId;
  40. setParameter("RegionId", regionId);
  41. }
  42. std::string CreateTopicRouteTableRequest::getAccessKeyId()const
  43. {
  44. return accessKeyId_;
  45. }
  46. void CreateTopicRouteTableRequest::setAccessKeyId(const std::string& accessKeyId)
  47. {
  48. accessKeyId_ = accessKeyId;
  49. setParameter("AccessKeyId", accessKeyId);
  50. }
  51. std::string CreateTopicRouteTableRequest::getSrcTopic()const
  52. {
  53. return srcTopic_;
  54. }
  55. void CreateTopicRouteTableRequest::setSrcTopic(const std::string& srcTopic)
  56. {
  57. srcTopic_ = srcTopic;
  58. setParameter("SrcTopic", srcTopic);
  59. }