Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: [PL-58650]: added ForceDeleteWithoutRecovery,RecoveryWindowInDays in AwsSecretManager #607

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions harness/cd/unpublished/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ type SecretManager struct {
KeyName string `json:"keyName,omitempty"`
Credentials string `json:"credentials,omitempty"`
UsePutSecret bool `json:"usePutSecret,omitempty"`
ForceDeleteWithoutRecovery bool `json:"forceDeleteWithoutRecovery,omitempty"`
RecoveryWindowInDays int64 `json:"recoveryWindowInDays,omitempty"`
}

type User struct {
Expand Down
19 changes: 10 additions & 9 deletions harness/nextgen/docs/AwsSecretManager.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# AwsSecretManager

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Credential** | [***AwsSecretManagerCredential**](AwsSecretManagerCredential.md) | | [default to null]
**Region** | **string** | | [default to null]
**SecretNamePrefix** | **string** | | [optional] [default to null]
**DelegateSelectors** | **[]string** | | [optional] [default to null]
**Default_** | **bool** | | [optional] [default to null]
**UsePutSecret** | **bool** | | [optional] [default to null]

Name | Type | Description | Notes
------------ | ------------- |-------------------------------|-------------------------------
**Credential** | [***AwsSecretManagerCredential**](AwsSecretManagerCredential.md) | | [default to null]
**Region** | **string** | | [default to null]
**SecretNamePrefix** | **string** | | [optional] [default to null]
**DelegateSelectors** | **[]string** | | [optional] [default to null]
**Default_** | **bool** | | [optional] [default to null]
**UsePutSecret** | **bool** | | [optional] [default to null]
**ForceDeleteWithoutRecovery** | **bool** | | [optional] [default to false] | | [optional] [default to false]
**RecoveryWindowInDays** | **long** | |[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)

2 changes: 2 additions & 0 deletions harness/nextgen/model_aws_secret_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@ type AwsSecretManager struct {
DelegateSelectors []string `json:"delegateSelectors,omitempty"`
Default_ bool `json:"default,omitempty"`
UsePutSecret bool `json:"usePutSecret,omitempty"`
ForceDeleteWithoutRecovery bool `json:"forceDeleteWithoutRecovery,omitempty"`
RecoveryWindowInDays int64 `json:"recoveryWindowInDays,omitempty"`
}