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 070b087 commit 95db969
Show file tree
Hide file tree
Showing 5 changed files with 169 additions and 17 deletions.
36 changes: 32 additions & 4 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1446,12 +1446,16 @@ components:
description: description
optional: true
type: "{}"
tags:
key: tags
- default: "{}"
type_string: type_string
name: name
description: description
optional: true
type: "{}"
tags:
key: tags
start_line_number: 6
title: title
steps:
Expand Down Expand Up @@ -1505,6 +1509,8 @@ components:
description: description
optional: true
type: "{}"
tags:
key: tags
properties:
default:
type: object
Expand All @@ -1514,6 +1520,10 @@ components:
type: string
optional:
type: boolean
tags:
additionalProperties:
type: string
type: object
type:
type: object
type_string:
Expand Down Expand Up @@ -1600,9 +1610,11 @@ components:
end_line_number: 0
resource_name: resource_name
start_line_number: 6
type: type
type: "{}"
value: ""
mod_name: mod_name
tags:
key: tags
properties:
description:
type: string
Expand All @@ -1618,8 +1630,12 @@ components:
type: string
start_line_number:
type: integer
tags:
additionalProperties:
type: string
type: object
type:
type: string
type: object
type_string:
type: string
value:
Expand Down Expand Up @@ -1822,12 +1838,16 @@ components:
description: description
optional: true
type: "{}"
tags:
key: tags
- default: "{}"
type_string: type_string
name: name
description: description
optional: true
type: "{}"
tags:
key: tags
start_line_number: 6
title: title
steps:
Expand Down Expand Up @@ -1876,12 +1896,16 @@ components:
description: description
optional: true
type: "{}"
tags:
key: tags
- default: "{}"
type_string: type_string
name: name
description: description
optional: true
type: "{}"
tags:
key: tags
start_line_number: 6
title: title
steps:
Expand Down Expand Up @@ -2011,9 +2035,11 @@ components:
end_line_number: 0
resource_name: resource_name
start_line_number: 6
type: type
type: "{}"
value: ""
mod_name: mod_name
tags:
key: tags
- type_string: type_string
qualified_name: qualified_name
file_name: file_name
Expand All @@ -2022,9 +2048,11 @@ components:
end_line_number: 0
resource_name: resource_name
start_line_number: 6
type: type
type: "{}"
value: ""
mod_name: mod_name
tags:
key: tags
properties:
items:
items:
Expand Down
26 changes: 26 additions & 0 deletions docs/FpPipelineParam.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Name | Type | Description | Notes
**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]
**TypeString** | Pointer to **string** | | [optional]

Expand Down Expand Up @@ -130,6 +131,31 @@ SetOptional sets Optional field to given value.

HasOptional returns a boolean if a field has been set.

### GetTags

`func (o *FpPipelineParam) GetTags() map[string]string`

GetTags returns the Tags field if non-nil, zero value otherwise.

### GetTagsOk

`func (o *FpPipelineParam) GetTagsOk() (*map[string]string, bool)`

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

### SetTags

`func (o *FpPipelineParam) SetTags(v map[string]string)`

SetTags sets Tags field to given value.

### HasTags

`func (o *FpPipelineParam) HasTags() bool`

HasTags returns a boolean if a field has been set.

### GetType

`func (o *FpPipelineParam) GetType() map[string]interface{}`
Expand Down
34 changes: 30 additions & 4 deletions docs/FpVariable.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ Name | Type | Description | Notes
**QualifiedName** | Pointer to **string** | | [optional]
**ResourceName** | Pointer to **string** | | [optional]
**StartLineNumber** | Pointer to **int32** | | [optional]
**Type** | Pointer to **string** | | [optional]
**Tags** | Pointer to **map[string]string** | | [optional]
**Type** | Pointer to **map[string]interface{}** | | [optional]
**TypeString** | Pointer to **string** | | [optional]
**Value** | Pointer to **interface{}** | | [optional]
**ValueDefault** | Pointer to **interface{}** | | [optional]
Expand Down Expand Up @@ -210,22 +211,47 @@ SetStartLineNumber sets StartLineNumber field to given value.

HasStartLineNumber returns a boolean if a field has been set.

### GetTags

`func (o *FpVariable) GetTags() map[string]string`

GetTags returns the Tags field if non-nil, zero value otherwise.

### GetTagsOk

`func (o *FpVariable) GetTagsOk() (*map[string]string, bool)`

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

### SetTags

`func (o *FpVariable) SetTags(v map[string]string)`

SetTags sets Tags field to given value.

### HasTags

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

HasTags returns a boolean if a field has been set.

### GetType

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

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

### GetTypeOk

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

SetType sets Type field to given value.

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

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

54 changes: 45 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 95db969

Please sign in to comment.