Skip to content

Commit

Permalink
Regenerate after removals of several unused APIs.
Browse files Browse the repository at this point in the history
  • Loading branch information
vhadianto committed Dec 12, 2023
1 parent 2f9642b commit aa74ca8
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 766 deletions.
12 changes: 0 additions & 12 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@ configuration.go
docs/CmdPipeline.md
docs/ExecutionExecution.md
docs/ExecutionPipelineExecution.md
docs/ExecutionSnapshot.md
docs/ExecutionSnapshotLayout.md
docs/ExecutionSnapshotPanel.md
docs/ExecutionSnapshotPanelData.md
docs/ExecutionSnapshotPanelDataColumn.md
docs/ExecutionStepExecution.md
docs/ExecutionStepExecutionOutput.md
docs/ExecutionStepExecutionStepForEach.md
Expand Down Expand Up @@ -47,7 +42,6 @@ docs/PipelineApi.md
docs/Process.md
docs/ProcessApi.md
docs/ProcessEventLog.md
docs/ProcessOutputData.md
docs/Require.md
docs/TriggerApi.md
docs/Variable.md
Expand All @@ -58,11 +52,6 @@ go.sum
model_cmd_pipeline.go
model_execution_execution.go
model_execution_pipeline_execution.go
model_execution_snapshot.go
model_execution_snapshot_layout.go
model_execution_snapshot_panel.go
model_execution_snapshot_panel_data.go
model_execution_snapshot_panel_data_column.go
model_execution_step_execution.go
model_execution_step_execution_output.go
model_execution_step_execution_step_for_each.go
Expand Down Expand Up @@ -90,7 +79,6 @@ model_perr_error_detail_model.go
model_perr_error_model.go
model_process.go
model_process_event_log.go
model_process_output_data.go
model_require.go
model_variable.go
response.go
Expand Down
8 changes: 0 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,6 @@ Class | Method | HTTP request | Description
*ProcessApi* | [**Get**](docs/ProcessApi.md#get) | **Get** /process/{process_id} | Get process
*ProcessApi* | [**GetExecution**](docs/ProcessApi.md#getexecution) | **Get** /process/{process_id}/execution | Get process execution
*ProcessApi* | [**GetLog**](docs/ProcessApi.md#getlog) | **Get** /process/{process_id}/log/process.json | Get process log
*ProcessApi* | [**GetOutput**](docs/ProcessApi.md#getoutput) | **Get** /process/{process_id}/output | Get process output
*ProcessApi* | [**GetSnapshot**](docs/ProcessApi.md#getsnapshot) | **Get** /process/:process_id/log/process.sps | Get process snapshot
*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
Expand All @@ -101,11 +99,6 @@ Class | Method | HTTP request | Description
- [CmdPipeline](docs/CmdPipeline.md)
- [ExecutionExecution](docs/ExecutionExecution.md)
- [ExecutionPipelineExecution](docs/ExecutionPipelineExecution.md)
- [ExecutionSnapshot](docs/ExecutionSnapshot.md)
- [ExecutionSnapshotLayout](docs/ExecutionSnapshotLayout.md)
- [ExecutionSnapshotPanel](docs/ExecutionSnapshotPanel.md)
- [ExecutionSnapshotPanelData](docs/ExecutionSnapshotPanelData.md)
- [ExecutionSnapshotPanelDataColumn](docs/ExecutionSnapshotPanelDataColumn.md)
- [ExecutionStepExecution](docs/ExecutionStepExecution.md)
- [ExecutionStepExecutionOutput](docs/ExecutionStepExecutionOutput.md)
- [ExecutionStepExecutionStepForEach](docs/ExecutionStepExecutionStepForEach.md)
Expand Down Expand Up @@ -133,7 +126,6 @@ Class | Method | HTTP request | Description
- [PerrErrorModel](docs/PerrErrorModel.md)
- [Process](docs/Process.md)
- [ProcessEventLog](docs/ProcessEventLog.md)
- [ProcessOutputData](docs/ProcessOutputData.md)
- [Require](docs/Require.md)
- [Variable](docs/Variable.md)

Expand Down
268 changes: 0 additions & 268 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -336,66 +336,6 @@ paths:
summary: List processs
tags:
- Process
/process/:process_id/log/process.sps:
get:
description: Get process snapshot
operationId: process_get_snapshot
parameters:
- description: The id of the process
explode: false
in: path
name: process_id
required: true
schema:
format: "^[a-z]{0,32}$"
type: string
style: simple
responses:
"200":
content:
application/json:
schema:
$ref: '#/components/schemas/execution.Snapshot'
description: OK
"400":
content:
application/json:
schema:
$ref: '#/components/schemas/perr.ErrorModel'
description: Bad Request
"401":
content:
application/json:
schema:
$ref: '#/components/schemas/perr.ErrorModel'
description: Unauthorized
"403":
content:
application/json:
schema:
$ref: '#/components/schemas/perr.ErrorModel'
description: Forbidden
"404":
content:
application/json:
schema:
$ref: '#/components/schemas/perr.ErrorModel'
description: Not Found
"429":
content:
application/json:
schema:
$ref: '#/components/schemas/perr.ErrorModel'
description: Too Many Requests
"500":
content:
application/json:
schema:
$ref: '#/components/schemas/perr.ErrorModel'
description: Internal Server Error
summary: Get process snapshot
tags:
- Process
/process/{process_id}:
get:
description: Get process
Expand Down Expand Up @@ -576,66 +516,6 @@ paths:
summary: Get process log
tags:
- Process
/process/{process_id}/output:
get:
description: Get process output
operationId: process_get_output
parameters:
- description: The name of the process
explode: false
in: path
name: process_id
required: true
schema:
format: "^[a-z]{0,32}$"
type: string
style: simple
responses:
"200":
content:
application/json:
schema:
$ref: '#/components/schemas/ProcessOutputData'
description: OK
"400":
content:
application/json:
schema:
$ref: '#/components/schemas/perr.ErrorModel'
description: Bad Request
"401":
content:
application/json:
schema:
$ref: '#/components/schemas/perr.ErrorModel'
description: Unauthorized
"403":
content:
application/json:
schema:
$ref: '#/components/schemas/perr.ErrorModel'
description: Forbidden
"404":
content:
application/json:
schema:
$ref: '#/components/schemas/perr.ErrorModel'
description: Not Found
"429":
content:
application/json:
schema:
$ref: '#/components/schemas/perr.ErrorModel'
description: Too Many Requests
"500":
content:
application/json:
schema:
$ref: '#/components/schemas/perr.ErrorModel'
description: Internal Server Error
summary: Get process output
tags:
- Process
/trigger:
get:
description: Lists triggers
Expand Down Expand Up @@ -1325,18 +1205,6 @@ components:
ts:
type: string
type: object
ProcessOutputData:
example:
output:
key: ""
process_id: process_id
properties:
output:
additionalProperties: true
type: object
process_id:
type: string
type: object
Require:
example:
mods:
Expand Down Expand Up @@ -1653,142 +1521,6 @@ components:
\ an array\n\t\t*"
type: object
type: object
execution.Snapshot:
example:
layout:
children:
- null
- null
panel_type: panel_type
name: name
schema_version: schema_version
start_time: start_time
panels:
key:
display_type: display_type
data:
columns:
- data_type: data_type
name: name
- data_type: data_type
name: name
rows:
- null
- null
panel_type: panel_type
name: name
width: 0
title: title
dashboard: dashboard
properties:
key: ""
status: status
end_time: end_time
properties:
end_time:
type: string
layout:
$ref: '#/components/schemas/execution.SnapshotLayout'
panels:
additionalProperties:
$ref: '#/components/schemas/execution.SnapshotPanel'
type: object
schema_version:
type: string
start_time:
type: string
type: object
execution.SnapshotLayout:
example:
children:
- null
- null
panel_type: panel_type
name: name
properties:
children:
items:
$ref: '#/components/schemas/execution.SnapshotLayout'
type: array
name:
type: string
panel_type:
type: string
type: object
execution.SnapshotPanel:
example:
display_type: display_type
data:
columns:
- data_type: data_type
name: name
- data_type: data_type
name: name
rows:
- null
- null
panel_type: panel_type
name: name
width: 0
title: title
dashboard: dashboard
properties:
key: ""
status: status
properties:
dashboard:
type: string
data:
$ref: '#/components/schemas/execution.SnapshotPanelData'
display_type:
type: string
name:
type: string
panel_type:
type: string
properties:
additionalProperties: true
type: object
status:
type: string
title:
type: string
width:
type: integer
type: object
execution.SnapshotPanelData:
example:
columns:
- data_type: data_type
name: name
- data_type: data_type
name: name
rows:
- null
- null
properties:
columns:
items:
$ref: '#/components/schemas/execution.SnapshotPanelDataColumn'
type: array
rows:
items:
$ref: '#/components/schemas/execution.SnapshotPanelDataRow'
type: array
type: object
execution.SnapshotPanelDataColumn:
example:
data_type: data_type
name: name
properties:
data_type:
type: string
name:
type: string
type: object
execution.SnapshotPanelDataRow:
additionalProperties: true
type: object
execution.StepExecution:
example:
pipeline_execution_id: pipeline_execution_id
Expand Down
Loading

0 comments on commit aa74ca8

Please sign in to comment.