Skip to content

Commit 68e6255

Browse files
committed
Added missing documentation
1 parent 7ed7f33 commit 68e6255

File tree

5 files changed

+15
-0
lines changed

5 files changed

+15
-0
lines changed

doc/.openapi-generator/FILES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Models/OrganizationServices.md
2929
Models/ResourceSizeInfo.md
3030
Models/RunTemplate.md
3131
Models/RunTemplateHandlerId.md
32+
Models/RunTemplateOrchestrator.md
3233
Models/RunTemplateParameter.md
3334
Models/RunTemplateParameterGroup.md
3435
Models/RunTemplateParameterValue.md

doc/Models/RunTemplate.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ Name | Type | Description | Notes
3333
**gitRepositoryUrl** | **String** | an optional URL to the git repository | [optional] [default to null]
3434
**gitBranchName** | **String** | an optional git branch name | [optional] [default to null]
3535
**runTemplateSourceDir** | **String** | an optional directory where to find the run template source | [optional] [default to null]
36+
**orchestratorType** | [**RunTemplateOrchestrator**](RunTemplateOrchestrator.md) | | [optional] [default to null]
3637
**executionTimeout** | **Integer** | an optional duration in seconds in which a workflow is allowed to run | [optional] [default to null]
3738
**deleteHistoricalData** | [**DeleteHistoricalData**](DeleteHistoricalData.md) | | [optional] [default to null]
3839

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# RunTemplateOrchestrator
2+
## Properties
3+
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
7+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
8+

doc/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ Class | Method | HTTP request | Description
165165
- [ResourceSizeInfo](./Models/ResourceSizeInfo.md)
166166
- [RunTemplate](./Models/RunTemplate.md)
167167
- [RunTemplateHandlerId](./Models/RunTemplateHandlerId.md)
168+
- [RunTemplateOrchestrator](./Models/RunTemplateOrchestrator.md)
168169
- [RunTemplateParameter](./Models/RunTemplateParameter.md)
169170
- [RunTemplateParameterGroup](./Models/RunTemplateParameterGroup.md)
170171
- [RunTemplateParameterValue](./Models/RunTemplateParameterValue.md)

openapi/plantuml/schemas.plantuml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,13 +170,17 @@ entity RunTemplate {
170170
gitRepositoryUrl: String
171171
gitBranchName: String
172172
runTemplateSourceDir: String
173+
orchestratorType: RunTemplateOrchestrator
173174
executionTimeout: Integer
174175
deleteHistoricalData: DeleteHistoricalData
175176
}
176177

177178
entity RunTemplateHandlerId {
178179
}
179180

181+
entity RunTemplateOrchestrator {
182+
}
183+
180184
entity RunTemplateParameter {
181185
* id: String
182186
labels: Map

0 commit comments

Comments
 (0)