2023-03-14 13:18:55 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
2023-08-11 13:12:13 +00:00
|
|
|
* SPDX-License-Identifier: BUSL-1.1
|
2023-03-14 13:18:55 +00:00
|
|
|
*/
|
|
|
|
|
2022-03-09 09:03:15 +00:00
|
|
|
import Model, { attr } from '@ember-data/model';
|
|
|
|
|
|
|
|
export const PRIMARY_KEY = 'uri';
|
|
|
|
|
|
|
|
export default class License extends Model {
|
|
|
|
@attr('string') uri;
|
|
|
|
@attr('boolean') Valid;
|
|
|
|
|
|
|
|
@attr('number') SyncTime;
|
|
|
|
@attr() meta; // {}
|
|
|
|
|
|
|
|
@attr('string') Datacenter;
|
|
|
|
@attr('string') Namespace;
|
|
|
|
@attr('string') Partition;
|
|
|
|
|
|
|
|
@attr() License; // {}
|
|
|
|
// @attr() Warnings; // []
|
|
|
|
}
|