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