CreateTagJobRequest.cc 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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/imm/model/CreateTagJobRequest.h>
  17. using AlibabaCloud::Imm::Model::CreateTagJobRequest;
  18. CreateTagJobRequest::CreateTagJobRequest() :
  19. RpcServiceRequest("imm", "2017-09-06", "CreateTagJob")
  20. {}
  21. CreateTagJobRequest::~CreateTagJobRequest()
  22. {}
  23. std::string CreateTagJobRequest::getProject()const
  24. {
  25. return project_;
  26. }
  27. void CreateTagJobRequest::setProject(const std::string& project)
  28. {
  29. project_ = project;
  30. setCoreParameter("Project", project);
  31. }
  32. std::string CreateTagJobRequest::getExternalID()const
  33. {
  34. return externalID_;
  35. }
  36. void CreateTagJobRequest::setExternalID(const std::string& externalID)
  37. {
  38. externalID_ = externalID;
  39. setCoreParameter("ExternalID", externalID);
  40. }
  41. std::string CreateTagJobRequest::getAccessKeyId()const
  42. {
  43. return accessKeyId_;
  44. }
  45. void CreateTagJobRequest::setAccessKeyId(const std::string& accessKeyId)
  46. {
  47. accessKeyId_ = accessKeyId;
  48. setCoreParameter("AccessKeyId", accessKeyId);
  49. }
  50. std::string CreateTagJobRequest::getNotifyEndpoint()const
  51. {
  52. return notifyEndpoint_;
  53. }
  54. void CreateTagJobRequest::setNotifyEndpoint(const std::string& notifyEndpoint)
  55. {
  56. notifyEndpoint_ = notifyEndpoint;
  57. setCoreParameter("NotifyEndpoint", notifyEndpoint);
  58. }
  59. std::string CreateTagJobRequest::getNotifyTopicName()const
  60. {
  61. return notifyTopicName_;
  62. }
  63. void CreateTagJobRequest::setNotifyTopicName(const std::string& notifyTopicName)
  64. {
  65. notifyTopicName_ = notifyTopicName;
  66. setCoreParameter("NotifyTopicName", notifyTopicName);
  67. }
  68. std::string CreateTagJobRequest::getSrcUri()const
  69. {
  70. return srcUri_;
  71. }
  72. void CreateTagJobRequest::setSrcUri(const std::string& srcUri)
  73. {
  74. srcUri_ = srcUri;
  75. setCoreParameter("SrcUri", srcUri);
  76. }