Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated Flowpipe SDK to incorporate latest API changes and the new Trigger API endpoints. #13

Merged
merged 4 commits into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update
  • Loading branch information
vhadianto committed Jul 26, 2024
commit 1bfbceb323e84bbdf7963a91cb06eaf0f42744de
6 changes: 6 additions & 0 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1185,6 +1185,7 @@ components:
pipeline_execution_id: pipeline_execution_id
last_loaded: last_loaded
is_stale: true
type: type
status: status
properties:
execution_id:
Expand All @@ -1199,6 +1200,8 @@ components:
type: string
status:
type: string
type:
type: string
type: object
FlowpipeTriggerResponseMetadata:
example:
Expand Down Expand Up @@ -2052,6 +2055,7 @@ components:
pipeline_execution_id: pipeline_execution_id
last_loaded: last_loaded
is_stale: true
type: type
status: status
errors:
- pipeline: pipeline
Expand Down Expand Up @@ -2160,6 +2164,7 @@ components:
pipeline_execution_id: pipeline_execution_id
last_loaded: last_loaded
is_stale: true
type: type
status: status
errors:
- pipeline: pipeline
Expand Down Expand Up @@ -2200,6 +2205,7 @@ components:
pipeline_execution_id: pipeline_execution_id
last_loaded: last_loaded
is_stale: true
type: type
status: status
errors:
- pipeline: pipeline
Expand Down
26 changes: 26 additions & 0 deletions docs/FlowpipeResponseMetadata.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Name | Type | Description | Notes
**Pipeline** | Pointer to **string** | | [optional]
**PipelineExecutionId** | Pointer to **string** | | [optional]
**Status** | Pointer to **string** | | [optional]
**Type** | Pointer to **string** | | [optional]

## Methods

Expand Down Expand Up @@ -180,6 +181,31 @@ SetStatus sets Status field to given value.

HasStatus returns a boolean if a field has been set.

### GetType

`func (o *FlowpipeResponseMetadata) GetType() string`

GetType returns the Type field if non-nil, zero value otherwise.

### GetTypeOk

`func (o *FlowpipeResponseMetadata) GetTypeOk() (*string, bool)`

GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetType

`func (o *FlowpipeResponseMetadata) SetType(v string)`

SetType sets Type field to given value.

### HasType

`func (o *FlowpipeResponseMetadata) HasType() bool`

HasType returns a boolean if a field has been set.


[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
36 changes: 36 additions & 0 deletions model_flowpipe_response_metadata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.