Skip to content

Commit

Permalink
Process list
Browse files Browse the repository at this point in the history
  • Loading branch information
vhadianto committed Jun 6, 2023
1 parent 1d1eb5a commit cb3d87e
Show file tree
Hide file tree
Showing 31 changed files with 3,917 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// Configure properties specific to VS Code.
"vscode": {
// Add the IDs of extensions you want installed when the container is created.
"extensions": ["github.copilot", "eamodio.gitlens"]
"extensions": ["github.copilot", "eamodio.gitlens", "ms-azuretools.vscode-docker", "ms-vscode.makefile-tools"]
}
}

Expand Down
19 changes: 19 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,40 @@
README.md
api/openapi.yaml
api_pipeline.go
api_process.go
api_trigger.go
api_variable.go
client.go
configuration.go
docs/FperrErrorDetailModel.md
docs/FperrErrorModel.md
docs/ListPipelineResponse.md
docs/ListProcessResponse.md
docs/ListTriggerResponse.md
docs/ListVariableResponse.md
docs/Pipeline.md
docs/PipelineApi.md
docs/PipelineStep.md
docs/Process.md
docs/ProcessApi.md
docs/Trigger.md
docs/TriggerApi.md
docs/Variable.md
docs/VariableApi.md
git_push.sh
go.mod
go.sum
model_fperr_error_detail_model.go
model_fperr_error_model.go
model_list_pipeline_response.go
model_list_process_response.go
model_list_trigger_response.go
model_list_variable_response.go
model_pipeline.go
model_pipeline_step.go
model_process.go
model_trigger.go
model_variable.go
response.go
test/api_process_test.go
utils.go
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
generate:
java -jar -Dio.swagger.v3.parser.util.RemoteUrl.trustAll=true /home/vscode/openapi-generator/openapi-generator-cli.jar generate \
GO_POST_PROCESS_FILE="/usr/local/go/bin/gofmt -w" java -jar -Dio.swagger.v3.parser.util.RemoteUrl.trustAll=true /home/vscode/openapi-generator/openapi-generator-cli.jar generate \
-i https://host.docker.internal:7103/api/v0/docs/openapi.json -g go \
-t ./templates/go \
--package-name flowpipeapi --git-repo-id flowpipe-sdk-go --git-user-id turbot --remove-operation-id-prefix \
Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,16 +80,29 @@ All URIs are relative to *https://localhost/api/v0*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*PipelineApi* | [**Get**](docs/PipelineApi.md#get) | **Get** /pipeline/{pipeline_name} | Get pipeline
*PipelineApi* | [**List**](docs/PipelineApi.md#list) | **Get** /pipeline | List pipelines
*ProcessApi* | [**Get**](docs/ProcessApi.md#get) | **Get** /process/{process_id} | Get process
*ProcessApi* | [**List**](docs/ProcessApi.md#list) | **Get** /process | List processs
*TriggerApi* | [**Get**](docs/TriggerApi.md#get) | **Get** /trigger/{trigger_name} | Get trigger
*TriggerApi* | [**List**](docs/TriggerApi.md#list) | **Get** /trigger | List triggers
*VariableApi* | [**Get**](docs/VariableApi.md#get) | **Get** /variable/{variable_name} | Get variable
*VariableApi* | [**List**](docs/VariableApi.md#list) | **Get** /variable | List variables


## Documentation For Models

- [FperrErrorDetailModel](docs/FperrErrorDetailModel.md)
- [FperrErrorModel](docs/FperrErrorModel.md)
- [ListPipelineResponse](docs/ListPipelineResponse.md)
- [ListProcessResponse](docs/ListProcessResponse.md)
- [ListTriggerResponse](docs/ListTriggerResponse.md)
- [ListVariableResponse](docs/ListVariableResponse.md)
- [Pipeline](docs/Pipeline.md)
- [PipelineStep](docs/PipelineStep.md)
- [Process](docs/Process.md)
- [Trigger](docs/Trigger.md)
- [Variable](docs/Variable.md)


## Documentation For Authorization
Expand Down
Loading

0 comments on commit cb3d87e

Please sign in to comment.