本文整理汇总了Golang中k8s/io/kubernetes/pkg/client/unversioned/testclient.NewRootUpdateAction函数的典型用法代码示例。如果您正苦于以下问题:Golang NewRootUpdateAction函数的具体用法?Golang NewRootUpdateAction怎么用?Golang NewRootUpdateAction使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了NewRootUpdateAction函数的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: Update
func (c *FakeProjects) Update(inObj *projectapi.Project) (*projectapi.Project, error) {
obj, err := c.Fake.Invokes(ktestclient.NewRootUpdateAction("projects", inObj), inObj)
if obj == nil {
return nil, err
}
return obj.(*projectapi.Project), err
}
示例2: Update
func (c *FakeUserIdentityMappings) Update(inObj *userapi.UserIdentityMapping) (*userapi.UserIdentityMapping, error) {
obj, err := c.Fake.Invokes(ktestclient.NewRootUpdateAction("useridentitymappings", inObj), inObj)
if obj == nil {
return nil, err
}
return obj.(*userapi.UserIdentityMapping), err
}
示例3: Update
func (c *FakeClusterNetwork) Update(inObj *sdnapi.ClusterNetwork) (*sdnapi.ClusterNetwork, error) {
obj, err := c.Fake.Invokes(ktestclient.NewRootUpdateAction("clusternetworks", inObj), inObj)
if obj == nil {
return nil, err
}
return obj.(*sdnapi.ClusterNetwork), err
}
示例4: Update
func (c *FakeOAuthClientAuthorization) Update(inObj *oauthapi.OAuthClientAuthorization) (*oauthapi.OAuthClientAuthorization, error) {
obj, err := c.Fake.Invokes(ktestclient.NewRootUpdateAction("oauthClientAuthorizations", inObj), inObj)
if obj == nil {
return nil, err
}
return obj.(*oauthapi.OAuthClientAuthorization), err
}
示例5: Update
func (c *FakeGroups) Update(inObj *userapi.Group) (*userapi.Group, error) {
obj, err := c.Fake.Invokes(ktestclient.NewRootUpdateAction("groups", inObj), inObj)
if obj == nil {
return nil, err
}
return obj.(*userapi.Group), err
}
示例6: Update
func (c *FakeClusterRoleBindings) Update(inObj *authorizationapi.ClusterRoleBinding) (*authorizationapi.ClusterRoleBinding, error) {
obj, err := c.Fake.Invokes(ktestclient.NewRootUpdateAction("clusterrolebindings", inObj), inObj)
if obj == nil {
return nil, err
}
return obj.(*authorizationapi.ClusterRoleBinding), err
}
示例7: Update
func (c *FakeUsers) Update(inObj *userapi.User) (*userapi.User, error) {
obj, err := c.Fake.Invokes(ktestclient.NewRootUpdateAction("users", inObj), inObj)
if obj == nil {
return nil, err
}
return obj.(*userapi.User), err
}
示例8: Update
func (c *FakeIdentities) Update(inObj *userapi.Identity) (*userapi.Identity, error) {
obj, err := c.Fake.Invokes(ktestclient.NewRootUpdateAction("identities", inObj), inObj)
if obj == nil {
return nil, err
}
return obj.(*userapi.Identity), err
}
示例9: Update
func (c *FakeClusterResourceQuotas) Update(inObj *quotaapi.ClusterResourceQuota) (*quotaapi.ClusterResourceQuota, error) {
obj, err := c.Fake.Invokes(ktestclient.NewRootUpdateAction("clusterresourcequotas", inObj), inObj)
if obj == nil {
return nil, err
}
return obj.(*quotaapi.ClusterResourceQuota), err
}
示例10: Update
func (c *FakeNetNamespace) Update(inObj *sdnapi.NetNamespace) (*sdnapi.NetNamespace, error) {
obj, err := c.Fake.Invokes(ktestclient.NewRootUpdateAction("netnamespaces", inObj), inObj)
if obj == nil {
return nil, err
}
return obj.(*sdnapi.NetNamespace), err
}
示例11: Update
func (c *FakeImages) Update(inObj *imageapi.Image) (*imageapi.Image, error) {
obj, err := c.Fake.Invokes(ktestclient.NewRootUpdateAction("images", inObj), inObj)
if obj == nil {
return nil, err
}
return obj.(*imageapi.Image), err
}
示例12: Update
func (c *FakeHostSubnet) Update(inObj *sdnapi.HostSubnet) (*sdnapi.HostSubnet, error) {
obj, err := c.Fake.Invokes(ktestclient.NewRootUpdateAction("hostsubnets", inObj), inObj)
if obj == nil {
return nil, err
}
return obj.(*sdnapi.HostSubnet), err
}
示例13: Update
func (c *FakeServiceBrokers) Update(inObj *servicebrokerapi.ServiceBroker) (*servicebrokerapi.ServiceBroker, error) {
obj, err := c.Fake.Invokes(ktestclient.NewRootUpdateAction("servicebroker", inObj), inObj)
if obj == nil {
return nil, err
}
return obj.(*servicebrokerapi.ServiceBroker), err
}
示例14: Update
func (c *FakeOAuthClient) Update(client *oauthapi.OAuthClient) (*oauthapi.OAuthClient, error) {
obj, err := c.Fake.Invokes(ktestclient.NewRootUpdateAction("oauthclients", client), &oauthapi.OAuthClient{})
if obj == nil {
return nil, err
}
return obj.(*oauthapi.OAuthClient), err
}