Skip to content

Commit

Permalink
Updated SDK from latest Flowpipe (v0.7.x).
Browse files Browse the repository at this point in the history
  • Loading branch information
vhadianto committed Aug 16, 2024
1 parent b6cc751 commit e6a6891
Show file tree
Hide file tree
Showing 5 changed files with 340 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Flowpipe SDK Go

## v0.6.0 [tbd]

SDK generated from Flowpipe v0.7.x

## v0.5.0 [2024-08-13]

SDK generated from Flowpipe v0.7.x
25 changes: 25 additions & 0 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1587,8 +1587,13 @@ components:
FpVariable:
example:
default: ""
type_string: type_string
file_name: file_name
value_default: "{}"
name: name
description: description
end_line_number: 0
start_line_number: 6
type: type
value: ""
mod_name: mod_name
Expand All @@ -1597,14 +1602,24 @@ components:
type: AnyType
description:
type: string
end_line_number:
type: integer
file_name:
type: string
mod_name:
type: string
name:
type: string
start_line_number:
type: integer
type:
type: string
type_string:
type: string
value:
type: AnyType
value_default:
type: object
type: object
ListIntegrationResponse:
example:
Expand Down Expand Up @@ -1979,14 +1994,24 @@ components:
next_token: next_token
items:
- default: ""
type_string: type_string
file_name: file_name
value_default: "{}"
name: name
description: description
end_line_number: 0
start_line_number: 6
type: type
value: ""
mod_name: mod_name
- default: ""
type_string: type_string
file_name: file_name
value_default: "{}"
name: name
description: description
end_line_number: 0
start_line_number: 6
type: type
value: ""
mod_name: mod_name
Expand Down
130 changes: 130 additions & 0 deletions docs/FpVariable.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,15 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Default** | Pointer to **interface{}** | | [optional]
**Description** | Pointer to **string** | | [optional]
**EndLineNumber** | Pointer to **int32** | | [optional]
**FileName** | Pointer to **string** | | [optional]
**ModName** | Pointer to **string** | | [optional]
**Name** | Pointer to **string** | | [optional]
**StartLineNumber** | Pointer to **int32** | | [optional]
**Type** | Pointer to **string** | | [optional]
**TypeString** | Pointer to **string** | | [optional]
**Value** | Pointer to **interface{}** | | [optional]
**ValueDefault** | Pointer to **map[string]interface{}** | | [optional]

## Methods

Expand Down Expand Up @@ -80,6 +85,56 @@ SetDescription sets Description field to given value.

HasDescription returns a boolean if a field has been set.

### GetEndLineNumber

`func (o *FpVariable) GetEndLineNumber() int32`

GetEndLineNumber returns the EndLineNumber field if non-nil, zero value otherwise.

### GetEndLineNumberOk

`func (o *FpVariable) GetEndLineNumberOk() (*int32, bool)`

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

### SetEndLineNumber

`func (o *FpVariable) SetEndLineNumber(v int32)`

SetEndLineNumber sets EndLineNumber field to given value.

### HasEndLineNumber

`func (o *FpVariable) HasEndLineNumber() bool`

HasEndLineNumber returns a boolean if a field has been set.

### GetFileName

`func (o *FpVariable) GetFileName() string`

GetFileName returns the FileName field if non-nil, zero value otherwise.

### GetFileNameOk

`func (o *FpVariable) GetFileNameOk() (*string, bool)`

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

### SetFileName

`func (o *FpVariable) SetFileName(v string)`

SetFileName sets FileName field to given value.

### HasFileName

`func (o *FpVariable) HasFileName() bool`

HasFileName returns a boolean if a field has been set.

### GetModName

`func (o *FpVariable) GetModName() string`
Expand Down Expand Up @@ -130,6 +185,31 @@ SetName sets Name field to given value.

HasName returns a boolean if a field has been set.

### GetStartLineNumber

`func (o *FpVariable) GetStartLineNumber() int32`

GetStartLineNumber returns the StartLineNumber field if non-nil, zero value otherwise.

### GetStartLineNumberOk

`func (o *FpVariable) GetStartLineNumberOk() (*int32, bool)`

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

### SetStartLineNumber

`func (o *FpVariable) SetStartLineNumber(v int32)`

SetStartLineNumber sets StartLineNumber field to given value.

### HasStartLineNumber

`func (o *FpVariable) HasStartLineNumber() bool`

HasStartLineNumber returns a boolean if a field has been set.

### GetType

`func (o *FpVariable) GetType() string`
Expand All @@ -155,6 +235,31 @@ SetType sets Type field to given value.

HasType returns a boolean if a field has been set.

### GetTypeString

`func (o *FpVariable) GetTypeString() string`

GetTypeString returns the TypeString field if non-nil, zero value otherwise.

### GetTypeStringOk

`func (o *FpVariable) GetTypeStringOk() (*string, bool)`

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

### SetTypeString

`func (o *FpVariable) SetTypeString(v string)`

SetTypeString sets TypeString field to given value.

### HasTypeString

`func (o *FpVariable) HasTypeString() bool`

HasTypeString returns a boolean if a field has been set.

### GetValue

`func (o *FpVariable) GetValue() interface{}`
Expand All @@ -180,6 +285,31 @@ SetValue sets Value field to given value.

HasValue returns a boolean if a field has been set.

### GetValueDefault

`func (o *FpVariable) GetValueDefault() map[string]interface{}`

GetValueDefault returns the ValueDefault field if non-nil, zero value otherwise.

### GetValueDefaultOk

`func (o *FpVariable) GetValueDefaultOk() (*map[string]interface{}, bool)`

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

### SetValueDefault

`func (o *FpVariable) SetValueDefault(v map[string]interface{})`

SetValueDefault sets ValueDefault field to given value.

### HasValueDefault

`func (o *FpVariable) HasValueDefault() bool`

HasValueDefault 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
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/turbot/flowpipe-sdk-go

go 1.22
go 1.20

require github.com/stretchr/testify v1.9.0

Expand Down
Loading

0 comments on commit e6a6891

Please sign in to comment.