UNPKG

@piiano/vault-client

Version:

Piiano Vault generated typescript client

20 lines 692 B
import type { InputObject } from './InputObject'; import type { PropertyName } from './PropertyName'; import type { Tag } from './Tag'; export type UpdateTokenRequest = { /** * Replacement tags for the tokens. */ tags?: Array<Tag>; /** * Tags to validate as unique in tenant scope. Must be a subset of 'tags'. Note: The need to ensure the uniqueness of the tags prior to insertion means this feature impacts the operation's performance. * */ ensure_unique_tenant_tags?: Array<Tag>; object?: InputObject; /** * A list of the properties to update. */ props?: Array<PropertyName>; }; //# sourceMappingURL=UpdateTokenRequest.d.ts.map