v1alpha3

package
v1.9.2 Latest Latest
Warning

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

Go to latest
Published: Mar 18, 2021 License: Apache-2.0 Imports: 8 Imported by: 16

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 DestinationRuleExpansion

type DestinationRuleExpansion interface{}

type DestinationRuleInterface

type DestinationRuleInterface interface {
	Create(ctx context.Context, destinationRule *v1alpha3.DestinationRule, opts v1.CreateOptions) (*v1alpha3.DestinationRule, error)
	Update(ctx context.Context, destinationRule *v1alpha3.DestinationRule, opts v1.UpdateOptions) (*v1alpha3.DestinationRule, error)
	UpdateStatus(ctx context.Context, destinationRule *v1alpha3.DestinationRule, opts v1.UpdateOptions) (*v1alpha3.DestinationRule, 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) (*v1alpha3.DestinationRule, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha3.DestinationRuleList, 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 *v1alpha3.DestinationRule, err error)
	DestinationRuleExpansion
}

DestinationRuleInterface has methods to work with DestinationRule resources.

type DestinationRulesGetter

type DestinationRulesGetter interface {
	DestinationRules(namespace string) DestinationRuleInterface
}

DestinationRulesGetter has a method to return a DestinationRuleInterface. A group's client should implement this interface.

type EnvoyFilterExpansion

type EnvoyFilterExpansion interface{}

type EnvoyFilterInterface

type EnvoyFilterInterface interface {
	Create(ctx context.Context, envoyFilter *v1alpha3.EnvoyFilter, opts v1.CreateOptions) (*v1alpha3.EnvoyFilter, error)
	Update(ctx context.Context, envoyFilter *v1alpha3.EnvoyFilter, opts v1.UpdateOptions) (*v1alpha3.EnvoyFilter, error)
	UpdateStatus(ctx context.Context, envoyFilter *v1alpha3.EnvoyFilter, opts v1.UpdateOptions) (*v1alpha3.EnvoyFilter, 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) (*v1alpha3.EnvoyFilter, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha3.EnvoyFilterList, 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 *v1alpha3.EnvoyFilter, err error)
	EnvoyFilterExpansion
}

EnvoyFilterInterface has methods to work with EnvoyFilter resources.

type EnvoyFiltersGetter

type EnvoyFiltersGetter interface {
	EnvoyFilters(namespace string) EnvoyFilterInterface
}

EnvoyFiltersGetter has a method to return a EnvoyFilterInterface. A group's client should implement this interface.

type GatewayExpansion

type GatewayExpansion interface{}

type GatewayInterface

type GatewayInterface interface {
	Create(ctx context.Context, gateway *v1alpha3.Gateway, opts v1.CreateOptions) (*v1alpha3.Gateway, error)
	Update(ctx context.Context, gateway *v1alpha3.Gateway, opts v1.UpdateOptions) (*v1alpha3.Gateway, error)
	UpdateStatus(ctx context.Context, gateway *v1alpha3.Gateway, opts v1.UpdateOptions) (*v1alpha3.Gateway, 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) (*v1alpha3.Gateway, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha3.GatewayList, 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 *v1alpha3.Gateway, err error)
	GatewayExpansion
}

GatewayInterface has methods to work with Gateway resources.

type GatewaysGetter

type GatewaysGetter interface {
	Gateways(namespace string) GatewayInterface
}

GatewaysGetter has a method to return a GatewayInterface. A group's client should implement this interface.

type NetworkingV1alpha3Client

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

NetworkingV1alpha3Client is used to interact with features provided by the networking.istio.io group.

func New

New creates a new NetworkingV1alpha3Client for the given RESTClient.

func NewForConfig

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

NewForConfig creates a new NetworkingV1alpha3Client for the given config.

func NewForConfigOrDie

func NewForConfigOrDie(c *rest.Config) *NetworkingV1alpha3Client

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

func (*NetworkingV1alpha3Client) DestinationRules

func (c *NetworkingV1alpha3Client) DestinationRules(namespace string) DestinationRuleInterface

func (*NetworkingV1alpha3Client) EnvoyFilters

func (c *NetworkingV1alpha3Client) EnvoyFilters(namespace string) EnvoyFilterInterface

func (*NetworkingV1alpha3Client) Gateways

func (c *NetworkingV1alpha3Client) Gateways(namespace string) GatewayInterface

func (*NetworkingV1alpha3Client) RESTClient

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

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

func (*NetworkingV1alpha3Client) ServiceEntries

func (c *NetworkingV1alpha3Client) ServiceEntries(namespace string) ServiceEntryInterface

func (*NetworkingV1alpha3Client) Sidecars

func (c *NetworkingV1alpha3Client) Sidecars(namespace string) SidecarInterface

func (*NetworkingV1alpha3Client) VirtualServices

func (c *NetworkingV1alpha3Client) VirtualServices(namespace string) VirtualServiceInterface

func (*NetworkingV1alpha3Client) WorkloadEntries

func (c *NetworkingV1alpha3Client) WorkloadEntries(namespace string) WorkloadEntryInterface

func (*NetworkingV1alpha3Client) WorkloadGroups

func (c *NetworkingV1alpha3Client) WorkloadGroups(namespace string) WorkloadGroupInterface

type ServiceEntriesGetter

type ServiceEntriesGetter interface {
	ServiceEntries(namespace string) ServiceEntryInterface
}

ServiceEntriesGetter has a method to return a ServiceEntryInterface. A group's client should implement this interface.

type ServiceEntryExpansion

type ServiceEntryExpansion interface{}

type ServiceEntryInterface

type ServiceEntryInterface interface {
	Create(ctx context.Context, serviceEntry *v1alpha3.ServiceEntry, opts v1.CreateOptions) (*v1alpha3.ServiceEntry, error)
	Update(ctx context.Context, serviceEntry *v1alpha3.ServiceEntry, opts v1.UpdateOptions) (*v1alpha3.ServiceEntry, error)
	UpdateStatus(ctx context.Context, serviceEntry *v1alpha3.ServiceEntry, opts v1.UpdateOptions) (*v1alpha3.ServiceEntry, 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) (*v1alpha3.ServiceEntry, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha3.ServiceEntryList, 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 *v1alpha3.ServiceEntry, err error)
	ServiceEntryExpansion
}

ServiceEntryInterface has methods to work with ServiceEntry resources.

type SidecarExpansion

type SidecarExpansion interface{}

type SidecarInterface

type SidecarInterface interface {
	Create(ctx context.Context, sidecar *v1alpha3.Sidecar, opts v1.CreateOptions) (*v1alpha3.Sidecar, error)
	Update(ctx context.Context, sidecar *v1alpha3.Sidecar, opts v1.UpdateOptions) (*v1alpha3.Sidecar, error)
	UpdateStatus(ctx context.Context, sidecar *v1alpha3.Sidecar, opts v1.UpdateOptions) (*v1alpha3.Sidecar, 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) (*v1alpha3.Sidecar, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha3.SidecarList, 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 *v1alpha3.Sidecar, err error)
	SidecarExpansion
}

SidecarInterface has methods to work with Sidecar resources.

type SidecarsGetter

type SidecarsGetter interface {
	Sidecars(namespace string) SidecarInterface
}

SidecarsGetter has a method to return a SidecarInterface. A group's client should implement this interface.

type VirtualServiceExpansion

type VirtualServiceExpansion interface{}

type VirtualServiceInterface

type VirtualServiceInterface interface {
	Create(ctx context.Context, virtualService *v1alpha3.VirtualService, opts v1.CreateOptions) (*v1alpha3.VirtualService, error)
	Update(ctx context.Context, virtualService *v1alpha3.VirtualService, opts v1.UpdateOptions) (*v1alpha3.VirtualService, error)
	UpdateStatus(ctx context.Context, virtualService *v1alpha3.VirtualService, opts v1.UpdateOptions) (*v1alpha3.VirtualService, 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) (*v1alpha3.VirtualService, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha3.VirtualServiceList, 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 *v1alpha3.VirtualService, err error)
	VirtualServiceExpansion
}

VirtualServiceInterface has methods to work with VirtualService resources.

type VirtualServicesGetter

type VirtualServicesGetter interface {
	VirtualServices(namespace string) VirtualServiceInterface
}

VirtualServicesGetter has a method to return a VirtualServiceInterface. A group's client should implement this interface.

type WorkloadEntriesGetter

type WorkloadEntriesGetter interface {
	WorkloadEntries(namespace string) WorkloadEntryInterface
}

WorkloadEntriesGetter has a method to return a WorkloadEntryInterface. A group's client should implement this interface.

type WorkloadEntryExpansion

type WorkloadEntryExpansion interface{}

type WorkloadEntryInterface

type WorkloadEntryInterface interface {
	Create(ctx context.Context, workloadEntry *v1alpha3.WorkloadEntry, opts v1.CreateOptions) (*v1alpha3.WorkloadEntry, error)
	Update(ctx context.Context, workloadEntry *v1alpha3.WorkloadEntry, opts v1.UpdateOptions) (*v1alpha3.WorkloadEntry, error)
	UpdateStatus(ctx context.Context, workloadEntry *v1alpha3.WorkloadEntry, opts v1.UpdateOptions) (*v1alpha3.WorkloadEntry, 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) (*v1alpha3.WorkloadEntry, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha3.WorkloadEntryList, 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 *v1alpha3.WorkloadEntry, err error)
	WorkloadEntryExpansion
}

WorkloadEntryInterface has methods to work with WorkloadEntry resources.

type WorkloadGroupExpansion

type WorkloadGroupExpansion interface{}

type WorkloadGroupInterface

type WorkloadGroupInterface interface {
	Create(ctx context.Context, workloadGroup *v1alpha3.WorkloadGroup, opts v1.CreateOptions) (*v1alpha3.WorkloadGroup, error)
	Update(ctx context.Context, workloadGroup *v1alpha3.WorkloadGroup, opts v1.UpdateOptions) (*v1alpha3.WorkloadGroup, error)
	UpdateStatus(ctx context.Context, workloadGroup *v1alpha3.WorkloadGroup, opts v1.UpdateOptions) (*v1alpha3.WorkloadGroup, 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) (*v1alpha3.WorkloadGroup, error)
	List(ctx context.Context, opts v1.ListOptions) (*v1alpha3.WorkloadGroupList, 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 *v1alpha3.WorkloadGroup, err error)
	WorkloadGroupExpansion
}

WorkloadGroupInterface has methods to work with WorkloadGroup resources.

type WorkloadGroupsGetter

type WorkloadGroupsGetter interface {
	WorkloadGroups(namespace string) WorkloadGroupInterface
}

WorkloadGroupsGetter has a method to return a WorkloadGroupInterface. 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