26
26
% %% </dd> </dl>
27
27
% %% {@link eetcd_auth:with_timeout/2} {@link eetcd_auth:new/1}
28
28
% %% @end
29
- -spec auth_enable (name ()| context ()) ->
29
+ -spec auth_enable (new_context ()) ->
30
30
{ok ,router_pb :'Etcd.AuthEnableResponse' ()}|{error ,eetcd_error ()}.
31
31
auth_enable (Context ) ->
32
32
eetcd_auth_gen :auth_enable (new (Context )).
@@ -45,7 +45,7 @@ auth_enable(Context) ->
45
45
% %% </dd> </dl>
46
46
% %% {@link eetcd_auth:with_timeout/2} {@link eetcd_auth:new/1}
47
47
% %% @end
48
- -spec auth_disable (name ()| context ()) ->
48
+ -spec auth_disable (new_context ()) ->
49
49
{ok ,router_pb :'Etcd.AuthDisableResponse' ()}|{error ,eetcd_error ()}.
50
50
auth_disable (Context ) ->
51
51
eetcd_auth_gen :auth_disable (new (Context )).
@@ -64,7 +64,7 @@ auth_disable(Context) ->
64
64
% %% </dd> </dl>
65
65
% %% {@link eetcd_auth:with_timeout/2} {@link eetcd_auth:new/1}
66
66
% %% @end
67
- -spec user_add (name ()| context (), iodata (), iodata ()) ->
67
+ -spec user_add (new_context (), iodata (), iodata ()) ->
68
68
{ok ,router_pb :'Etcd.AuthUserAddResponse' ()}|{error ,eetcd_error ()}.
69
69
user_add (Context , Name , Password ) ->
70
70
C1 = new (Context ),
@@ -86,10 +86,10 @@ user_add(Context, Name, Password) ->
86
86
% %% </dd> </dl>
87
87
% %% {@link eetcd_auth:with_timeout/2} {@link eetcd_auth:new/1}
88
88
% %% @end
89
- -spec user_add (name ()| context (), iodata ()) ->
89
+ -spec user_add (new_context (), iodata ()) ->
90
90
{ok ,router_pb :'Etcd.AuthUserAddResponse' ()}|{error ,eetcd_error ()}.
91
91
user_add (Context , Name ) ->
92
- C1 = eetcd : new (Context ),
92
+ C1 = new (Context ),
93
93
C2 = maps :put (name , Name , C1 ),
94
94
C3 = maps :put (options , #{no_password => true }, C2 ),
95
95
eetcd_auth_gen :user_add (C3 ).
@@ -108,10 +108,10 @@ user_add(Context, Name) ->
108
108
% %% </dd> </dl>
109
109
% %% {@link eetcd_auth:with_timeout/2} {@link eetcd_auth:new/1}
110
110
% %% @end
111
- -spec user_delete (name ()| context (), iodata ()) ->
111
+ -spec user_delete (new_context (), iodata ()) ->
112
112
{ok ,router_pb :'Etcd.AuthUserDeleteResponse' ()}|{error ,eetcd_error ()}.
113
113
user_delete (Context , Name ) ->
114
- C1 = eetcd : new (Context ),
114
+ C1 = new (Context ),
115
115
C2 = maps :put (name , Name , C1 ),
116
116
eetcd_auth_gen :user_delete (C2 ).
117
117
@@ -129,10 +129,10 @@ user_delete(Context, Name) ->
129
129
% %% </dd> </dl>
130
130
% %% {@link eetcd_auth:with_timeout/2} {@link eetcd_auth:new/1}
131
131
% %% @end
132
- -spec user_change_password (name ()| context (), iodata (), iodata ()) ->
132
+ -spec user_change_password (new_context (), iodata (), iodata ()) ->
133
133
{ok ,router_pb :'Etcd.AuthUserChangePasswordResponse' ()}|{error ,eetcd_error ()}.
134
134
user_change_password (Context , Name , Password ) ->
135
- C1 = eetcd : new (Context ),
135
+ C1 = new (Context ),
136
136
C2 = maps :put (name , Name , C1 ),
137
137
C3 = maps :put (password , Password , C2 ),
138
138
eetcd_auth_gen :user_change_password (C3 ).
@@ -151,10 +151,10 @@ user_change_password(Context, Name, Password) ->
151
151
% %% </dd> </dl>
152
152
% %% {@link eetcd_auth:with_timeout/2} {@link eetcd_auth:new/1}
153
153
% %% @end
154
- -spec user_grant_role (name ()| context (), iodata (), iodata ()) ->
154
+ -spec user_grant_role (new_context (), iodata (), iodata ()) ->
155
155
{ok ,router_pb :'Etcd.AuthUserGrantRoleResponse' ()}|{error ,eetcd_error ()}.
156
156
user_grant_role (Context , User , Role ) ->
157
- C1 = eetcd : new (Context ),
157
+ C1 = new (Context ),
158
158
C2 = maps :put (user , User , C1 ),
159
159
C3 = maps :put (role , Role , C2 ),
160
160
eetcd_auth_gen :user_grant_role (C3 ).
@@ -173,10 +173,10 @@ user_grant_role(Context, User, Role) ->
173
173
% %% </dd> </dl>
174
174
% %% {@link eetcd_auth:with_timeout/2} {@link eetcd_auth:new/1}
175
175
% %% @end
176
- -spec user_get (name ()| context (), iodata ()) ->
176
+ -spec user_get (new_context (), iodata ()) ->
177
177
{ok ,router_pb :'Etcd.AuthUserGetResponse' ()}|{error ,eetcd_error ()}.
178
178
user_get (Context , Name ) ->
179
- C1 = eetcd : new (Context ),
179
+ C1 = new (Context ),
180
180
C2 = maps :put (name , Name , C1 ),
181
181
eetcd_auth_gen :user_get (C2 ).
182
182
@@ -194,10 +194,10 @@ user_get(Context, Name) ->
194
194
% %% </dd> </dl>
195
195
% %% {@link eetcd_auth:with_timeout/2} {@link eetcd_auth:new/1}
196
196
% %% @end
197
- -spec user_list (name ()| context ()) ->
197
+ -spec user_list (new_context ()) ->
198
198
{ok ,router_pb :'Etcd.AuthUserListResponse' ()}|{error ,eetcd_error ()}.
199
199
user_list (Context ) ->
200
- eetcd_auth_gen :user_list (eetcd : new (Context )).
200
+ eetcd_auth_gen :user_list (new (Context )).
201
201
202
202
% %% @doc UserRevokeRole revokes a role of a user.
203
203
% %% <dl>
@@ -213,10 +213,10 @@ user_list(Context) ->
213
213
% %% </dd> </dl>
214
214
% %% {@link eetcd_auth:with_timeout/2} {@link eetcd_auth:new/1}
215
215
% %% @end
216
- -spec user_revoke_role (name ()| context (), iodata (), iodata ()) ->
216
+ -spec user_revoke_role (new_context (), iodata (), iodata ()) ->
217
217
{ok ,router_pb :'Etcd.AuthUserRevokeRoleResponse' ()}|{error ,eetcd_error ()}.
218
218
user_revoke_role (Context , Name , Role ) ->
219
- C1 = eetcd : new (Context ),
219
+ C1 = new (Context ),
220
220
C2 = maps :put (name , Name , C1 ),
221
221
C3 = maps :put (role , Role , C2 ),
222
222
eetcd_auth_gen :user_revoke_role (C3 ).
@@ -235,10 +235,10 @@ user_revoke_role(Context, Name, Role) ->
235
235
% %% </dd> </dl>
236
236
% %% {@link eetcd_auth:with_timeout/2} {@link eetcd_auth:new/1}
237
237
% %% @end
238
- -spec role_add (name ()| context (), iodata ()) ->
238
+ -spec role_add (new_context (), iodata ()) ->
239
239
{ok ,router_pb :'Etcd.AuthRoleAddResponse' ()}|{error ,eetcd_error ()}.
240
240
role_add (Context , Name ) ->
241
- C1 = eetcd : new (Context ),
241
+ C1 = new (Context ),
242
242
C2 = maps :put (name , Name , C1 ),
243
243
eetcd_auth_gen :role_add (C2 ).
244
244
@@ -257,10 +257,10 @@ role_add(Context, Name) ->
257
257
% %% </dd> </dl>
258
258
% %% {@link eetcd_auth:with_timeout/2} {@link eetcd_auth:new/1}
259
259
% %% @end
260
- -spec role_grant_permission (name ()| context (), iodata (), iodata (), iodata (), 'READ' | 'WRITE' | 'READWRITE' ) ->
260
+ -spec role_grant_permission (new_context (), iodata (), iodata (), iodata (), 'READ' | 'WRITE' | 'READWRITE' ) ->
261
261
{ok ,router_pb :'Etcd.AuthRoleGrantPermissionResponse' ()}|{error ,eetcd_error ()}.
262
262
role_grant_permission (Context , Name , Key , RangeEnd , PermType ) ->
263
- C1 = eetcd : new (Context ),
263
+ C1 = new (Context ),
264
264
C2 = maps :put (name , Name , C1 ),
265
265
Permission = #{key => Key , range_end => RangeEnd , permType => PermType },
266
266
C3 = maps :put (perm , Permission , C2 ),
@@ -280,10 +280,10 @@ role_grant_permission(Context, Name, Key, RangeEnd, PermType) ->
280
280
% %% </dd> </dl>
281
281
% %% {@link eetcd_auth:with_timeout/2} {@link eetcd_auth:new/1}
282
282
% %% @end
283
- -spec role_get (name ()| context (), iodata ()) ->
283
+ -spec role_get (new_context (), iodata ()) ->
284
284
{ok ,router_pb :'Etcd.AuthRoleGetResponse' ()}|{error ,eetcd_error ()}.
285
285
role_get (Context , Role ) ->
286
- C1 = eetcd : new (Context ),
286
+ C1 = new (Context ),
287
287
C2 = maps :put (role , Role , C1 ),
288
288
eetcd_auth_gen :role_get (C2 ).
289
289
@@ -301,10 +301,10 @@ role_get(Context, Role) ->
301
301
% %% </dd> </dl>
302
302
% %% {@link eetcd_auth:with_timeout/2} {@link eetcd_auth:new/1}
303
303
% %% @end
304
- -spec role_list (name ()| context ()) ->
304
+ -spec role_list (new_context ()) ->
305
305
{ok ,router_pb :'Etcd.AuthRoleListResponse' ()}|{error ,eetcd_error ()}.
306
306
role_list (Context ) ->
307
- eetcd_auth_gen :role_list (eetcd : new (Context )).
307
+ eetcd_auth_gen :role_list (new (Context )).
308
308
309
309
% %% @doc RoleRevokePermission revokes a permission from a role.
310
310
% %% <dl>
@@ -320,10 +320,10 @@ role_list(Context) ->
320
320
% %% </dd> </dl>
321
321
% %% {@link eetcd_auth:with_timeout/2} {@link eetcd_auth:new/1}
322
322
% %% @end
323
- -spec role_revoke_permission (name ()| context (), iodata (), iodata (), iodata ()) ->
323
+ -spec role_revoke_permission (new_context (), iodata (), iodata (), iodata ()) ->
324
324
{ok ,router_pb :'Etcd.AuthRoleRevokePermissionResponse' ()}|{error ,eetcd_error ()}.
325
325
role_revoke_permission (Context , Role , Key , RangeEnd ) ->
326
- C1 = eetcd : new (Context ),
326
+ C1 = new (Context ),
327
327
C2 = maps :put (role , Role , C1 ),
328
328
C3 = maps :put (key , Key , C2 ),
329
329
C4 = maps :put (range_end , RangeEnd , C3 ),
@@ -343,15 +343,15 @@ role_revoke_permission(Context, Role, Key, RangeEnd) ->
343
343
% %% </dd> </dl>
344
344
% %% {@link eetcd_auth:with_timeout/2} {@link eetcd_auth:new/1}
345
345
% %% @end
346
- -spec role_delete (name ()| context (), iodata ()) ->
346
+ -spec role_delete (new_context (), iodata ()) ->
347
347
{ok ,router_pb :'Etcd.AuthRoleDeleteResponse' ()}|{error ,eetcd_error ()}.
348
348
role_delete (Context , Role ) ->
349
- C1 = eetcd : new (Context ),
349
+ C1 = new (Context ),
350
350
C2 = maps :put (role , Role , C1 ),
351
351
eetcd_auth_gen :role_delete (C2 ).
352
352
353
353
% %% @doc Create context for request.
354
- -spec new (atom ()| reference ()) -> context ().
354
+ -spec new (new_context ()) -> context ().
355
355
new (Context ) -> eetcd :new (Context ).
356
356
357
357
% % @doc Timeout is an integer greater than zero which specifies how many milliseconds to wait for a reply,
0 commit comments