Skip to content

Commit

Permalink
chore: regenerate service
Browse files Browse the repository at this point in the history
  • Loading branch information
simosho committed Mar 15, 2024
1 parent 37e4cd4 commit c6c7380
Show file tree
Hide file tree
Showing 1,169 changed files with 28,452 additions and 20,753 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ TEST_FOLDER=test
TEST_RUN_FOLDER=${TEST_FOLDER}/_run

CMD_FORMAT=ruff format
CMD_FIX=ruff check --fix
CMD_FIX=ruff check --fix --unsafe-fixes
CMD_CHECK=ruff check

# disables test QA unless set to empty string
Expand Down
9 changes: 6 additions & 3 deletions docs/DefaultApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Method | HTTP request | Description
# **get**
> get(
> headers
> ) -> RootPageResponse
> ) -> RootPageResponse
Version

Expand Down Expand Up @@ -50,8 +50,11 @@ This endpoint does not need any parameter.

### Return type


[**RootPageResponse**](RootPageResponse.md)
Selected path param | Raw response param | Return Type | Description | Links
------------------- | ------------------ | ------------ | ----------- | -----
Literal[""] _(default)_ | False _(default)_ | **`RootPageResponse`** | | [RootPageResponse](RootPageResponse.md)
str | False _(default)_ | **`Any`** | If any other string value for the selected path is provided, the exact type of the response will only be known at runtime. |
/ | True | `Response` | The raw http response object.

### HTTP request headers

Expand Down
45 changes: 27 additions & 18 deletions docs/JobsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Method | HTTP request | Description
> events(
> query: EventsQuery,
> headers
> ) -> EventWithCloseSSE
> ) -> EventWithCloseSSE
Stream Events

Expand Down Expand Up @@ -58,15 +58,18 @@ GET /registry/v2/jobs/events
Name | Type | API binding | Description | Notes
-------- | ----- | ------------- | ------------- | -------------
**query** | [QueryParamTypes](Operation.md#req_arg_query) \| **None** | URL query parameter | |
**query['type']** | [**JobType**](.md) | query parameter `"type"` | The type of the job. | [optional]
**query['id']** | **str** | query parameter `"id"` | The id of the job. | [optional]
**query['children']** | **bool** | query parameter `"children"` | If set to <code>true</code>, the event stream will include events of the job's dependants. E.g., when subscribing to a verify job with `children=true`, you will also receive the events of the underlying build and deploy jobs. Defaults to <code>false</code>. | [optional]
**query['type']** (dict) <br> **query.type** (Query) | [**JobType**](.md) | query parameter `"type"` | The type of the job. | [optional]
**query['id']** (dict) <br> **query.id** (Query) | **str** | query parameter `"id"` | The id of the job. | [optional]
**query['children']** (dict) <br> **query.children** (Query) | **bool** | query parameter `"children"` | If set to &lt;code&gt;true&lt;/code&gt;, the event stream will include events of the job&#39;s dependants. E.g., when subscribing to a verify job with &#x60;children&#x3D;true&#x60;, you will also receive the events of the underlying build and deploy jobs. Defaults to &lt;code&gt;false&lt;/code&gt;. | [optional]
**headers** | [HeaderTypes](Operation.md#req_headers) | request headers | |

### Return type


[**EventWithCloseSSE**](EventWithCloseSSE.md)
Selected path param | Raw response param | Return Type | Description | Links
------------------- | ------------------ | ------------ | ----------- | -----
Literal[""] _(default)_ | False _(default)_ | **`EventWithCloseSSE`** | | [EventWithCloseSSE](EventWithCloseSSE.md)
str | False _(default)_ | **`Any`** | If any other string value for the selected path is provided, the exact type of the response will only be known at runtime. |
/ | True | `Response` | The raw http response object.

### HTTP request headers

Expand All @@ -86,7 +89,7 @@ Name | Type | API binding | Description | Notes
> type: JobType,
> id: str,
> headers
> ) -> JobResponse
> ) -> JobResponse
Get Job

Expand Down Expand Up @@ -133,8 +136,11 @@ Name | Type | API binding | Description | Notes

### Return type


[**JobResponse**](JobResponse.md)
Selected path param | Raw response param | Return Type | Description | Links
------------------- | ------------------ | ------------ | ----------- | -----
Literal[""] _(default)_ | False _(default)_ | **`JobResponse`** | | [JobResponse](JobResponse.md)
str | False _(default)_ | **`Any`** | If any other string value for the selected path is provided, the exact type of the response will only be known at runtime. |
/ | True | `Response` | The raw http response object.

### HTTP request headers

Expand All @@ -153,7 +159,7 @@ Name | Type | API binding | Description | Notes
> list(
> query: ListQuery,
> headers
> ) -> JobsResponse
> ) -> JobsResponse
List Jobs

Expand Down Expand Up @@ -204,18 +210,21 @@ GET /registry/v2/jobs/
Name | Type | API binding | Description | Notes
-------- | ----- | ------------- | ------------- | -------------
**query** | [QueryParamTypes](Operation.md#req_arg_query) \| **None** | URL query parameter | |
**query['limit']** | **float** | query parameter `"limit"` | The maximum number of items to be return from this query. Has a deployment-defined default and maximum value. | [optional]
**query['type']** | [**List[JobTypeSchema]**](JobTypeSchema.md) | query parameter `"type"` | Filter on job type | [optional]
**query['state']** | [**List[JobStateResult]**](JobStateResult.md) | query parameter `"state"` | Filter on job state | [optional]
**query['functionType']** | [**List[FunctionType]**](FunctionType.md) | query parameter `"functionType"` | Filter on function type | [optional]
**query['createdBefore']** | [**TimestampSpec**](.md) | query parameter `"createdBefore"` | Filter on jobs that created before the given timestamp or age | [optional]
**query['createdAfter']** | [**TimestampSpec**](.md) | query parameter `"createdAfter"` | Filter on jobs that created after the given timestamp or age | [optional]
**query['limit']** (dict) <br> **query.limit** (Query) | **float** | query parameter `"limit"` | The maximum number of items to be return from this query. Has a deployment-defined default and maximum value. | [optional]
**query['type']** (dict) <br> **query.type** (Query) | [**List[JobTypeSchema]**](JobTypeSchema.md) | query parameter `"type"` | Filter on job type | [optional]
**query['state']** (dict) <br> **query.state** (Query) | [**List[JobStateResult]**](JobStateResult.md) | query parameter `"state"` | Filter on job state | [optional]
**query['functionType']** (dict) <br> **query.function_type** (Query) | [**List[FunctionType]**](FunctionType.md) | query parameter `"functionType"` | Filter on function type | [optional]
**query['createdBefore']** (dict) <br> **query.created_before** (Query) | [**TimestampSpec**](.md) | query parameter `"createdBefore"` | Filter on jobs that created before the given timestamp or age | [optional]
**query['createdAfter']** (dict) <br> **query.created_after** (Query) | [**TimestampSpec**](.md) | query parameter `"createdAfter"` | Filter on jobs that created after the given timestamp or age | [optional]
**headers** | [HeaderTypes](Operation.md#req_headers) | request headers | |

### Return type


[**JobsResponse**](JobsResponse.md)
Selected path param | Raw response param | Return Type | Description | Links
------------------- | ------------------ | ------------ | ----------- | -----
Literal[""] _(default)_ | False _(default)_ | **`JobsResponse`** | | [JobsResponse](JobsResponse.md)
str | False _(default)_ | **`Any`** | If any other string value for the selected path is provided, the exact type of the response will only be known at runtime. |
/ | True | `Response` | The raw http response object.

### HTTP request headers

Expand Down
Loading

0 comments on commit c6c7380

Please sign in to comment.