Skip to content

Commit 2516b70

Browse files
committed
enable private cert API
1 parent b675521 commit 2516b70

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

secretsmanagerv1/secrets_manager_v1.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5463,7 +5463,7 @@ func UnmarshalRotation(m map[string]json.RawMessage, result interface{}) (err er
54635463
// - RotateKvSecretBody
54645464
type 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

Comments
 (0)