コード例 #1
0
func (c *FakeClusterPolicies) Watch(opts kapi.ListOptions) (watch.Interface, error) {
	return c.Fake.InvokesWatch(ktestclient.NewRootWatchAction("clusterpolicies", opts))
}
コード例 #2
0
ファイル: fake_netnamespaces.go プロジェクト: ncantor/origin
func (c *FakeNetNamespace) Watch(resourceVersion string) (watch.Interface, error) {
	return c.Fake.InvokesWatch(ktestclient.NewRootWatchAction("netnamespaces", nil, nil, resourceVersion))
}
コード例 #3
0
func (c *FakeOAuthClient) Watch(opts kapi.ListOptions) (watch.Interface, error) {
	return c.Fake.InvokesWatch(ktestclient.NewRootWatchAction("oauthclients", opts))
}
コード例 #4
0
ファイル: fake_projects.go プロジェクト: RomainVabre/origin
func (c *FakeProjects) Watch(opts kapi.ListOptions) (watch.Interface, error) {
	return c.Fake.InvokesWatch(ktestclient.NewRootWatchAction("projects", opts))
}
コード例 #5
0
func (c *FakeClusterPolicies) Watch(label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error) {
	return c.Fake.InvokesWatch(ktestclient.NewRootWatchAction("clusterpolicies", label, field, resourceVersion))
}
コード例 #6
0
func (c *FakeClusterResourceQuotas) Watch(opts kapi.ListOptions) (watch.Interface, error) {
	return c.Fake.InvokesWatch(ktestclient.NewRootWatchAction("clusterresourcequotas", opts))
}
コード例 #7
0
func (c *FakeHostSubnet) Watch(opts kapi.ListOptions) (watch.Interface, error) {
	return c.Fake.InvokesWatch(ktestclient.NewRootWatchAction("hostsubnets", opts))
}
コード例 #8
0
func (c *FakeHostSubnet) Watch(resourceVersion string) (watch.Interface, error) {
	return c.Fake.InvokesWatch(ktestclient.NewRootWatchAction("hostsubnets", nil, nil, resourceVersion))
}
コード例 #9
0
func (c *FakeServiceBrokers) Watch(opts kapi.ListOptions) (watch.Interface, error) {
	return c.Fake.InvokesWatch(ktestclient.NewRootWatchAction("servicebroker", opts))
}
コード例 #10
0
func (c *FakeNetNamespace) Watch(opts kapi.ListOptions) (watch.Interface, error) {
	return c.Fake.InvokesWatch(ktestclient.NewRootWatchAction("netnamespaces", opts))
}