mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 04:28:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			470 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			470 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright (c) HashiCorp, Inc.
 | 
						|
// SPDX-License-Identifier: MPL-2.0
 | 
						|
 | 
						|
package logical
 | 
						|
 | 
						|
type LogInput struct {
 | 
						|
	Type                string
 | 
						|
	Auth                *Auth
 | 
						|
	Request             *Request
 | 
						|
	Response            *Response
 | 
						|
	OuterErr            error
 | 
						|
	NonHMACReqDataKeys  []string
 | 
						|
	NonHMACRespDataKeys []string
 | 
						|
}
 | 
						|
 | 
						|
type MarshalOptions struct {
 | 
						|
	ValueHasher func(string) string
 | 
						|
}
 | 
						|
 | 
						|
type OptMarshaler interface {
 | 
						|
	MarshalJSONWithOptions(*MarshalOptions) ([]byte, error)
 | 
						|
}
 |