You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/ui/packages/consul-ui/app/models/gateway-config.js

18 lines
610 B

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
import Fragment from 'ember-data-model-fragments/fragment';
import { array } from 'ember-data-model-fragments/attributes';
import { attr } from '@ember-data/model';
export default class GatewayConfig extends Fragment {
// AssociatedServiceCount is only populated when asking for a list of
// services
@attr('number', { defaultValue: () => 0 }) AssociatedServiceCount;
// Addresses is only populated when asking for a list of services for a
// specific gateway
@array('string', { defaultValue: () => [] }) Addresses;
}