mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
24 lines
463 B
Protocol Buffer
24 lines
463 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message SSLCert {
|
|
int64 id = 1;
|
|
bool isOn = 2;
|
|
string name = 3;
|
|
int64 timeBeginAt = 4;
|
|
int64 timeEndAt = 5;
|
|
repeated string dnsNames = 6;
|
|
repeated string commonNames = 7;
|
|
bool isACME = 8;
|
|
int64 acmeTaskId = 17;
|
|
bytes ocsp = 9;
|
|
bool ocspIsUpdated = 10;
|
|
string ocspError = 11;
|
|
string description = 12;
|
|
bool isCA = 13;
|
|
string serverName = 14;
|
|
int64 createdAt = 15;
|
|
int64 updatedAt = 16;
|
|
} |