oauthclient

package
v3.6.0-rc.0+incompatible Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 13, 2017 License: Apache-2.0 Imports: 13 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Strategy = strategy{kapi.Scheme}

Strategy is the default logic that applies when creating or updating OAuthClient objects objects via the REST API.

Functions

func GetAttrs

func GetAttrs(o runtime.Object) (labels.Set, fields.Set, error)

GetAttrs returns labels and fields of a given object for filtering purposes

func Matcher

Matcher returns a generic matcher for a given label and field selector.

func SelectableFields

func SelectableFields(obj *oauthapi.OAuthClient) fields.Set

SelectableFields returns a field set that can be used for filter selection

Types

type Getter added in v1.3.0

type Getter interface {
	GetClient(ctx apirequest.Context, name string, options *metav1.GetOptions) (*oauthapi.OAuthClient, error)
}

Getter exposes a way to get a specific client. This is useful for other registries to get scope limitations on particular clients. This interface will make its easier to write a future cache on it

type Registry

type Registry interface {
	// ListClients obtains a list of clients that match a selector.
	ListClients(ctx apirequest.Context, options *metainternal.ListOptions) (*oauthapi.OAuthClientList, error)
	// GetClient retrieves a specific client.
	GetClient(ctx apirequest.Context, name string, options *metav1.GetOptions) (*oauthapi.OAuthClient, error)
	// CreateClient creates a new client.
	CreateClient(ctx apirequest.Context, client *oauthapi.OAuthClient) (*oauthapi.OAuthClient, error)
	// UpdateClient updates a client.
	UpdateClient(ctx apirequest.Context, client *oauthapi.OAuthClient) (*oauthapi.OAuthClient, error)
	// DeleteClient deletes a client.
	DeleteClient(ctx apirequest.Context, name string) error
}

Registry is an interface for things that know how to store OAuthClient objects.

func NewRegistry

func NewRegistry(s rest.StandardStorage) Registry

NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL