@piiano/vault-client
Version:
Piiano Vault generated typescript client
30 lines • 828 B
TypeScript
import type { Tag } from './Tag';
export type TokenRefMetadata = {
/**
* Creation time of the token (UTC).
*/
creation_time: string;
/**
* Effective expiry time of the token (UTC), being the earliest of the expiry time of the token or the object owning the token, if any.
*/
effective_expiration_time: string | null;
/**
* Expiry time of the token (UTC).
*/
expiration_time: string | null;
/**
* The object this token is for.
*/
object_id?: string;
/**
* The tenant ID of the tokens.
*/
effective_tenant_id?: string;
/**
* Tags associated with the token.
* When token ID is reused, this is all the tags from the tokens that share the ID.
*
*/
tags: Array<Tag>;
};
//# sourceMappingURL=TokenRefMetadata.d.ts.map