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 AuthorizationPoliciesGetter ¶
type AuthorizationPoliciesGetter interface {
AuthorizationPolicies(namespace string) AuthorizationPolicyInterface
}
AuthorizationPoliciesGetter has a method to return a AuthorizationPolicyInterface. A group's client should implement this interface.
type AuthorizationPolicyExpansion ¶
type AuthorizationPolicyExpansion interface{}
type AuthorizationPolicyInterface ¶
type AuthorizationPolicyInterface interface { Create(ctx context.Context, authorizationPolicy *v1.AuthorizationPolicy, opts metav1.CreateOptions) (*v1.AuthorizationPolicy, error) Update(ctx context.Context, authorizationPolicy *v1.AuthorizationPolicy, opts metav1.UpdateOptions) (*v1.AuthorizationPolicy, error) UpdateStatus(ctx context.Context, authorizationPolicy *v1.AuthorizationPolicy, opts metav1.UpdateOptions) (*v1.AuthorizationPolicy, error) Delete(ctx context.Context, name string, opts metav1.DeleteOptions) error DeleteCollection(ctx context.Context, opts metav1.DeleteOptions, listOpts metav1.ListOptions) error Get(ctx context.Context, name string, opts metav1.GetOptions) (*v1.AuthorizationPolicy, error) List(ctx context.Context, opts metav1.ListOptions) (*v1.AuthorizationPolicyList, error) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *v1.AuthorizationPolicy, err error) Apply(ctx context.Context, authorizationPolicy *securityv1.AuthorizationPolicyApplyConfiguration, opts metav1.ApplyOptions) (result *v1.AuthorizationPolicy, err error) ApplyStatus(ctx context.Context, authorizationPolicy *securityv1.AuthorizationPolicyApplyConfiguration, opts metav1.ApplyOptions) (result *v1.AuthorizationPolicy, err error) AuthorizationPolicyExpansion }
AuthorizationPolicyInterface has methods to work with AuthorizationPolicy resources.
type RequestAuthenticationExpansion ¶
type RequestAuthenticationExpansion interface{}
type RequestAuthenticationInterface ¶
type RequestAuthenticationInterface interface { Create(ctx context.Context, requestAuthentication *v1.RequestAuthentication, opts metav1.CreateOptions) (*v1.RequestAuthentication, error) Update(ctx context.Context, requestAuthentication *v1.RequestAuthentication, opts metav1.UpdateOptions) (*v1.RequestAuthentication, error) UpdateStatus(ctx context.Context, requestAuthentication *v1.RequestAuthentication, opts metav1.UpdateOptions) (*v1.RequestAuthentication, error) Delete(ctx context.Context, name string, opts metav1.DeleteOptions) error DeleteCollection(ctx context.Context, opts metav1.DeleteOptions, listOpts metav1.ListOptions) error Get(ctx context.Context, name string, opts metav1.GetOptions) (*v1.RequestAuthentication, error) List(ctx context.Context, opts metav1.ListOptions) (*v1.RequestAuthenticationList, error) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *v1.RequestAuthentication, err error) Apply(ctx context.Context, requestAuthentication *securityv1.RequestAuthenticationApplyConfiguration, opts metav1.ApplyOptions) (result *v1.RequestAuthentication, err error) ApplyStatus(ctx context.Context, requestAuthentication *securityv1.RequestAuthenticationApplyConfiguration, opts metav1.ApplyOptions) (result *v1.RequestAuthentication, err error) RequestAuthenticationExpansion }
RequestAuthenticationInterface has methods to work with RequestAuthentication resources.
type RequestAuthenticationsGetter ¶
type RequestAuthenticationsGetter interface {
RequestAuthentications(namespace string) RequestAuthenticationInterface
}
RequestAuthenticationsGetter has a method to return a RequestAuthenticationInterface. A group's client should implement this interface.
type SecurityV1Client ¶
type SecurityV1Client struct {
// contains filtered or unexported fields
}
SecurityV1Client is used to interact with features provided by the security.istio.io group.
func New ¶
func New(c rest.Interface) *SecurityV1Client
New creates a new SecurityV1Client for the given RESTClient.
func NewForConfig ¶
func NewForConfig(c *rest.Config) (*SecurityV1Client, error)
NewForConfig creates a new SecurityV1Client for the given config. NewForConfig is equivalent to NewForConfigAndClient(c, httpClient), where httpClient was generated with rest.HTTPClientFor(c).
func NewForConfigAndClient ¶
NewForConfigAndClient creates a new SecurityV1Client for the given config and http client. Note the http client provided takes precedence over the configured transport values.
func NewForConfigOrDie ¶
func NewForConfigOrDie(c *rest.Config) *SecurityV1Client
NewForConfigOrDie creates a new SecurityV1Client for the given config and panics if there is an error in the config.
func (*SecurityV1Client) AuthorizationPolicies ¶
func (c *SecurityV1Client) AuthorizationPolicies(namespace string) AuthorizationPolicyInterface
func (*SecurityV1Client) RESTClient ¶
func (c *SecurityV1Client) RESTClient() rest.Interface
RESTClient returns a RESTClient that is used to communicate with API server by this client implementation.
func (*SecurityV1Client) RequestAuthentications ¶
func (c *SecurityV1Client) RequestAuthentications(namespace string) RequestAuthenticationInterface
type SecurityV1Interface ¶
type SecurityV1Interface interface { RESTClient() rest.Interface AuthorizationPoliciesGetter RequestAuthenticationsGetter }