You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages_generated/key_manager/src/v1alpha1/api.gen.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ export class API extends ParentAPI {
79
79
})
80
80
81
81
/**
82
-
* Create a key. Create a key in a given region specified by the `region` parameter. Keys only support symmetric encryption. You can use keys to encrypt or decrypt arbitrary payloads, or to generate data encryption keys. **Data encryption keys are not stored in Key Manager**.
82
+
* Create a key. Create a key in a given region specified by the `region` parameter. You can use keys to encrypt or decrypt arbitrary payloads, to sign and verify messages or to generate data encryption keys. **Data encryption keys are not stored in Key Manager**.
83
83
*
84
84
* @param request - The request {@link CreateKeyRequest}
* See the `Key.Algorithm.AsymmetricSigning` enum for a description of values.
83
85
*
84
86
* One-of ('usage'): at most one of 'symmetricEncryption', 'asymmetricEncryption', 'asymmetricSigning' could be set.
85
87
*/
@@ -106,7 +108,7 @@ export interface Key {
106
108
*/
107
109
name: string
108
110
/**
109
-
* Keys with a usage set to `symmetric_encryption` can encrypt and decrypt data using the `AES-256-GCM` key algorithm. Key Manager currently only supports `AES-256-GCM`.
111
+
* See the `Key.Usage` enum for a description of possible values.
110
112
*/
111
113
usage?: KeyUsage
112
114
/**
@@ -177,7 +179,7 @@ export type CreateKeyRequest = {
177
179
*/
178
180
name?: string
179
181
/**
180
-
* See the `Key.Algorithm.SymmetricEncryption` enum for a description of values.
182
+
* See the `Key.Usage` enum for a description of possible values.
0 commit comments