mirror of
https://github.com/hashicorp/vault.git
synced 2026-04-29 18:19:24 -04:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
23 lines
620 B
JavaScript
23 lines
620 B
JavaScript
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@ember/component';
|
|
|
|
/**
|
|
* @module KnownSecondariesTable
|
|
* KnownSecondariesTable components are used on the Replication Details dashboards
|
|
* to display a table of known secondary clusters.
|
|
*
|
|
* @example
|
|
* ```js
|
|
* <KnownSecondariesTable @replicationAttrs={{replicationAttrs}} />
|
|
* ```
|
|
* @param {array} secondaries=null - The array of secondaries from the replication
|
|
* status endpoint. Contains the secondary api_address, id and connected_state.
|
|
*/
|
|
|
|
export default Component.extend({
|
|
secondaries: null,
|
|
});
|