Skip to content

Commit

Permalink
Update from Flowpipe v0.9.x.
Browse files Browse the repository at this point in the history
  • Loading branch information
vhadianto committed Sep 3, 2024
1 parent 95db969 commit 5945fcc
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 59 deletions.
40 changes: 20 additions & 20 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1440,20 +1440,20 @@ components:
description: description
end_line_number: 0
params:
- default: "{}"
- default: ""
type_string: type_string
name: name
description: description
optional: true
type: "{}"
type: ""
tags:
key: tags
- default: "{}"
- default: ""
type_string: type_string
name: name
description: description
optional: true
type: "{}"
type: ""
tags:
key: tags
start_line_number: 6
Expand Down Expand Up @@ -1503,17 +1503,17 @@ components:
type: object
FpPipelineParam:
example:
default: "{}"
default: ""
type_string: type_string
name: name
description: description
optional: true
type: "{}"
type: ""
tags:
key: tags
properties:
default:
type: object
type: AnyType
description:
type: string
name:
Expand All @@ -1525,7 +1525,7 @@ components:
type: string
type: object
type:
type: object
type: AnyType
type_string:
type: string
type: object
Expand Down Expand Up @@ -1610,7 +1610,7 @@ components:
end_line_number: 0
resource_name: resource_name
start_line_number: 6
type: "{}"
type: ""
value: ""
mod_name: mod_name
tags:
Expand All @@ -1635,7 +1635,7 @@ components:
type: string
type: object
type:
type: object
type: AnyType
type_string:
type: string
value:
Expand Down Expand Up @@ -1832,20 +1832,20 @@ components:
description: description
end_line_number: 0
params:
- default: "{}"
- default: ""
type_string: type_string
name: name
description: description
optional: true
type: "{}"
type: ""
tags:
key: tags
- default: "{}"
- default: ""
type_string: type_string
name: name
description: description
optional: true
type: "{}"
type: ""
tags:
key: tags
start_line_number: 6
Expand Down Expand Up @@ -1890,20 +1890,20 @@ components:
description: description
end_line_number: 0
params:
- default: "{}"
- default: ""
type_string: type_string
name: name
description: description
optional: true
type: "{}"
type: ""
tags:
key: tags
- default: "{}"
- default: ""
type_string: type_string
name: name
description: description
optional: true
type: "{}"
type: ""
tags:
key: tags
start_line_number: 6
Expand Down Expand Up @@ -2035,7 +2035,7 @@ components:
end_line_number: 0
resource_name: resource_name
start_line_number: 6
type: "{}"
type: ""
value: ""
mod_name: mod_name
tags:
Expand All @@ -2048,7 +2048,7 @@ components:
end_line_number: 0
resource_name: resource_name
start_line_number: 6
type: "{}"
type: ""
value: ""
mod_name: mod_name
tags:
Expand Down
16 changes: 8 additions & 8 deletions docs/FpPipelineParam.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Default** | Pointer to **map[string]interface{}** | | [optional]
**Default** | Pointer to **interface{}** | | [optional]
**Description** | Pointer to **string** | | [optional]
**Name** | Pointer to **string** | | [optional]
**Optional** | Pointer to **bool** | | [optional]
**Tags** | Pointer to **map[string]string** | | [optional]
**Type** | Pointer to **map[string]interface{}** | | [optional]
**Type** | Pointer to **interface{}** | | [optional]
**TypeString** | Pointer to **string** | | [optional]

## Methods
Expand All @@ -33,20 +33,20 @@ but it doesn't guarantee that properties required by API are set

### GetDefault

`func (o *FpPipelineParam) GetDefault() map[string]interface{}`
`func (o *FpPipelineParam) GetDefault() interface{}`

GetDefault returns the Default field if non-nil, zero value otherwise.

### GetDefaultOk

`func (o *FpPipelineParam) GetDefaultOk() (*map[string]interface{}, bool)`
`func (o *FpPipelineParam) GetDefaultOk() (*interface{}, bool)`

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

### SetDefault

`func (o *FpPipelineParam) SetDefault(v map[string]interface{})`
`func (o *FpPipelineParam) SetDefault(v interface{})`

SetDefault sets Default field to given value.

Expand Down Expand Up @@ -158,20 +158,20 @@ HasTags returns a boolean if a field has been set.

### GetType

`func (o *FpPipelineParam) GetType() map[string]interface{}`
`func (o *FpPipelineParam) GetType() interface{}`

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

### GetTypeOk

`func (o *FpPipelineParam) GetTypeOk() (*map[string]interface{}, bool)`
`func (o *FpPipelineParam) GetTypeOk() (*interface{}, 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 *FpPipelineParam) SetType(v map[string]interface{})`
`func (o *FpPipelineParam) SetType(v interface{})`

SetType sets Type field to given value.

Expand Down
8 changes: 4 additions & 4 deletions docs/FpVariable.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Name | Type | Description | Notes
**ResourceName** | Pointer to **string** | | [optional]
**StartLineNumber** | Pointer to **int32** | | [optional]
**Tags** | Pointer to **map[string]string** | | [optional]
**Type** | Pointer to **map[string]interface{}** | | [optional]
**Type** | Pointer to **interface{}** | | [optional]
**TypeString** | Pointer to **string** | | [optional]
**Value** | Pointer to **interface{}** | | [optional]
**ValueDefault** | Pointer to **interface{}** | | [optional]
Expand Down Expand Up @@ -238,20 +238,20 @@ HasTags returns a boolean if a field has been set.

### GetType

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

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

### GetTypeOk

`func (o *FpVariable) GetTypeOk() (*map[string]interface{}, bool)`
`func (o *FpVariable) GetTypeOk() (*interface{}, 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 *FpVariable) SetType(v map[string]interface{})`
`func (o *FpVariable) SetType(v interface{})`

SetType sets Type field to given value.

Expand Down
36 changes: 18 additions & 18 deletions model_fp_pipeline_param.go

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

18 changes: 9 additions & 9 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 5945fcc

Please sign in to comment.