Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AccessLogRecordSet ¶
type AccessLogRecordSet 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(*observability_enterprise_mesh_gloo_solo_io_v1.AccessLogRecord) bool) []*observability_enterprise_mesh_gloo_solo_io_v1.AccessLogRecord // Unsorted list of resources stored in the set. Pass an optional filter function to filter on the list. UnsortedList(filterResource ...func(*observability_enterprise_mesh_gloo_solo_io_v1.AccessLogRecord) bool) []*observability_enterprise_mesh_gloo_solo_io_v1.AccessLogRecord // Return the Set as a map of key to resource. Map() map[string]*observability_enterprise_mesh_gloo_solo_io_v1.AccessLogRecord // Insert a resource into the set. Insert(accessLogRecord ...*observability_enterprise_mesh_gloo_solo_io_v1.AccessLogRecord) // Compare the equality of the keys in two sets (not the resources themselves) Equal(accessLogRecordSet AccessLogRecordSet) bool // Check if the set contains a key matching the resource (not the resource itself) Has(accessLogRecord ezkube.ResourceId) bool // Delete the key matching the resource Delete(accessLogRecord ezkube.ResourceId) // Return the union with the provided set Union(set AccessLogRecordSet) AccessLogRecordSet // Return the difference with the provided set Difference(set AccessLogRecordSet) AccessLogRecordSet // Return the intersection with the provided set Intersection(set AccessLogRecordSet) AccessLogRecordSet // Find the resource with the given ID Find(id ezkube.ResourceId) (*observability_enterprise_mesh_gloo_solo_io_v1.AccessLogRecord, 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 AccessLogRecordSet Delta(newSet AccessLogRecordSet) sksets.ResourceDelta }
func NewAccessLogRecordSet ¶
func NewAccessLogRecordSet(accessLogRecordList ...*observability_enterprise_mesh_gloo_solo_io_v1.AccessLogRecord) AccessLogRecordSet
func NewAccessLogRecordSetFromList ¶
func NewAccessLogRecordSetFromList(accessLogRecordList *observability_enterprise_mesh_gloo_solo_io_v1.AccessLogRecordList) AccessLogRecordSet
Click to show internal directories.
Click to hide internal directories.