We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c62060 commit 00a4793Copy full SHA for 00a4793
api/key_manager/v1alpha1/key_manager_sdk.go
@@ -268,7 +268,8 @@ const (
268
// The key cannot be used for cryptographic operations.
269
KeyStateDisabled = KeyState("disabled")
270
// Key material must be imported before the key can be used for cryptographic operations.
271
- KeyStatePendingKeyMaterial = KeyState("pending_key_material")
+ KeyStatePendingKeyMaterial = KeyState("pending_key_material")
272
+ KeyStateScheduledForDeletion = KeyState("scheduled_for_deletion")
273
)
274
275
func (enum KeyState) String() string {
@@ -285,6 +286,7 @@ func (enum KeyState) Values() []KeyState {
285
286
"enabled",
287
"disabled",
288
"pending_key_material",
289
+ "scheduled_for_deletion",
290
}
291
292
0 commit comments