2023-04-10 15:36:59 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
|
|
|
|
2017-12-15 21:39:18 +00:00
|
|
|
import { alias } from '@ember/object/computed';
|
2021-02-17 21:01:44 +00:00
|
|
|
import Model from '@ember-data/model';
|
|
|
|
import { attr } from '@ember-data/model';
|
|
|
|
import { hasMany } from '@ember-data/model';
|
2017-10-13 22:17:51 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
export default class Token extends Model {
|
|
|
|
@attr('string') secret;
|
|
|
|
@attr('string') name;
|
|
|
|
@attr('boolean') global;
|
|
|
|
@attr('date') createTime;
|
|
|
|
@attr('string') type;
|
|
|
|
@hasMany('policy') policies;
|
|
|
|
@attr() policyNames;
|
2022-11-28 15:44:52 +00:00
|
|
|
@attr('date') expirationTime;
|
2017-10-13 22:17:51 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@alias('id') accessor;
|
2022-11-28 15:44:52 +00:00
|
|
|
|
|
|
|
get isExpired() {
|
|
|
|
return this.expirationTime && this.expirationTime < new Date();
|
|
|
|
}
|
2020-06-10 13:49:16 +00:00
|
|
|
}
|