AddLivePullStreamInfoRequest.h 2.2 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. #ifndef ALIBABACLOUD_CDN_MODEL_ADDLIVEPULLSTREAMINFOREQUEST_H_
  17. #define ALIBABACLOUD_CDN_MODEL_ADDLIVEPULLSTREAMINFOREQUEST_H_
  18. #include <string>
  19. #include <vector>
  20. #include <alibabacloud/cdn/CdnRequest.h>
  21. namespace AlibabaCloud
  22. {
  23. namespace Cdn
  24. {
  25. namespace Model
  26. {
  27. class ALIBABACLOUD_CDN_EXPORT AddLivePullStreamInfoRequest : public CdnRequest
  28. {
  29. public:
  30. AddLivePullStreamInfoRequest();
  31. ~AddLivePullStreamInfoRequest();
  32. std::string getSourceUrl()const;
  33. void setSourceUrl(const std::string& sourceUrl);
  34. std::string getAppName()const;
  35. void setAppName(const std::string& appName);
  36. std::string getSecurityToken()const;
  37. void setSecurityToken(const std::string& securityToken);
  38. std::string getDomainName()const;
  39. void setDomainName(const std::string& domainName);
  40. std::string getEndTime()const;
  41. void setEndTime(const std::string& endTime);
  42. std::string getStartTime()const;
  43. void setStartTime(const std::string& startTime);
  44. long getOwnerId()const;
  45. void setOwnerId(long ownerId);
  46. std::string getStreamName()const;
  47. void setStreamName(const std::string& streamName);
  48. std::string getAccessKeyId()const;
  49. void setAccessKeyId(const std::string& accessKeyId);
  50. private:
  51. std::string sourceUrl_;
  52. std::string appName_;
  53. std::string securityToken_;
  54. std::string domainName_;
  55. std::string endTime_;
  56. std::string startTime_;
  57. long ownerId_;
  58. std::string streamName_;
  59. std::string accessKeyId_;
  60. };
  61. }
  62. }
  63. }
  64. #endif // !ALIBABACLOUD_CDN_MODEL_ADDLIVEPULLSTREAMINFOREQUEST_H_