/**
 * @example
 *     {
 *         name: "renamed-key"
 *     }
 */
export interface UpdateApiKeyRequest {
    /** The new name for the API key. */
    name: string;
}
