Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ApplyAPI (0.06 sec)

  1. pkg/kube/kubetypes/types.go

    // ReadWriteAPI exposes a generic API for read and write operations.
    type ReadWriteAPI[T runtime.Object, TL runtime.Object] interface {
    	ReadAPI[T, TL]
    	WriteAPI[T]
    }
    
    // ApplyAPI exposes a generic API for a client go type for apply operations.
    type ApplyAPI[T runtime.Object, TA runtime.Object] interface {
    	Apply(ctx context.Context, secret TA, opts metav1.ApplyOptions) (result T, err error)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top