-
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: [PL-48389]: Custom Resource Manager terraform update (#517)
* feat: [PL-48389]: Custom Resource Manager terraform update * Add connector files
- Loading branch information
Sarthak S
authored
Apr 15, 2024
1 parent
e4966b9
commit 7305ea2
Showing
6 changed files
with
148 additions
and
86 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
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,21 @@ | ||
/* | ||
* CD NextGen API Reference | ||
* | ||
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) | ||
* | ||
* API version: 2.0 | ||
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) | ||
*/ | ||
// package swagger | ||
package nextgen | ||
|
||
type CustomSecretManager struct { | ||
DelegateSelectors []string `json:"delegateSelectors,omitempty"` | ||
OnDelegate bool `json:"onDelegate,omitempty"` | ||
ConnectorRef string `json:"connectorRef,omitempty"` | ||
Host string `json:"host,omitempty"` | ||
WorkingDirectory string `json:"workingDirectory,omitempty"` | ||
Template *TemplateLinkConfigForCustomSecretManager `json:"template"` | ||
Timeout int64 `json:"timeout,omitempty"` | ||
Default_ bool `json:"default,omitempty"` | ||
} |
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 @@ | ||
/* | ||
* CD NextGen API Reference | ||
* | ||
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) | ||
* | ||
* API version: 2.0 | ||
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) | ||
*/ | ||
// package swagger | ||
package nextgen | ||
|
||
type NameValuePairWithDefault struct { | ||
Name string `json:"name,omitempty"` | ||
Value string `json:"value"` | ||
Type_ string `json:"type"` | ||
UseAsDefault bool `json:"useAsDefault,omitempty"` | ||
} |
16 changes: 16 additions & 0 deletions
16
harness/nextgen/model_template_link_config_for_custom_secret_manager.go
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,16 @@ | ||
/* | ||
* CD NextGen API Reference | ||
* | ||
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) | ||
* | ||
* API version: 2.0 | ||
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) | ||
*/ | ||
// package swagger | ||
package nextgen | ||
|
||
type TemplateLinkConfigForCustomSecretManager struct { | ||
TemplateRef string `json:"templateRef"` | ||
VersionLabel string `json:"versionLabel"` | ||
TemplateInputs map[string][]NameValuePairWithDefault `json:"templateInputs,omitempty"` | ||
} |