-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: [IAC-2080]: Add support for IACM default pipelines in workspaces (
#533)
- Loading branch information
1 parent
b78a149
commit e7dd75c
Showing
4 changed files
with
40 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
* Infrastructure as Code Management | ||
* | ||
* Services for Harness IaCM Module. | ||
* | ||
* API version: 0.1.0 | ||
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) | ||
*/ | ||
package nextgen | ||
|
||
// Per-workspace override to the assigned default pipelines. | ||
type IacmDefaultPipelineOverride struct { | ||
// Default pipeline assigned as the project-level | ||
ProjectPipeline string `json:"project_pipeline"` | ||
// Default pipeline assigned as the workspace-level | ||
WorkspacePipeline string `json:"workspace_pipeline"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters