本文整理匯總了Golang中k8s/io/kubernetes/pkg/client/testing/core.GenericActionImpl類的典型用法代碼示例。如果您正苦於以下問題:Golang GenericActionImpl類的具體用法?Golang GenericActionImpl怎麽用?Golang GenericActionImpl使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了GenericActionImpl類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: GetFieldSelector
func (c *FakeEvents) GetFieldSelector(involvedObjectName, involvedObjectNamespace, involvedObjectKind, involvedObjectUID *string) fields.Selector {
action := core.GenericActionImpl{}
action.Verb = "get-field-selector"
action.Resource = eventsResource
c.Fake.Invokes(action, nil)
return fields.Everything()
}
示例2: GetLogs
func (c *FakePods) GetLogs(name string, opts *api.PodLogOptions) *restclient.Request {
action := core.GenericActionImpl{}
action.Verb = "get"
action.Namespace = c.ns
action.Resource = "pod"
action.Subresource = "logs"
action.Value = opts
_, _ = c.Fake.Invokes(action, &api.Pod{})
return &restclient.Request{}
}
示例3: Get
func (c *FakeBuildLogs) Get(name string, opt buildapi.BuildLogOptions) *restclient.Request {
action := core.GenericActionImpl{}
action.Verb = "get"
action.Namespace = c.Namespace
action.Resource = buildsResource
action.Subresource = "log"
action.Value = opt
_, _ = c.Fake.Invokes(action, &buildapi.BuildConfig{})
return &restclient.Request{}
}