forked from LaconicNetwork/kompose
71 lines
2.2 KiB
Go
71 lines
2.2 KiB
Go
package client
|
|
|
|
import (
|
|
kapi "k8s.io/kubernetes/pkg/api"
|
|
|
|
userapi "github.com/openshift/origin/pkg/user/api"
|
|
)
|
|
|
|
// IdentitiesInterface has methods to work with Identity resources
|
|
type IdentitiesInterface interface {
|
|
Identities() IdentityInterface
|
|
}
|
|
|
|
// IdentityInterface exposes methods on identity resources.
|
|
type IdentityInterface interface {
|
|
List(opts kapi.ListOptions) (*userapi.IdentityList, error)
|
|
Get(name string) (*userapi.Identity, error)
|
|
Create(identity *userapi.Identity) (*userapi.Identity, error)
|
|
Update(identity *userapi.Identity) (*userapi.Identity, error)
|
|
Delete(name string) error
|
|
}
|
|
|
|
// identities implements IdentityInterface interface
|
|
type identities struct {
|
|
r *Client
|
|
}
|
|
|
|
// newIdentities returns an identities client
|
|
func newIdentities(c *Client) *identities {
|
|
return &identities{
|
|
r: c,
|
|
}
|
|
}
|
|
|
|
// List returns a list of identities that match the label and field selectors.
|
|
func (c *identities) List(opts kapi.ListOptions) (result *userapi.IdentityList, err error) {
|
|
result = &userapi.IdentityList{}
|
|
err = c.r.Get().
|
|
Resource("identities").
|
|
VersionedParams(&opts, kapi.ParameterCodec).
|
|
Do().
|
|
Into(result)
|
|
return
|
|
}
|
|
|
|
// Get returns information about a particular identity or an error
|
|
func (c *identities) Get(name string) (result *userapi.Identity, err error) {
|
|
result = &userapi.Identity{}
|
|
err = c.r.Get().Resource("identities").Name(name).Do().Into(result)
|
|
return
|
|
}
|
|
|
|
// Create creates a new identity. Returns the server's representation of the identity and error if one occurs.
|
|
func (c *identities) Create(identity *userapi.Identity) (result *userapi.Identity, err error) {
|
|
result = &userapi.Identity{}
|
|
err = c.r.Post().Resource("identities").Body(identity).Do().Into(result)
|
|
return
|
|
}
|
|
|
|
// Update updates the identity on server. Returns the server's representation of the identity and error if one occurs.
|
|
func (c *identities) Update(identity *userapi.Identity) (result *userapi.Identity, err error) {
|
|
result = &userapi.Identity{}
|
|
err = c.r.Put().Resource("identities").Name(identity.Name).Body(identity).Do().Into(result)
|
|
return
|
|
}
|
|
|
|
// Delete deletes the identity on server. Returns an error if one occurs.
|
|
func (c *identities) Delete(name string) (err error) {
|
|
return c.r.Delete().Resource("identities").Name(name).Do().Error()
|
|
}
|