Skip to content

Commit

Permalink
feat: added RootMod to FpPipeline (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
graza-io authored Jan 22, 2024
1 parent ce86a25 commit c48ecd8
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 3 deletions.
11 changes: 8 additions & 3 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,6 @@ components:
mod: mod
file_name: file_name
documentation: documentation
name: name
description: description
end_line_number: 0
params:
Expand All @@ -853,6 +852,8 @@ components:
- "{}"
tags:
key: tags
root_mod: root_mod
name: name
properties:
description:
type: string
Expand All @@ -874,6 +875,8 @@ components:
items:
$ref: '#/components/schemas/FpPipelineParam'
type: array
root_mod:
type: string
start_line_number:
type: integer
steps:
Expand Down Expand Up @@ -993,7 +996,6 @@ components:
mod: mod
file_name: file_name
documentation: documentation
name: name
description: description
end_line_number: 0
params:
Expand All @@ -1014,6 +1016,8 @@ components:
- "{}"
tags:
key: tags
root_mod: root_mod
name: name
- outputs:
- depends_on:
- depends_on
Expand All @@ -1032,7 +1036,6 @@ components:
mod: mod
file_name: file_name
documentation: documentation
name: name
description: description
end_line_number: 0
params:
Expand All @@ -1053,6 +1056,8 @@ components:
- "{}"
tags:
key: tags
root_mod: root_mod
name: name
properties:
items:
items:
Expand Down
26 changes: 26 additions & 0 deletions docs/FpPipeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Name | Type | Description | Notes
**Name** | Pointer to **string** | | [optional]
**Outputs** | Pointer to [**[]ModconfigPipelineOutput**](ModconfigPipelineOutput.md) | | [optional]
**Params** | Pointer to [**[]FpPipelineParam**](FpPipelineParam.md) | | [optional]
**RootMod** | Pointer to **string** | | [optional]
**StartLineNumber** | Pointer to **int32** | | [optional]
**Steps** | Pointer to **[]map[string]interface{}** | | [optional]
**Tags** | Pointer to **map[string]string** | | [optional]
Expand Down Expand Up @@ -236,6 +237,31 @@ SetParams sets Params field to given value.

HasParams returns a boolean if a field has been set.

### GetRootMod

`func (o *FpPipeline) GetRootMod() string`

GetRootMod returns the RootMod field if non-nil, zero value otherwise.

### GetRootModOk

`func (o *FpPipeline) GetRootModOk() (*string, bool)`

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

### SetRootMod

`func (o *FpPipeline) SetRootMod(v string)`

SetRootMod sets RootMod field to given value.

### HasRootMod

`func (o *FpPipeline) HasRootMod() bool`

HasRootMod returns a boolean if a field has been set.

### GetStartLineNumber

`func (o *FpPipeline) GetStartLineNumber() int32`
Expand Down
36 changes: 36 additions & 0 deletions model_fp_pipeline.go

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

0 comments on commit c48ecd8

Please sign in to comment.