Some checks failed
CI / Rustfmt (push) Successful in 22s
CI / Cargo Audit & Deny (push) Failing after 1m2s
CI / Web Blocking Checks (push) Failing after 35s
CI / Security Blocking Checks (push) Successful in 8s
CI / Clippy (push) Successful in 2m43s
CI / Web Advisory Checks (push) Successful in 35s
CI / Security Advisory Checks (push) Successful in 37s
CI / Tests (push) Failing after 9m28s
65 lines
1.3 KiB
TypeScript
65 lines
1.3 KiB
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
|
|
import type { i64 } from './i64';
|
|
import type { OwnerType } from './OwnerType';
|
|
/**
|
|
* Full key response with all details (value redacted in list views)
|
|
*/
|
|
export type KeyResponse = {
|
|
/**
|
|
* 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;
|
|
owner_action?: (null | i64);
|
|
/**
|
|
* Owner action reference
|
|
*/
|
|
owner_action_ref?: string | null;
|
|
owner_identity?: (null | i64);
|
|
owner_pack?: (null | i64);
|
|
/**
|
|
* Owner pack reference
|
|
*/
|
|
owner_pack_ref?: string | null;
|
|
owner_sensor?: (null | i64);
|
|
/**
|
|
* Owner sensor reference
|
|
*/
|
|
owner_sensor_ref?: string | null;
|
|
/**
|
|
* Type of owner
|
|
*/
|
|
owner_type: OwnerType;
|
|
/**
|
|
* Unique reference identifier
|
|
*/
|
|
ref: string;
|
|
/**
|
|
* Last update timestamp
|
|
*/
|
|
updated: string;
|
|
/**
|
|
* The secret value (decrypted if encrypted)
|
|
*/
|
|
value: string;
|
|
};
|
|
|