2021-10-20 19:24:18 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import "encoding/json"
|
|
|
|
|
2021-12-03 06:50:38 +00:00
|
|
|
// ExportedServicesConfigEntry manages the exported services for a single admin partition.
|
2021-10-20 19:24:18 +00:00
|
|
|
// Admin Partitions are a Consul Enterprise feature.
|
2021-12-03 06:50:38 +00:00
|
|
|
type ExportedServicesConfigEntry struct {
|
|
|
|
// Name is the name of the partition the ExportedServicesConfigEntry applies to.
|
2021-10-22 16:11:03 +00:00
|
|
|
// Partitioning is a Consul Enterprise feature.
|
|
|
|
Name string `json:",omitempty"`
|
|
|
|
|
2021-12-03 06:50:38 +00:00
|
|
|
// Partition is the partition where the ExportedServicesConfigEntry is stored.
|
2021-10-22 16:11:03 +00:00
|
|
|
// If the partition does not match the name, the name will overwrite the partition.
|
2021-10-20 19:24:18 +00:00
|
|
|
// Partitioning is a Consul Enterprise feature.
|
|
|
|
Partition string `json:",omitempty"`
|
|
|
|
|
|
|
|
// Services is a list of services to be exported and the list of partitions
|
|
|
|
// to expose them to.
|
2022-04-27 15:27:21 +00:00
|
|
|
Services []ExportedService `json:",omitempty"`
|
2021-10-20 19:24:18 +00:00
|
|
|
|
|
|
|
Meta map[string]string `json:",omitempty"`
|
|
|
|
|
|
|
|
// CreateIndex is the Raft index this entry was created at. This is a
|
|
|
|
// read-only field.
|
|
|
|
CreateIndex uint64
|
|
|
|
|
|
|
|
// ModifyIndex is used for the Check-And-Set operations and can also be fed
|
|
|
|
// back into the WaitIndex of the QueryOptions in order to perform blocking
|
|
|
|
// queries.
|
|
|
|
ModifyIndex uint64
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExportedService manages the exporting of a service in the local partition to
|
|
|
|
// other partitions.
|
|
|
|
type ExportedService struct {
|
|
|
|
// Name is the name of the service to be exported.
|
|
|
|
Name string
|
|
|
|
|
|
|
|
// Namespace is the namespace to export the service from.
|
|
|
|
Namespace string `json:",omitempty"`
|
|
|
|
|
|
|
|
// Consumers is a list of downstream consumers of the service to be exported.
|
2022-04-27 15:27:21 +00:00
|
|
|
Consumers []ServiceConsumer `json:",omitempty"`
|
2021-10-20 19:24:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ServiceConsumer represents a downstream consumer of the service to be exported.
|
2022-11-08 14:26:07 +00:00
|
|
|
// At most one of Partition or Peer must be specified.
|
2021-10-20 19:24:18 +00:00
|
|
|
type ServiceConsumer struct {
|
|
|
|
// Partition is the admin partition to export the service to.
|
2022-04-27 15:27:21 +00:00
|
|
|
Partition string `json:",omitempty"`
|
peering: initial sync (#12842)
- Add endpoints related to peering: read, list, generate token, initiate peering
- Update node/service/check table indexing to account for peers
- Foundational changes for pushing service updates to a peer
- Plumb peer name through Health.ServiceNodes path
see: ENT-1765, ENT-1280, ENT-1283, ENT-1283, ENT-1756, ENT-1739, ENT-1750, ENT-1679,
ENT-1709, ENT-1704, ENT-1690, ENT-1689, ENT-1702, ENT-1701, ENT-1683, ENT-1663,
ENT-1650, ENT-1678, ENT-1628, ENT-1658, ENT-1640, ENT-1637, ENT-1597, ENT-1634,
ENT-1613, ENT-1616, ENT-1617, ENT-1591, ENT-1588, ENT-1596, ENT-1572, ENT-1555
Co-authored-by: R.B. Boyer <rb@hashicorp.com>
Co-authored-by: freddygv <freddy@hashicorp.com>
Co-authored-by: Chris S. Kim <ckim@hashicorp.com>
Co-authored-by: Evan Culver <eculver@hashicorp.com>
Co-authored-by: Nitya Dhanushkodi <nitya@hashicorp.com>
2022-04-21 22:34:40 +00:00
|
|
|
|
2022-10-04 18:46:15 +00:00
|
|
|
// Peer is the name of the peer to export the service to.
|
|
|
|
Peer string `json:",omitempty" alias:"peer_name"`
|
2021-10-20 19:24:18 +00:00
|
|
|
}
|
|
|
|
|
2021-12-03 06:50:38 +00:00
|
|
|
func (e *ExportedServicesConfigEntry) GetKind() string { return ExportedServices }
|
|
|
|
func (e *ExportedServicesConfigEntry) GetName() string { return e.Name }
|
|
|
|
func (e *ExportedServicesConfigEntry) GetPartition() string { return e.Name }
|
2022-08-31 21:15:32 +00:00
|
|
|
func (e *ExportedServicesConfigEntry) GetNamespace() string { return "" }
|
2021-12-03 06:50:38 +00:00
|
|
|
func (e *ExportedServicesConfigEntry) GetMeta() map[string]string { return e.Meta }
|
|
|
|
func (e *ExportedServicesConfigEntry) GetCreateIndex() uint64 { return e.CreateIndex }
|
|
|
|
func (e *ExportedServicesConfigEntry) GetModifyIndex() uint64 { return e.ModifyIndex }
|
2021-10-20 19:24:18 +00:00
|
|
|
|
|
|
|
// MarshalJSON adds the Kind field so that the JSON can be decoded back into the
|
|
|
|
// correct type.
|
2021-12-03 06:50:38 +00:00
|
|
|
func (e *ExportedServicesConfigEntry) MarshalJSON() ([]byte, error) {
|
|
|
|
type Alias ExportedServicesConfigEntry
|
2021-10-20 19:24:18 +00:00
|
|
|
source := &struct {
|
|
|
|
Kind string
|
|
|
|
*Alias
|
|
|
|
}{
|
2021-12-03 06:50:38 +00:00
|
|
|
Kind: ExportedServices,
|
2021-10-20 19:24:18 +00:00
|
|
|
Alias: (*Alias)(e),
|
|
|
|
}
|
|
|
|
return json.Marshal(source)
|
|
|
|
}
|