DescribeLivePullStreamConfigRequest.cc 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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/cdn/model/DescribeLivePullStreamConfigRequest.h>
  17. using AlibabaCloud::Cdn::Model::DescribeLivePullStreamConfigRequest;
  18. DescribeLivePullStreamConfigRequest::DescribeLivePullStreamConfigRequest() :
  19. RpcServiceRequest("cdn", "2014-11-11", "DescribeLivePullStreamConfig")
  20. {}
  21. DescribeLivePullStreamConfigRequest::~DescribeLivePullStreamConfigRequest()
  22. {}
  23. std::string DescribeLivePullStreamConfigRequest::getSecurityToken()const
  24. {
  25. return securityToken_;
  26. }
  27. void DescribeLivePullStreamConfigRequest::setSecurityToken(const std::string& securityToken)
  28. {
  29. securityToken_ = securityToken;
  30. setParameter("SecurityToken", securityToken);
  31. }
  32. std::string DescribeLivePullStreamConfigRequest::getDomainName()const
  33. {
  34. return domainName_;
  35. }
  36. void DescribeLivePullStreamConfigRequest::setDomainName(const std::string& domainName)
  37. {
  38. domainName_ = domainName;
  39. setParameter("DomainName", domainName);
  40. }
  41. long DescribeLivePullStreamConfigRequest::getOwnerId()const
  42. {
  43. return ownerId_;
  44. }
  45. void DescribeLivePullStreamConfigRequest::setOwnerId(long ownerId)
  46. {
  47. ownerId_ = ownerId;
  48. setParameter("OwnerId", std::to_string(ownerId));
  49. }
  50. std::string DescribeLivePullStreamConfigRequest::getAccessKeyId()const
  51. {
  52. return accessKeyId_;
  53. }
  54. void DescribeLivePullStreamConfigRequest::setAccessKeyId(const std::string& accessKeyId)
  55. {
  56. accessKeyId_ = accessKeyId;
  57. setParameter("AccessKeyId", accessKeyId);
  58. }