Documentation ¶
Overview ¶
This package has the automatically generated typed clients.
Index ¶
- type PodSecurityPolicyReviewExpansion
- type PodSecurityPolicyReviewInterface
- type PodSecurityPolicyReviewsGetter
- type PodSecurityPolicySelfSubjectReviewExpansion
- type PodSecurityPolicySelfSubjectReviewInterface
- type PodSecurityPolicySelfSubjectReviewsGetter
- type PodSecurityPolicySubjectReviewExpansion
- type PodSecurityPolicySubjectReviewInterface
- type PodSecurityPolicySubjectReviewsGetter
- type SecurityClient
- func (c *SecurityClient) PodSecurityPolicyReviews(namespace string) PodSecurityPolicyReviewInterface
- func (c *SecurityClient) PodSecurityPolicySelfSubjectReviews(namespace string) PodSecurityPolicySelfSubjectReviewInterface
- func (c *SecurityClient) PodSecurityPolicySubjectReviews(namespace string) PodSecurityPolicySubjectReviewInterface
- func (c *SecurityClient) RESTClient() rest.Interface
- func (c *SecurityClient) SecurityContextConstraints() SecurityContextConstraintsInterface
- type SecurityContextConstraintsExpansion
- type SecurityContextConstraintsGetter
- type SecurityContextConstraintsInterface
- type SecurityInterface
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PodSecurityPolicyReviewExpansion ¶
type PodSecurityPolicyReviewExpansion interface{}
type PodSecurityPolicyReviewInterface ¶
type PodSecurityPolicyReviewInterface interface { Create(*security.PodSecurityPolicyReview) (*security.PodSecurityPolicyReview, error) PodSecurityPolicyReviewExpansion }
PodSecurityPolicyReviewInterface has methods to work with PodSecurityPolicyReview resources.
type PodSecurityPolicyReviewsGetter ¶
type PodSecurityPolicyReviewsGetter interface {
PodSecurityPolicyReviews(namespace string) PodSecurityPolicyReviewInterface
}
PodSecurityPolicyReviewsGetter has a method to return a PodSecurityPolicyReviewInterface. A group's client should implement this interface.
type PodSecurityPolicySelfSubjectReviewExpansion ¶
type PodSecurityPolicySelfSubjectReviewExpansion interface{}
type PodSecurityPolicySelfSubjectReviewInterface ¶
type PodSecurityPolicySelfSubjectReviewInterface interface { Create(*security.PodSecurityPolicySelfSubjectReview) (*security.PodSecurityPolicySelfSubjectReview, error) PodSecurityPolicySelfSubjectReviewExpansion }
PodSecurityPolicySelfSubjectReviewInterface has methods to work with PodSecurityPolicySelfSubjectReview resources.
type PodSecurityPolicySelfSubjectReviewsGetter ¶
type PodSecurityPolicySelfSubjectReviewsGetter interface {
PodSecurityPolicySelfSubjectReviews(namespace string) PodSecurityPolicySelfSubjectReviewInterface
}
PodSecurityPolicySelfSubjectReviewsGetter has a method to return a PodSecurityPolicySelfSubjectReviewInterface. A group's client should implement this interface.
type PodSecurityPolicySubjectReviewExpansion ¶
type PodSecurityPolicySubjectReviewExpansion interface{}
type PodSecurityPolicySubjectReviewInterface ¶
type PodSecurityPolicySubjectReviewInterface interface { Create(*security.PodSecurityPolicySubjectReview) (*security.PodSecurityPolicySubjectReview, error) PodSecurityPolicySubjectReviewExpansion }
PodSecurityPolicySubjectReviewInterface has methods to work with PodSecurityPolicySubjectReview resources.
type PodSecurityPolicySubjectReviewsGetter ¶
type PodSecurityPolicySubjectReviewsGetter interface {
PodSecurityPolicySubjectReviews(namespace string) PodSecurityPolicySubjectReviewInterface
}
PodSecurityPolicySubjectReviewsGetter has a method to return a PodSecurityPolicySubjectReviewInterface. A group's client should implement this interface.
type SecurityClient ¶
type SecurityClient struct {
// contains filtered or unexported fields
}
SecurityClient is used to interact with features provided by the security.openshift.io group.
func New ¶
func New(c rest.Interface) *SecurityClient
New creates a new SecurityClient for the given RESTClient.
func NewForConfig ¶
func NewForConfig(c *rest.Config) (*SecurityClient, error)
NewForConfig creates a new SecurityClient for the given config.
func NewForConfigOrDie ¶
func NewForConfigOrDie(c *rest.Config) *SecurityClient
NewForConfigOrDie creates a new SecurityClient for the given config and panics if there is an error in the config.
func (*SecurityClient) PodSecurityPolicyReviews ¶
func (c *SecurityClient) PodSecurityPolicyReviews(namespace string) PodSecurityPolicyReviewInterface
func (*SecurityClient) PodSecurityPolicySelfSubjectReviews ¶
func (c *SecurityClient) PodSecurityPolicySelfSubjectReviews(namespace string) PodSecurityPolicySelfSubjectReviewInterface
func (*SecurityClient) PodSecurityPolicySubjectReviews ¶
func (c *SecurityClient) PodSecurityPolicySubjectReviews(namespace string) PodSecurityPolicySubjectReviewInterface
func (*SecurityClient) RESTClient ¶
func (c *SecurityClient) RESTClient() rest.Interface
RESTClient returns a RESTClient that is used to communicate with API server by this client implementation.
func (*SecurityClient) SecurityContextConstraints ¶
func (c *SecurityClient) SecurityContextConstraints() SecurityContextConstraintsInterface
type SecurityContextConstraintsExpansion ¶
type SecurityContextConstraintsExpansion interface{}
type SecurityContextConstraintsGetter ¶
type SecurityContextConstraintsGetter interface {
SecurityContextConstraints() SecurityContextConstraintsInterface
}
SecurityContextConstraintsGetter has a method to return a SecurityContextConstraintsInterface. A group's client should implement this interface.
type SecurityContextConstraintsInterface ¶
type SecurityContextConstraintsInterface interface { Create(*security.SecurityContextConstraints) (*security.SecurityContextConstraints, error) Update(*security.SecurityContextConstraints) (*security.SecurityContextConstraints, error) Delete(name string, options *v1.DeleteOptions) error DeleteCollection(options *v1.DeleteOptions, listOptions v1.ListOptions) error Get(name string, options v1.GetOptions) (*security.SecurityContextConstraints, error) List(opts v1.ListOptions) (*security.SecurityContextConstraintsList, error) Watch(opts v1.ListOptions) (watch.Interface, error) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *security.SecurityContextConstraints, err error) SecurityContextConstraintsExpansion }
SecurityContextConstraintsInterface has methods to work with SecurityContextConstraints resources.
type SecurityInterface ¶
type SecurityInterface interface { RESTClient() rest.Interface PodSecurityPolicyReviewsGetter PodSecurityPolicySelfSubjectReviewsGetter PodSecurityPolicySubjectReviewsGetter SecurityContextConstraintsGetter }