func (c *FakeEvents) GetFieldSelector(involvedObjectName, involvedObjectNamespace, involvedObjectKind, involvedObjectUID *string) fields.Selector { action := testing.GenericActionImpl{} action.Verb = "get-field-selector" action.Resource = eventsResource c.Fake.Invokes(action, nil) return fields.Everything() }
func (c *FakePods) GetLogs(name string, opts *v1.PodLogOptions) *rest.Request { action := testing.GenericActionImpl{} action.Verb = "get" action.Namespace = c.ns action.Resource = podsResource action.Subresource = "logs" action.Value = opts _, _ = c.Fake.Invokes(action, &v1.Pod{}) return &rest.Request{} }