v1

package
v3.6.1 Latest Latest
Warning

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

Go to latest
Published: Oct 22, 2017 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Overview

This package has the automatically generated typed clients.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AuthorizationV1Client

type AuthorizationV1Client struct {
	// contains filtered or unexported fields
}

AuthorizationV1Client is used to interact with features provided by the authorization.openshift.io group.

func New

New creates a new AuthorizationV1Client for the given RESTClient.

func NewForConfig

func NewForConfig(c *rest.Config) (*AuthorizationV1Client, error)

NewForConfig creates a new AuthorizationV1Client for the given config.

func NewForConfigOrDie

func NewForConfigOrDie(c *rest.Config) *AuthorizationV1Client

NewForConfigOrDie creates a new AuthorizationV1Client for the given config and panics if there is an error in the config.

func (*AuthorizationV1Client) ClusterPolicies

func (c *AuthorizationV1Client) ClusterPolicies() ClusterPolicyInterface

func (*AuthorizationV1Client) ClusterPolicyBindings

func (c *AuthorizationV1Client) ClusterPolicyBindings() ClusterPolicyBindingInterface

func (*AuthorizationV1Client) ClusterRoleBindings

func (c *AuthorizationV1Client) ClusterRoleBindings() ClusterRoleBindingInterface

func (*AuthorizationV1Client) ClusterRoles

func (c *AuthorizationV1Client) ClusterRoles() ClusterRoleInterface

func (*AuthorizationV1Client) Policies

func (c *AuthorizationV1Client) Policies(namespace string) PolicyInterface

func (*AuthorizationV1Client) PolicyBindings

func (c *AuthorizationV1Client) PolicyBindings(namespace string) PolicyBindingInterface

func (*AuthorizationV1Client) RESTClient

func (c *AuthorizationV1Client) RESTClient() rest.Interface

RESTClient returns a RESTClient that is used to communicate with API server by this client implementation.

func (*AuthorizationV1Client) RoleBindings

func (c *AuthorizationV1Client) RoleBindings(namespace string) RoleBindingInterface

func (*AuthorizationV1Client) Roles

func (c *AuthorizationV1Client) Roles(namespace string) RoleInterface

type ClusterPoliciesGetter

type ClusterPoliciesGetter interface {
	ClusterPolicies() ClusterPolicyInterface
}

ClusterPoliciesGetter has a method to return a ClusterPolicyInterface. A group's client should implement this interface.

type ClusterPolicyBindingExpansion

type ClusterPolicyBindingExpansion interface{}

type ClusterPolicyBindingInterface

type ClusterPolicyBindingInterface interface {
	Create(*v1.ClusterPolicyBinding) (*v1.ClusterPolicyBinding, error)
	Update(*v1.ClusterPolicyBinding) (*v1.ClusterPolicyBinding, error)
	Delete(name string, options *meta_v1.DeleteOptions) error
	DeleteCollection(options *meta_v1.DeleteOptions, listOptions meta_v1.ListOptions) error
	Get(name string, options meta_v1.GetOptions) (*v1.ClusterPolicyBinding, error)
	List(opts meta_v1.ListOptions) (*v1.ClusterPolicyBindingList, error)
	Watch(opts meta_v1.ListOptions) (watch.Interface, error)
	Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1.ClusterPolicyBinding, err error)
	ClusterPolicyBindingExpansion
}

ClusterPolicyBindingInterface has methods to work with ClusterPolicyBinding resources.

type ClusterPolicyBindingsGetter

type ClusterPolicyBindingsGetter interface {
	ClusterPolicyBindings() ClusterPolicyBindingInterface
}

ClusterPolicyBindingsGetter has a method to return a ClusterPolicyBindingInterface. A group's client should implement this interface.

type ClusterPolicyExpansion

type ClusterPolicyExpansion interface{}

type ClusterPolicyInterface

type ClusterPolicyInterface interface {
	Create(*v1.ClusterPolicy) (*v1.ClusterPolicy, error)
	Update(*v1.ClusterPolicy) (*v1.ClusterPolicy, error)
	Delete(name string, options *meta_v1.DeleteOptions) error
	DeleteCollection(options *meta_v1.DeleteOptions, listOptions meta_v1.ListOptions) error
	Get(name string, options meta_v1.GetOptions) (*v1.ClusterPolicy, error)
	List(opts meta_v1.ListOptions) (*v1.ClusterPolicyList, error)
	Watch(opts meta_v1.ListOptions) (watch.Interface, error)
	Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1.ClusterPolicy, err error)
	ClusterPolicyExpansion
}

ClusterPolicyInterface has methods to work with ClusterPolicy resources.

type ClusterRoleBindingExpansion

type ClusterRoleBindingExpansion interface{}

type ClusterRoleBindingInterface

type ClusterRoleBindingInterface interface {
	Create(*v1.ClusterRoleBinding) (*v1.ClusterRoleBinding, error)
	Update(*v1.ClusterRoleBinding) (*v1.ClusterRoleBinding, error)
	Delete(name string, options *meta_v1.DeleteOptions) error
	DeleteCollection(options *meta_v1.DeleteOptions, listOptions meta_v1.ListOptions) error
	Get(name string, options meta_v1.GetOptions) (*v1.ClusterRoleBinding, error)
	List(opts meta_v1.ListOptions) (*v1.ClusterRoleBindingList, error)
	Watch(opts meta_v1.ListOptions) (watch.Interface, error)
	Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1.ClusterRoleBinding, err error)
	ClusterRoleBindingExpansion
}

ClusterRoleBindingInterface has methods to work with ClusterRoleBinding resources.

type ClusterRoleBindingsGetter

type ClusterRoleBindingsGetter interface {
	ClusterRoleBindings() ClusterRoleBindingInterface
}

ClusterRoleBindingsGetter has a method to return a ClusterRoleBindingInterface. A group's client should implement this interface.

type ClusterRoleExpansion

type ClusterRoleExpansion interface{}

type ClusterRoleInterface

type ClusterRoleInterface interface {
	Create(*v1.ClusterRole) (*v1.ClusterRole, error)
	Update(*v1.ClusterRole) (*v1.ClusterRole, error)
	Delete(name string, options *meta_v1.DeleteOptions) error
	DeleteCollection(options *meta_v1.DeleteOptions, listOptions meta_v1.ListOptions) error
	Get(name string, options meta_v1.GetOptions) (*v1.ClusterRole, error)
	List(opts meta_v1.ListOptions) (*v1.ClusterRoleList, error)
	Watch(opts meta_v1.ListOptions) (watch.Interface, error)
	Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1.ClusterRole, err error)
	ClusterRoleExpansion
}

ClusterRoleInterface has methods to work with ClusterRole resources.

type ClusterRolesGetter

type ClusterRolesGetter interface {
	ClusterRoles() ClusterRoleInterface
}

ClusterRolesGetter has a method to return a ClusterRoleInterface. A group's client should implement this interface.

type PoliciesGetter

type PoliciesGetter interface {
	Policies(namespace string) PolicyInterface
}

PoliciesGetter has a method to return a PolicyInterface. A group's client should implement this interface.

type PolicyBindingExpansion

type PolicyBindingExpansion interface{}

type PolicyBindingInterface

type PolicyBindingInterface interface {
	Create(*v1.PolicyBinding) (*v1.PolicyBinding, error)
	Update(*v1.PolicyBinding) (*v1.PolicyBinding, error)
	Delete(name string, options *meta_v1.DeleteOptions) error
	DeleteCollection(options *meta_v1.DeleteOptions, listOptions meta_v1.ListOptions) error
	Get(name string, options meta_v1.GetOptions) (*v1.PolicyBinding, error)
	List(opts meta_v1.ListOptions) (*v1.PolicyBindingList, error)
	Watch(opts meta_v1.ListOptions) (watch.Interface, error)
	Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1.PolicyBinding, err error)
	PolicyBindingExpansion
}

PolicyBindingInterface has methods to work with PolicyBinding resources.

type PolicyBindingsGetter

type PolicyBindingsGetter interface {
	PolicyBindings(namespace string) PolicyBindingInterface
}

PolicyBindingsGetter has a method to return a PolicyBindingInterface. A group's client should implement this interface.

type PolicyExpansion

type PolicyExpansion interface{}

type PolicyInterface

type PolicyInterface interface {
	Create(*v1.Policy) (*v1.Policy, error)
	Update(*v1.Policy) (*v1.Policy, error)
	Delete(name string, options *meta_v1.DeleteOptions) error
	DeleteCollection(options *meta_v1.DeleteOptions, listOptions meta_v1.ListOptions) error
	Get(name string, options meta_v1.GetOptions) (*v1.Policy, error)
	List(opts meta_v1.ListOptions) (*v1.PolicyList, error)
	Watch(opts meta_v1.ListOptions) (watch.Interface, error)
	Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1.Policy, err error)
	PolicyExpansion
}

PolicyInterface has methods to work with Policy resources.

type RoleBindingExpansion

type RoleBindingExpansion interface{}

type RoleBindingInterface

type RoleBindingInterface interface {
	Create(*v1.RoleBinding) (*v1.RoleBinding, error)
	Update(*v1.RoleBinding) (*v1.RoleBinding, error)
	Delete(name string, options *meta_v1.DeleteOptions) error
	DeleteCollection(options *meta_v1.DeleteOptions, listOptions meta_v1.ListOptions) error
	Get(name string, options meta_v1.GetOptions) (*v1.RoleBinding, error)
	List(opts meta_v1.ListOptions) (*v1.RoleBindingList, error)
	Watch(opts meta_v1.ListOptions) (watch.Interface, error)
	Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1.RoleBinding, err error)
	RoleBindingExpansion
}

RoleBindingInterface has methods to work with RoleBinding resources.

type RoleBindingsGetter

type RoleBindingsGetter interface {
	RoleBindings(namespace string) RoleBindingInterface
}

RoleBindingsGetter has a method to return a RoleBindingInterface. A group's client should implement this interface.

type RoleExpansion

type RoleExpansion interface{}

type RoleInterface

type RoleInterface interface {
	Create(*v1.Role) (*v1.Role, error)
	Update(*v1.Role) (*v1.Role, error)
	Delete(name string, options *meta_v1.DeleteOptions) error
	DeleteCollection(options *meta_v1.DeleteOptions, listOptions meta_v1.ListOptions) error
	Get(name string, options meta_v1.GetOptions) (*v1.Role, error)
	List(opts meta_v1.ListOptions) (*v1.RoleList, error)
	Watch(opts meta_v1.ListOptions) (watch.Interface, error)
	Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1.Role, err error)
	RoleExpansion
}

RoleInterface has methods to work with Role resources.

type RolesGetter

type RolesGetter interface {
	Roles(namespace string) RoleInterface
}

RolesGetter has a method to return a RoleInterface. A group's client should implement this interface.

Directories

Path Synopsis
Package fake has the automatically generated clients.
Package fake has the automatically generated clients.

Jump to

Keyboard shortcuts

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