Skip to content

Commit

Permalink
Updated from latest Flowpipe API model.
Browse files Browse the repository at this point in the history
  • Loading branch information
vhadianto committed Aug 22, 2024
1 parent 5518d51 commit ea19c36
Show file tree
Hide file tree
Showing 3 changed files with 101 additions and 34 deletions.
13 changes: 9 additions & 4 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1587,11 +1587,12 @@ components:
FpVariable:
example:
type_string: type_string
qualified_name: qualified_name
file_name: file_name
value_default: ""
name: name
description: description
end_line_number: 0
resource_name: resource_name
start_line_number: 6
type: type
value: ""
Expand All @@ -1605,7 +1606,9 @@ components:
type: string
mod_name:
type: string
name:
qualified_name:
type: string
resource_name:
type: string
start_line_number:
type: integer
Expand Down Expand Up @@ -1991,21 +1994,23 @@ components:
next_token: next_token
items:
- type_string: type_string
qualified_name: qualified_name
file_name: file_name
value_default: ""
name: name
description: description
end_line_number: 0
resource_name: resource_name
start_line_number: 6
type: type
value: ""
mod_name: mod_name
- type_string: type_string
qualified_name: qualified_name
file_name: file_name
value_default: ""
name: name
description: description
end_line_number: 0
resource_name: resource_name
start_line_number: 6
type: type
value: ""
Expand Down
52 changes: 39 additions & 13 deletions docs/FpVariable.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ Name | Type | Description | Notes
**EndLineNumber** | Pointer to **int32** | | [optional]
**FileName** | Pointer to **string** | | [optional]
**ModName** | Pointer to **string** | | [optional]
**Name** | Pointer to **string** | | [optional]
**QualifiedName** | Pointer to **string** | | [optional]
**ResourceName** | Pointer to **string** | | [optional]
**StartLineNumber** | Pointer to **int32** | | [optional]
**Type** | Pointer to **string** | | [optional]
**TypeString** | Pointer to **string** | | [optional]
Expand Down Expand Up @@ -134,30 +135,55 @@ SetModName sets ModName field to given value.

HasModName returns a boolean if a field has been set.

### GetName
### GetQualifiedName

`func (o *FpVariable) GetName() string`
`func (o *FpVariable) GetQualifiedName() string`

GetName returns the Name field if non-nil, zero value otherwise.
GetQualifiedName returns the QualifiedName field if non-nil, zero value otherwise.

### GetNameOk
### GetQualifiedNameOk

`func (o *FpVariable) GetNameOk() (*string, bool)`
`func (o *FpVariable) GetQualifiedNameOk() (*string, bool)`

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

### SetName
### SetQualifiedName

`func (o *FpVariable) SetName(v string)`
`func (o *FpVariable) SetQualifiedName(v string)`

SetName sets Name field to given value.
SetQualifiedName sets QualifiedName field to given value.

### HasName
### HasQualifiedName

`func (o *FpVariable) HasName() bool`
`func (o *FpVariable) HasQualifiedName() bool`

HasName returns a boolean if a field has been set.
HasQualifiedName returns a boolean if a field has been set.

### GetResourceName

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

GetResourceName returns the ResourceName field if non-nil, zero value otherwise.

### GetResourceNameOk

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

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

### SetResourceName

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

SetResourceName sets ResourceName field to given value.

### HasResourceName

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

HasResourceName returns a boolean if a field has been set.

### GetStartLineNumber

Expand Down
70 changes: 53 additions & 17 deletions model_fp_variable.go

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

0 comments on commit ea19c36

Please sign in to comment.