Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
feat: Support PEM Certificate (#410)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: The project model now contains parameters PEM Certificate file content.

Signed-off-by: odubajDT <ondrej.dubaj@dynatrace.com>
  • Loading branch information
odubajDT committed Mar 8, 2022
1 parent 2f3dda1 commit 58bdb08
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/api/models/create_project.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ type CreateProject struct {
// git proxy password
GitProxyPassword string `json:"gitProxyPassword,omitempty"`

//git PEM Certificate
GitPemCertificate string `json:"gitPemCertificate,omitempty"`

// git user
GitUser string `json:"gitUser,omitempty"`

Expand Down
3 changes: 3 additions & 0 deletions pkg/api/models/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ type Project struct {
// git proxy password
GitProxyPassword string `json:"gitProxyPassword,omitempty"`

//git PEM Certificate
GitPemCertificate string `json:"gitPemCertificate,omitempty"`

// Git User
GitUser string `json:"gitUser,omitempty"`

Expand Down

0 comments on commit 58bdb08

Please sign in to comment.