Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EnvoyFilterSet ¶
type EnvoyFilterSet interface { // Get the set stored keys Keys() sets.String // List of resources stored in the set. Pass an optional filter function to filter on the list. List(filterResource ...func(*networking_istio_io_v1alpha3.EnvoyFilter) bool) []*networking_istio_io_v1alpha3.EnvoyFilter // Unsorted list of resources stored in the set. Pass an optional filter function to filter on the list. UnsortedList(filterResource ...func(*networking_istio_io_v1alpha3.EnvoyFilter) bool) []*networking_istio_io_v1alpha3.EnvoyFilter // Return the Set as a map of key to resource. Map() map[string]*networking_istio_io_v1alpha3.EnvoyFilter // Insert a resource into the set. Insert(envoyFilter ...*networking_istio_io_v1alpha3.EnvoyFilter) // Compare the equality of the keys in two sets (not the resources themselves) Equal(envoyFilterSet EnvoyFilterSet) bool // Check if the set contains a key matching the resource (not the resource itself) Has(envoyFilter ezkube.ResourceId) bool // Delete the key matching the resource Delete(envoyFilter ezkube.ResourceId) // Return the union with the provided set Union(set EnvoyFilterSet) EnvoyFilterSet // Return the difference with the provided set Difference(set EnvoyFilterSet) EnvoyFilterSet // Return the intersection with the provided set Intersection(set EnvoyFilterSet) EnvoyFilterSet // Find the resource with the given ID Find(id ezkube.ResourceId) (*networking_istio_io_v1alpha3.EnvoyFilter, error) // Get the length of the set Length() int // returns the generic implementation of the set Generic() sksets.ResourceSet // returns the delta between this and and another EnvoyFilterSet Delta(newSet EnvoyFilterSet) sksets.ResourceDelta // Create a deep copy of the current EnvoyFilterSet Clone() EnvoyFilterSet }
func NewEnvoyFilterSet ¶
func NewEnvoyFilterSet(envoyFilterList ...*networking_istio_io_v1alpha3.EnvoyFilter) EnvoyFilterSet
func NewEnvoyFilterSetFromList ¶
func NewEnvoyFilterSetFromList(envoyFilterList *networking_istio_io_v1alpha3.EnvoyFilterList) EnvoyFilterSet
Click to show internal directories.
Click to hide internal directories.