13 lines
		
	
	
		
			448 B
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			448 B
		
	
	
	
		
			Go
		
	
	
	
package constants
 | 
						|
 | 
						|
// PostgreSQL specific constants
 | 
						|
const (
 | 
						|
	EventStreamSourceCRDKind     = "FabricEventStream"
 | 
						|
	EventStreamSourceCRDName     = "fabriceventstreams.zalando.org"
 | 
						|
	EventStreamSourcePGType      = "PostgresLogicalReplication"
 | 
						|
	EventStreamSourceSlotPrefix  = "fes"
 | 
						|
	EventStreamSourceAuthType    = "DatabaseAuthenticationSecret"
 | 
						|
	EventStreamFlowPgGenericType = "PostgresWalToGenericNakadiEvent"
 | 
						|
	EventStreamSinkNakadiType    = "Nakadi"
 | 
						|
)
 |