github.com/NVIDIA/aistore@v1.3.23-0.20240517131212-7df6609be51d/core/meta/remais.go (about) 1 // Package meta: cluster-level metadata 2 /* 3 * Copyright (c) 2018-2023, NVIDIA CORPORATION. All rights reserved. 4 */ 5 package meta 6 7 type ( 8 RemAis struct { 9 URL string `json:"url"` 10 Alias string `json:"alias"` 11 UUID string `json:"uuid"` // Smap.UUID 12 Smap *Smap `json:"smap"` 13 } 14 RemAisVec struct { 15 A []*RemAis `json:"a"` 16 Ver int64 `json:"ver"` 17 } 18 )