mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-06-23 01:30:36 +00:00
Synchronizing API and documentation updates
This commit is contained in:
+12
-4
@@ -3236,7 +3236,7 @@ Name | Type | Description | Notes
|
||||
|
||||
<a name="listWorkflowJobs"></a>
|
||||
# **listWorkflowJobs**
|
||||
> ActionWorkflowJobsResponse listWorkflowJobs(owner, repo, status, page, limit)
|
||||
> ActionWorkflowJobsResponse listWorkflowJobs(owner, repo, status, page, limit, sort, order)
|
||||
|
||||
Lists all jobs for a repository
|
||||
|
||||
@@ -3297,8 +3297,10 @@ String repo = "repo_example"; // String | name of the repository
|
||||
String status = "status_example"; // String | workflow status (pending, queued, in_progress, failure, success, skipped)
|
||||
Integer page = 56; // Integer | page number of results to return (1-based)
|
||||
Integer limit = 56; // Integer | page size of results
|
||||
String sort = "sort_example"; // String | sort jobs by attribute. Supported values are \"id\". Default is \"id\"
|
||||
String order = "order_example"; // String | sort order, either \"asc\" (ascending) or \"desc\" (descending). Default is \"asc\"
|
||||
try {
|
||||
ActionWorkflowJobsResponse result = apiInstance.listWorkflowJobs(owner, repo, status, page, limit);
|
||||
ActionWorkflowJobsResponse result = apiInstance.listWorkflowJobs(owner, repo, status, page, limit, sort, order);
|
||||
System.out.println(result);
|
||||
} catch (ApiException e) {
|
||||
System.err.println("Exception when calling RepositoryApi#listWorkflowJobs");
|
||||
@@ -3315,6 +3317,8 @@ Name | Type | Description | Notes
|
||||
**status** | **String**| workflow status (pending, queued, in_progress, failure, success, skipped) | [optional]
|
||||
**page** | **Integer**| page number of results to return (1-based) | [optional]
|
||||
**limit** | **Integer**| page size of results | [optional]
|
||||
**sort** | **String**| sort jobs by attribute. Supported values are \"id\". Default is \"id\" | [optional]
|
||||
**order** | **String**| sort order, either \"asc\" (ascending) or \"desc\" (descending). Default is \"asc\" | [optional]
|
||||
|
||||
### Return type
|
||||
|
||||
@@ -3430,7 +3434,7 @@ Name | Type | Description | Notes
|
||||
|
||||
<a name="listWorkflowRunJobs"></a>
|
||||
# **listWorkflowRunJobs**
|
||||
> ActionWorkflowJobsResponse listWorkflowRunJobs(owner, repo, run, status, page, limit)
|
||||
> ActionWorkflowJobsResponse listWorkflowRunJobs(owner, repo, run, status, page, limit, sort, order)
|
||||
|
||||
Lists all jobs for a workflow run
|
||||
|
||||
@@ -3492,8 +3496,10 @@ Integer run = 56; // Integer | runid of the workflow run
|
||||
String status = "status_example"; // String | workflow status (pending, queued, in_progress, failure, success, skipped)
|
||||
Integer page = 56; // Integer | page number of results to return (1-based)
|
||||
Integer limit = 56; // Integer | page size of results
|
||||
String sort = "sort_example"; // String | sort jobs by attribute. Supported values are \"id\". Default is \"id\"
|
||||
String order = "order_example"; // String | sort order, either \"asc\" (ascending) or \"desc\" (descending). Default is \"asc\"
|
||||
try {
|
||||
ActionWorkflowJobsResponse result = apiInstance.listWorkflowRunJobs(owner, repo, run, status, page, limit);
|
||||
ActionWorkflowJobsResponse result = apiInstance.listWorkflowRunJobs(owner, repo, run, status, page, limit, sort, order);
|
||||
System.out.println(result);
|
||||
} catch (ApiException e) {
|
||||
System.err.println("Exception when calling RepositoryApi#listWorkflowRunJobs");
|
||||
@@ -3511,6 +3517,8 @@ Name | Type | Description | Notes
|
||||
**status** | **String**| workflow status (pending, queued, in_progress, failure, success, skipped) | [optional]
|
||||
**page** | **Integer**| page number of results to return (1-based) | [optional]
|
||||
**limit** | **Integer**| page size of results | [optional]
|
||||
**sort** | **String**| sort jobs by attribute. Supported values are \"id\". Default is \"id\" | [optional]
|
||||
**order** | **String**| sort order, either \"asc\" (ascending) or \"desc\" (descending). Default is \"asc\" | [optional]
|
||||
|
||||
### Return type
|
||||
|
||||
|
||||
Reference in New Issue
Block a user