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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759
|
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.2.0
// - protoc v3.21.9
// source: majordomo.proto
package linkedca
import (
context "context"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
)
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
// Requires gRPC-Go v1.32.0 or later.
const _ = grpc.SupportPackageIsVersion7
// MajordomoClient is the client API for Majordomo 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.
type MajordomoClient interface {
// Login creates signs a given CSR and returns the certificate that will be
// used for authentication.
Login(ctx context.Context, in *LoginRequest, opts ...grpc.CallOption) (*LoginResponse, error)
// GetRootCertificate returns the root certificate for a given fingerprint.
GetRootCertificate(ctx context.Context, in *GetRootCertificateRequest, opts ...grpc.CallOption) (*GetRootCertificateResponse, error)
// GetConfiguration returns the full configuration of an authority.
GetConfiguration(ctx context.Context, in *ConfigurationRequest, opts ...grpc.CallOption) (*ConfigurationResponse, error)
// CreateProvisioner adds a new provisioner to the majordomo authority and
// returns the proto representation.
CreateProvisioner(ctx context.Context, in *CreateProvisionerRequest, opts ...grpc.CallOption) (*Provisioner, error)
// GetProvisioner returns a provisioner by its id.
GetProvisioner(ctx context.Context, in *GetProvisionerRequest, opts ...grpc.CallOption) (*Provisioner, error)
// UpdateProvisioners updates a previously created provisioner.
UpdateProvisioner(ctx context.Context, in *UpdateProvisionerRequest, opts ...grpc.CallOption) (*Provisioner, error)
// DeleteProvisioner deletes a previously created provisioner.
DeleteProvisioner(ctx context.Context, in *DeleteProvisionerRequest, opts ...grpc.CallOption) (*Provisioner, error)
// CreateAdmin adds a new admin user to the majordomo authority. Admin users
// can add or delete provisioners.
CreateAdmin(ctx context.Context, in *CreateAdminRequest, opts ...grpc.CallOption) (*Admin, error)
// GetAdmin returns an admin by its id.
GetAdmin(ctx context.Context, in *GetAdminRequest, opts ...grpc.CallOption) (*Admin, error)
// UpdateAdmin updates a previously created admin.
UpdateAdmin(ctx context.Context, in *UpdateAdminRequest, opts ...grpc.CallOption) (*Admin, error)
// DeleteAdmin deletes a previously created admin user
DeleteAdmin(ctx context.Context, in *DeleteAdminRequest, opts ...grpc.CallOption) (*Admin, error)
// PostCertificate sends a signed X.509 certificate to majordomo.
PostCertificate(ctx context.Context, in *CertificateRequest, opts ...grpc.CallOption) (*CertificateResponse, error)
// PostSSHCertificate sends a signed SSH certificate to majordomo.
PostSSHCertificate(ctx context.Context, in *SSHCertificateRequest, opts ...grpc.CallOption) (*SSHCertificateResponse, error)
// RevokeCertificate marks an X.509 certificate as revoked.
RevokeCertificate(ctx context.Context, in *RevokeCertificateRequest, opts ...grpc.CallOption) (*RevokeCertificateResponse, error)
// RevokeSSHCertificate marks an SSH certificate as revoked.
RevokeSSHCertificate(ctx context.Context, in *RevokeSSHCertificateRequest, opts ...grpc.CallOption) (*RevokeSSHCertificateResponse, error)
// GetCertificate returns the X.509 certificate by serial.
GetCertificate(ctx context.Context, in *GetCertificateRequest, opts ...grpc.CallOption) (*GetCertificateResponse, error)
// GetCertificateStatus returns the status of an X.509 certificate by serial.
GetCertificateStatus(ctx context.Context, in *GetCertificateStatusRequest, opts ...grpc.CallOption) (*GetCertificateStatusResponse, error)
// GetSSHCertificateStatus returns the status of an SSH certificate by serial.
GetSSHCertificateStatus(ctx context.Context, in *GetSSHCertificateStatusRequest, opts ...grpc.CallOption) (*GetSSHCertificateStatusResponse, error)
}
type majordomoClient struct {
cc grpc.ClientConnInterface
}
func NewMajordomoClient(cc grpc.ClientConnInterface) MajordomoClient {
return &majordomoClient{cc}
}
func (c *majordomoClient) Login(ctx context.Context, in *LoginRequest, opts ...grpc.CallOption) (*LoginResponse, error) {
out := new(LoginResponse)
err := c.cc.Invoke(ctx, "/linkedca.Majordomo/Login", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *majordomoClient) GetRootCertificate(ctx context.Context, in *GetRootCertificateRequest, opts ...grpc.CallOption) (*GetRootCertificateResponse, error) {
out := new(GetRootCertificateResponse)
err := c.cc.Invoke(ctx, "/linkedca.Majordomo/GetRootCertificate", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *majordomoClient) GetConfiguration(ctx context.Context, in *ConfigurationRequest, opts ...grpc.CallOption) (*ConfigurationResponse, error) {
out := new(ConfigurationResponse)
err := c.cc.Invoke(ctx, "/linkedca.Majordomo/GetConfiguration", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *majordomoClient) CreateProvisioner(ctx context.Context, in *CreateProvisionerRequest, opts ...grpc.CallOption) (*Provisioner, error) {
out := new(Provisioner)
err := c.cc.Invoke(ctx, "/linkedca.Majordomo/CreateProvisioner", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *majordomoClient) GetProvisioner(ctx context.Context, in *GetProvisionerRequest, opts ...grpc.CallOption) (*Provisioner, error) {
out := new(Provisioner)
err := c.cc.Invoke(ctx, "/linkedca.Majordomo/GetProvisioner", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *majordomoClient) UpdateProvisioner(ctx context.Context, in *UpdateProvisionerRequest, opts ...grpc.CallOption) (*Provisioner, error) {
out := new(Provisioner)
err := c.cc.Invoke(ctx, "/linkedca.Majordomo/UpdateProvisioner", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *majordomoClient) DeleteProvisioner(ctx context.Context, in *DeleteProvisionerRequest, opts ...grpc.CallOption) (*Provisioner, error) {
out := new(Provisioner)
err := c.cc.Invoke(ctx, "/linkedca.Majordomo/DeleteProvisioner", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *majordomoClient) CreateAdmin(ctx context.Context, in *CreateAdminRequest, opts ...grpc.CallOption) (*Admin, error) {
out := new(Admin)
err := c.cc.Invoke(ctx, "/linkedca.Majordomo/CreateAdmin", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *majordomoClient) GetAdmin(ctx context.Context, in *GetAdminRequest, opts ...grpc.CallOption) (*Admin, error) {
out := new(Admin)
err := c.cc.Invoke(ctx, "/linkedca.Majordomo/GetAdmin", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *majordomoClient) UpdateAdmin(ctx context.Context, in *UpdateAdminRequest, opts ...grpc.CallOption) (*Admin, error) {
out := new(Admin)
err := c.cc.Invoke(ctx, "/linkedca.Majordomo/UpdateAdmin", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *majordomoClient) DeleteAdmin(ctx context.Context, in *DeleteAdminRequest, opts ...grpc.CallOption) (*Admin, error) {
out := new(Admin)
err := c.cc.Invoke(ctx, "/linkedca.Majordomo/DeleteAdmin", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *majordomoClient) PostCertificate(ctx context.Context, in *CertificateRequest, opts ...grpc.CallOption) (*CertificateResponse, error) {
out := new(CertificateResponse)
err := c.cc.Invoke(ctx, "/linkedca.Majordomo/PostCertificate", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *majordomoClient) PostSSHCertificate(ctx context.Context, in *SSHCertificateRequest, opts ...grpc.CallOption) (*SSHCertificateResponse, error) {
out := new(SSHCertificateResponse)
err := c.cc.Invoke(ctx, "/linkedca.Majordomo/PostSSHCertificate", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *majordomoClient) RevokeCertificate(ctx context.Context, in *RevokeCertificateRequest, opts ...grpc.CallOption) (*RevokeCertificateResponse, error) {
out := new(RevokeCertificateResponse)
err := c.cc.Invoke(ctx, "/linkedca.Majordomo/RevokeCertificate", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *majordomoClient) RevokeSSHCertificate(ctx context.Context, in *RevokeSSHCertificateRequest, opts ...grpc.CallOption) (*RevokeSSHCertificateResponse, error) {
out := new(RevokeSSHCertificateResponse)
err := c.cc.Invoke(ctx, "/linkedca.Majordomo/RevokeSSHCertificate", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *majordomoClient) GetCertificate(ctx context.Context, in *GetCertificateRequest, opts ...grpc.CallOption) (*GetCertificateResponse, error) {
out := new(GetCertificateResponse)
err := c.cc.Invoke(ctx, "/linkedca.Majordomo/GetCertificate", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *majordomoClient) GetCertificateStatus(ctx context.Context, in *GetCertificateStatusRequest, opts ...grpc.CallOption) (*GetCertificateStatusResponse, error) {
out := new(GetCertificateStatusResponse)
err := c.cc.Invoke(ctx, "/linkedca.Majordomo/GetCertificateStatus", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *majordomoClient) GetSSHCertificateStatus(ctx context.Context, in *GetSSHCertificateStatusRequest, opts ...grpc.CallOption) (*GetSSHCertificateStatusResponse, error) {
out := new(GetSSHCertificateStatusResponse)
err := c.cc.Invoke(ctx, "/linkedca.Majordomo/GetSSHCertificateStatus", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// MajordomoServer is the server API for Majordomo service.
// All implementations must embed UnimplementedMajordomoServer
// for forward compatibility
type MajordomoServer interface {
// Login creates signs a given CSR and returns the certificate that will be
// used for authentication.
Login(context.Context, *LoginRequest) (*LoginResponse, error)
// GetRootCertificate returns the root certificate for a given fingerprint.
GetRootCertificate(context.Context, *GetRootCertificateRequest) (*GetRootCertificateResponse, error)
// GetConfiguration returns the full configuration of an authority.
GetConfiguration(context.Context, *ConfigurationRequest) (*ConfigurationResponse, error)
// CreateProvisioner adds a new provisioner to the majordomo authority and
// returns the proto representation.
CreateProvisioner(context.Context, *CreateProvisionerRequest) (*Provisioner, error)
// GetProvisioner returns a provisioner by its id.
GetProvisioner(context.Context, *GetProvisionerRequest) (*Provisioner, error)
// UpdateProvisioners updates a previously created provisioner.
UpdateProvisioner(context.Context, *UpdateProvisionerRequest) (*Provisioner, error)
// DeleteProvisioner deletes a previously created provisioner.
DeleteProvisioner(context.Context, *DeleteProvisionerRequest) (*Provisioner, error)
// CreateAdmin adds a new admin user to the majordomo authority. Admin users
// can add or delete provisioners.
CreateAdmin(context.Context, *CreateAdminRequest) (*Admin, error)
// GetAdmin returns an admin by its id.
GetAdmin(context.Context, *GetAdminRequest) (*Admin, error)
// UpdateAdmin updates a previously created admin.
UpdateAdmin(context.Context, *UpdateAdminRequest) (*Admin, error)
// DeleteAdmin deletes a previously created admin user
DeleteAdmin(context.Context, *DeleteAdminRequest) (*Admin, error)
// PostCertificate sends a signed X.509 certificate to majordomo.
PostCertificate(context.Context, *CertificateRequest) (*CertificateResponse, error)
// PostSSHCertificate sends a signed SSH certificate to majordomo.
PostSSHCertificate(context.Context, *SSHCertificateRequest) (*SSHCertificateResponse, error)
// RevokeCertificate marks an X.509 certificate as revoked.
RevokeCertificate(context.Context, *RevokeCertificateRequest) (*RevokeCertificateResponse, error)
// RevokeSSHCertificate marks an SSH certificate as revoked.
RevokeSSHCertificate(context.Context, *RevokeSSHCertificateRequest) (*RevokeSSHCertificateResponse, error)
// GetCertificate returns the X.509 certificate by serial.
GetCertificate(context.Context, *GetCertificateRequest) (*GetCertificateResponse, error)
// GetCertificateStatus returns the status of an X.509 certificate by serial.
GetCertificateStatus(context.Context, *GetCertificateStatusRequest) (*GetCertificateStatusResponse, error)
// GetSSHCertificateStatus returns the status of an SSH certificate by serial.
GetSSHCertificateStatus(context.Context, *GetSSHCertificateStatusRequest) (*GetSSHCertificateStatusResponse, error)
mustEmbedUnimplementedMajordomoServer()
}
// UnimplementedMajordomoServer must be embedded to have forward compatible implementations.
type UnimplementedMajordomoServer struct {
}
func (UnimplementedMajordomoServer) Login(context.Context, *LoginRequest) (*LoginResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method Login not implemented")
}
func (UnimplementedMajordomoServer) GetRootCertificate(context.Context, *GetRootCertificateRequest) (*GetRootCertificateResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetRootCertificate not implemented")
}
func (UnimplementedMajordomoServer) GetConfiguration(context.Context, *ConfigurationRequest) (*ConfigurationResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetConfiguration not implemented")
}
func (UnimplementedMajordomoServer) CreateProvisioner(context.Context, *CreateProvisionerRequest) (*Provisioner, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateProvisioner not implemented")
}
func (UnimplementedMajordomoServer) GetProvisioner(context.Context, *GetProvisionerRequest) (*Provisioner, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetProvisioner not implemented")
}
func (UnimplementedMajordomoServer) UpdateProvisioner(context.Context, *UpdateProvisionerRequest) (*Provisioner, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateProvisioner not implemented")
}
func (UnimplementedMajordomoServer) DeleteProvisioner(context.Context, *DeleteProvisionerRequest) (*Provisioner, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteProvisioner not implemented")
}
func (UnimplementedMajordomoServer) CreateAdmin(context.Context, *CreateAdminRequest) (*Admin, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateAdmin not implemented")
}
func (UnimplementedMajordomoServer) GetAdmin(context.Context, *GetAdminRequest) (*Admin, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetAdmin not implemented")
}
func (UnimplementedMajordomoServer) UpdateAdmin(context.Context, *UpdateAdminRequest) (*Admin, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateAdmin not implemented")
}
func (UnimplementedMajordomoServer) DeleteAdmin(context.Context, *DeleteAdminRequest) (*Admin, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteAdmin not implemented")
}
func (UnimplementedMajordomoServer) PostCertificate(context.Context, *CertificateRequest) (*CertificateResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method PostCertificate not implemented")
}
func (UnimplementedMajordomoServer) PostSSHCertificate(context.Context, *SSHCertificateRequest) (*SSHCertificateResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method PostSSHCertificate not implemented")
}
func (UnimplementedMajordomoServer) RevokeCertificate(context.Context, *RevokeCertificateRequest) (*RevokeCertificateResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method RevokeCertificate not implemented")
}
func (UnimplementedMajordomoServer) RevokeSSHCertificate(context.Context, *RevokeSSHCertificateRequest) (*RevokeSSHCertificateResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method RevokeSSHCertificate not implemented")
}
func (UnimplementedMajordomoServer) GetCertificate(context.Context, *GetCertificateRequest) (*GetCertificateResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetCertificate not implemented")
}
func (UnimplementedMajordomoServer) GetCertificateStatus(context.Context, *GetCertificateStatusRequest) (*GetCertificateStatusResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetCertificateStatus not implemented")
}
func (UnimplementedMajordomoServer) GetSSHCertificateStatus(context.Context, *GetSSHCertificateStatusRequest) (*GetSSHCertificateStatusResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetSSHCertificateStatus not implemented")
}
func (UnimplementedMajordomoServer) mustEmbedUnimplementedMajordomoServer() {}
// UnsafeMajordomoServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to MajordomoServer will
// result in compilation errors.
type UnsafeMajordomoServer interface {
mustEmbedUnimplementedMajordomoServer()
}
func RegisterMajordomoServer(s grpc.ServiceRegistrar, srv MajordomoServer) {
s.RegisterService(&Majordomo_ServiceDesc, srv)
}
func _Majordomo_Login_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(LoginRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(MajordomoServer).Login(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/linkedca.Majordomo/Login",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(MajordomoServer).Login(ctx, req.(*LoginRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Majordomo_GetRootCertificate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetRootCertificateRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(MajordomoServer).GetRootCertificate(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/linkedca.Majordomo/GetRootCertificate",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(MajordomoServer).GetRootCertificate(ctx, req.(*GetRootCertificateRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Majordomo_GetConfiguration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ConfigurationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(MajordomoServer).GetConfiguration(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/linkedca.Majordomo/GetConfiguration",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(MajordomoServer).GetConfiguration(ctx, req.(*ConfigurationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Majordomo_CreateProvisioner_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateProvisionerRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(MajordomoServer).CreateProvisioner(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/linkedca.Majordomo/CreateProvisioner",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(MajordomoServer).CreateProvisioner(ctx, req.(*CreateProvisionerRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Majordomo_GetProvisioner_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetProvisionerRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(MajordomoServer).GetProvisioner(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/linkedca.Majordomo/GetProvisioner",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(MajordomoServer).GetProvisioner(ctx, req.(*GetProvisionerRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Majordomo_UpdateProvisioner_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UpdateProvisionerRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(MajordomoServer).UpdateProvisioner(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/linkedca.Majordomo/UpdateProvisioner",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(MajordomoServer).UpdateProvisioner(ctx, req.(*UpdateProvisionerRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Majordomo_DeleteProvisioner_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteProvisionerRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(MajordomoServer).DeleteProvisioner(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/linkedca.Majordomo/DeleteProvisioner",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(MajordomoServer).DeleteProvisioner(ctx, req.(*DeleteProvisionerRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Majordomo_CreateAdmin_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateAdminRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(MajordomoServer).CreateAdmin(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/linkedca.Majordomo/CreateAdmin",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(MajordomoServer).CreateAdmin(ctx, req.(*CreateAdminRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Majordomo_GetAdmin_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetAdminRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(MajordomoServer).GetAdmin(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/linkedca.Majordomo/GetAdmin",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(MajordomoServer).GetAdmin(ctx, req.(*GetAdminRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Majordomo_UpdateAdmin_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UpdateAdminRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(MajordomoServer).UpdateAdmin(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/linkedca.Majordomo/UpdateAdmin",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(MajordomoServer).UpdateAdmin(ctx, req.(*UpdateAdminRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Majordomo_DeleteAdmin_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteAdminRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(MajordomoServer).DeleteAdmin(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/linkedca.Majordomo/DeleteAdmin",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(MajordomoServer).DeleteAdmin(ctx, req.(*DeleteAdminRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Majordomo_PostCertificate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CertificateRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(MajordomoServer).PostCertificate(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/linkedca.Majordomo/PostCertificate",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(MajordomoServer).PostCertificate(ctx, req.(*CertificateRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Majordomo_PostSSHCertificate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SSHCertificateRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(MajordomoServer).PostSSHCertificate(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/linkedca.Majordomo/PostSSHCertificate",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(MajordomoServer).PostSSHCertificate(ctx, req.(*SSHCertificateRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Majordomo_RevokeCertificate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RevokeCertificateRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(MajordomoServer).RevokeCertificate(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/linkedca.Majordomo/RevokeCertificate",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(MajordomoServer).RevokeCertificate(ctx, req.(*RevokeCertificateRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Majordomo_RevokeSSHCertificate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RevokeSSHCertificateRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(MajordomoServer).RevokeSSHCertificate(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/linkedca.Majordomo/RevokeSSHCertificate",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(MajordomoServer).RevokeSSHCertificate(ctx, req.(*RevokeSSHCertificateRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Majordomo_GetCertificate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetCertificateRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(MajordomoServer).GetCertificate(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/linkedca.Majordomo/GetCertificate",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(MajordomoServer).GetCertificate(ctx, req.(*GetCertificateRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Majordomo_GetCertificateStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetCertificateStatusRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(MajordomoServer).GetCertificateStatus(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/linkedca.Majordomo/GetCertificateStatus",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(MajordomoServer).GetCertificateStatus(ctx, req.(*GetCertificateStatusRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Majordomo_GetSSHCertificateStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetSSHCertificateStatusRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(MajordomoServer).GetSSHCertificateStatus(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/linkedca.Majordomo/GetSSHCertificateStatus",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(MajordomoServer).GetSSHCertificateStatus(ctx, req.(*GetSSHCertificateStatusRequest))
}
return interceptor(ctx, in, info, handler)
}
// Majordomo_ServiceDesc is the grpc.ServiceDesc for Majordomo service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var Majordomo_ServiceDesc = grpc.ServiceDesc{
ServiceName: "linkedca.Majordomo",
HandlerType: (*MajordomoServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "Login",
Handler: _Majordomo_Login_Handler,
},
{
MethodName: "GetRootCertificate",
Handler: _Majordomo_GetRootCertificate_Handler,
},
{
MethodName: "GetConfiguration",
Handler: _Majordomo_GetConfiguration_Handler,
},
{
MethodName: "CreateProvisioner",
Handler: _Majordomo_CreateProvisioner_Handler,
},
{
MethodName: "GetProvisioner",
Handler: _Majordomo_GetProvisioner_Handler,
},
{
MethodName: "UpdateProvisioner",
Handler: _Majordomo_UpdateProvisioner_Handler,
},
{
MethodName: "DeleteProvisioner",
Handler: _Majordomo_DeleteProvisioner_Handler,
},
{
MethodName: "CreateAdmin",
Handler: _Majordomo_CreateAdmin_Handler,
},
{
MethodName: "GetAdmin",
Handler: _Majordomo_GetAdmin_Handler,
},
{
MethodName: "UpdateAdmin",
Handler: _Majordomo_UpdateAdmin_Handler,
},
{
MethodName: "DeleteAdmin",
Handler: _Majordomo_DeleteAdmin_Handler,
},
{
MethodName: "PostCertificate",
Handler: _Majordomo_PostCertificate_Handler,
},
{
MethodName: "PostSSHCertificate",
Handler: _Majordomo_PostSSHCertificate_Handler,
},
{
MethodName: "RevokeCertificate",
Handler: _Majordomo_RevokeCertificate_Handler,
},
{
MethodName: "RevokeSSHCertificate",
Handler: _Majordomo_RevokeSSHCertificate_Handler,
},
{
MethodName: "GetCertificate",
Handler: _Majordomo_GetCertificate_Handler,
},
{
MethodName: "GetCertificateStatus",
Handler: _Majordomo_GetCertificateStatus_Handler,
},
{
MethodName: "GetSSHCertificateStatus",
Handler: _Majordomo_GetSSHCertificateStatus_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "majordomo.proto",
}
|