720 lines
24 KiB
Go
720 lines
24 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: core/proto/core.proto
|
|
|
|
package proto
|
|
|
|
import (
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
math "math"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
type Challenge struct {
|
|
Id *int64 `protobuf:"varint,1,opt,name=id" json:"id,omitempty"`
|
|
Type *string `protobuf:"bytes,2,opt,name=type" json:"type,omitempty"`
|
|
Status *string `protobuf:"bytes,6,opt,name=status" json:"status,omitempty"`
|
|
Uri *string `protobuf:"bytes,9,opt,name=uri" json:"uri,omitempty"`
|
|
Token *string `protobuf:"bytes,3,opt,name=token" json:"token,omitempty"`
|
|
KeyAuthorization *string `protobuf:"bytes,5,opt,name=keyAuthorization" json:"keyAuthorization,omitempty"`
|
|
Validationrecords []*ValidationRecord `protobuf:"bytes,10,rep,name=validationrecords" json:"validationrecords,omitempty"`
|
|
Error *ProblemDetails `protobuf:"bytes,7,opt,name=error" json:"error,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Challenge) Reset() { *m = Challenge{} }
|
|
func (m *Challenge) String() string { return proto.CompactTextString(m) }
|
|
func (*Challenge) ProtoMessage() {}
|
|
func (*Challenge) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_80ea9561f1d738ba, []int{0}
|
|
}
|
|
|
|
func (m *Challenge) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Challenge.Unmarshal(m, b)
|
|
}
|
|
func (m *Challenge) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Challenge.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Challenge) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Challenge.Merge(m, src)
|
|
}
|
|
func (m *Challenge) XXX_Size() int {
|
|
return xxx_messageInfo_Challenge.Size(m)
|
|
}
|
|
func (m *Challenge) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Challenge.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Challenge proto.InternalMessageInfo
|
|
|
|
func (m *Challenge) GetId() int64 {
|
|
if m != nil && m.Id != nil {
|
|
return *m.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Challenge) GetType() string {
|
|
if m != nil && m.Type != nil {
|
|
return *m.Type
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Challenge) GetStatus() string {
|
|
if m != nil && m.Status != nil {
|
|
return *m.Status
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Challenge) GetUri() string {
|
|
if m != nil && m.Uri != nil {
|
|
return *m.Uri
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Challenge) GetToken() string {
|
|
if m != nil && m.Token != nil {
|
|
return *m.Token
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Challenge) GetKeyAuthorization() string {
|
|
if m != nil && m.KeyAuthorization != nil {
|
|
return *m.KeyAuthorization
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Challenge) GetValidationrecords() []*ValidationRecord {
|
|
if m != nil {
|
|
return m.Validationrecords
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Challenge) GetError() *ProblemDetails {
|
|
if m != nil {
|
|
return m.Error
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ValidationRecord struct {
|
|
Hostname *string `protobuf:"bytes,1,opt,name=hostname" json:"hostname,omitempty"`
|
|
Port *string `protobuf:"bytes,2,opt,name=port" json:"port,omitempty"`
|
|
AddressesResolved [][]byte `protobuf:"bytes,3,rep,name=addressesResolved" json:"addressesResolved,omitempty"`
|
|
AddressUsed []byte `protobuf:"bytes,4,opt,name=addressUsed" json:"addressUsed,omitempty"`
|
|
Authorities []string `protobuf:"bytes,5,rep,name=authorities" json:"authorities,omitempty"`
|
|
Url *string `protobuf:"bytes,6,opt,name=url" json:"url,omitempty"`
|
|
// A list of addresses tried before the address used (see
|
|
// core/objects.go and the comment on the ValidationRecord structure
|
|
// definition for more information.
|
|
AddressesTried [][]byte `protobuf:"bytes,7,rep,name=addressesTried" json:"addressesTried,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ValidationRecord) Reset() { *m = ValidationRecord{} }
|
|
func (m *ValidationRecord) String() string { return proto.CompactTextString(m) }
|
|
func (*ValidationRecord) ProtoMessage() {}
|
|
func (*ValidationRecord) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_80ea9561f1d738ba, []int{1}
|
|
}
|
|
|
|
func (m *ValidationRecord) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ValidationRecord.Unmarshal(m, b)
|
|
}
|
|
func (m *ValidationRecord) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ValidationRecord.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ValidationRecord) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ValidationRecord.Merge(m, src)
|
|
}
|
|
func (m *ValidationRecord) XXX_Size() int {
|
|
return xxx_messageInfo_ValidationRecord.Size(m)
|
|
}
|
|
func (m *ValidationRecord) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ValidationRecord.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ValidationRecord proto.InternalMessageInfo
|
|
|
|
func (m *ValidationRecord) GetHostname() string {
|
|
if m != nil && m.Hostname != nil {
|
|
return *m.Hostname
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ValidationRecord) GetPort() string {
|
|
if m != nil && m.Port != nil {
|
|
return *m.Port
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ValidationRecord) GetAddressesResolved() [][]byte {
|
|
if m != nil {
|
|
return m.AddressesResolved
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ValidationRecord) GetAddressUsed() []byte {
|
|
if m != nil {
|
|
return m.AddressUsed
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ValidationRecord) GetAuthorities() []string {
|
|
if m != nil {
|
|
return m.Authorities
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ValidationRecord) GetUrl() string {
|
|
if m != nil && m.Url != nil {
|
|
return *m.Url
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ValidationRecord) GetAddressesTried() [][]byte {
|
|
if m != nil {
|
|
return m.AddressesTried
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProblemDetails struct {
|
|
ProblemType *string `protobuf:"bytes,1,opt,name=problemType" json:"problemType,omitempty"`
|
|
Detail *string `protobuf:"bytes,2,opt,name=detail" json:"detail,omitempty"`
|
|
HttpStatus *int32 `protobuf:"varint,3,opt,name=httpStatus" json:"httpStatus,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProblemDetails) Reset() { *m = ProblemDetails{} }
|
|
func (m *ProblemDetails) String() string { return proto.CompactTextString(m) }
|
|
func (*ProblemDetails) ProtoMessage() {}
|
|
func (*ProblemDetails) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_80ea9561f1d738ba, []int{2}
|
|
}
|
|
|
|
func (m *ProblemDetails) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ProblemDetails.Unmarshal(m, b)
|
|
}
|
|
func (m *ProblemDetails) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ProblemDetails.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ProblemDetails) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ProblemDetails.Merge(m, src)
|
|
}
|
|
func (m *ProblemDetails) XXX_Size() int {
|
|
return xxx_messageInfo_ProblemDetails.Size(m)
|
|
}
|
|
func (m *ProblemDetails) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ProblemDetails.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ProblemDetails proto.InternalMessageInfo
|
|
|
|
func (m *ProblemDetails) GetProblemType() string {
|
|
if m != nil && m.ProblemType != nil {
|
|
return *m.ProblemType
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProblemDetails) GetDetail() string {
|
|
if m != nil && m.Detail != nil {
|
|
return *m.Detail
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProblemDetails) GetHttpStatus() int32 {
|
|
if m != nil && m.HttpStatus != nil {
|
|
return *m.HttpStatus
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type Certificate struct {
|
|
RegistrationID *int64 `protobuf:"varint,1,opt,name=registrationID" json:"registrationID,omitempty"`
|
|
Serial *string `protobuf:"bytes,2,opt,name=serial" json:"serial,omitempty"`
|
|
Digest *string `protobuf:"bytes,3,opt,name=digest" json:"digest,omitempty"`
|
|
Der []byte `protobuf:"bytes,4,opt,name=der" json:"der,omitempty"`
|
|
Issued *int64 `protobuf:"varint,5,opt,name=issued" json:"issued,omitempty"`
|
|
Expires *int64 `protobuf:"varint,6,opt,name=expires" json:"expires,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Certificate) Reset() { *m = Certificate{} }
|
|
func (m *Certificate) String() string { return proto.CompactTextString(m) }
|
|
func (*Certificate) ProtoMessage() {}
|
|
func (*Certificate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_80ea9561f1d738ba, []int{3}
|
|
}
|
|
|
|
func (m *Certificate) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Certificate.Unmarshal(m, b)
|
|
}
|
|
func (m *Certificate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Certificate.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Certificate) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Certificate.Merge(m, src)
|
|
}
|
|
func (m *Certificate) XXX_Size() int {
|
|
return xxx_messageInfo_Certificate.Size(m)
|
|
}
|
|
func (m *Certificate) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Certificate.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Certificate proto.InternalMessageInfo
|
|
|
|
func (m *Certificate) GetRegistrationID() int64 {
|
|
if m != nil && m.RegistrationID != nil {
|
|
return *m.RegistrationID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Certificate) GetSerial() string {
|
|
if m != nil && m.Serial != nil {
|
|
return *m.Serial
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Certificate) GetDigest() string {
|
|
if m != nil && m.Digest != nil {
|
|
return *m.Digest
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Certificate) GetDer() []byte {
|
|
if m != nil {
|
|
return m.Der
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Certificate) GetIssued() int64 {
|
|
if m != nil && m.Issued != nil {
|
|
return *m.Issued
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Certificate) GetExpires() int64 {
|
|
if m != nil && m.Expires != nil {
|
|
return *m.Expires
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type Registration struct {
|
|
Id *int64 `protobuf:"varint,1,opt,name=id" json:"id,omitempty"`
|
|
Key []byte `protobuf:"bytes,2,opt,name=key" json:"key,omitempty"`
|
|
Contact []string `protobuf:"bytes,3,rep,name=contact" json:"contact,omitempty"`
|
|
ContactsPresent *bool `protobuf:"varint,4,opt,name=contactsPresent" json:"contactsPresent,omitempty"`
|
|
Agreement *string `protobuf:"bytes,5,opt,name=agreement" json:"agreement,omitempty"`
|
|
InitialIP []byte `protobuf:"bytes,6,opt,name=initialIP" json:"initialIP,omitempty"`
|
|
CreatedAt *int64 `protobuf:"varint,7,opt,name=createdAt" json:"createdAt,omitempty"`
|
|
Status *string `protobuf:"bytes,8,opt,name=status" json:"status,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Registration) Reset() { *m = Registration{} }
|
|
func (m *Registration) String() string { return proto.CompactTextString(m) }
|
|
func (*Registration) ProtoMessage() {}
|
|
func (*Registration) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_80ea9561f1d738ba, []int{4}
|
|
}
|
|
|
|
func (m *Registration) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Registration.Unmarshal(m, b)
|
|
}
|
|
func (m *Registration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Registration.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Registration) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Registration.Merge(m, src)
|
|
}
|
|
func (m *Registration) XXX_Size() int {
|
|
return xxx_messageInfo_Registration.Size(m)
|
|
}
|
|
func (m *Registration) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Registration.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Registration proto.InternalMessageInfo
|
|
|
|
func (m *Registration) GetId() int64 {
|
|
if m != nil && m.Id != nil {
|
|
return *m.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Registration) GetKey() []byte {
|
|
if m != nil {
|
|
return m.Key
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Registration) GetContact() []string {
|
|
if m != nil {
|
|
return m.Contact
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Registration) GetContactsPresent() bool {
|
|
if m != nil && m.ContactsPresent != nil {
|
|
return *m.ContactsPresent
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *Registration) GetAgreement() string {
|
|
if m != nil && m.Agreement != nil {
|
|
return *m.Agreement
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Registration) GetInitialIP() []byte {
|
|
if m != nil {
|
|
return m.InitialIP
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Registration) GetCreatedAt() int64 {
|
|
if m != nil && m.CreatedAt != nil {
|
|
return *m.CreatedAt
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Registration) GetStatus() string {
|
|
if m != nil && m.Status != nil {
|
|
return *m.Status
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type Authorization struct {
|
|
Id *string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
|
|
Identifier *string `protobuf:"bytes,2,opt,name=identifier" json:"identifier,omitempty"`
|
|
RegistrationID *int64 `protobuf:"varint,3,opt,name=registrationID" json:"registrationID,omitempty"`
|
|
Status *string `protobuf:"bytes,4,opt,name=status" json:"status,omitempty"`
|
|
Expires *int64 `protobuf:"varint,5,opt,name=expires" json:"expires,omitempty"`
|
|
Challenges []*Challenge `protobuf:"bytes,6,rep,name=challenges" json:"challenges,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Authorization) Reset() { *m = Authorization{} }
|
|
func (m *Authorization) String() string { return proto.CompactTextString(m) }
|
|
func (*Authorization) ProtoMessage() {}
|
|
func (*Authorization) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_80ea9561f1d738ba, []int{5}
|
|
}
|
|
|
|
func (m *Authorization) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Authorization.Unmarshal(m, b)
|
|
}
|
|
func (m *Authorization) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Authorization.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Authorization) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Authorization.Merge(m, src)
|
|
}
|
|
func (m *Authorization) XXX_Size() int {
|
|
return xxx_messageInfo_Authorization.Size(m)
|
|
}
|
|
func (m *Authorization) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Authorization.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Authorization proto.InternalMessageInfo
|
|
|
|
func (m *Authorization) GetId() string {
|
|
if m != nil && m.Id != nil {
|
|
return *m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Authorization) GetIdentifier() string {
|
|
if m != nil && m.Identifier != nil {
|
|
return *m.Identifier
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Authorization) GetRegistrationID() int64 {
|
|
if m != nil && m.RegistrationID != nil {
|
|
return *m.RegistrationID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Authorization) GetStatus() string {
|
|
if m != nil && m.Status != nil {
|
|
return *m.Status
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Authorization) GetExpires() int64 {
|
|
if m != nil && m.Expires != nil {
|
|
return *m.Expires
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Authorization) GetChallenges() []*Challenge {
|
|
if m != nil {
|
|
return m.Challenges
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type Order struct {
|
|
Id *int64 `protobuf:"varint,1,opt,name=id" json:"id,omitempty"`
|
|
RegistrationID *int64 `protobuf:"varint,2,opt,name=registrationID" json:"registrationID,omitempty"`
|
|
Expires *int64 `protobuf:"varint,3,opt,name=expires" json:"expires,omitempty"`
|
|
Error *ProblemDetails `protobuf:"bytes,4,opt,name=error" json:"error,omitempty"`
|
|
CertificateSerial *string `protobuf:"bytes,5,opt,name=certificateSerial" json:"certificateSerial,omitempty"`
|
|
Status *string `protobuf:"bytes,7,opt,name=status" json:"status,omitempty"`
|
|
Names []string `protobuf:"bytes,8,rep,name=names" json:"names,omitempty"`
|
|
BeganProcessing *bool `protobuf:"varint,9,opt,name=beganProcessing" json:"beganProcessing,omitempty"`
|
|
Created *int64 `protobuf:"varint,10,opt,name=created" json:"created,omitempty"`
|
|
V2Authorizations []int64 `protobuf:"varint,11,rep,name=v2Authorizations" json:"v2Authorizations,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Order) Reset() { *m = Order{} }
|
|
func (m *Order) String() string { return proto.CompactTextString(m) }
|
|
func (*Order) ProtoMessage() {}
|
|
func (*Order) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_80ea9561f1d738ba, []int{6}
|
|
}
|
|
|
|
func (m *Order) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Order.Unmarshal(m, b)
|
|
}
|
|
func (m *Order) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Order.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Order) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Order.Merge(m, src)
|
|
}
|
|
func (m *Order) XXX_Size() int {
|
|
return xxx_messageInfo_Order.Size(m)
|
|
}
|
|
func (m *Order) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Order.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Order proto.InternalMessageInfo
|
|
|
|
func (m *Order) GetId() int64 {
|
|
if m != nil && m.Id != nil {
|
|
return *m.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Order) GetRegistrationID() int64 {
|
|
if m != nil && m.RegistrationID != nil {
|
|
return *m.RegistrationID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Order) GetExpires() int64 {
|
|
if m != nil && m.Expires != nil {
|
|
return *m.Expires
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Order) GetError() *ProblemDetails {
|
|
if m != nil {
|
|
return m.Error
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Order) GetCertificateSerial() string {
|
|
if m != nil && m.CertificateSerial != nil {
|
|
return *m.CertificateSerial
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Order) GetStatus() string {
|
|
if m != nil && m.Status != nil {
|
|
return *m.Status
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Order) GetNames() []string {
|
|
if m != nil {
|
|
return m.Names
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Order) GetBeganProcessing() bool {
|
|
if m != nil && m.BeganProcessing != nil {
|
|
return *m.BeganProcessing
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *Order) GetCreated() int64 {
|
|
if m != nil && m.Created != nil {
|
|
return *m.Created
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Order) GetV2Authorizations() []int64 {
|
|
if m != nil {
|
|
return m.V2Authorizations
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type Empty struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Empty) Reset() { *m = Empty{} }
|
|
func (m *Empty) String() string { return proto.CompactTextString(m) }
|
|
func (*Empty) ProtoMessage() {}
|
|
func (*Empty) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_80ea9561f1d738ba, []int{7}
|
|
}
|
|
|
|
func (m *Empty) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Empty.Unmarshal(m, b)
|
|
}
|
|
func (m *Empty) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Empty.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Empty) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Empty.Merge(m, src)
|
|
}
|
|
func (m *Empty) XXX_Size() int {
|
|
return xxx_messageInfo_Empty.Size(m)
|
|
}
|
|
func (m *Empty) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Empty.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Empty proto.InternalMessageInfo
|
|
|
|
func init() {
|
|
proto.RegisterType((*Challenge)(nil), "core.Challenge")
|
|
proto.RegisterType((*ValidationRecord)(nil), "core.ValidationRecord")
|
|
proto.RegisterType((*ProblemDetails)(nil), "core.ProblemDetails")
|
|
proto.RegisterType((*Certificate)(nil), "core.Certificate")
|
|
proto.RegisterType((*Registration)(nil), "core.Registration")
|
|
proto.RegisterType((*Authorization)(nil), "core.Authorization")
|
|
proto.RegisterType((*Order)(nil), "core.Order")
|
|
proto.RegisterType((*Empty)(nil), "core.Empty")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("core/proto/core.proto", fileDescriptor_80ea9561f1d738ba) }
|
|
|
|
var fileDescriptor_80ea9561f1d738ba = []byte{
|
|
// 730 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x55, 0x41, 0x6e, 0xdb, 0x3a,
|
|
0x10, 0x85, 0x4c, 0x29, 0x92, 0xc6, 0xfe, 0x89, 0x43, 0xe4, 0x07, 0x44, 0x51, 0x04, 0x82, 0x16,
|
|
0x85, 0x10, 0x14, 0x09, 0x90, 0x1b, 0xa4, 0x49, 0x17, 0xc9, 0xa6, 0x06, 0x93, 0x76, 0xd1, 0x9d,
|
|
0x22, 0x4d, 0x6d, 0x36, 0xb2, 0x64, 0x90, 0x74, 0x50, 0xf7, 0x0e, 0x3d, 0x48, 0x2f, 0xd4, 0xde,
|
|
0xa0, 0xcb, 0x9e, 0xa1, 0x20, 0x29, 0xdb, 0xb2, 0x9d, 0xa2, 0xbb, 0x99, 0xc7, 0xb1, 0xf8, 0x38,
|
|
0xef, 0xcd, 0x18, 0xfe, 0x2f, 0x1a, 0x89, 0xe7, 0x33, 0xd9, 0xe8, 0xe6, 0xdc, 0x84, 0x67, 0x36,
|
|
0xa4, 0xbe, 0x89, 0xd3, 0x6f, 0x3d, 0x88, 0xaf, 0x26, 0x79, 0x55, 0x61, 0x3d, 0x46, 0xba, 0x0f,
|
|
0x3d, 0x51, 0x32, 0x2f, 0xf1, 0x32, 0xc2, 0x7b, 0xa2, 0xa4, 0x14, 0x7c, 0xbd, 0x98, 0x21, 0xeb,
|
|
0x25, 0x5e, 0x16, 0x73, 0x1b, 0xd3, 0x63, 0xd8, 0x53, 0x3a, 0xd7, 0x73, 0xc5, 0xf6, 0x2c, 0xda,
|
|
0x66, 0x74, 0x08, 0x64, 0x2e, 0x05, 0x8b, 0x2d, 0x68, 0x42, 0x7a, 0x04, 0x81, 0x6e, 0x1e, 0xb1,
|
|
0x66, 0xc4, 0x62, 0x2e, 0xa1, 0xa7, 0x30, 0x7c, 0xc4, 0xc5, 0xe5, 0x5c, 0x4f, 0x1a, 0x29, 0xbe,
|
|
0xe6, 0x5a, 0x34, 0x35, 0x0b, 0x6c, 0xc1, 0x0e, 0x4e, 0xaf, 0xe1, 0xf0, 0x29, 0xaf, 0x44, 0x69,
|
|
0x33, 0x89, 0x45, 0x23, 0x4b, 0xc5, 0x20, 0x21, 0x59, 0xff, 0xe2, 0xf8, 0xcc, 0xbe, 0xe5, 0xc3,
|
|
0xea, 0x98, 0xdb, 0x63, 0xbe, 0xfb, 0x03, 0x7a, 0x0a, 0x01, 0x4a, 0xd9, 0x48, 0x16, 0x26, 0x5e,
|
|
0xd6, 0xbf, 0x38, 0x72, 0xbf, 0x1c, 0xc9, 0xe6, 0xa1, 0xc2, 0xe9, 0x35, 0xea, 0x5c, 0x54, 0x8a,
|
|
0xbb, 0x92, 0xf4, 0xb7, 0x07, 0xc3, 0xed, 0x6f, 0xd2, 0x17, 0x10, 0x4d, 0x1a, 0xa5, 0xeb, 0x7c,
|
|
0x8a, 0xb6, 0x39, 0x31, 0x5f, 0xe5, 0xa6, 0x45, 0xb3, 0x46, 0xea, 0x65, 0x8b, 0x4c, 0x4c, 0x5f,
|
|
0xc3, 0x61, 0x5e, 0x96, 0x12, 0x95, 0x42, 0xc5, 0x51, 0x35, 0xd5, 0x13, 0x96, 0x8c, 0x24, 0x24,
|
|
0x1b, 0xf0, 0xdd, 0x03, 0x9a, 0x40, 0xbf, 0x05, 0xdf, 0x2b, 0x2c, 0x99, 0x9f, 0x78, 0xd9, 0x80,
|
|
0x77, 0x21, 0x5b, 0xe1, 0xfa, 0xa2, 0x05, 0x2a, 0x16, 0x24, 0x24, 0x8b, 0x79, 0x17, 0x72, 0xcd,
|
|
0xaf, 0x5a, 0x45, 0x4c, 0x48, 0x5f, 0xc1, 0xfe, 0xea, 0xaa, 0x7b, 0x29, 0xb0, 0x64, 0xa1, 0x25,
|
|
0xb0, 0x85, 0xa6, 0x9f, 0x61, 0x7f, 0xb3, 0x13, 0xe6, 0xb6, 0x99, 0x43, 0xee, 0x8d, 0xf6, 0xee,
|
|
0xc1, 0x5d, 0xc8, 0x58, 0xa0, 0xb4, 0xc5, 0xed, 0xab, 0xdb, 0x8c, 0x9e, 0x00, 0x4c, 0xb4, 0x9e,
|
|
0xdd, 0x39, 0x7b, 0x18, 0xd5, 0x03, 0xde, 0x41, 0xd2, 0xef, 0x1e, 0xf4, 0xaf, 0x50, 0x6a, 0xf1,
|
|
0x49, 0x14, 0xb9, 0x46, 0xc3, 0x51, 0xe2, 0x58, 0x28, 0x2d, 0x6d, 0xb7, 0x6f, 0xae, 0x5b, 0xeb,
|
|
0x6d, 0xa1, 0xd6, 0x72, 0x28, 0x45, 0xbe, 0xba, 0xcf, 0x65, 0x96, 0x87, 0x18, 0xa3, 0xd2, 0xad,
|
|
0xc3, 0xda, 0xcc, 0x74, 0xa3, 0x44, 0xd9, 0x76, 0xd2, 0x84, 0xa6, 0x52, 0x28, 0x35, 0xc7, 0xd2,
|
|
0x5a, 0x8d, 0xf0, 0x36, 0xa3, 0x0c, 0x42, 0xfc, 0x32, 0x13, 0x12, 0x9d, 0x9b, 0x09, 0x5f, 0xa6,
|
|
0xe9, 0x2f, 0x0f, 0x06, 0xbc, 0x43, 0x63, 0x67, 0x36, 0x86, 0x40, 0x1e, 0x71, 0x61, 0x19, 0x0d,
|
|
0xb8, 0x09, 0xcd, 0xc7, 0x8a, 0xa6, 0xd6, 0x79, 0xa1, 0xad, 0xd8, 0x31, 0x5f, 0xa6, 0x34, 0x83,
|
|
0x83, 0x36, 0x54, 0x23, 0x89, 0x0a, 0x6b, 0x6d, 0xc9, 0x45, 0x7c, 0x1b, 0xa6, 0x2f, 0x21, 0xce,
|
|
0xc7, 0x12, 0x71, 0x6a, 0x6a, 0xdc, 0x58, 0xac, 0x01, 0x73, 0x2a, 0x6a, 0xa1, 0x45, 0x5e, 0xdd,
|
|
0x8c, 0x2c, 0xe1, 0x01, 0x5f, 0x03, 0xe6, 0xb4, 0x90, 0x98, 0x6b, 0x2c, 0x2f, 0xb5, 0xf5, 0x3a,
|
|
0xe1, 0x6b, 0xa0, 0x33, 0xb7, 0x51, 0x77, 0x6e, 0xd3, 0x1f, 0x1e, 0xfc, 0xb7, 0x39, 0x75, 0xeb,
|
|
0x97, 0xc6, 0xf6, 0xa5, 0x27, 0x00, 0xa2, 0xc4, 0xda, 0xc8, 0x86, 0xb2, 0x95, 0xa0, 0x83, 0x3c,
|
|
0x23, 0x23, 0xf9, 0xab, 0x8c, 0x8e, 0x81, 0xbf, 0xb1, 0x39, 0x3a, 0x22, 0x04, 0x1b, 0x22, 0xd0,
|
|
0x73, 0x80, 0x62, 0xb9, 0x9c, 0x8c, 0x42, 0x66, 0xf0, 0x0f, 0xdc, 0xf8, 0xae, 0x96, 0x16, 0xef,
|
|
0x94, 0xdc, 0xfa, 0x51, 0x38, 0x8c, 0x6e, 0xfd, 0x28, 0x1a, 0xc6, 0xe9, 0xcf, 0x1e, 0x04, 0xef,
|
|
0xa4, 0x51, 0x7f, 0x5b, 0xba, 0x5d, 0xc2, 0xbd, 0x67, 0x09, 0x77, 0x88, 0x91, 0x4d, 0x62, 0xab,
|
|
0x95, 0xe2, 0xff, 0x73, 0xa5, 0x98, 0x6d, 0x50, 0xac, 0x4d, 0x7f, 0xe7, 0x8c, 0xec, 0xa4, 0xdd,
|
|
0x3d, 0xe8, 0x34, 0x29, 0xdc, 0x68, 0xd2, 0x11, 0x04, 0x66, 0xdf, 0x18, 0xf5, 0x8c, 0xb5, 0x5c,
|
|
0x62, 0x8c, 0xf5, 0x80, 0xe3, 0xbc, 0x1e, 0xc9, 0xa6, 0x40, 0xa5, 0x44, 0x3d, 0xb6, 0x0b, 0x38,
|
|
0xe2, 0xdb, 0xb0, 0x35, 0xa7, 0xf3, 0x02, 0x03, 0xf7, 0x96, 0x36, 0x35, 0x0b, 0xf9, 0xe9, 0x62,
|
|
0xc3, 0x01, 0x8a, 0xf5, 0x13, 0x92, 0x11, 0xbe, 0x83, 0xdf, 0xfa, 0xd1, 0xde, 0x30, 0x4c, 0x43,
|
|
0x08, 0xde, 0x4e, 0x67, 0x7a, 0xf1, 0x26, 0xfc, 0x18, 0xd8, 0x3f, 0x93, 0x3f, 0x01, 0x00, 0x00,
|
|
0xff, 0xff, 0x9d, 0x5e, 0xf8, 0x60, 0x64, 0x06, 0x00, 0x00,
|
|
}
|