1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#[cfg(feature = "CreateBuildJob")]
pub mod CreateBuildJob;
#[cfg(feature = "CreateTemplates")]
pub mod CreateTemplates;
#[cfg(feature = "DeleteBuildJob")]
pub mod DeleteBuildJob;
#[cfg(feature = "DeleteTemplates")]
pub mod DeleteTemplates;
#[cfg(feature = "DisableBuildJob")]
pub mod DisableBuildJob;
#[cfg(feature = "DisableNotice")]
pub mod DisableNotice;
#[cfg(feature = "DownloadBuildLog")]
pub mod DownloadBuildLog;
#[cfg(feature = "DownloadKeystore")]
pub mod DownloadKeystore;
#[cfg(feature = "DownloadLogByRecordId")]
pub mod DownloadLogByRecordId;
#[cfg(feature = "DownloadTaskLog")]
pub mod DownloadTaskLog;
#[cfg(feature = "EnableBuildJob")]
pub mod EnableBuildJob;
#[cfg(feature = "ListJobConfig")]
pub mod ListJobConfig;
#[cfg(feature = "ListNotice")]
pub mod ListNotice;
#[cfg(feature = "ListTemplates")]
pub mod ListTemplates;
#[cfg(feature = "RunJob")]
pub mod RunJob;
#[cfg(feature = "ShowFlowGraph")]
pub mod ShowFlowGraph;
#[cfg(feature = "ShowHistoryDetails")]
pub mod ShowHistoryDetails;
#[cfg(feature = "ShowJobListByProjectId")]
pub mod ShowJobListByProjectId;
#[cfg(feature = "ShowJobStatus")]
pub mod ShowJobStatus;
#[cfg(feature = "ShowJobSuccessRatio")]
pub mod ShowJobSuccessRatio;
#[cfg(feature = "ShowLastHistory")]
pub mod ShowLastHistory;
#[cfg(feature = "ShowListHistory")]
pub mod ShowListHistory;
#[cfg(feature = "ShowListPeriodHistory")]
pub mod ShowListPeriodHistory;
#[cfg(feature = "ShowOutputInfo")]
pub mod ShowOutputInfo;
#[cfg(feature = "ShowRecordDetail")]
pub mod ShowRecordDetail;
#[cfg(feature = "ShowRecordInfo")]
pub mod ShowRecordInfo;
#[cfg(feature = "StopBuildJob")]
pub mod StopBuildJob;
#[cfg(feature = "StopJob")]
pub mod StopJob;
#[cfg(feature = "UpdateBuildJob")]
pub mod UpdateBuildJob;
#[cfg(feature = "UpdateNotice")]
pub mod UpdateNotice;