@ -1,4 +1,8 @@
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.3.0
// - protoc v3.21.12
// source: api/v2/api.proto
package api
@ -14,6 +18,20 @@ import (
// Requires gRPC-Go v1.32.0 or later.
const _ = grpc . SupportPackageIsVersion7
const (
Dex_CreateClient_FullMethodName = "/api.Dex/CreateClient"
Dex_UpdateClient_FullMethodName = "/api.Dex/UpdateClient"
Dex_DeleteClient_FullMethodName = "/api.Dex/DeleteClient"
Dex_CreatePassword_FullMethodName = "/api.Dex/CreatePassword"
Dex_UpdatePassword_FullMethodName = "/api.Dex/UpdatePassword"
Dex_DeletePassword_FullMethodName = "/api.Dex/DeletePassword"
Dex_ListPasswords_FullMethodName = "/api.Dex/ListPasswords"
Dex_GetVersion_FullMethodName = "/api.Dex/GetVersion"
Dex_ListRefresh_FullMethodName = "/api.Dex/ListRefresh"
Dex_RevokeRefresh_FullMethodName = "/api.Dex/RevokeRefresh"
Dex_VerifyPassword_FullMethodName = "/api.Dex/VerifyPassword"
)
// DexClient is the client API for Dex service.
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
@ -54,7 +72,7 @@ func NewDexClient(cc grpc.ClientConnInterface) DexClient {
func ( c * dexClient ) CreateClient ( ctx context . Context , in * CreateClientReq , opts ... grpc . CallOption ) ( * CreateClientResp , error ) {
out := new ( CreateClientResp )
err := c . cc . Invoke ( ctx , "/api.Dex/CreateClient" , in , out , opts ... )
err := c . cc . Invoke ( ctx , Dex_CreateClient_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
@ -63,7 +81,7 @@ func (c *dexClient) CreateClient(ctx context.Context, in *CreateClientReq, opts
func ( c * dexClient ) UpdateClient ( ctx context . Context , in * UpdateClientReq , opts ... grpc . CallOption ) ( * UpdateClientResp , error ) {
out := new ( UpdateClientResp )
err := c . cc . Invoke ( ctx , "/api.Dex/UpdateClient" , in , out , opts ... )
err := c . cc . Invoke ( ctx , Dex_UpdateClient_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
@ -72,7 +90,7 @@ func (c *dexClient) UpdateClient(ctx context.Context, in *UpdateClientReq, opts
func ( c * dexClient ) DeleteClient ( ctx context . Context , in * DeleteClientReq , opts ... grpc . CallOption ) ( * DeleteClientResp , error ) {
out := new ( DeleteClientResp )
err := c . cc . Invoke ( ctx , "/api.Dex/DeleteClient" , in , out , opts ... )
err := c . cc . Invoke ( ctx , Dex_DeleteClient_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
@ -81,7 +99,7 @@ func (c *dexClient) DeleteClient(ctx context.Context, in *DeleteClientReq, opts
func ( c * dexClient ) CreatePassword ( ctx context . Context , in * CreatePasswordReq , opts ... grpc . CallOption ) ( * CreatePasswordResp , error ) {
out := new ( CreatePasswordResp )
err := c . cc . Invoke ( ctx , "/api.Dex/CreatePassword" , in , out , opts ... )
err := c . cc . Invoke ( ctx , Dex_CreatePassword_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
@ -90,7 +108,7 @@ func (c *dexClient) CreatePassword(ctx context.Context, in *CreatePasswordReq, o
func ( c * dexClient ) UpdatePassword ( ctx context . Context , in * UpdatePasswordReq , opts ... grpc . CallOption ) ( * UpdatePasswordResp , error ) {
out := new ( UpdatePasswordResp )
err := c . cc . Invoke ( ctx , "/api.Dex/UpdatePassword" , in , out , opts ... )
err := c . cc . Invoke ( ctx , Dex_UpdatePassword_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
@ -99,7 +117,7 @@ func (c *dexClient) UpdatePassword(ctx context.Context, in *UpdatePasswordReq, o
func ( c * dexClient ) DeletePassword ( ctx context . Context , in * DeletePasswordReq , opts ... grpc . CallOption ) ( * DeletePasswordResp , error ) {
out := new ( DeletePasswordResp )
err := c . cc . Invoke ( ctx , "/api.Dex/DeletePassword" , in , out , opts ... )
err := c . cc . Invoke ( ctx , Dex_DeletePassword_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
@ -108,7 +126,7 @@ func (c *dexClient) DeletePassword(ctx context.Context, in *DeletePasswordReq, o
func ( c * dexClient ) ListPasswords ( ctx context . Context , in * ListPasswordReq , opts ... grpc . CallOption ) ( * ListPasswordResp , error ) {
out := new ( ListPasswordResp )
err := c . cc . Invoke ( ctx , "/api.Dex/ListPasswords" , in , out , opts ... )
err := c . cc . Invoke ( ctx , Dex_ListPasswords_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
@ -117,7 +135,7 @@ func (c *dexClient) ListPasswords(ctx context.Context, in *ListPasswordReq, opts
func ( c * dexClient ) GetVersion ( ctx context . Context , in * VersionReq , opts ... grpc . CallOption ) ( * VersionResp , error ) {
out := new ( VersionResp )
err := c . cc . Invoke ( ctx , "/api.Dex/GetVersion" , in , out , opts ... )
err := c . cc . Invoke ( ctx , Dex_GetVersion_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
@ -126,7 +144,7 @@ func (c *dexClient) GetVersion(ctx context.Context, in *VersionReq, opts ...grpc
func ( c * dexClient ) ListRefresh ( ctx context . Context , in * ListRefreshReq , opts ... grpc . CallOption ) ( * ListRefreshResp , error ) {
out := new ( ListRefreshResp )
err := c . cc . Invoke ( ctx , "/api.Dex/ListRefresh" , in , out , opts ... )
err := c . cc . Invoke ( ctx , Dex_ListRefresh_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
@ -135,7 +153,7 @@ func (c *dexClient) ListRefresh(ctx context.Context, in *ListRefreshReq, opts ..
func ( c * dexClient ) RevokeRefresh ( ctx context . Context , in * RevokeRefreshReq , opts ... grpc . CallOption ) ( * RevokeRefreshResp , error ) {
out := new ( RevokeRefreshResp )
err := c . cc . Invoke ( ctx , "/api.Dex/RevokeRefresh" , in , out , opts ... )
err := c . cc . Invoke ( ctx , Dex_RevokeRefresh_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
@ -144,7 +162,7 @@ func (c *dexClient) RevokeRefresh(ctx context.Context, in *RevokeRefreshReq, opt
func ( c * dexClient ) VerifyPassword ( ctx context . Context , in * VerifyPasswordReq , opts ... grpc . CallOption ) ( * VerifyPasswordResp , error ) {
out := new ( VerifyPasswordResp )
err := c . cc . Invoke ( ctx , "/api.Dex/VerifyPassword" , in , out , opts ... )
err := c . cc . Invoke ( ctx , Dex_VerifyPassword_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
@ -242,7 +260,7 @@ func _Dex_CreateClient_Handler(srv interface{}, ctx context.Context, dec func(in
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : "/api.Dex/CreateClient" ,
FullMethod : Dex_CreateClient_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( DexServer ) . CreateClient ( ctx , req . ( * CreateClientReq ) )
@ -260,7 +278,7 @@ func _Dex_UpdateClient_Handler(srv interface{}, ctx context.Context, dec func(in
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : "/api.Dex/UpdateClient" ,
FullMethod : Dex_UpdateClient_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( DexServer ) . UpdateClient ( ctx , req . ( * UpdateClientReq ) )
@ -278,7 +296,7 @@ func _Dex_DeleteClient_Handler(srv interface{}, ctx context.Context, dec func(in
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : "/api.Dex/DeleteClient" ,
FullMethod : Dex_DeleteClient_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( DexServer ) . DeleteClient ( ctx , req . ( * DeleteClientReq ) )
@ -296,7 +314,7 @@ func _Dex_CreatePassword_Handler(srv interface{}, ctx context.Context, dec func(
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : "/api.Dex/CreatePassword" ,
FullMethod : Dex_CreatePassword_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( DexServer ) . CreatePassword ( ctx , req . ( * CreatePasswordReq ) )
@ -314,7 +332,7 @@ func _Dex_UpdatePassword_Handler(srv interface{}, ctx context.Context, dec func(
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : "/api.Dex/UpdatePassword" ,
FullMethod : Dex_UpdatePassword_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( DexServer ) . UpdatePassword ( ctx , req . ( * UpdatePasswordReq ) )
@ -332,7 +350,7 @@ func _Dex_DeletePassword_Handler(srv interface{}, ctx context.Context, dec func(
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : "/api.Dex/DeletePassword" ,
FullMethod : Dex_DeletePassword_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( DexServer ) . DeletePassword ( ctx , req . ( * DeletePasswordReq ) )
@ -350,7 +368,7 @@ func _Dex_ListPasswords_Handler(srv interface{}, ctx context.Context, dec func(i
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : "/api.Dex/ListPasswords" ,
FullMethod : Dex_ListPasswords_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( DexServer ) . ListPasswords ( ctx , req . ( * ListPasswordReq ) )
@ -368,7 +386,7 @@ func _Dex_GetVersion_Handler(srv interface{}, ctx context.Context, dec func(inte
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : "/api.Dex/GetVersion" ,
FullMethod : Dex_GetVersion_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( DexServer ) . GetVersion ( ctx , req . ( * VersionReq ) )
@ -386,7 +404,7 @@ func _Dex_ListRefresh_Handler(srv interface{}, ctx context.Context, dec func(int
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : "/api.Dex/ListRefresh" ,
FullMethod : Dex_ListRefresh_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( DexServer ) . ListRefresh ( ctx , req . ( * ListRefreshReq ) )
@ -404,7 +422,7 @@ func _Dex_RevokeRefresh_Handler(srv interface{}, ctx context.Context, dec func(i
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : "/api.Dex/RevokeRefresh" ,
FullMethod : Dex_RevokeRefresh_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( DexServer ) . RevokeRefresh ( ctx , req . ( * RevokeRefreshReq ) )
@ -422,7 +440,7 @@ func _Dex_VerifyPassword_Handler(srv interface{}, ctx context.Context, dec func(
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : "/api.Dex/VerifyPassword" ,
FullMethod : Dex_VerifyPassword_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( DexServer ) . VerifyPassword ( ctx , req . ( * VerifyPasswordReq ) )