github.com/argoproj/argo-cd/v2@v2.10.9/reposerver/askpass/askpass.proto (about)

     1  syntax = "proto3";
     2  option go_package = "github.com/argoproj/argo-cd/v2/reposerver/askpass";
     3  
     4  package askpass;
     5  
     6  message CredentialsRequest {
     7    string nonce = 1;
     8  }
     9  
    10  message CredentialsResponse {
    11    string username = 1;
    12    string password = 2;
    13  }
    14  
    15  
    16  // AskPassService
    17  service AskPassService {
    18    rpc GetCredentials(CredentialsRequest) returns (CredentialsResponse) {
    19    }
    20  }