Skip to content

Commit d96e55c

Browse files
authored
fix:[IMPENG-324]: updated the GitlabConn Struct using the latest swagger (#623)
1 parent 5ce9d0f commit d96e55c

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

harness/nextgen/model_gitlab_connector.go

+10-6
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,14 @@ package nextgen
1111

1212
// This contains details of Gitlab connectors
1313
type GitlabConnector struct {
14-
Url string `json:"url"`
15-
ValidationRepo string `json:"validationRepo,omitempty"`
16-
Authentication *GitlabAuthentication `json:"authentication"`
17-
ApiAccess *GitlabApiAccess `json:"apiAccess,omitempty"`
18-
DelegateSelectors []string `json:"delegateSelectors,omitempty"`
19-
Type_ GitConnectorType `json:"type"`
14+
Url string `json:"url"`
15+
ValidationRepo string `json:"validationRepo,omitempty"`
16+
Authentication *GitlabAuthentication `json:"authentication"`
17+
ApiAccess *GitlabApiAccess `json:"apiAccess,omitempty"`
18+
DelegateSelectors []string `json:"delegateSelectors,omitempty"`
19+
ExecuteOnDelegate bool `json:"executeOnDelegate"`
20+
Proxy bool `json:"proxy"`
21+
IgnoreTestConnection bool `json:"ignoreTestConnection"`
22+
Type_ string `json:"type"`
23+
ConnectorType string `json:"connectorType"`
2024
}

0 commit comments

Comments
 (0)