Skip to content

Commit f68b0ac

Browse files
authored
feat(secret_manager): add json type with subtype (#939)
1 parent 915f755 commit f68b0ac

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/clients/src/api/secret/v1alpha1/types.gen.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ export type Product = 'unknown'
2020

2121
export type SecretStatus = 'ready' | 'locked'
2222

23-
export type SecretType = 'unknown_secret_type' | 'opaque' | 'certificate'
23+
export type SecretType =
24+
| 'unknown_secret_type'
25+
| 'opaque'
26+
| 'certificate'
27+
| 'key_value'
2428

2529
export type SecretVersionStatus =
2630
| 'unknown'

0 commit comments

Comments
 (0)