diff --git a/harness/cd/unpublished/types.go b/harness/cd/unpublished/types.go index b42507f2..36417e2f 100644 --- a/harness/cd/unpublished/types.go +++ b/harness/cd/unpublished/types.go @@ -59,6 +59,7 @@ type SecretManager struct { KeyRing string `json:"keyRing,omitempty"` KeyName string `json:"keyName,omitempty"` Credentials string `json:"credentials,omitempty"` + UsePutSecret bool `json:"usePutSecret,omitempty"` } type User struct { diff --git a/harness/nextgen/docs/AwsSecretManager.md b/harness/nextgen/docs/AwsSecretManager.md index d6a8b8b8..49e57a10 100644 --- a/harness/nextgen/docs/AwsSecretManager.md +++ b/harness/nextgen/docs/AwsSecretManager.md @@ -8,6 +8,7 @@ Name | Type | Description | Notes **SecretNamePrefix** | **string** | | [optional] [default to null] **DelegateSelectors** | **[]string** | | [optional] [default to null] **Default_** | **bool** | | [optional] [default to null] +**UsePutSecret** | **bool** | | [optional] [default to null] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/harness/nextgen/model_aws_secret_manager.go b/harness/nextgen/model_aws_secret_manager.go index 89f483e0..3c75ee85 100644 --- a/harness/nextgen/model_aws_secret_manager.go +++ b/harness/nextgen/model_aws_secret_manager.go @@ -19,4 +19,5 @@ type AwsSecretManager struct { // List of Delegate Selectors that belong to the same Delegate and are used to connect to the Secret Manager. DelegateSelectors []string `json:"delegateSelectors,omitempty"` Default_ bool `json:"default,omitempty"` + UsePutSecret bool `json:"usePutSecret,omitempty"` }