-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f28b29f
commit eff00b0
Showing
46 changed files
with
6,415 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.1.103 | ||
3.1.104 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
142 changes: 142 additions & 0 deletions
142
live/include/huaweicloud/live/v1/model/CreateHarvestTaskInfoReq.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
|
||
#ifndef HUAWEICLOUD_SDK_LIVE_V1_MODEL_CreateHarvestTaskInfoReq_H_ | ||
#define HUAWEICLOUD_SDK_LIVE_V1_MODEL_CreateHarvestTaskInfoReq_H_ | ||
|
||
|
||
#include <huaweicloud/live/v1/LiveExport.h> | ||
|
||
#include <huaweicloud/core/utils/ModelBase.h> | ||
#include <huaweicloud/core/utils/Utils.h> | ||
#include <huaweicloud/core/http/HttpResponse.h> | ||
|
||
#include <string> | ||
#include <huaweicloud/live/v1/model/VodPackageInfo.h> | ||
|
||
namespace HuaweiCloud { | ||
namespace Sdk { | ||
namespace Live { | ||
namespace V1 { | ||
namespace Model { | ||
|
||
using namespace HuaweiCloud::Sdk::Core::Utils; | ||
using namespace HuaweiCloud::Sdk::Core::Http; | ||
/// <summary> | ||
/// 创建Live2Vod任务 | ||
/// </summary> | ||
class HUAWEICLOUD_LIVE_V1_EXPORT CreateHarvestTaskInfoReq | ||
: public ModelBase | ||
{ | ||
public: | ||
CreateHarvestTaskInfoReq(); | ||
virtual ~CreateHarvestTaskInfoReq(); | ||
|
||
///////////////////////////////////////////// | ||
/// ModelBase overrides | ||
|
||
void validate() override; | ||
web::json::value toJson() const override; | ||
bool fromJson(const web::json::value& json) override; | ||
///////////////////////////////////////////// | ||
/// CreateHarvestTaskInfoReq members | ||
|
||
/// <summary> | ||
/// 频道推流域名 | ||
/// </summary> | ||
|
||
std::string getDomain() const; | ||
bool domainIsSet() const; | ||
void unsetdomain(); | ||
void setDomain(const std::string& value); | ||
|
||
/// <summary> | ||
/// 组名或应用名 | ||
/// </summary> | ||
|
||
std::string getAppName() const; | ||
bool appNameIsSet() const; | ||
void unsetappName(); | ||
void setAppName(const std::string& value); | ||
|
||
/// <summary> | ||
/// 频道ID。频道唯一标识,为必填项。频道ID不建议输入下划线“_”,否则会影响转码和截图任务 | ||
/// </summary> | ||
|
||
std::string getId() const; | ||
bool idIsSet() const; | ||
void unsetid(); | ||
void setId(const std::string& value); | ||
|
||
/// <summary> | ||
/// 开始时间。Unix时间戳:单位是秒 | ||
/// </summary> | ||
|
||
int32_t getStartTime() const; | ||
bool startTimeIsSet() const; | ||
void unsetstartTime(); | ||
void setStartTime(int32_t value); | ||
|
||
/// <summary> | ||
/// 结束时间。Unix时间戳:单位是秒 | ||
/// </summary> | ||
|
||
int32_t getEndTime() const; | ||
bool endTimeIsSet() const; | ||
void unsetendTime(); | ||
void setEndTime(int32_t value); | ||
|
||
/// <summary> | ||
/// 事件名称。必选配置 | ||
/// </summary> | ||
|
||
std::string getEventName() const; | ||
bool eventNameIsSet() const; | ||
void unseteventName(); | ||
void setEventName(const std::string& value); | ||
|
||
/// <summary> | ||
/// 任务描述,可选配置 | ||
/// </summary> | ||
|
||
std::string getTaskDesc() const; | ||
bool taskDescIsSet() const; | ||
void unsettaskDesc(); | ||
void setTaskDesc(const std::string& value); | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
|
||
VodPackageInfo getPackageInfo() const; | ||
bool packageInfoIsSet() const; | ||
void unsetpackageInfo(); | ||
void setPackageInfo(const VodPackageInfo& value); | ||
|
||
|
||
protected: | ||
std::string domain_; | ||
bool domainIsSet_; | ||
std::string appName_; | ||
bool appNameIsSet_; | ||
std::string id_; | ||
bool idIsSet_; | ||
int32_t startTime_; | ||
bool startTimeIsSet_; | ||
int32_t endTime_; | ||
bool endTimeIsSet_; | ||
std::string eventName_; | ||
bool eventNameIsSet_; | ||
std::string taskDesc_; | ||
bool taskDescIsSet_; | ||
VodPackageInfo packageInfo_; | ||
bool packageInfoIsSet_; | ||
|
||
}; | ||
|
||
|
||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
#endif // HUAWEICLOUD_SDK_LIVE_V1_MODEL_CreateHarvestTaskInfoReq_H_ |
Oops, something went wrong.