-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathclient_generated.go
149 lines (127 loc) · 5.47 KB
/
client_generated.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
// The code in this file was automatically generated by running httprequest-generate-client.
// DO NOT EDIT
package idmclient
import (
"github.com/juju/httprequest"
"golang.org/x/net/context"
"gopkg.in/macaroon-bakery.v2/bakery"
"github.com/juju/idmclient/params"
)
type client struct {
Client httprequest.Client
}
// DeleteSSHKeys removes all of the ssh keys specified from the keys
// stored for the given user. It is not an error to attempt to remove a
// key that is not associated with the user.
func (c *client) DeleteSSHKeys(ctx context.Context, p *params.DeleteSSHKeysRequest) error {
return c.Client.Call(ctx, p, nil)
}
// DischargeTokenForUser allows an administrator to create a discharge
// token for the specified user.
func (c *client) DischargeTokenForUser(ctx context.Context, p *params.DischargeTokenForUserRequest) (params.DischargeTokenForUserResponse, error) {
var r params.DischargeTokenForUserResponse
err := c.Client.Call(ctx, p, &r)
return r, err
}
// GetSSHKeys returns any SSH keys stored for the given user.
func (c *client) GetSSHKeys(ctx context.Context, p *params.SSHKeysRequest) (params.SSHKeysResponse, error) {
var r params.SSHKeysResponse
err := c.Client.Call(ctx, p, &r)
return r, err
}
// ModifyUserGroups updates the groups stored for the given user. Groups
// can be either added or removed in a single query. It is an error to
// try and both add and remove groups at the same time.
func (c *client) ModifyUserGroups(ctx context.Context, p *params.ModifyUserGroupsRequest) error {
return c.Client.Call(ctx, p, nil)
}
// PutSSHKeys updates the set of SSH keys stored for the given user. If
// the add parameter is set to true then keys that are already stored
// will be added to, otherwise they will be replaced.
func (c *client) PutSSHKeys(ctx context.Context, p *params.PutSSHKeysRequest) error {
return c.Client.Call(ctx, p, nil)
}
// QueryUsers filters the user database for users that match the given
// request. If no filters are requested all usernames will be returned.
func (c *client) QueryUsers(ctx context.Context, p *params.QueryUsersRequest) ([]string, error) {
var r []string
err := c.Client.Call(ctx, p, &r)
return r, err
}
// SetUser creates or updates the user with the given username. If the
// user already exists then any IDPGroups or SSHKeys specified in the
// request will be ignored. See SetUserGroups, ModifyUserGroups,
// SetSSHKeys and DeleteSSHKeys if you wish to manipulate these for a
// user.
func (c *client) SetUser(ctx context.Context, p *params.SetUserRequest) error {
return c.Client.Call(ctx, p, nil)
}
// SetUserExtraInfo updates extra-info for the given user. For each
// specified extra-info field the stored values will be updated to be the
// specified value. All other values will remain unchanged.
func (c *client) SetUserExtraInfo(ctx context.Context, p *params.SetUserExtraInfoRequest) error {
return c.Client.Call(ctx, p, nil)
}
// SetUserExtraInfoItem updates the stored extra-info item with the given
// key for the given user.
func (c *client) SetUserExtraInfoItem(ctx context.Context, p *params.SetUserExtraInfoItemRequest) error {
return c.Client.Call(ctx, p, nil)
}
// SetUserGroups updates the groups stored for the given user to the
// given value.
func (c *client) SetUserGroups(ctx context.Context, p *params.SetUserGroupsRequest) error {
return c.Client.Call(ctx, p, nil)
}
// User returns the user information for the request user.
func (c *client) User(ctx context.Context, p *params.UserRequest) (*params.User, error) {
var r *params.User
err := c.Client.Call(ctx, p, &r)
return r, err
}
// UserExtraInfo returns any stored extra-info for the given user.
func (c *client) UserExtraInfo(ctx context.Context, p *params.UserExtraInfoRequest) (map[string]interface{}, error) {
var r map[string]interface{}
err := c.Client.Call(ctx, p, &r)
return r, err
}
// UserExtraInfo returns any stored extra-info item with the given key
// for the given user.
func (c *client) UserExtraInfoItem(ctx context.Context, p *params.UserExtraInfoItemRequest) (interface{}, error) {
var r interface{}
err := c.Client.Call(ctx, p, &r)
return r, err
}
// UserGroups returns the list of groups associated with the requested
// user.
func (c *client) UserGroups(ctx context.Context, p *params.UserGroupsRequest) ([]string, error) {
var r []string
err := c.Client.Call(ctx, p, &r)
return r, err
}
// UserIDPGroups returns the list of groups associated with the requested
// user. This is deprected and UserGroups should be used in preference.
func (c *client) UserIDPGroups(ctx context.Context, p *params.UserIDPGroupsRequest) ([]string, error) {
var r []string
err := c.Client.Call(ctx, p, &r)
return r, err
}
// UserToken returns a token, in the form of a macaroon, identifying
// the user. This token can only be generated by an administrator.
func (c *client) UserToken(ctx context.Context, p *params.UserTokenRequest) (*bakery.Macaroon, error) {
var r *bakery.Macaroon
err := c.Client.Call(ctx, p, &r)
return r, err
}
// VerifyToken verifies that the given token is a macaroon generated by
// this service and returns any declared values.
func (c *client) VerifyToken(ctx context.Context, p *params.VerifyTokenRequest) (map[string]string, error) {
var r map[string]string
err := c.Client.Call(ctx, p, &r)
return r, err
}
// WhoAmI returns details of the authenticated user.
func (c *client) WhoAmI(ctx context.Context, p *params.WhoAmIRequest) (params.WhoAmIResponse, error) {
var r params.WhoAmIResponse
err := c.Client.Call(ctx, p, &r)
return r, err
}