v1beta1sets

package
v0.38.6 Latest Latest
Warning

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

Go to latest
Published: Apr 24, 2024 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type CustomResourceDefinitionSet

type CustomResourceDefinitionSet 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(*apiextensions_k8s_io_v1beta1.CustomResourceDefinition) bool) []*apiextensions_k8s_io_v1beta1.CustomResourceDefinition
	// Unsorted list of resources stored in the set. Pass an optional filter function to filter on the list.
	UnsortedList(filterResource ...func(*apiextensions_k8s_io_v1beta1.CustomResourceDefinition) bool) []*apiextensions_k8s_io_v1beta1.CustomResourceDefinition
	// Return the Set as a map of key to resource.
	Map() map[string]*apiextensions_k8s_io_v1beta1.CustomResourceDefinition
	// Insert a resource into the set.
	Insert(customResourceDefinition ...*apiextensions_k8s_io_v1beta1.CustomResourceDefinition)
	// Compare the equality of the keys in two sets (not the resources themselves)
	Equal(customResourceDefinitionSet CustomResourceDefinitionSet) bool
	// Check if the set contains a key matching the resource (not the resource itself)
	Has(customResourceDefinition ezkube.ResourceId) bool
	// Delete the key matching the resource
	Delete(customResourceDefinition ezkube.ResourceId)
	// Return the union with the provided set
	Union(set CustomResourceDefinitionSet) CustomResourceDefinitionSet
	// Return the difference with the provided set
	Difference(set CustomResourceDefinitionSet) CustomResourceDefinitionSet
	// Return the intersection with the provided set
	Intersection(set CustomResourceDefinitionSet) CustomResourceDefinitionSet
	// Find the resource with the given ID
	Find(id ezkube.ResourceId) (*apiextensions_k8s_io_v1beta1.CustomResourceDefinition, 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 CustomResourceDefinitionSet
	Delta(newSet CustomResourceDefinitionSet) sksets.ResourceDelta
	// Create a deep copy of the current CustomResourceDefinitionSet
	Clone() CustomResourceDefinitionSet
}

func NewCustomResourceDefinitionSet

func NewCustomResourceDefinitionSet(customResourceDefinitionList ...*apiextensions_k8s_io_v1beta1.CustomResourceDefinition) CustomResourceDefinitionSet

func NewCustomResourceDefinitionSetFromList

func NewCustomResourceDefinitionSetFromList(customResourceDefinitionList *apiextensions_k8s_io_v1beta1.CustomResourceDefinitionList) CustomResourceDefinitionSet

Directories

Path Synopsis
Package mock_v1beta1sets is a generated GoMock package.
Package mock_v1beta1sets is a generated GoMock package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL