re-uploading work
This commit is contained in:
40
web/src/api/models/KeySummary.ts
Normal file
40
web/src/api/models/KeySummary.ts
Normal file
@@ -0,0 +1,40 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { i64 } from './i64';
|
||||
import type { OwnerType } from './OwnerType';
|
||||
/**
|
||||
* Summary key response for list views (value redacted)
|
||||
*/
|
||||
export type KeySummary = {
|
||||
/**
|
||||
* Creation timestamp
|
||||
*/
|
||||
created: string;
|
||||
/**
|
||||
* Whether the value is encrypted
|
||||
*/
|
||||
encrypted: boolean;
|
||||
/**
|
||||
* Unique key ID
|
||||
*/
|
||||
id: i64;
|
||||
/**
|
||||
* Human-readable name
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* Owner identifier
|
||||
*/
|
||||
owner?: string | null;
|
||||
/**
|
||||
* Type of owner
|
||||
*/
|
||||
owner_type: OwnerType;
|
||||
/**
|
||||
* Unique reference identifier
|
||||
*/
|
||||
ref: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user