@@ -5463,7 +5463,7 @@ func UnmarshalRotation(m map[string]json.RawMessage, result interface{}) (err er
54635463// - RotateKvSecretBody
54645464type SecretAction struct {
54655465 // The new secret data to assign to an `arbitrary` secret.
5466- Payload *string `json:"payload,omitempty"`
5466+ Payload interface{} `json:"payload,omitempty"`
54675467
54685468 // Determine whether keys must be rotated.
54695469 RotateKeys *bool `json:"rotate_keys,omitempty"`
@@ -6322,7 +6322,7 @@ type SecretResource struct {
63226322 ExpirationDate *strfmt.DateTime `json:"expiration_date,omitempty"`
63236323
63246324 // The new secret data to assign to the secret.
6325- Payload *string `json:"payload,omitempty"`
6325+ Payload interface{} `json:"payload,omitempty"`
63266326
63276327 // The data that is associated with the secret version.
63286328 //
@@ -7824,7 +7824,7 @@ type ArbitrarySecretResource struct {
78247824 ExpirationDate *strfmt.DateTime `json:"expiration_date,omitempty"`
78257825
78267826 // The new secret data to assign to the secret.
7827- Payload *string `json:"payload,omitempty"`
7827+ Payload interface{} `json:"payload,omitempty"`
78287828
78297829 // The data that is associated with the secret version.
78307830 //
0 commit comments