proto

package
v1.5.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 4, 2026 License: MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	DataFormat_name = map[int32]string{
		0: "JSON",
		1: "YAML",
		2: "XML",
		3: "TOML",
		4: "CSV",
	}
	DataFormat_value = map[string]int32{
		"JSON": 0,
		"YAML": 1,
		"XML":  2,
		"TOML": 3,
		"CSV":  4,
	}
)

Enum value maps for DataFormat.

View Source
var (
	TextAction_name = map[int32]string{
		0: "SORT_AZ",
		1: "SORT_ZA",
		2: "SORT_NUMERIC",
		3: "REVERSE",
		4: "DEDUPE",
		5: "REMOVE_EMPTY",
		6: "TRIM",
	}
	TextAction_value = map[string]int32{
		"SORT_AZ":      0,
		"SORT_ZA":      1,
		"SORT_NUMERIC": 2,
		"REVERSE":      3,
		"DEDUPE":       4,
		"REMOVE_EMPTY": 5,
		"TRIM":         6,
	}
)

Enum value maps for TextAction.

View Source
var (
	ListAction_name = map[int32]string{
		0:  "LIST_SORT_AZ",
		1:  "LIST_SORT_ZA",
		2:  "LIST_SORT_NUMERIC",
		3:  "LIST_SHUFFLE",
		4:  "LIST_DEDUPE",
		5:  "LIST_UNIQUE_ONLY",
		6:  "LIST_DUPLICATES",
		7:  "LIST_FREQUENCY",
		8:  "LIST_REVERSE",
		9:  "LIST_TRIM",
		10: "LIST_REMOVE_EMPTY",
	}
	ListAction_value = map[string]int32{
		"LIST_SORT_AZ":      0,
		"LIST_SORT_ZA":      1,
		"LIST_SORT_NUMERIC": 2,
		"LIST_SHUFFLE":      3,
		"LIST_DEDUPE":       4,
		"LIST_UNIQUE_ONLY":  5,
		"LIST_DUPLICATES":   6,
		"LIST_FREQUENCY":    7,
		"LIST_REVERSE":      8,
		"LIST_TRIM":         9,
		"LIST_REMOVE_EMPTY": 10,
	}
)

Enum value maps for ListAction.

View Source
var (
	PercentMode_name = map[int32]string{
		0: "PCT_X_OF_Y",
		1: "PCT_WHAT",
		2: "PCT_CHANGE",
		3: "PCT_REVERSE",
	}
	PercentMode_value = map[string]int32{
		"PCT_X_OF_Y":  0,
		"PCT_WHAT":    1,
		"PCT_CHANGE":  2,
		"PCT_REVERSE": 3,
	}
)

Enum value maps for PercentMode.

View Source
var (
	UnitCategory_name = map[int32]string{
		0: "UNIT_BYTES",
		1: "UNIT_LENGTH",
		2: "UNIT_MASS",
		3: "UNIT_AREA",
		4: "UNIT_VOLUME",
		5: "UNIT_SPEED",
	}
	UnitCategory_value = map[string]int32{
		"UNIT_BYTES":  0,
		"UNIT_LENGTH": 1,
		"UNIT_MASS":   2,
		"UNIT_AREA":   3,
		"UNIT_VOLUME": 4,
		"UNIT_SPEED":  5,
	}
)

Enum value maps for UnitCategory.

View Source
var File_proto_privutil_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type Base64Request

type Base64Request struct {
	Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Raw  []byte `protobuf:"bytes,3,opt,name=raw,proto3" json:"raw,omitempty"` // binary input for file encode
	// contains filtered or unexported fields
}

func (*Base64Request) Descriptor deprecated

func (*Base64Request) Descriptor() ([]byte, []int)

Deprecated: Use Base64Request.ProtoReflect.Descriptor instead.

func (*Base64Request) GetRaw added in v1.2.0

func (x *Base64Request) GetRaw() []byte

func (*Base64Request) GetText

func (x *Base64Request) GetText() string

func (*Base64Request) ProtoMessage

func (*Base64Request) ProtoMessage()

func (*Base64Request) ProtoReflect

func (x *Base64Request) ProtoReflect() protoreflect.Message

func (*Base64Request) Reset

func (x *Base64Request) Reset()

func (*Base64Request) String

func (x *Base64Request) String() string

type Base64Response

type Base64Response struct {
	Text     string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"` // base64 string (encode output)
	Error    string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	Data     []byte `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`                         // decoded binary (decode output)
	MimeType string `protobuf:"bytes,4,opt,name=mime_type,json=mimeType,proto3" json:"mime_type,omitempty"` // detected MIME type of decoded data
	// contains filtered or unexported fields
}

func (*Base64Response) Descriptor deprecated

func (*Base64Response) Descriptor() ([]byte, []int)

Deprecated: Use Base64Response.ProtoReflect.Descriptor instead.

func (*Base64Response) GetData added in v1.2.0

func (x *Base64Response) GetData() []byte

func (*Base64Response) GetError

func (x *Base64Response) GetError() string

func (*Base64Response) GetMimeType added in v1.2.0

func (x *Base64Response) GetMimeType() string

func (*Base64Response) GetText

func (x *Base64Response) GetText() string

func (*Base64Response) ProtoMessage

func (*Base64Response) ProtoMessage()

func (*Base64Response) ProtoReflect

func (x *Base64Response) ProtoReflect() protoreflect.Message

func (*Base64Response) Reset

func (x *Base64Response) Reset()

func (*Base64Response) String

func (x *Base64Response) String() string

type Base64ToFileRequest added in v1.2.0

type Base64ToFileRequest struct {
	Encoded  string `protobuf:"bytes,1,opt,name=encoded,proto3" json:"encoded,omitempty"`   // raw base64 or full data URI
	Filename string `protobuf:"bytes,2,opt,name=filename,proto3" json:"filename,omitempty"` // optional suggested output filename
	// contains filtered or unexported fields
}

func (*Base64ToFileRequest) Descriptor deprecated added in v1.2.0

func (*Base64ToFileRequest) Descriptor() ([]byte, []int)

Deprecated: Use Base64ToFileRequest.ProtoReflect.Descriptor instead.

func (*Base64ToFileRequest) GetEncoded added in v1.2.0

func (x *Base64ToFileRequest) GetEncoded() string

func (*Base64ToFileRequest) GetFilename added in v1.2.0

func (x *Base64ToFileRequest) GetFilename() string

func (*Base64ToFileRequest) ProtoMessage added in v1.2.0

func (*Base64ToFileRequest) ProtoMessage()

func (*Base64ToFileRequest) ProtoReflect added in v1.2.0

func (x *Base64ToFileRequest) ProtoReflect() protoreflect.Message

func (*Base64ToFileRequest) Reset added in v1.2.0

func (x *Base64ToFileRequest) Reset()

func (*Base64ToFileRequest) String added in v1.2.0

func (x *Base64ToFileRequest) String() string

type Base64ToFileResponse added in v1.2.0

type Base64ToFileResponse struct {
	Data     []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	MimeType string `protobuf:"bytes,2,opt,name=mime_type,json=mimeType,proto3" json:"mime_type,omitempty"`
	Filename string `protobuf:"bytes,3,opt,name=filename,proto3" json:"filename,omitempty"`
	Size     int32  `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
	Error    string `protobuf:"bytes,5,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*Base64ToFileResponse) Descriptor deprecated added in v1.2.0

func (*Base64ToFileResponse) Descriptor() ([]byte, []int)

Deprecated: Use Base64ToFileResponse.ProtoReflect.Descriptor instead.

func (*Base64ToFileResponse) GetData added in v1.2.0

func (x *Base64ToFileResponse) GetData() []byte

func (*Base64ToFileResponse) GetError added in v1.2.0

func (x *Base64ToFileResponse) GetError() string

func (*Base64ToFileResponse) GetFilename added in v1.2.0

func (x *Base64ToFileResponse) GetFilename() string

func (*Base64ToFileResponse) GetMimeType added in v1.2.0

func (x *Base64ToFileResponse) GetMimeType() string

func (*Base64ToFileResponse) GetSize added in v1.2.0

func (x *Base64ToFileResponse) GetSize() int32

func (*Base64ToFileResponse) ProtoMessage added in v1.2.0

func (*Base64ToFileResponse) ProtoMessage()

func (*Base64ToFileResponse) ProtoReflect added in v1.2.0

func (x *Base64ToFileResponse) ProtoReflect() protoreflect.Message

func (*Base64ToFileResponse) Reset added in v1.2.0

func (x *Base64ToFileResponse) Reset()

func (*Base64ToFileResponse) String added in v1.2.0

func (x *Base64ToFileResponse) String() string

type BaseConvertRequest added in v1.1.4

type BaseConvertRequest struct {
	Input      string `protobuf:"bytes,1,opt,name=input,proto3" json:"input,omitempty"`
	SourceBase int32  `protobuf:"varint,2,opt,name=source_base,json=sourceBase,proto3" json:"source_base,omitempty"` // e.g., 10, 16, 2, 8, or 64
	// contains filtered or unexported fields
}

func (*BaseConvertRequest) Descriptor deprecated added in v1.1.4

func (*BaseConvertRequest) Descriptor() ([]byte, []int)

Deprecated: Use BaseConvertRequest.ProtoReflect.Descriptor instead.

func (*BaseConvertRequest) GetInput added in v1.1.4

func (x *BaseConvertRequest) GetInput() string

func (*BaseConvertRequest) GetSourceBase added in v1.1.4

func (x *BaseConvertRequest) GetSourceBase() int32

func (*BaseConvertRequest) ProtoMessage added in v1.1.4

func (*BaseConvertRequest) ProtoMessage()

func (*BaseConvertRequest) ProtoReflect added in v1.1.4

func (x *BaseConvertRequest) ProtoReflect() protoreflect.Message

func (*BaseConvertRequest) Reset added in v1.1.4

func (x *BaseConvertRequest) Reset()

func (*BaseConvertRequest) String added in v1.1.4

func (x *BaseConvertRequest) String() string

type BaseConvertResponse added in v1.1.4

type BaseConvertResponse struct {
	Decimal string `protobuf:"bytes,1,opt,name=decimal,proto3" json:"decimal,omitempty"`
	Hex     string `protobuf:"bytes,2,opt,name=hex,proto3" json:"hex,omitempty"`
	Binary  string `protobuf:"bytes,3,opt,name=binary,proto3" json:"binary,omitempty"`
	Octal   string `protobuf:"bytes,4,opt,name=octal,proto3" json:"octal,omitempty"`
	Base64  string `protobuf:"bytes,5,opt,name=base64,proto3" json:"base64,omitempty"`
	Error   string `protobuf:"bytes,6,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*BaseConvertResponse) Descriptor deprecated added in v1.1.4

func (*BaseConvertResponse) Descriptor() ([]byte, []int)

Deprecated: Use BaseConvertResponse.ProtoReflect.Descriptor instead.

func (*BaseConvertResponse) GetBase64 added in v1.1.4

func (x *BaseConvertResponse) GetBase64() string

func (*BaseConvertResponse) GetBinary added in v1.1.4

func (x *BaseConvertResponse) GetBinary() string

func (*BaseConvertResponse) GetDecimal added in v1.1.4

func (x *BaseConvertResponse) GetDecimal() string

func (*BaseConvertResponse) GetError added in v1.1.4

func (x *BaseConvertResponse) GetError() string

func (*BaseConvertResponse) GetHex added in v1.1.4

func (x *BaseConvertResponse) GetHex() string

func (*BaseConvertResponse) GetOctal added in v1.1.4

func (x *BaseConvertResponse) GetOctal() string

func (*BaseConvertResponse) ProtoMessage added in v1.1.4

func (*BaseConvertResponse) ProtoMessage()

func (*BaseConvertResponse) ProtoReflect added in v1.1.4

func (x *BaseConvertResponse) ProtoReflect() protoreflect.Message

func (*BaseConvertResponse) Reset added in v1.1.4

func (x *BaseConvertResponse) Reset()

func (*BaseConvertResponse) String added in v1.1.4

func (x *BaseConvertResponse) String() string

type BasicAuthRequest added in v1.2.0

type BasicAuthRequest struct {
	Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
	Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
	// contains filtered or unexported fields
}

func (*BasicAuthRequest) Descriptor deprecated added in v1.2.0

func (*BasicAuthRequest) Descriptor() ([]byte, []int)

Deprecated: Use BasicAuthRequest.ProtoReflect.Descriptor instead.

func (*BasicAuthRequest) GetPassword added in v1.2.0

func (x *BasicAuthRequest) GetPassword() string

func (*BasicAuthRequest) GetUsername added in v1.2.0

func (x *BasicAuthRequest) GetUsername() string

func (*BasicAuthRequest) ProtoMessage added in v1.2.0

func (*BasicAuthRequest) ProtoMessage()

func (*BasicAuthRequest) ProtoReflect added in v1.2.0

func (x *BasicAuthRequest) ProtoReflect() protoreflect.Message

func (*BasicAuthRequest) Reset added in v1.2.0

func (x *BasicAuthRequest) Reset()

func (*BasicAuthRequest) String added in v1.2.0

func (x *BasicAuthRequest) String() string

type BasicAuthResponse added in v1.2.0

type BasicAuthResponse struct {
	Header  string `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`   // "Basic <token>"
	Token   string `protobuf:"bytes,2,opt,name=token,proto3" json:"token,omitempty"`     // base64 part only
	Decoded string `protobuf:"bytes,3,opt,name=decoded,proto3" json:"decoded,omitempty"` // "username:password" (for reverse direction)
	Error   string `protobuf:"bytes,4,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*BasicAuthResponse) Descriptor deprecated added in v1.2.0

func (*BasicAuthResponse) Descriptor() ([]byte, []int)

Deprecated: Use BasicAuthResponse.ProtoReflect.Descriptor instead.

func (*BasicAuthResponse) GetDecoded added in v1.2.0

func (x *BasicAuthResponse) GetDecoded() string

func (*BasicAuthResponse) GetError added in v1.2.0

func (x *BasicAuthResponse) GetError() string

func (*BasicAuthResponse) GetHeader added in v1.2.0

func (x *BasicAuthResponse) GetHeader() string

func (*BasicAuthResponse) GetToken added in v1.2.0

func (x *BasicAuthResponse) GetToken() string

func (*BasicAuthResponse) ProtoMessage added in v1.2.0

func (*BasicAuthResponse) ProtoMessage()

func (*BasicAuthResponse) ProtoReflect added in v1.2.0

func (x *BasicAuthResponse) ProtoReflect() protoreflect.Message

func (*BasicAuthResponse) Reset added in v1.2.0

func (x *BasicAuthResponse) Reset()

func (*BasicAuthResponse) String added in v1.2.0

func (x *BasicAuthResponse) String() string

type CaesarRequest added in v1.2.0

type CaesarRequest struct {
	Text   string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Shift  int32  `protobuf:"varint,2,opt,name=shift,proto3" json:"shift,omitempty"`  // 1–25; ROT13 = 13
	Action string `protobuf:"bytes,3,opt,name=action,proto3" json:"action,omitempty"` // "encode" or "decode"
	// contains filtered or unexported fields
}

func (*CaesarRequest) Descriptor deprecated added in v1.2.0

func (*CaesarRequest) Descriptor() ([]byte, []int)

Deprecated: Use CaesarRequest.ProtoReflect.Descriptor instead.

func (*CaesarRequest) GetAction added in v1.2.0

func (x *CaesarRequest) GetAction() string

func (*CaesarRequest) GetShift added in v1.2.0

func (x *CaesarRequest) GetShift() int32

func (*CaesarRequest) GetText added in v1.2.0

func (x *CaesarRequest) GetText() string

func (*CaesarRequest) ProtoMessage added in v1.2.0

func (*CaesarRequest) ProtoMessage()

func (*CaesarRequest) ProtoReflect added in v1.2.0

func (x *CaesarRequest) ProtoReflect() protoreflect.Message

func (*CaesarRequest) Reset added in v1.2.0

func (x *CaesarRequest) Reset()

func (*CaesarRequest) String added in v1.2.0

func (x *CaesarRequest) String() string

type CaesarResponse added in v1.2.0

type CaesarResponse struct {
	Result string `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
	Error  string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*CaesarResponse) Descriptor deprecated added in v1.2.0

func (*CaesarResponse) Descriptor() ([]byte, []int)

Deprecated: Use CaesarResponse.ProtoReflect.Descriptor instead.

func (*CaesarResponse) GetError added in v1.2.0

func (x *CaesarResponse) GetError() string

func (*CaesarResponse) GetResult added in v1.2.0

func (x *CaesarResponse) GetResult() string

func (*CaesarResponse) ProtoMessage added in v1.2.0

func (*CaesarResponse) ProtoMessage()

func (*CaesarResponse) ProtoReflect added in v1.2.0

func (x *CaesarResponse) ProtoReflect() protoreflect.Message

func (*CaesarResponse) Reset added in v1.2.0

func (x *CaesarResponse) Reset()

func (*CaesarResponse) String added in v1.2.0

func (x *CaesarResponse) String() string

type CaseRequest

type CaseRequest struct {
	Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	// contains filtered or unexported fields
}

func (*CaseRequest) Descriptor deprecated

func (*CaseRequest) Descriptor() ([]byte, []int)

Deprecated: Use CaseRequest.ProtoReflect.Descriptor instead.

func (*CaseRequest) GetText

func (x *CaseRequest) GetText() string

func (*CaseRequest) ProtoMessage

func (*CaseRequest) ProtoMessage()

func (*CaseRequest) ProtoReflect

func (x *CaseRequest) ProtoReflect() protoreflect.Message

func (*CaseRequest) Reset

func (x *CaseRequest) Reset()

func (*CaseRequest) String

func (x *CaseRequest) String() string

type CaseResponse

type CaseResponse struct {
	Camel    string `protobuf:"bytes,1,opt,name=camel,proto3" json:"camel,omitempty"`
	Snake    string `protobuf:"bytes,2,opt,name=snake,proto3" json:"snake,omitempty"`
	Pascal   string `protobuf:"bytes,3,opt,name=pascal,proto3" json:"pascal,omitempty"`
	Kebab    string `protobuf:"bytes,4,opt,name=kebab,proto3" json:"kebab,omitempty"`
	Constant string `protobuf:"bytes,5,opt,name=constant,proto3" json:"constant,omitempty"` // UPPER_SNAKE_CASE
	Title    string `protobuf:"bytes,6,opt,name=title,proto3" json:"title,omitempty"`
	Error    string `protobuf:"bytes,7,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*CaseResponse) Descriptor deprecated

func (*CaseResponse) Descriptor() ([]byte, []int)

Deprecated: Use CaseResponse.ProtoReflect.Descriptor instead.

func (*CaseResponse) GetCamel

func (x *CaseResponse) GetCamel() string

func (*CaseResponse) GetConstant

func (x *CaseResponse) GetConstant() string

func (*CaseResponse) GetError

func (x *CaseResponse) GetError() string

func (*CaseResponse) GetKebab

func (x *CaseResponse) GetKebab() string

func (*CaseResponse) GetPascal

func (x *CaseResponse) GetPascal() string

func (*CaseResponse) GetSnake

func (x *CaseResponse) GetSnake() string

func (*CaseResponse) GetTitle

func (x *CaseResponse) GetTitle() string

func (*CaseResponse) ProtoMessage

func (*CaseResponse) ProtoMessage()

func (*CaseResponse) ProtoReflect

func (x *CaseResponse) ProtoReflect() protoreflect.Message

func (*CaseResponse) Reset

func (x *CaseResponse) Reset()

func (*CaseResponse) String

func (x *CaseResponse) String() string

type CertRequest

type CertRequest struct {
	Data string `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"` // PEM
	// contains filtered or unexported fields
}

func (*CertRequest) Descriptor deprecated

func (*CertRequest) Descriptor() ([]byte, []int)

Deprecated: Use CertRequest.ProtoReflect.Descriptor instead.

func (*CertRequest) GetData

func (x *CertRequest) GetData() string

func (*CertRequest) ProtoMessage

func (*CertRequest) ProtoMessage()

func (*CertRequest) ProtoReflect

func (x *CertRequest) ProtoReflect() protoreflect.Message

func (*CertRequest) Reset

func (x *CertRequest) Reset()

func (*CertRequest) String

func (x *CertRequest) String() string

type CertResponse

type CertResponse struct {
	Subject   string   `protobuf:"bytes,1,opt,name=subject,proto3" json:"subject,omitempty"`
	Issuer    string   `protobuf:"bytes,2,opt,name=issuer,proto3" json:"issuer,omitempty"`
	NotBefore string   `protobuf:"bytes,3,opt,name=not_before,json=notBefore,proto3" json:"not_before,omitempty"`
	NotAfter  string   `protobuf:"bytes,4,opt,name=not_after,json=notAfter,proto3" json:"not_after,omitempty"`
	Sans      []string `protobuf:"bytes,5,rep,name=sans,proto3" json:"sans,omitempty"`
	Error     string   `protobuf:"bytes,6,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*CertResponse) Descriptor deprecated

func (*CertResponse) Descriptor() ([]byte, []int)

Deprecated: Use CertResponse.ProtoReflect.Descriptor instead.

func (*CertResponse) GetError

func (x *CertResponse) GetError() string

func (*CertResponse) GetIssuer

func (x *CertResponse) GetIssuer() string

func (*CertResponse) GetNotAfter

func (x *CertResponse) GetNotAfter() string

func (*CertResponse) GetNotBefore

func (x *CertResponse) GetNotBefore() string

func (*CertResponse) GetSans

func (x *CertResponse) GetSans() []string

func (*CertResponse) GetSubject

func (x *CertResponse) GetSubject() string

func (*CertResponse) ProtoMessage

func (*CertResponse) ProtoMessage()

func (*CertResponse) ProtoReflect

func (x *CertResponse) ProtoReflect() protoreflect.Message

func (*CertResponse) Reset

func (x *CertResponse) Reset()

func (*CertResponse) String

func (x *CertResponse) String() string

type ChmodRequest added in v1.2.0

type ChmodRequest struct {
	Input string `protobuf:"bytes,1,opt,name=input,proto3" json:"input,omitempty"` // octal "755" or symbolic "rwxr-xr-x"
	// contains filtered or unexported fields
}

func (*ChmodRequest) Descriptor deprecated added in v1.2.0

func (*ChmodRequest) Descriptor() ([]byte, []int)

Deprecated: Use ChmodRequest.ProtoReflect.Descriptor instead.

func (*ChmodRequest) GetInput added in v1.2.0

func (x *ChmodRequest) GetInput() string

func (*ChmodRequest) ProtoMessage added in v1.2.0

func (*ChmodRequest) ProtoMessage()

func (*ChmodRequest) ProtoReflect added in v1.2.0

func (x *ChmodRequest) ProtoReflect() protoreflect.Message

func (*ChmodRequest) Reset added in v1.2.0

func (x *ChmodRequest) Reset()

func (*ChmodRequest) String added in v1.2.0

func (x *ChmodRequest) String() string

type ChmodResponse added in v1.2.0

type ChmodResponse struct {
	Octal        string `protobuf:"bytes,1,opt,name=octal,proto3" json:"octal,omitempty"`
	Symbolic     string `protobuf:"bytes,2,opt,name=symbolic,proto3" json:"symbolic,omitempty"` // "rwxr-xr-x"
	Value        int32  `protobuf:"varint,3,opt,name=value,proto3" json:"value,omitempty"`      // decimal value e.g. 493
	OwnerRead    bool   `protobuf:"varint,4,opt,name=owner_read,json=ownerRead,proto3" json:"owner_read,omitempty"`
	OwnerWrite   bool   `protobuf:"varint,5,opt,name=owner_write,json=ownerWrite,proto3" json:"owner_write,omitempty"`
	OwnerExecute bool   `protobuf:"varint,6,opt,name=owner_execute,json=ownerExecute,proto3" json:"owner_execute,omitempty"`
	GroupRead    bool   `protobuf:"varint,7,opt,name=group_read,json=groupRead,proto3" json:"group_read,omitempty"`
	GroupWrite   bool   `protobuf:"varint,8,opt,name=group_write,json=groupWrite,proto3" json:"group_write,omitempty"`
	GroupExecute bool   `protobuf:"varint,9,opt,name=group_execute,json=groupExecute,proto3" json:"group_execute,omitempty"`
	OtherRead    bool   `protobuf:"varint,10,opt,name=other_read,json=otherRead,proto3" json:"other_read,omitempty"`
	OtherWrite   bool   `protobuf:"varint,11,opt,name=other_write,json=otherWrite,proto3" json:"other_write,omitempty"`
	OtherExecute bool   `protobuf:"varint,12,opt,name=other_execute,json=otherExecute,proto3" json:"other_execute,omitempty"`
	Setuid       bool   `protobuf:"varint,13,opt,name=setuid,proto3" json:"setuid,omitempty"`
	Setgid       bool   `protobuf:"varint,14,opt,name=setgid,proto3" json:"setgid,omitempty"`
	Sticky       bool   `protobuf:"varint,15,opt,name=sticky,proto3" json:"sticky,omitempty"`
	Description  string `protobuf:"bytes,16,opt,name=description,proto3" json:"description,omitempty"`
	Error        string `protobuf:"bytes,17,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*ChmodResponse) Descriptor deprecated added in v1.2.0

func (*ChmodResponse) Descriptor() ([]byte, []int)

Deprecated: Use ChmodResponse.ProtoReflect.Descriptor instead.

func (*ChmodResponse) GetDescription added in v1.2.0

func (x *ChmodResponse) GetDescription() string

func (*ChmodResponse) GetError added in v1.2.0

func (x *ChmodResponse) GetError() string

func (*ChmodResponse) GetGroupExecute added in v1.2.0

func (x *ChmodResponse) GetGroupExecute() bool

func (*ChmodResponse) GetGroupRead added in v1.2.0

func (x *ChmodResponse) GetGroupRead() bool

func (*ChmodResponse) GetGroupWrite added in v1.2.0

func (x *ChmodResponse) GetGroupWrite() bool

func (*ChmodResponse) GetOctal added in v1.2.0

func (x *ChmodResponse) GetOctal() string

func (*ChmodResponse) GetOtherExecute added in v1.2.0

func (x *ChmodResponse) GetOtherExecute() bool

func (*ChmodResponse) GetOtherRead added in v1.2.0

func (x *ChmodResponse) GetOtherRead() bool

func (*ChmodResponse) GetOtherWrite added in v1.2.0

func (x *ChmodResponse) GetOtherWrite() bool

func (*ChmodResponse) GetOwnerExecute added in v1.2.0

func (x *ChmodResponse) GetOwnerExecute() bool

func (*ChmodResponse) GetOwnerRead added in v1.2.0

func (x *ChmodResponse) GetOwnerRead() bool

func (*ChmodResponse) GetOwnerWrite added in v1.2.0

func (x *ChmodResponse) GetOwnerWrite() bool

func (*ChmodResponse) GetSetgid added in v1.2.0

func (x *ChmodResponse) GetSetgid() bool

func (*ChmodResponse) GetSetuid added in v1.2.0

func (x *ChmodResponse) GetSetuid() bool

func (*ChmodResponse) GetSticky added in v1.2.0

func (x *ChmodResponse) GetSticky() bool

func (*ChmodResponse) GetSymbolic added in v1.2.0

func (x *ChmodResponse) GetSymbolic() string

func (*ChmodResponse) GetValue added in v1.2.0

func (x *ChmodResponse) GetValue() int32

func (*ChmodResponse) ProtoMessage added in v1.2.0

func (*ChmodResponse) ProtoMessage()

func (*ChmodResponse) ProtoReflect added in v1.2.0

func (x *ChmodResponse) ProtoReflect() protoreflect.Message

func (*ChmodResponse) Reset added in v1.2.0

func (x *ChmodResponse) Reset()

func (*ChmodResponse) String added in v1.2.0

func (x *ChmodResponse) String() string

type ColorRequest

type ColorRequest struct {
	Input string `protobuf:"bytes,1,opt,name=input,proto3" json:"input,omitempty"` // Any format
	// contains filtered or unexported fields
}

func (*ColorRequest) Descriptor deprecated

func (*ColorRequest) Descriptor() ([]byte, []int)

Deprecated: Use ColorRequest.ProtoReflect.Descriptor instead.

func (*ColorRequest) GetInput

func (x *ColorRequest) GetInput() string

func (*ColorRequest) ProtoMessage

func (*ColorRequest) ProtoMessage()

func (*ColorRequest) ProtoReflect

func (x *ColorRequest) ProtoReflect() protoreflect.Message

func (*ColorRequest) Reset

func (x *ColorRequest) Reset()

func (*ColorRequest) String

func (x *ColorRequest) String() string

type ColorResponse

type ColorResponse struct {
	Hex   string `protobuf:"bytes,1,opt,name=hex,proto3" json:"hex,omitempty"`
	Rgb   string `protobuf:"bytes,2,opt,name=rgb,proto3" json:"rgb,omitempty"`
	Hsl   string `protobuf:"bytes,3,opt,name=hsl,proto3" json:"hsl,omitempty"`
	Error string `protobuf:"bytes,4,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*ColorResponse) Descriptor deprecated

func (*ColorResponse) Descriptor() ([]byte, []int)

Deprecated: Use ColorResponse.ProtoReflect.Descriptor instead.

func (*ColorResponse) GetError

func (x *ColorResponse) GetError() string

func (*ColorResponse) GetHex

func (x *ColorResponse) GetHex() string

func (*ColorResponse) GetHsl

func (x *ColorResponse) GetHsl() string

func (*ColorResponse) GetRgb

func (x *ColorResponse) GetRgb() string

func (*ColorResponse) ProtoMessage

func (*ColorResponse) ProtoMessage()

func (*ColorResponse) ProtoReflect

func (x *ColorResponse) ProtoReflect() protoreflect.Message

func (*ColorResponse) Reset

func (x *ColorResponse) Reset()

func (*ColorResponse) String

func (x *ColorResponse) String() string

type ConvertRequest

type ConvertRequest struct {
	Data         string     `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	SourceFormat DataFormat `protobuf:"varint,2,opt,name=source_format,json=sourceFormat,proto3,enum=privutil.DataFormat" json:"source_format,omitempty"`
	TargetFormat DataFormat `protobuf:"varint,3,opt,name=target_format,json=targetFormat,proto3,enum=privutil.DataFormat" json:"target_format,omitempty"`
	CsvDelimiter string     `protobuf:"bytes,4,opt,name=csv_delimiter,json=csvDelimiter,proto3" json:"csv_delimiter,omitempty"` // single character; defaults to ","
	CsvNoHeader  bool       `protobuf:"varint,5,opt,name=csv_no_header,json=csvNoHeader,proto3" json:"csv_no_header,omitempty"` // if true, CSV rows are arrays instead of objects
	// contains filtered or unexported fields
}

func (*ConvertRequest) Descriptor deprecated

func (*ConvertRequest) Descriptor() ([]byte, []int)

Deprecated: Use ConvertRequest.ProtoReflect.Descriptor instead.

func (*ConvertRequest) GetCsvDelimiter added in v1.2.0

func (x *ConvertRequest) GetCsvDelimiter() string

func (*ConvertRequest) GetCsvNoHeader added in v1.2.0

func (x *ConvertRequest) GetCsvNoHeader() bool

func (*ConvertRequest) GetData

func (x *ConvertRequest) GetData() string

func (*ConvertRequest) GetSourceFormat

func (x *ConvertRequest) GetSourceFormat() DataFormat

func (*ConvertRequest) GetTargetFormat

func (x *ConvertRequest) GetTargetFormat() DataFormat

func (*ConvertRequest) ProtoMessage

func (*ConvertRequest) ProtoMessage()

func (*ConvertRequest) ProtoReflect

func (x *ConvertRequest) ProtoReflect() protoreflect.Message

func (*ConvertRequest) Reset

func (x *ConvertRequest) Reset()

func (*ConvertRequest) String

func (x *ConvertRequest) String() string

type ConvertResponse

type ConvertResponse struct {
	Data  string `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*ConvertResponse) Descriptor deprecated

func (*ConvertResponse) Descriptor() ([]byte, []int)

Deprecated: Use ConvertResponse.ProtoReflect.Descriptor instead.

func (*ConvertResponse) GetData

func (x *ConvertResponse) GetData() string

func (*ConvertResponse) GetError

func (x *ConvertResponse) GetError() string

func (*ConvertResponse) ProtoMessage

func (*ConvertResponse) ProtoMessage()

func (*ConvertResponse) ProtoReflect

func (x *ConvertResponse) ProtoReflect() protoreflect.Message

func (*ConvertResponse) Reset

func (x *ConvertResponse) Reset()

func (*ConvertResponse) String

func (x *ConvertResponse) String() string

type CronRequest

type CronRequest struct {
	Expression string `protobuf:"bytes,1,opt,name=expression,proto3" json:"expression,omitempty"`
	// contains filtered or unexported fields
}

func (*CronRequest) Descriptor deprecated

func (*CronRequest) Descriptor() ([]byte, []int)

Deprecated: Use CronRequest.ProtoReflect.Descriptor instead.

func (*CronRequest) GetExpression

func (x *CronRequest) GetExpression() string

func (*CronRequest) ProtoMessage

func (*CronRequest) ProtoMessage()

func (*CronRequest) ProtoReflect

func (x *CronRequest) ProtoReflect() protoreflect.Message

func (*CronRequest) Reset

func (x *CronRequest) Reset()

func (*CronRequest) String

func (x *CronRequest) String() string

type CronResponse

type CronResponse struct {
	Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"`
	NextRuns    string `protobuf:"bytes,2,opt,name=next_runs,json=nextRuns,proto3" json:"next_runs,omitempty"`
	Error       string `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*CronResponse) Descriptor deprecated

func (*CronResponse) Descriptor() ([]byte, []int)

Deprecated: Use CronResponse.ProtoReflect.Descriptor instead.

func (*CronResponse) GetDescription

func (x *CronResponse) GetDescription() string

func (*CronResponse) GetError

func (x *CronResponse) GetError() string

func (*CronResponse) GetNextRuns

func (x *CronResponse) GetNextRuns() string

func (*CronResponse) ProtoMessage

func (*CronResponse) ProtoMessage()

func (*CronResponse) ProtoReflect

func (x *CronResponse) ProtoReflect() protoreflect.Message

func (*CronResponse) Reset

func (x *CronResponse) Reset()

func (*CronResponse) String

func (x *CronResponse) String() string

type DataFormat

type DataFormat int32
const (
	DataFormat_JSON DataFormat = 0
	DataFormat_YAML DataFormat = 1
	DataFormat_XML  DataFormat = 2
	DataFormat_TOML DataFormat = 3
	DataFormat_CSV  DataFormat = 4
)

func (DataFormat) Descriptor

func (DataFormat) Descriptor() protoreflect.EnumDescriptor

func (DataFormat) Enum

func (x DataFormat) Enum() *DataFormat

func (DataFormat) EnumDescriptor deprecated

func (DataFormat) EnumDescriptor() ([]byte, []int)

Deprecated: Use DataFormat.Descriptor instead.

func (DataFormat) Number

func (x DataFormat) Number() protoreflect.EnumNumber

func (DataFormat) String

func (x DataFormat) String() string

func (DataFormat) Type

type DateAddRequest added in v1.2.0

type DateAddRequest struct {
	Date    string `protobuf:"bytes,1,opt,name=date,proto3" json:"date,omitempty"`
	Years   int32  `protobuf:"varint,2,opt,name=years,proto3" json:"years,omitempty"`
	Months  int32  `protobuf:"varint,3,opt,name=months,proto3" json:"months,omitempty"`
	Weeks   int32  `protobuf:"varint,4,opt,name=weeks,proto3" json:"weeks,omitempty"`
	Days    int32  `protobuf:"varint,5,opt,name=days,proto3" json:"days,omitempty"`
	Hours   int32  `protobuf:"varint,6,opt,name=hours,proto3" json:"hours,omitempty"`
	Minutes int32  `protobuf:"varint,7,opt,name=minutes,proto3" json:"minutes,omitempty"`
	Seconds int32  `protobuf:"varint,8,opt,name=seconds,proto3" json:"seconds,omitempty"`
	// contains filtered or unexported fields
}

func (*DateAddRequest) Descriptor deprecated added in v1.2.0

func (*DateAddRequest) Descriptor() ([]byte, []int)

Deprecated: Use DateAddRequest.ProtoReflect.Descriptor instead.

func (*DateAddRequest) GetDate added in v1.2.0

func (x *DateAddRequest) GetDate() string

func (*DateAddRequest) GetDays added in v1.2.0

func (x *DateAddRequest) GetDays() int32

func (*DateAddRequest) GetHours added in v1.2.0

func (x *DateAddRequest) GetHours() int32

func (*DateAddRequest) GetMinutes added in v1.2.0

func (x *DateAddRequest) GetMinutes() int32

func (*DateAddRequest) GetMonths added in v1.2.0

func (x *DateAddRequest) GetMonths() int32

func (*DateAddRequest) GetSeconds added in v1.2.0

func (x *DateAddRequest) GetSeconds() int32

func (*DateAddRequest) GetWeeks added in v1.2.0

func (x *DateAddRequest) GetWeeks() int32

func (*DateAddRequest) GetYears added in v1.2.0

func (x *DateAddRequest) GetYears() int32

func (*DateAddRequest) ProtoMessage added in v1.2.0

func (*DateAddRequest) ProtoMessage()

func (*DateAddRequest) ProtoReflect added in v1.2.0

func (x *DateAddRequest) ProtoReflect() protoreflect.Message

func (*DateAddRequest) Reset added in v1.2.0

func (x *DateAddRequest) Reset()

func (*DateAddRequest) String added in v1.2.0

func (x *DateAddRequest) String() string

type DateAddResponse added in v1.2.0

type DateAddResponse struct {
	Iso       string `protobuf:"bytes,1,opt,name=iso,proto3" json:"iso,omitempty"`                        // YYYY-MM-DD
	IsoFull   string `protobuf:"bytes,2,opt,name=iso_full,json=isoFull,proto3" json:"iso_full,omitempty"` // RFC3339
	Unix      string `protobuf:"bytes,3,opt,name=unix,proto3" json:"unix,omitempty"`
	Weekday   string `protobuf:"bytes,4,opt,name=weekday,proto3" json:"weekday,omitempty"`
	DayOfYear int32  `protobuf:"varint,5,opt,name=day_of_year,json=dayOfYear,proto3" json:"day_of_year,omitempty"`
	IsoWeek   int32  `protobuf:"varint,6,opt,name=iso_week,json=isoWeek,proto3" json:"iso_week,omitempty"`
	Formatted string `protobuf:"bytes,7,opt,name=formatted,proto3" json:"formatted,omitempty"` // "Monday, 15 January 2024"
	Error     string `protobuf:"bytes,8,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*DateAddResponse) Descriptor deprecated added in v1.2.0

func (*DateAddResponse) Descriptor() ([]byte, []int)

Deprecated: Use DateAddResponse.ProtoReflect.Descriptor instead.

func (*DateAddResponse) GetDayOfYear added in v1.2.0

func (x *DateAddResponse) GetDayOfYear() int32

func (*DateAddResponse) GetError added in v1.2.0

func (x *DateAddResponse) GetError() string

func (*DateAddResponse) GetFormatted added in v1.2.0

func (x *DateAddResponse) GetFormatted() string

func (*DateAddResponse) GetIso added in v1.2.0

func (x *DateAddResponse) GetIso() string

func (*DateAddResponse) GetIsoFull added in v1.2.0

func (x *DateAddResponse) GetIsoFull() string

func (*DateAddResponse) GetIsoWeek added in v1.2.0

func (x *DateAddResponse) GetIsoWeek() int32

func (*DateAddResponse) GetUnix added in v1.2.0

func (x *DateAddResponse) GetUnix() string

func (*DateAddResponse) GetWeekday added in v1.2.0

func (x *DateAddResponse) GetWeekday() string

func (*DateAddResponse) ProtoMessage added in v1.2.0

func (*DateAddResponse) ProtoMessage()

func (*DateAddResponse) ProtoReflect added in v1.2.0

func (x *DateAddResponse) ProtoReflect() protoreflect.Message

func (*DateAddResponse) Reset added in v1.2.0

func (x *DateAddResponse) Reset()

func (*DateAddResponse) String added in v1.2.0

func (x *DateAddResponse) String() string

type DateDiffRequest added in v1.2.0

type DateDiffRequest struct {
	FromDate string `protobuf:"bytes,1,opt,name=from_date,json=fromDate,proto3" json:"from_date,omitempty"` // any parseable date/datetime string
	ToDate   string `protobuf:"bytes,2,opt,name=to_date,json=toDate,proto3" json:"to_date,omitempty"`
	// contains filtered or unexported fields
}

func (*DateDiffRequest) Descriptor deprecated added in v1.2.0

func (*DateDiffRequest) Descriptor() ([]byte, []int)

Deprecated: Use DateDiffRequest.ProtoReflect.Descriptor instead.

func (*DateDiffRequest) GetFromDate added in v1.2.0

func (x *DateDiffRequest) GetFromDate() string

func (*DateDiffRequest) GetToDate added in v1.2.0

func (x *DateDiffRequest) GetToDate() string

func (*DateDiffRequest) ProtoMessage added in v1.2.0

func (*DateDiffRequest) ProtoMessage()

func (*DateDiffRequest) ProtoReflect added in v1.2.0

func (x *DateDiffRequest) ProtoReflect() protoreflect.Message

func (*DateDiffRequest) Reset added in v1.2.0

func (x *DateDiffRequest) Reset()

func (*DateDiffRequest) String added in v1.2.0

func (x *DateDiffRequest) String() string

type DateDiffResponse added in v1.2.0

type DateDiffResponse struct {
	Years      int64  `protobuf:"varint,1,opt,name=years,proto3" json:"years,omitempty"`
	Months     int64  `protobuf:"varint,2,opt,name=months,proto3" json:"months,omitempty"`
	Weeks      int64  `protobuf:"varint,3,opt,name=weeks,proto3" json:"weeks,omitempty"`
	Days       int64  `protobuf:"varint,4,opt,name=days,proto3" json:"days,omitempty"`
	Hours      int64  `protobuf:"varint,5,opt,name=hours,proto3" json:"hours,omitempty"`
	Minutes    int64  `protobuf:"varint,6,opt,name=minutes,proto3" json:"minutes,omitempty"`
	Seconds    int64  `protobuf:"varint,7,opt,name=seconds,proto3" json:"seconds,omitempty"`
	TotalDays  int64  `protobuf:"varint,8,opt,name=total_days,json=totalDays,proto3" json:"total_days,omitempty"`
	TotalHours int64  `protobuf:"varint,9,opt,name=total_hours,json=totalHours,proto3" json:"total_hours,omitempty"`
	TotalSecs  int64  `protobuf:"varint,10,opt,name=total_secs,json=totalSecs,proto3" json:"total_secs,omitempty"`
	Negative   bool   `protobuf:"varint,11,opt,name=negative,proto3" json:"negative,omitempty"` // true when from is after to
	Human      string `protobuf:"bytes,12,opt,name=human,proto3" json:"human,omitempty"`        // e.g. "2 years, 3 months, 5 days"
	Error      string `protobuf:"bytes,13,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*DateDiffResponse) Descriptor deprecated added in v1.2.0

func (*DateDiffResponse) Descriptor() ([]byte, []int)

Deprecated: Use DateDiffResponse.ProtoReflect.Descriptor instead.

func (*DateDiffResponse) GetDays added in v1.2.0

func (x *DateDiffResponse) GetDays() int64

func (*DateDiffResponse) GetError added in v1.2.0

func (x *DateDiffResponse) GetError() string

func (*DateDiffResponse) GetHours added in v1.2.0

func (x *DateDiffResponse) GetHours() int64

func (*DateDiffResponse) GetHuman added in v1.2.0

func (x *DateDiffResponse) GetHuman() string

func (*DateDiffResponse) GetMinutes added in v1.2.0

func (x *DateDiffResponse) GetMinutes() int64

func (*DateDiffResponse) GetMonths added in v1.2.0

func (x *DateDiffResponse) GetMonths() int64

func (*DateDiffResponse) GetNegative added in v1.2.0

func (x *DateDiffResponse) GetNegative() bool

func (*DateDiffResponse) GetSeconds added in v1.2.0

func (x *DateDiffResponse) GetSeconds() int64

func (*DateDiffResponse) GetTotalDays added in v1.2.0

func (x *DateDiffResponse) GetTotalDays() int64

func (*DateDiffResponse) GetTotalHours added in v1.2.0

func (x *DateDiffResponse) GetTotalHours() int64

func (*DateDiffResponse) GetTotalSecs added in v1.2.0

func (x *DateDiffResponse) GetTotalSecs() int64

func (*DateDiffResponse) GetWeeks added in v1.2.0

func (x *DateDiffResponse) GetWeeks() int64

func (*DateDiffResponse) GetYears added in v1.2.0

func (x *DateDiffResponse) GetYears() int64

func (*DateDiffResponse) ProtoMessage added in v1.2.0

func (*DateDiffResponse) ProtoMessage()

func (*DateDiffResponse) ProtoReflect added in v1.2.0

func (x *DateDiffResponse) ProtoReflect() protoreflect.Message

func (*DateDiffResponse) Reset added in v1.2.0

func (x *DateDiffResponse) Reset()

func (*DateDiffResponse) String added in v1.2.0

func (x *DateDiffResponse) String() string

type DateFormatEntry added in v1.2.0

type DateFormatEntry struct {
	Label  string `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
	Result string `protobuf:"bytes,2,opt,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

func (*DateFormatEntry) Descriptor deprecated added in v1.2.0

func (*DateFormatEntry) Descriptor() ([]byte, []int)

Deprecated: Use DateFormatEntry.ProtoReflect.Descriptor instead.

func (*DateFormatEntry) GetLabel added in v1.2.0

func (x *DateFormatEntry) GetLabel() string

func (*DateFormatEntry) GetResult added in v1.2.0

func (x *DateFormatEntry) GetResult() string

func (*DateFormatEntry) ProtoMessage added in v1.2.0

func (*DateFormatEntry) ProtoMessage()

func (*DateFormatEntry) ProtoReflect added in v1.2.0

func (x *DateFormatEntry) ProtoReflect() protoreflect.Message

func (*DateFormatEntry) Reset added in v1.2.0

func (x *DateFormatEntry) Reset()

func (*DateFormatEntry) String added in v1.2.0

func (x *DateFormatEntry) String() string

type DateFormatRequest added in v1.2.0

type DateFormatRequest struct {
	DateStr  string `protobuf:"bytes,1,opt,name=date_str,json=dateStr,proto3" json:"date_str,omitempty"`
	Timezone string `protobuf:"bytes,2,opt,name=timezone,proto3" json:"timezone,omitempty"` // IANA tz name, default "UTC"
	// contains filtered or unexported fields
}

func (*DateFormatRequest) Descriptor deprecated added in v1.2.0

func (*DateFormatRequest) Descriptor() ([]byte, []int)

Deprecated: Use DateFormatRequest.ProtoReflect.Descriptor instead.

func (*DateFormatRequest) GetDateStr added in v1.2.0

func (x *DateFormatRequest) GetDateStr() string

func (*DateFormatRequest) GetTimezone added in v1.2.0

func (x *DateFormatRequest) GetTimezone() string

func (*DateFormatRequest) ProtoMessage added in v1.2.0

func (*DateFormatRequest) ProtoMessage()

func (*DateFormatRequest) ProtoReflect added in v1.2.0

func (x *DateFormatRequest) ProtoReflect() protoreflect.Message

func (*DateFormatRequest) Reset added in v1.2.0

func (x *DateFormatRequest) Reset()

func (*DateFormatRequest) String added in v1.2.0

func (x *DateFormatRequest) String() string

type DateFormatResponse added in v1.2.0

type DateFormatResponse struct {
	Formats []*DateFormatEntry `protobuf:"bytes,1,rep,name=formats,proto3" json:"formats,omitempty"`
	Error   string             `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*DateFormatResponse) Descriptor deprecated added in v1.2.0

func (*DateFormatResponse) Descriptor() ([]byte, []int)

Deprecated: Use DateFormatResponse.ProtoReflect.Descriptor instead.

func (*DateFormatResponse) GetError added in v1.2.0

func (x *DateFormatResponse) GetError() string

func (*DateFormatResponse) GetFormats added in v1.2.0

func (x *DateFormatResponse) GetFormats() []*DateFormatEntry

func (*DateFormatResponse) ProtoMessage added in v1.2.0

func (*DateFormatResponse) ProtoMessage()

func (*DateFormatResponse) ProtoReflect added in v1.2.0

func (x *DateFormatResponse) ProtoReflect() protoreflect.Message

func (*DateFormatResponse) Reset added in v1.2.0

func (x *DateFormatResponse) Reset()

func (*DateFormatResponse) String added in v1.2.0

func (x *DateFormatResponse) String() string

type DateInfoRequest added in v1.2.0

type DateInfoRequest struct {
	Date string `protobuf:"bytes,1,opt,name=date,proto3" json:"date,omitempty"`
	// contains filtered or unexported fields
}

func (*DateInfoRequest) Descriptor deprecated added in v1.2.0

func (*DateInfoRequest) Descriptor() ([]byte, []int)

Deprecated: Use DateInfoRequest.ProtoReflect.Descriptor instead.

func (*DateInfoRequest) GetDate added in v1.2.0

func (x *DateInfoRequest) GetDate() string

func (*DateInfoRequest) ProtoMessage added in v1.2.0

func (*DateInfoRequest) ProtoMessage()

func (*DateInfoRequest) ProtoReflect added in v1.2.0

func (x *DateInfoRequest) ProtoReflect() protoreflect.Message

func (*DateInfoRequest) Reset added in v1.2.0

func (x *DateInfoRequest) Reset()

func (*DateInfoRequest) String added in v1.2.0

func (x *DateInfoRequest) String() string

type DateInfoResponse added in v1.2.0

type DateInfoResponse struct {
	Weekday        string `protobuf:"bytes,1,opt,name=weekday,proto3" json:"weekday,omitempty"`
	IsWeekend      bool   `protobuf:"varint,2,opt,name=is_weekend,json=isWeekend,proto3" json:"is_weekend,omitempty"`
	DayOfYear      int32  `protobuf:"varint,3,opt,name=day_of_year,json=dayOfYear,proto3" json:"day_of_year,omitempty"`
	DaysInYear     int32  `protobuf:"varint,4,opt,name=days_in_year,json=daysInYear,proto3" json:"days_in_year,omitempty"`
	DaysLeftYear   int32  `protobuf:"varint,5,opt,name=days_left_year,json=daysLeftYear,proto3" json:"days_left_year,omitempty"`
	IsoWeek        int32  `protobuf:"varint,6,opt,name=iso_week,json=isoWeek,proto3" json:"iso_week,omitempty"`
	IsoYear        int32  `protobuf:"varint,7,opt,name=iso_year,json=isoYear,proto3" json:"iso_year,omitempty"`
	Quarter        string `protobuf:"bytes,8,opt,name=quarter,proto3" json:"quarter,omitempty"` // "Q1"…"Q4"
	DaysInMonth    int32  `protobuf:"varint,9,opt,name=days_in_month,json=daysInMonth,proto3" json:"days_in_month,omitempty"`
	DaysLeftMonth  int32  `protobuf:"varint,10,opt,name=days_left_month,json=daysLeftMonth,proto3" json:"days_left_month,omitempty"`
	UnixSec        int64  `protobuf:"varint,11,opt,name=unix_sec,json=unixSec,proto3" json:"unix_sec,omitempty"`
	Zodiac         string `protobuf:"bytes,12,opt,name=zodiac,proto3" json:"zodiac,omitempty"`
	Season         string `protobuf:"bytes,13,opt,name=season,proto3" json:"season,omitempty"` // Northern hemisphere
	DaysSinceEpoch int64  `protobuf:"varint,14,opt,name=days_since_epoch,json=daysSinceEpoch,proto3" json:"days_since_epoch,omitempty"`
	Error          string `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*DateInfoResponse) Descriptor deprecated added in v1.2.0

func (*DateInfoResponse) Descriptor() ([]byte, []int)

Deprecated: Use DateInfoResponse.ProtoReflect.Descriptor instead.

func (*DateInfoResponse) GetDayOfYear added in v1.2.0

func (x *DateInfoResponse) GetDayOfYear() int32

func (*DateInfoResponse) GetDaysInMonth added in v1.2.0

func (x *DateInfoResponse) GetDaysInMonth() int32

func (*DateInfoResponse) GetDaysInYear added in v1.2.0

func (x *DateInfoResponse) GetDaysInYear() int32

func (*DateInfoResponse) GetDaysLeftMonth added in v1.2.0

func (x *DateInfoResponse) GetDaysLeftMonth() int32

func (*DateInfoResponse) GetDaysLeftYear added in v1.2.0

func (x *DateInfoResponse) GetDaysLeftYear() int32

func (*DateInfoResponse) GetDaysSinceEpoch added in v1.2.0

func (x *DateInfoResponse) GetDaysSinceEpoch() int64

func (*DateInfoResponse) GetError added in v1.2.0

func (x *DateInfoResponse) GetError() string

func (*DateInfoResponse) GetIsWeekend added in v1.2.0

func (x *DateInfoResponse) GetIsWeekend() bool

func (*DateInfoResponse) GetIsoWeek added in v1.2.0

func (x *DateInfoResponse) GetIsoWeek() int32

func (*DateInfoResponse) GetIsoYear added in v1.2.0

func (x *DateInfoResponse) GetIsoYear() int32

func (*DateInfoResponse) GetQuarter added in v1.2.0

func (x *DateInfoResponse) GetQuarter() string

func (*DateInfoResponse) GetSeason added in v1.2.0

func (x *DateInfoResponse) GetSeason() string

func (*DateInfoResponse) GetUnixSec added in v1.2.0

func (x *DateInfoResponse) GetUnixSec() int64

func (*DateInfoResponse) GetWeekday added in v1.2.0

func (x *DateInfoResponse) GetWeekday() string

func (*DateInfoResponse) GetZodiac added in v1.2.0

func (x *DateInfoResponse) GetZodiac() string

func (*DateInfoResponse) ProtoMessage added in v1.2.0

func (*DateInfoResponse) ProtoMessage()

func (*DateInfoResponse) ProtoReflect added in v1.2.0

func (x *DateInfoResponse) ProtoReflect() protoreflect.Message

func (*DateInfoResponse) Reset added in v1.2.0

func (x *DateInfoResponse) Reset()

func (*DateInfoResponse) String added in v1.2.0

func (x *DateInfoResponse) String() string

type DiffRequest

type DiffRequest struct {
	Text1 string `protobuf:"bytes,1,opt,name=text1,proto3" json:"text1,omitempty"`
	Text2 string `protobuf:"bytes,2,opt,name=text2,proto3" json:"text2,omitempty"`
	// contains filtered or unexported fields
}

func (*DiffRequest) Descriptor deprecated

func (*DiffRequest) Descriptor() ([]byte, []int)

Deprecated: Use DiffRequest.ProtoReflect.Descriptor instead.

func (*DiffRequest) GetText1

func (x *DiffRequest) GetText1() string

func (*DiffRequest) GetText2

func (x *DiffRequest) GetText2() string

func (*DiffRequest) ProtoMessage

func (*DiffRequest) ProtoMessage()

func (*DiffRequest) ProtoReflect

func (x *DiffRequest) ProtoReflect() protoreflect.Message

func (*DiffRequest) Reset

func (x *DiffRequest) Reset()

func (*DiffRequest) String

func (x *DiffRequest) String() string

type DiffResponse

type DiffResponse struct {
	DiffHtml string `protobuf:"bytes,1,opt,name=diff_html,json=diffHtml,proto3" json:"diff_html,omitempty"`
	// contains filtered or unexported fields
}

func (*DiffResponse) Descriptor deprecated

func (*DiffResponse) Descriptor() ([]byte, []int)

Deprecated: Use DiffResponse.ProtoReflect.Descriptor instead.

func (*DiffResponse) GetDiffHtml

func (x *DiffResponse) GetDiffHtml() string

func (*DiffResponse) ProtoMessage

func (*DiffResponse) ProtoMessage()

func (*DiffResponse) ProtoReflect

func (x *DiffResponse) ProtoReflect() protoreflect.Message

func (*DiffResponse) Reset

func (x *DiffResponse) Reset()

func (*DiffResponse) String

func (x *DiffResponse) String() string

type DockerRunToComposeRequest added in v1.2.0

type DockerRunToComposeRequest struct {
	Command string `protobuf:"bytes,1,opt,name=command,proto3" json:"command,omitempty"` // full docker run command string
	// contains filtered or unexported fields
}

func (*DockerRunToComposeRequest) Descriptor deprecated added in v1.2.0

func (*DockerRunToComposeRequest) Descriptor() ([]byte, []int)

Deprecated: Use DockerRunToComposeRequest.ProtoReflect.Descriptor instead.

func (*DockerRunToComposeRequest) GetCommand added in v1.2.0

func (x *DockerRunToComposeRequest) GetCommand() string

func (*DockerRunToComposeRequest) ProtoMessage added in v1.2.0

func (*DockerRunToComposeRequest) ProtoMessage()

func (*DockerRunToComposeRequest) ProtoReflect added in v1.2.0

func (*DockerRunToComposeRequest) Reset added in v1.2.0

func (x *DockerRunToComposeRequest) Reset()

func (*DockerRunToComposeRequest) String added in v1.2.0

func (x *DockerRunToComposeRequest) String() string

type DockerRunToComposeResponse added in v1.2.0

type DockerRunToComposeResponse struct {
	ComposeYaml string   `protobuf:"bytes,1,opt,name=compose_yaml,json=composeYaml,proto3" json:"compose_yaml,omitempty"`
	Warnings    []string `protobuf:"bytes,2,rep,name=warnings,proto3" json:"warnings,omitempty"`
	ServiceName string   `protobuf:"bytes,3,opt,name=service_name,json=serviceName,proto3" json:"service_name,omitempty"`
	Image       string   `protobuf:"bytes,4,opt,name=image,proto3" json:"image,omitempty"`
	Error       string   `protobuf:"bytes,5,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*DockerRunToComposeResponse) Descriptor deprecated added in v1.2.0

func (*DockerRunToComposeResponse) Descriptor() ([]byte, []int)

Deprecated: Use DockerRunToComposeResponse.ProtoReflect.Descriptor instead.

func (*DockerRunToComposeResponse) GetComposeYaml added in v1.2.0

func (x *DockerRunToComposeResponse) GetComposeYaml() string

func (*DockerRunToComposeResponse) GetError added in v1.2.0

func (x *DockerRunToComposeResponse) GetError() string

func (*DockerRunToComposeResponse) GetImage added in v1.2.0

func (x *DockerRunToComposeResponse) GetImage() string

func (*DockerRunToComposeResponse) GetServiceName added in v1.2.0

func (x *DockerRunToComposeResponse) GetServiceName() string

func (*DockerRunToComposeResponse) GetWarnings added in v1.2.0

func (x *DockerRunToComposeResponse) GetWarnings() []string

func (*DockerRunToComposeResponse) ProtoMessage added in v1.2.0

func (*DockerRunToComposeResponse) ProtoMessage()

func (*DockerRunToComposeResponse) ProtoReflect added in v1.2.0

func (*DockerRunToComposeResponse) Reset added in v1.2.0

func (x *DockerRunToComposeResponse) Reset()

func (*DockerRunToComposeResponse) String added in v1.2.0

func (x *DockerRunToComposeResponse) String() string

type EscapeRequest

type EscapeRequest struct {
	Text   string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Mode   string `protobuf:"bytes,2,opt,name=mode,proto3" json:"mode,omitempty"`     // "json", "java", "sql", "html_entity"
	Action string `protobuf:"bytes,3,opt,name=action,proto3" json:"action,omitempty"` // "escape", "unescape"
	// contains filtered or unexported fields
}

func (*EscapeRequest) Descriptor deprecated

func (*EscapeRequest) Descriptor() ([]byte, []int)

Deprecated: Use EscapeRequest.ProtoReflect.Descriptor instead.

func (*EscapeRequest) GetAction

func (x *EscapeRequest) GetAction() string

func (*EscapeRequest) GetMode

func (x *EscapeRequest) GetMode() string

func (*EscapeRequest) GetText

func (x *EscapeRequest) GetText() string

func (*EscapeRequest) ProtoMessage

func (*EscapeRequest) ProtoMessage()

func (*EscapeRequest) ProtoReflect

func (x *EscapeRequest) ProtoReflect() protoreflect.Message

func (*EscapeRequest) Reset

func (x *EscapeRequest) Reset()

func (*EscapeRequest) String

func (x *EscapeRequest) String() string

type EscapeResponse

type EscapeResponse struct {
	Result string `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
	Error  string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*EscapeResponse) Descriptor deprecated

func (*EscapeResponse) Descriptor() ([]byte, []int)

Deprecated: Use EscapeResponse.ProtoReflect.Descriptor instead.

func (*EscapeResponse) GetError

func (x *EscapeResponse) GetError() string

func (*EscapeResponse) GetResult

func (x *EscapeResponse) GetResult() string

func (*EscapeResponse) ProtoMessage

func (*EscapeResponse) ProtoMessage()

func (*EscapeResponse) ProtoReflect

func (x *EscapeResponse) ProtoReflect() protoreflect.Message

func (*EscapeResponse) Reset

func (x *EscapeResponse) Reset()

func (*EscapeResponse) String

func (x *EscapeResponse) String() string

type ExifField added in v1.2.0

type ExifField struct {
	Label string `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
	Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	Group string `protobuf:"bytes,3,opt,name=group,proto3" json:"group,omitempty"`
	// contains filtered or unexported fields
}

func (*ExifField) Descriptor deprecated added in v1.2.0

func (*ExifField) Descriptor() ([]byte, []int)

Deprecated: Use ExifField.ProtoReflect.Descriptor instead.

func (*ExifField) GetGroup added in v1.2.0

func (x *ExifField) GetGroup() string

func (*ExifField) GetLabel added in v1.2.0

func (x *ExifField) GetLabel() string

func (*ExifField) GetValue added in v1.2.0

func (x *ExifField) GetValue() string

func (*ExifField) ProtoMessage added in v1.2.0

func (*ExifField) ProtoMessage()

func (*ExifField) ProtoReflect added in v1.2.0

func (x *ExifField) ProtoReflect() protoreflect.Message

func (*ExifField) Reset added in v1.2.0

func (x *ExifField) Reset()

func (*ExifField) String added in v1.2.0

func (x *ExifField) String() string

type ExifReadRequest added in v1.2.0

type ExifReadRequest struct {
	Data     []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Filename string `protobuf:"bytes,2,opt,name=filename,proto3" json:"filename,omitempty"`
	// contains filtered or unexported fields
}

func (*ExifReadRequest) Descriptor deprecated added in v1.2.0

func (*ExifReadRequest) Descriptor() ([]byte, []int)

Deprecated: Use ExifReadRequest.ProtoReflect.Descriptor instead.

func (*ExifReadRequest) GetData added in v1.2.0

func (x *ExifReadRequest) GetData() []byte

func (*ExifReadRequest) GetFilename added in v1.2.0

func (x *ExifReadRequest) GetFilename() string

func (*ExifReadRequest) ProtoMessage added in v1.2.0

func (*ExifReadRequest) ProtoMessage()

func (*ExifReadRequest) ProtoReflect added in v1.2.0

func (x *ExifReadRequest) ProtoReflect() protoreflect.Message

func (*ExifReadRequest) Reset added in v1.2.0

func (x *ExifReadRequest) Reset()

func (*ExifReadRequest) String added in v1.2.0

func (x *ExifReadRequest) String() string

type ExifReadResponse added in v1.2.0

type ExifReadResponse struct {
	Format     string       `protobuf:"bytes,1,opt,name=format,proto3" json:"format,omitempty"`
	Width      int32        `protobuf:"varint,2,opt,name=width,proto3" json:"width,omitempty"`
	Height     int32        `protobuf:"varint,3,opt,name=height,proto3" json:"height,omitempty"`
	GpsDecimal string       `protobuf:"bytes,4,opt,name=gps_decimal,json=gpsDecimal,proto3" json:"gps_decimal,omitempty"` // "lat, lng" in decimal degrees (empty if no GPS)
	GpsDms     string       `protobuf:"bytes,5,opt,name=gps_dms,json=gpsDms,proto3" json:"gps_dms,omitempty"`             // "48°51'30\"N, 2°17'40\"E" style
	MapsUrl    string       `protobuf:"bytes,6,opt,name=maps_url,json=mapsUrl,proto3" json:"maps_url,omitempty"`          // Google Maps link
	Fields     []*ExifField `protobuf:"bytes,7,rep,name=fields,proto3" json:"fields,omitempty"`
	Error      string       `protobuf:"bytes,8,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*ExifReadResponse) Descriptor deprecated added in v1.2.0

func (*ExifReadResponse) Descriptor() ([]byte, []int)

Deprecated: Use ExifReadResponse.ProtoReflect.Descriptor instead.

func (*ExifReadResponse) GetError added in v1.2.0

func (x *ExifReadResponse) GetError() string

func (*ExifReadResponse) GetFields added in v1.2.0

func (x *ExifReadResponse) GetFields() []*ExifField

func (*ExifReadResponse) GetFormat added in v1.2.0

func (x *ExifReadResponse) GetFormat() string

func (*ExifReadResponse) GetGpsDecimal added in v1.2.0

func (x *ExifReadResponse) GetGpsDecimal() string

func (*ExifReadResponse) GetGpsDms added in v1.2.0

func (x *ExifReadResponse) GetGpsDms() string

func (*ExifReadResponse) GetHeight added in v1.2.0

func (x *ExifReadResponse) GetHeight() int32

func (*ExifReadResponse) GetMapsUrl added in v1.2.0

func (x *ExifReadResponse) GetMapsUrl() string

func (*ExifReadResponse) GetWidth added in v1.2.0

func (x *ExifReadResponse) GetWidth() int32

func (*ExifReadResponse) ProtoMessage added in v1.2.0

func (*ExifReadResponse) ProtoMessage()

func (*ExifReadResponse) ProtoReflect added in v1.2.0

func (x *ExifReadResponse) ProtoReflect() protoreflect.Message

func (*ExifReadResponse) Reset added in v1.2.0

func (x *ExifReadResponse) Reset()

func (*ExifReadResponse) String added in v1.2.0

func (x *ExifReadResponse) String() string

type FileToBase64Request added in v1.2.0

type FileToBase64Request struct {
	Data     []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Filename string `protobuf:"bytes,2,opt,name=filename,proto3" json:"filename,omitempty"`
	WrapUri  bool   `protobuf:"varint,3,opt,name=wrap_uri,json=wrapUri,proto3" json:"wrap_uri,omitempty"` // prefix result with "data:<mime>;base64,"
	// contains filtered or unexported fields
}

func (*FileToBase64Request) Descriptor deprecated added in v1.2.0

func (*FileToBase64Request) Descriptor() ([]byte, []int)

Deprecated: Use FileToBase64Request.ProtoReflect.Descriptor instead.

func (*FileToBase64Request) GetData added in v1.2.0

func (x *FileToBase64Request) GetData() []byte

func (*FileToBase64Request) GetFilename added in v1.2.0

func (x *FileToBase64Request) GetFilename() string

func (*FileToBase64Request) GetWrapUri added in v1.2.0

func (x *FileToBase64Request) GetWrapUri() bool

func (*FileToBase64Request) ProtoMessage added in v1.2.0

func (*FileToBase64Request) ProtoMessage()

func (*FileToBase64Request) ProtoReflect added in v1.2.0

func (x *FileToBase64Request) ProtoReflect() protoreflect.Message

func (*FileToBase64Request) Reset added in v1.2.0

func (x *FileToBase64Request) Reset()

func (*FileToBase64Request) String added in v1.2.0

func (x *FileToBase64Request) String() string

type FileToBase64Response added in v1.2.0

type FileToBase64Response struct {
	Encoded  string `protobuf:"bytes,1,opt,name=encoded,proto3" json:"encoded,omitempty"`                // raw base64 (no prefix)
	DataUri  string `protobuf:"bytes,2,opt,name=data_uri,json=dataUri,proto3" json:"data_uri,omitempty"` // full data URI
	MimeType string `protobuf:"bytes,3,opt,name=mime_type,json=mimeType,proto3" json:"mime_type,omitempty"`
	Size     int32  `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
	Error    string `protobuf:"bytes,5,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*FileToBase64Response) Descriptor deprecated added in v1.2.0

func (*FileToBase64Response) Descriptor() ([]byte, []int)

Deprecated: Use FileToBase64Response.ProtoReflect.Descriptor instead.

func (*FileToBase64Response) GetDataUri added in v1.2.0

func (x *FileToBase64Response) GetDataUri() string

func (*FileToBase64Response) GetEncoded added in v1.2.0

func (x *FileToBase64Response) GetEncoded() string

func (*FileToBase64Response) GetError added in v1.2.0

func (x *FileToBase64Response) GetError() string

func (*FileToBase64Response) GetMimeType added in v1.2.0

func (x *FileToBase64Response) GetMimeType() string

func (*FileToBase64Response) GetSize added in v1.2.0

func (x *FileToBase64Response) GetSize() int32

func (*FileToBase64Response) ProtoMessage added in v1.2.0

func (*FileToBase64Response) ProtoMessage()

func (*FileToBase64Response) ProtoReflect added in v1.2.0

func (x *FileToBase64Response) ProtoReflect() protoreflect.Message

func (*FileToBase64Response) Reset added in v1.2.0

func (x *FileToBase64Response) Reset()

func (*FileToBase64Response) String added in v1.2.0

func (x *FileToBase64Response) String() string

type GitCheatSheetRequest added in v1.2.0

type GitCheatSheetRequest struct {
	Query    string `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"`       // search term (empty = all)
	Category string `protobuf:"bytes,2,opt,name=category,proto3" json:"category,omitempty"` // filter by category name (empty = all)
	// contains filtered or unexported fields
}

func (*GitCheatSheetRequest) Descriptor deprecated added in v1.2.0

func (*GitCheatSheetRequest) Descriptor() ([]byte, []int)

Deprecated: Use GitCheatSheetRequest.ProtoReflect.Descriptor instead.

func (*GitCheatSheetRequest) GetCategory added in v1.2.0

func (x *GitCheatSheetRequest) GetCategory() string

func (*GitCheatSheetRequest) GetQuery added in v1.2.0

func (x *GitCheatSheetRequest) GetQuery() string

func (*GitCheatSheetRequest) ProtoMessage added in v1.2.0

func (*GitCheatSheetRequest) ProtoMessage()

func (*GitCheatSheetRequest) ProtoReflect added in v1.2.0

func (x *GitCheatSheetRequest) ProtoReflect() protoreflect.Message

func (*GitCheatSheetRequest) Reset added in v1.2.0

func (x *GitCheatSheetRequest) Reset()

func (*GitCheatSheetRequest) String added in v1.2.0

func (x *GitCheatSheetRequest) String() string

type GitCheatSheetResponse added in v1.2.0

type GitCheatSheetResponse struct {
	Categories []*GitCmdCategory `protobuf:"bytes,1,rep,name=categories,proto3" json:"categories,omitempty"`
	// contains filtered or unexported fields
}

func (*GitCheatSheetResponse) Descriptor deprecated added in v1.2.0

func (*GitCheatSheetResponse) Descriptor() ([]byte, []int)

Deprecated: Use GitCheatSheetResponse.ProtoReflect.Descriptor instead.

func (*GitCheatSheetResponse) GetCategories added in v1.2.0

func (x *GitCheatSheetResponse) GetCategories() []*GitCmdCategory

func (*GitCheatSheetResponse) ProtoMessage added in v1.2.0

func (*GitCheatSheetResponse) ProtoMessage()

func (*GitCheatSheetResponse) ProtoReflect added in v1.2.0

func (x *GitCheatSheetResponse) ProtoReflect() protoreflect.Message

func (*GitCheatSheetResponse) Reset added in v1.2.0

func (x *GitCheatSheetResponse) Reset()

func (*GitCheatSheetResponse) String added in v1.2.0

func (x *GitCheatSheetResponse) String() string

type GitCmd added in v1.2.0

type GitCmd struct {
	Command     string   `protobuf:"bytes,1,opt,name=command,proto3" json:"command,omitempty"`
	Description string   `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Examples    []string `protobuf:"bytes,3,rep,name=examples,proto3" json:"examples,omitempty"`
	// contains filtered or unexported fields
}

func (*GitCmd) Descriptor deprecated added in v1.2.0

func (*GitCmd) Descriptor() ([]byte, []int)

Deprecated: Use GitCmd.ProtoReflect.Descriptor instead.

func (*GitCmd) GetCommand added in v1.2.0

func (x *GitCmd) GetCommand() string

func (*GitCmd) GetDescription added in v1.2.0

func (x *GitCmd) GetDescription() string

func (*GitCmd) GetExamples added in v1.2.0

func (x *GitCmd) GetExamples() []string

func (*GitCmd) ProtoMessage added in v1.2.0

func (*GitCmd) ProtoMessage()

func (*GitCmd) ProtoReflect added in v1.2.0

func (x *GitCmd) ProtoReflect() protoreflect.Message

func (*GitCmd) Reset added in v1.2.0

func (x *GitCmd) Reset()

func (*GitCmd) String added in v1.2.0

func (x *GitCmd) String() string

type GitCmdCategory added in v1.2.0

type GitCmdCategory struct {
	Name     string    `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Commands []*GitCmd `protobuf:"bytes,2,rep,name=commands,proto3" json:"commands,omitempty"`
	// contains filtered or unexported fields
}

func (*GitCmdCategory) Descriptor deprecated added in v1.2.0

func (*GitCmdCategory) Descriptor() ([]byte, []int)

Deprecated: Use GitCmdCategory.ProtoReflect.Descriptor instead.

func (*GitCmdCategory) GetCommands added in v1.2.0

func (x *GitCmdCategory) GetCommands() []*GitCmd

func (*GitCmdCategory) GetName added in v1.2.0

func (x *GitCmdCategory) GetName() string

func (*GitCmdCategory) ProtoMessage added in v1.2.0

func (*GitCmdCategory) ProtoMessage()

func (*GitCmdCategory) ProtoReflect added in v1.2.0

func (x *GitCmdCategory) ProtoReflect() protoreflect.Message

func (*GitCmdCategory) Reset added in v1.2.0

func (x *GitCmdCategory) Reset()

func (*GitCmdCategory) String added in v1.2.0

func (x *GitCmdCategory) String() string

type HashRequest

type HashRequest struct {
	Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Algo string `protobuf:"bytes,2,opt,name=algo,proto3" json:"algo,omitempty"` // "md5", "sha1", "sha256", "sha512", "bcrypt"
	Cost *int32 `protobuf:"varint,3,opt,name=cost,proto3,oneof" json:"cost,omitempty"`
	// contains filtered or unexported fields
}

func (*HashRequest) Descriptor deprecated

func (*HashRequest) Descriptor() ([]byte, []int)

Deprecated: Use HashRequest.ProtoReflect.Descriptor instead.

func (*HashRequest) GetAlgo

func (x *HashRequest) GetAlgo() string

func (*HashRequest) GetCost added in v1.1.4

func (x *HashRequest) GetCost() int32

func (*HashRequest) GetText

func (x *HashRequest) GetText() string

func (*HashRequest) ProtoMessage

func (*HashRequest) ProtoMessage()

func (*HashRequest) ProtoReflect

func (x *HashRequest) ProtoReflect() protoreflect.Message

func (*HashRequest) Reset

func (x *HashRequest) Reset()

func (*HashRequest) String

func (x *HashRequest) String() string

type HashResponse

type HashResponse struct {
	Hash string `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	// contains filtered or unexported fields
}

func (*HashResponse) Descriptor deprecated

func (*HashResponse) Descriptor() ([]byte, []int)

Deprecated: Use HashResponse.ProtoReflect.Descriptor instead.

func (*HashResponse) GetHash

func (x *HashResponse) GetHash() string

func (*HashResponse) ProtoMessage

func (*HashResponse) ProtoMessage()

func (*HashResponse) ProtoReflect

func (x *HashResponse) ProtoReflect() protoreflect.Message

func (*HashResponse) Reset

func (x *HashResponse) Reset()

func (*HashResponse) String

func (x *HashResponse) String() string

type HiddenCharInfo added in v1.2.0

type HiddenCharInfo struct {
	Name      string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Codepoint string `protobuf:"bytes,2,opt,name=codepoint,proto3" json:"codepoint,omitempty"`
	Count     int32  `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
	// contains filtered or unexported fields
}

func (*HiddenCharInfo) Descriptor deprecated added in v1.2.0

func (*HiddenCharInfo) Descriptor() ([]byte, []int)

Deprecated: Use HiddenCharInfo.ProtoReflect.Descriptor instead.

func (*HiddenCharInfo) GetCodepoint added in v1.2.0

func (x *HiddenCharInfo) GetCodepoint() string

func (*HiddenCharInfo) GetCount added in v1.2.0

func (x *HiddenCharInfo) GetCount() int32

func (*HiddenCharInfo) GetName added in v1.2.0

func (x *HiddenCharInfo) GetName() string

func (*HiddenCharInfo) ProtoMessage added in v1.2.0

func (*HiddenCharInfo) ProtoMessage()

func (*HiddenCharInfo) ProtoReflect added in v1.2.0

func (x *HiddenCharInfo) ProtoReflect() protoreflect.Message

func (*HiddenCharInfo) Reset added in v1.2.0

func (x *HiddenCharInfo) Reset()

func (*HiddenCharInfo) String added in v1.2.0

func (x *HiddenCharInfo) String() string

type HiddenCharsRequest added in v1.2.0

type HiddenCharsRequest struct {
	Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	// contains filtered or unexported fields
}

func (*HiddenCharsRequest) Descriptor deprecated added in v1.2.0

func (*HiddenCharsRequest) Descriptor() ([]byte, []int)

Deprecated: Use HiddenCharsRequest.ProtoReflect.Descriptor instead.

func (*HiddenCharsRequest) GetText added in v1.2.0

func (x *HiddenCharsRequest) GetText() string

func (*HiddenCharsRequest) ProtoMessage added in v1.2.0

func (*HiddenCharsRequest) ProtoMessage()

func (*HiddenCharsRequest) ProtoReflect added in v1.2.0

func (x *HiddenCharsRequest) ProtoReflect() protoreflect.Message

func (*HiddenCharsRequest) Reset added in v1.2.0

func (x *HiddenCharsRequest) Reset()

func (*HiddenCharsRequest) String added in v1.2.0

func (x *HiddenCharsRequest) String() string

type HiddenCharsResponse added in v1.2.0

type HiddenCharsResponse struct {
	HasHidden bool              `protobuf:"varint,1,opt,name=has_hidden,json=hasHidden,proto3" json:"has_hidden,omitempty"`
	Chars     []*HiddenCharInfo `protobuf:"bytes,2,rep,name=chars,proto3" json:"chars,omitempty"`
	Annotated string            `protobuf:"bytes,3,opt,name=annotated,proto3" json:"annotated,omitempty"` // original with [U+XXXX] markers
	Cleaned   string            `protobuf:"bytes,4,opt,name=cleaned,proto3" json:"cleaned,omitempty"`     // original with hidden chars removed
	Error     string            `protobuf:"bytes,5,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*HiddenCharsResponse) Descriptor deprecated added in v1.2.0

func (*HiddenCharsResponse) Descriptor() ([]byte, []int)

Deprecated: Use HiddenCharsResponse.ProtoReflect.Descriptor instead.

func (*HiddenCharsResponse) GetAnnotated added in v1.2.0

func (x *HiddenCharsResponse) GetAnnotated() string

func (*HiddenCharsResponse) GetChars added in v1.2.0

func (x *HiddenCharsResponse) GetChars() []*HiddenCharInfo

func (*HiddenCharsResponse) GetCleaned added in v1.2.0

func (x *HiddenCharsResponse) GetCleaned() string

func (*HiddenCharsResponse) GetError added in v1.2.0

func (x *HiddenCharsResponse) GetError() string

func (*HiddenCharsResponse) GetHasHidden added in v1.2.0

func (x *HiddenCharsResponse) GetHasHidden() bool

func (*HiddenCharsResponse) ProtoMessage added in v1.2.0

func (*HiddenCharsResponse) ProtoMessage()

func (*HiddenCharsResponse) ProtoReflect added in v1.2.0

func (x *HiddenCharsResponse) ProtoReflect() protoreflect.Message

func (*HiddenCharsResponse) Reset added in v1.2.0

func (x *HiddenCharsResponse) Reset()

func (*HiddenCharsResponse) String added in v1.2.0

func (x *HiddenCharsResponse) String() string

type HmacRequest added in v1.2.0

type HmacRequest struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	Secret  string `protobuf:"bytes,2,opt,name=secret,proto3" json:"secret,omitempty"`
	Algo    string `protobuf:"bytes,3,opt,name=algo,proto3" json:"algo,omitempty"` // "sha256", "sha512", "sha1", "md5"
	// contains filtered or unexported fields
}

func (*HmacRequest) Descriptor deprecated added in v1.2.0

func (*HmacRequest) Descriptor() ([]byte, []int)

Deprecated: Use HmacRequest.ProtoReflect.Descriptor instead.

func (*HmacRequest) GetAlgo added in v1.2.0

func (x *HmacRequest) GetAlgo() string

func (*HmacRequest) GetMessage added in v1.2.0

func (x *HmacRequest) GetMessage() string

func (*HmacRequest) GetSecret added in v1.2.0

func (x *HmacRequest) GetSecret() string

func (*HmacRequest) ProtoMessage added in v1.2.0

func (*HmacRequest) ProtoMessage()

func (*HmacRequest) ProtoReflect added in v1.2.0

func (x *HmacRequest) ProtoReflect() protoreflect.Message

func (*HmacRequest) Reset added in v1.2.0

func (x *HmacRequest) Reset()

func (*HmacRequest) String added in v1.2.0

func (x *HmacRequest) String() string

type HmacResponse added in v1.2.0

type HmacResponse struct {
	Hex    string `protobuf:"bytes,1,opt,name=hex,proto3" json:"hex,omitempty"`
	Base64 string `protobuf:"bytes,2,opt,name=base64,proto3" json:"base64,omitempty"`
	Error  string `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*HmacResponse) Descriptor deprecated added in v1.2.0

func (*HmacResponse) Descriptor() ([]byte, []int)

Deprecated: Use HmacResponse.ProtoReflect.Descriptor instead.

func (*HmacResponse) GetBase64 added in v1.2.0

func (x *HmacResponse) GetBase64() string

func (*HmacResponse) GetError added in v1.2.0

func (x *HmacResponse) GetError() string

func (*HmacResponse) GetHex added in v1.2.0

func (x *HmacResponse) GetHex() string

func (*HmacResponse) ProtoMessage added in v1.2.0

func (*HmacResponse) ProtoMessage()

func (*HmacResponse) ProtoReflect added in v1.2.0

func (x *HmacResponse) ProtoReflect() protoreflect.Message

func (*HmacResponse) Reset added in v1.2.0

func (x *HmacResponse) Reset()

func (*HmacResponse) String added in v1.2.0

func (x *HmacResponse) String() string

type HttpStatusEntry added in v1.2.0

type HttpStatusEntry struct {
	Code        int32  `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Name        string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Category    string `protobuf:"bytes,4,opt,name=category,proto3" json:"category,omitempty"`
	// contains filtered or unexported fields
}

func (*HttpStatusEntry) Descriptor deprecated added in v1.2.0

func (*HttpStatusEntry) Descriptor() ([]byte, []int)

Deprecated: Use HttpStatusEntry.ProtoReflect.Descriptor instead.

func (*HttpStatusEntry) GetCategory added in v1.2.0

func (x *HttpStatusEntry) GetCategory() string

func (*HttpStatusEntry) GetCode added in v1.2.0

func (x *HttpStatusEntry) GetCode() int32

func (*HttpStatusEntry) GetDescription added in v1.2.0

func (x *HttpStatusEntry) GetDescription() string

func (*HttpStatusEntry) GetName added in v1.2.0

func (x *HttpStatusEntry) GetName() string

func (*HttpStatusEntry) ProtoMessage added in v1.2.0

func (*HttpStatusEntry) ProtoMessage()

func (*HttpStatusEntry) ProtoReflect added in v1.2.0

func (x *HttpStatusEntry) ProtoReflect() protoreflect.Message

func (*HttpStatusEntry) Reset added in v1.2.0

func (x *HttpStatusEntry) Reset()

func (*HttpStatusEntry) String added in v1.2.0

func (x *HttpStatusEntry) String() string

type HttpStatusSearchRequest added in v1.2.0

type HttpStatusSearchRequest struct {
	Query    string `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"`       // code number, name keyword, or "" for all
	Category string `protobuf:"bytes,2,opt,name=category,proto3" json:"category,omitempty"` // "1xx", "2xx", "3xx", "4xx", "5xx", or "" for all
	// contains filtered or unexported fields
}

func (*HttpStatusSearchRequest) Descriptor deprecated added in v1.2.0

func (*HttpStatusSearchRequest) Descriptor() ([]byte, []int)

Deprecated: Use HttpStatusSearchRequest.ProtoReflect.Descriptor instead.

func (*HttpStatusSearchRequest) GetCategory added in v1.2.0

func (x *HttpStatusSearchRequest) GetCategory() string

func (*HttpStatusSearchRequest) GetQuery added in v1.2.0

func (x *HttpStatusSearchRequest) GetQuery() string

func (*HttpStatusSearchRequest) ProtoMessage added in v1.2.0

func (*HttpStatusSearchRequest) ProtoMessage()

func (*HttpStatusSearchRequest) ProtoReflect added in v1.2.0

func (x *HttpStatusSearchRequest) ProtoReflect() protoreflect.Message

func (*HttpStatusSearchRequest) Reset added in v1.2.0

func (x *HttpStatusSearchRequest) Reset()

func (*HttpStatusSearchRequest) String added in v1.2.0

func (x *HttpStatusSearchRequest) String() string

type HttpStatusSearchResponse added in v1.2.0

type HttpStatusSearchResponse struct {
	Entries []*HttpStatusEntry `protobuf:"bytes,1,rep,name=entries,proto3" json:"entries,omitempty"`
	// contains filtered or unexported fields
}

func (*HttpStatusSearchResponse) Descriptor deprecated added in v1.2.0

func (*HttpStatusSearchResponse) Descriptor() ([]byte, []int)

Deprecated: Use HttpStatusSearchResponse.ProtoReflect.Descriptor instead.

func (*HttpStatusSearchResponse) GetEntries added in v1.2.0

func (x *HttpStatusSearchResponse) GetEntries() []*HttpStatusEntry

func (*HttpStatusSearchResponse) ProtoMessage added in v1.2.0

func (*HttpStatusSearchResponse) ProtoMessage()

func (*HttpStatusSearchResponse) ProtoReflect added in v1.2.0

func (x *HttpStatusSearchResponse) ProtoReflect() protoreflect.Message

func (*HttpStatusSearchResponse) Reset added in v1.2.0

func (x *HttpStatusSearchResponse) Reset()

func (*HttpStatusSearchResponse) String added in v1.2.0

func (x *HttpStatusSearchResponse) String() string

type IpRequest

type IpRequest struct {
	Cidr string `protobuf:"bytes,1,opt,name=cidr,proto3" json:"cidr,omitempty"`
	// contains filtered or unexported fields
}

func (*IpRequest) Descriptor deprecated

func (*IpRequest) Descriptor() ([]byte, []int)

Deprecated: Use IpRequest.ProtoReflect.Descriptor instead.

func (*IpRequest) GetCidr

func (x *IpRequest) GetCidr() string

func (*IpRequest) ProtoMessage

func (*IpRequest) ProtoMessage()

func (*IpRequest) ProtoReflect

func (x *IpRequest) ProtoReflect() protoreflect.Message

func (*IpRequest) Reset

func (x *IpRequest) Reset()

func (*IpRequest) String

func (x *IpRequest) String() string

type IpResponse

type IpResponse struct {
	Network   string `protobuf:"bytes,1,opt,name=network,proto3" json:"network,omitempty"`
	Broadcast string `protobuf:"bytes,2,opt,name=broadcast,proto3" json:"broadcast,omitempty"`
	Netmask   string `protobuf:"bytes,3,opt,name=netmask,proto3" json:"netmask,omitempty"`
	FirstIp   string `protobuf:"bytes,4,opt,name=first_ip,json=firstIp,proto3" json:"first_ip,omitempty"`
	LastIp    string `protobuf:"bytes,5,opt,name=last_ip,json=lastIp,proto3" json:"last_ip,omitempty"`
	NumHosts  int64  `protobuf:"varint,6,opt,name=num_hosts,json=numHosts,proto3" json:"num_hosts,omitempty"`
	Error     string `protobuf:"bytes,7,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*IpResponse) Descriptor deprecated

func (*IpResponse) Descriptor() ([]byte, []int)

Deprecated: Use IpResponse.ProtoReflect.Descriptor instead.

func (*IpResponse) GetBroadcast

func (x *IpResponse) GetBroadcast() string

func (*IpResponse) GetError

func (x *IpResponse) GetError() string

func (*IpResponse) GetFirstIp

func (x *IpResponse) GetFirstIp() string

func (*IpResponse) GetLastIp

func (x *IpResponse) GetLastIp() string

func (*IpResponse) GetNetmask

func (x *IpResponse) GetNetmask() string

func (*IpResponse) GetNetwork

func (x *IpResponse) GetNetwork() string

func (*IpResponse) GetNumHosts

func (x *IpResponse) GetNumHosts() int64

func (*IpResponse) ProtoMessage

func (*IpResponse) ProtoMessage()

func (*IpResponse) ProtoReflect

func (x *IpResponse) ProtoReflect() protoreflect.Message

func (*IpResponse) Reset

func (x *IpResponse) Reset()

func (*IpResponse) String

func (x *IpResponse) String() string

type Ipv4ConvertRequest added in v1.2.0

type Ipv4ConvertRequest struct {
	Input string `protobuf:"bytes,1,opt,name=input,proto3" json:"input,omitempty"` // dotted "192.168.1.1", decimal "3232235777", hex "0xC0A80101", binary "11000000..."
	// contains filtered or unexported fields
}

func (*Ipv4ConvertRequest) Descriptor deprecated added in v1.2.0

func (*Ipv4ConvertRequest) Descriptor() ([]byte, []int)

Deprecated: Use Ipv4ConvertRequest.ProtoReflect.Descriptor instead.

func (*Ipv4ConvertRequest) GetInput added in v1.2.0

func (x *Ipv4ConvertRequest) GetInput() string

func (*Ipv4ConvertRequest) ProtoMessage added in v1.2.0

func (*Ipv4ConvertRequest) ProtoMessage()

func (*Ipv4ConvertRequest) ProtoReflect added in v1.2.0

func (x *Ipv4ConvertRequest) ProtoReflect() protoreflect.Message

func (*Ipv4ConvertRequest) Reset added in v1.2.0

func (x *Ipv4ConvertRequest) Reset()

func (*Ipv4ConvertRequest) String added in v1.2.0

func (x *Ipv4ConvertRequest) String() string

type Ipv4ConvertResponse added in v1.2.0

type Ipv4ConvertResponse struct {
	Dotted  string `protobuf:"bytes,1,opt,name=dotted,proto3" json:"dotted,omitempty"`   // "192.168.1.1"
	Decimal string `protobuf:"bytes,2,opt,name=decimal,proto3" json:"decimal,omitempty"` // "3232235777"
	Hex     string `protobuf:"bytes,3,opt,name=hex,proto3" json:"hex,omitempty"`         // "0xC0A80101"
	Binary  string `protobuf:"bytes,4,opt,name=binary,proto3" json:"binary,omitempty"`   // "11000000.10101000.00000001.00000001"
	Error   string `protobuf:"bytes,5,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*Ipv4ConvertResponse) Descriptor deprecated added in v1.2.0

func (*Ipv4ConvertResponse) Descriptor() ([]byte, []int)

Deprecated: Use Ipv4ConvertResponse.ProtoReflect.Descriptor instead.

func (*Ipv4ConvertResponse) GetBinary added in v1.2.0

func (x *Ipv4ConvertResponse) GetBinary() string

func (*Ipv4ConvertResponse) GetDecimal added in v1.2.0

func (x *Ipv4ConvertResponse) GetDecimal() string

func (*Ipv4ConvertResponse) GetDotted added in v1.2.0

func (x *Ipv4ConvertResponse) GetDotted() string

func (*Ipv4ConvertResponse) GetError added in v1.2.0

func (x *Ipv4ConvertResponse) GetError() string

func (*Ipv4ConvertResponse) GetHex added in v1.2.0

func (x *Ipv4ConvertResponse) GetHex() string

func (*Ipv4ConvertResponse) ProtoMessage added in v1.2.0

func (*Ipv4ConvertResponse) ProtoMessage()

func (*Ipv4ConvertResponse) ProtoReflect added in v1.2.0

func (x *Ipv4ConvertResponse) ProtoReflect() protoreflect.Message

func (*Ipv4ConvertResponse) Reset added in v1.2.0

func (x *Ipv4ConvertResponse) Reset()

func (*Ipv4ConvertResponse) String added in v1.2.0

func (x *Ipv4ConvertResponse) String() string

type Ipv4RangeRequest added in v1.2.0

type Ipv4RangeRequest struct {
	Start string `protobuf:"bytes,1,opt,name=start,proto3" json:"start,omitempty"` // dotted decimal
	End   string `protobuf:"bytes,2,opt,name=end,proto3" json:"end,omitempty"`     // dotted decimal
	// contains filtered or unexported fields
}

func (*Ipv4RangeRequest) Descriptor deprecated added in v1.2.0

func (*Ipv4RangeRequest) Descriptor() ([]byte, []int)

Deprecated: Use Ipv4RangeRequest.ProtoReflect.Descriptor instead.

func (*Ipv4RangeRequest) GetEnd added in v1.2.0

func (x *Ipv4RangeRequest) GetEnd() string

func (*Ipv4RangeRequest) GetStart added in v1.2.0

func (x *Ipv4RangeRequest) GetStart() string

func (*Ipv4RangeRequest) ProtoMessage added in v1.2.0

func (*Ipv4RangeRequest) ProtoMessage()

func (*Ipv4RangeRequest) ProtoReflect added in v1.2.0

func (x *Ipv4RangeRequest) ProtoReflect() protoreflect.Message

func (*Ipv4RangeRequest) Reset added in v1.2.0

func (x *Ipv4RangeRequest) Reset()

func (*Ipv4RangeRequest) String added in v1.2.0

func (x *Ipv4RangeRequest) String() string

type Ipv4RangeResponse added in v1.2.0

type Ipv4RangeResponse struct {
	Addresses []string `protobuf:"bytes,1,rep,name=addresses,proto3" json:"addresses,omitempty"` // individual IPs (capped at 256)
	Cidrs     []string `protobuf:"bytes,2,rep,name=cidrs,proto3" json:"cidrs,omitempty"`         // CIDR summary
	Total     int64    `protobuf:"varint,3,opt,name=total,proto3" json:"total,omitempty"`        // total count in range
	Error     string   `protobuf:"bytes,4,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*Ipv4RangeResponse) Descriptor deprecated added in v1.2.0

func (*Ipv4RangeResponse) Descriptor() ([]byte, []int)

Deprecated: Use Ipv4RangeResponse.ProtoReflect.Descriptor instead.

func (*Ipv4RangeResponse) GetAddresses added in v1.2.0

func (x *Ipv4RangeResponse) GetAddresses() []string

func (*Ipv4RangeResponse) GetCidrs added in v1.2.0

func (x *Ipv4RangeResponse) GetCidrs() []string

func (*Ipv4RangeResponse) GetError added in v1.2.0

func (x *Ipv4RangeResponse) GetError() string

func (*Ipv4RangeResponse) GetTotal added in v1.2.0

func (x *Ipv4RangeResponse) GetTotal() int64

func (*Ipv4RangeResponse) ProtoMessage added in v1.2.0

func (*Ipv4RangeResponse) ProtoMessage()

func (*Ipv4RangeResponse) ProtoReflect added in v1.2.0

func (x *Ipv4RangeResponse) ProtoReflect() protoreflect.Message

func (*Ipv4RangeResponse) Reset added in v1.2.0

func (x *Ipv4RangeResponse) Reset()

func (*Ipv4RangeResponse) String added in v1.2.0

func (x *Ipv4RangeResponse) String() string

type JsonFormatRequest

type JsonFormatRequest struct {
	Text     string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Indent   string `protobuf:"bytes,2,opt,name=indent,proto3" json:"indent,omitempty"` // "2", "4", "tab", or "min" (minify)
	SortKeys bool   `protobuf:"varint,3,opt,name=sort_keys,json=sortKeys,proto3" json:"sort_keys,omitempty"`
	// contains filtered or unexported fields
}

func (*JsonFormatRequest) Descriptor deprecated

func (*JsonFormatRequest) Descriptor() ([]byte, []int)

Deprecated: Use JsonFormatRequest.ProtoReflect.Descriptor instead.

func (*JsonFormatRequest) GetIndent

func (x *JsonFormatRequest) GetIndent() string

func (*JsonFormatRequest) GetSortKeys

func (x *JsonFormatRequest) GetSortKeys() bool

func (*JsonFormatRequest) GetText

func (x *JsonFormatRequest) GetText() string

func (*JsonFormatRequest) ProtoMessage

func (*JsonFormatRequest) ProtoMessage()

func (*JsonFormatRequest) ProtoReflect

func (x *JsonFormatRequest) ProtoReflect() protoreflect.Message

func (*JsonFormatRequest) Reset

func (x *JsonFormatRequest) Reset()

func (*JsonFormatRequest) String

func (x *JsonFormatRequest) String() string

type JsonFormatResponse

type JsonFormatResponse struct {
	Text  string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*JsonFormatResponse) Descriptor deprecated

func (*JsonFormatResponse) Descriptor() ([]byte, []int)

Deprecated: Use JsonFormatResponse.ProtoReflect.Descriptor instead.

func (*JsonFormatResponse) GetError

func (x *JsonFormatResponse) GetError() string

func (*JsonFormatResponse) GetText

func (x *JsonFormatResponse) GetText() string

func (*JsonFormatResponse) ProtoMessage

func (*JsonFormatResponse) ProtoMessage()

func (*JsonFormatResponse) ProtoReflect

func (x *JsonFormatResponse) ProtoReflect() protoreflect.Message

func (*JsonFormatResponse) Reset

func (x *JsonFormatResponse) Reset()

func (*JsonFormatResponse) String

func (x *JsonFormatResponse) String() string

type JsonToGoRequest

type JsonToGoRequest struct {
	Json       string `protobuf:"bytes,1,opt,name=json,proto3" json:"json,omitempty"`
	StructName string `protobuf:"bytes,2,opt,name=struct_name,json=structName,proto3" json:"struct_name,omitempty"`
	// contains filtered or unexported fields
}

func (*JsonToGoRequest) Descriptor deprecated

func (*JsonToGoRequest) Descriptor() ([]byte, []int)

Deprecated: Use JsonToGoRequest.ProtoReflect.Descriptor instead.

func (*JsonToGoRequest) GetJson

func (x *JsonToGoRequest) GetJson() string

func (*JsonToGoRequest) GetStructName

func (x *JsonToGoRequest) GetStructName() string

func (*JsonToGoRequest) ProtoMessage

func (*JsonToGoRequest) ProtoMessage()

func (*JsonToGoRequest) ProtoReflect

func (x *JsonToGoRequest) ProtoReflect() protoreflect.Message

func (*JsonToGoRequest) Reset

func (x *JsonToGoRequest) Reset()

func (*JsonToGoRequest) String

func (x *JsonToGoRequest) String() string

type JsonToGoResponse

type JsonToGoResponse struct {
	GoCode string `protobuf:"bytes,1,opt,name=go_code,json=goCode,proto3" json:"go_code,omitempty"`
	Error  string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*JsonToGoResponse) Descriptor deprecated

func (*JsonToGoResponse) Descriptor() ([]byte, []int)

Deprecated: Use JsonToGoResponse.ProtoReflect.Descriptor instead.

func (*JsonToGoResponse) GetError

func (x *JsonToGoResponse) GetError() string

func (*JsonToGoResponse) GetGoCode

func (x *JsonToGoResponse) GetGoCode() string

func (*JsonToGoResponse) ProtoMessage

func (*JsonToGoResponse) ProtoMessage()

func (*JsonToGoResponse) ProtoReflect

func (x *JsonToGoResponse) ProtoReflect() protoreflect.Message

func (*JsonToGoResponse) Reset

func (x *JsonToGoResponse) Reset()

func (*JsonToGoResponse) String

func (x *JsonToGoResponse) String() string

type JwtRequest

type JwtRequest struct {
	Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	// contains filtered or unexported fields
}

func (*JwtRequest) Descriptor deprecated

func (*JwtRequest) Descriptor() ([]byte, []int)

Deprecated: Use JwtRequest.ProtoReflect.Descriptor instead.

func (*JwtRequest) GetToken

func (x *JwtRequest) GetToken() string

func (*JwtRequest) ProtoMessage

func (*JwtRequest) ProtoMessage()

func (*JwtRequest) ProtoReflect

func (x *JwtRequest) ProtoReflect() protoreflect.Message

func (*JwtRequest) Reset

func (x *JwtRequest) Reset()

func (*JwtRequest) String

func (x *JwtRequest) String() string

type JwtResponse

type JwtResponse struct {
	Header  string `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	Payload string `protobuf:"bytes,2,opt,name=payload,proto3" json:"payload,omitempty"`
	Error   string `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*JwtResponse) Descriptor deprecated

func (*JwtResponse) Descriptor() ([]byte, []int)

Deprecated: Use JwtResponse.ProtoReflect.Descriptor instead.

func (*JwtResponse) GetError

func (x *JwtResponse) GetError() string

func (*JwtResponse) GetHeader

func (x *JwtResponse) GetHeader() string

func (*JwtResponse) GetPayload

func (x *JwtResponse) GetPayload() string

func (*JwtResponse) ProtoMessage

func (*JwtResponse) ProtoMessage()

func (*JwtResponse) ProtoReflect

func (x *JwtResponse) ProtoReflect() protoreflect.Message

func (*JwtResponse) Reset

func (x *JwtResponse) Reset()

func (*JwtResponse) String

func (x *JwtResponse) String() string

type LeapYearEntry added in v1.2.0

type LeapYearEntry struct {
	Year   int32 `protobuf:"varint,1,opt,name=year,proto3" json:"year,omitempty"`
	IsLeap bool  `protobuf:"varint,2,opt,name=is_leap,json=isLeap,proto3" json:"is_leap,omitempty"`
	// contains filtered or unexported fields
}

func (*LeapYearEntry) Descriptor deprecated added in v1.2.0

func (*LeapYearEntry) Descriptor() ([]byte, []int)

Deprecated: Use LeapYearEntry.ProtoReflect.Descriptor instead.

func (*LeapYearEntry) GetIsLeap added in v1.2.0

func (x *LeapYearEntry) GetIsLeap() bool

func (*LeapYearEntry) GetYear added in v1.2.0

func (x *LeapYearEntry) GetYear() int32

func (*LeapYearEntry) ProtoMessage added in v1.2.0

func (*LeapYearEntry) ProtoMessage()

func (*LeapYearEntry) ProtoReflect added in v1.2.0

func (x *LeapYearEntry) ProtoReflect() protoreflect.Message

func (*LeapYearEntry) Reset added in v1.2.0

func (x *LeapYearEntry) Reset()

func (*LeapYearEntry) String added in v1.2.0

func (x *LeapYearEntry) String() string

type LeapYearRequest added in v1.2.0

type LeapYearRequest struct {
	Input string `protobuf:"bytes,1,opt,name=input,proto3" json:"input,omitempty"` // single year, comma list, or "YYYY-YYYY" range
	// contains filtered or unexported fields
}

func (*LeapYearRequest) Descriptor deprecated added in v1.2.0

func (*LeapYearRequest) Descriptor() ([]byte, []int)

Deprecated: Use LeapYearRequest.ProtoReflect.Descriptor instead.

func (*LeapYearRequest) GetInput added in v1.2.0

func (x *LeapYearRequest) GetInput() string

func (*LeapYearRequest) ProtoMessage added in v1.2.0

func (*LeapYearRequest) ProtoMessage()

func (*LeapYearRequest) ProtoReflect added in v1.2.0

func (x *LeapYearRequest) ProtoReflect() protoreflect.Message

func (*LeapYearRequest) Reset added in v1.2.0

func (x *LeapYearRequest) Reset()

func (*LeapYearRequest) String added in v1.2.0

func (x *LeapYearRequest) String() string

type LeapYearResponse added in v1.2.0

type LeapYearResponse struct {
	Results   []*LeapYearEntry `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
	LeapCount int32            `protobuf:"varint,2,opt,name=leap_count,json=leapCount,proto3" json:"leap_count,omitempty"`
	Error     string           `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*LeapYearResponse) Descriptor deprecated added in v1.2.0

func (*LeapYearResponse) Descriptor() ([]byte, []int)

Deprecated: Use LeapYearResponse.ProtoReflect.Descriptor instead.

func (*LeapYearResponse) GetError added in v1.2.0

func (x *LeapYearResponse) GetError() string

func (*LeapYearResponse) GetLeapCount added in v1.2.0

func (x *LeapYearResponse) GetLeapCount() int32

func (*LeapYearResponse) GetResults added in v1.2.0

func (x *LeapYearResponse) GetResults() []*LeapYearEntry

func (*LeapYearResponse) ProtoMessage added in v1.2.0

func (*LeapYearResponse) ProtoMessage()

func (*LeapYearResponse) ProtoReflect added in v1.2.0

func (x *LeapYearResponse) ProtoReflect() protoreflect.Message

func (*LeapYearResponse) Reset added in v1.2.0

func (x *LeapYearResponse) Reset()

func (*LeapYearResponse) String added in v1.2.0

func (x *LeapYearResponse) String() string

type ListAction added in v1.2.0

type ListAction int32
const (
	ListAction_LIST_SORT_AZ      ListAction = 0
	ListAction_LIST_SORT_ZA      ListAction = 1
	ListAction_LIST_SORT_NUMERIC ListAction = 2
	ListAction_LIST_SHUFFLE      ListAction = 3
	ListAction_LIST_DEDUPE       ListAction = 4
	ListAction_LIST_UNIQUE_ONLY  ListAction = 5
	ListAction_LIST_DUPLICATES   ListAction = 6
	ListAction_LIST_FREQUENCY    ListAction = 7
	ListAction_LIST_REVERSE      ListAction = 8
	ListAction_LIST_TRIM         ListAction = 9
	ListAction_LIST_REMOVE_EMPTY ListAction = 10
)

func (ListAction) Descriptor added in v1.2.0

func (ListAction) Descriptor() protoreflect.EnumDescriptor

func (ListAction) Enum added in v1.2.0

func (x ListAction) Enum() *ListAction

func (ListAction) EnumDescriptor deprecated added in v1.2.0

func (ListAction) EnumDescriptor() ([]byte, []int)

Deprecated: Use ListAction.Descriptor instead.

func (ListAction) Number added in v1.2.0

func (x ListAction) Number() protoreflect.EnumNumber

func (ListAction) String added in v1.2.0

func (x ListAction) String() string

func (ListAction) Type added in v1.2.0

type ListFreqItem added in v1.2.0

type ListFreqItem struct {
	Line  string `protobuf:"bytes,1,opt,name=line,proto3" json:"line,omitempty"`
	Count int32  `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
	// contains filtered or unexported fields
}

func (*ListFreqItem) Descriptor deprecated added in v1.2.0

func (*ListFreqItem) Descriptor() ([]byte, []int)

Deprecated: Use ListFreqItem.ProtoReflect.Descriptor instead.

func (*ListFreqItem) GetCount added in v1.2.0

func (x *ListFreqItem) GetCount() int32

func (*ListFreqItem) GetLine added in v1.2.0

func (x *ListFreqItem) GetLine() string

func (*ListFreqItem) ProtoMessage added in v1.2.0

func (*ListFreqItem) ProtoMessage()

func (*ListFreqItem) ProtoReflect added in v1.2.0

func (x *ListFreqItem) ProtoReflect() protoreflect.Message

func (*ListFreqItem) Reset added in v1.2.0

func (x *ListFreqItem) Reset()

func (*ListFreqItem) String added in v1.2.0

func (x *ListFreqItem) String() string

type ListRequest added in v1.2.0

type ListRequest struct {
	Text            string     `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Action          ListAction `protobuf:"varint,2,opt,name=action,proto3,enum=privutil.ListAction" json:"action,omitempty"`
	CaseInsensitive bool       `protobuf:"varint,3,opt,name=case_insensitive,json=caseInsensitive,proto3" json:"case_insensitive,omitempty"`
	// contains filtered or unexported fields
}

func (*ListRequest) Descriptor deprecated added in v1.2.0

func (*ListRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListRequest.ProtoReflect.Descriptor instead.

func (*ListRequest) GetAction added in v1.2.0

func (x *ListRequest) GetAction() ListAction

func (*ListRequest) GetCaseInsensitive added in v1.2.0

func (x *ListRequest) GetCaseInsensitive() bool

func (*ListRequest) GetText added in v1.2.0

func (x *ListRequest) GetText() string

func (*ListRequest) ProtoMessage added in v1.2.0

func (*ListRequest) ProtoMessage()

func (*ListRequest) ProtoReflect added in v1.2.0

func (x *ListRequest) ProtoReflect() protoreflect.Message

func (*ListRequest) Reset added in v1.2.0

func (x *ListRequest) Reset()

func (*ListRequest) String added in v1.2.0

func (x *ListRequest) String() string

type ListResponse added in v1.2.0

type ListResponse struct {
	Result      string          `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
	InputCount  int32           `protobuf:"varint,2,opt,name=input_count,json=inputCount,proto3" json:"input_count,omitempty"`
	OutputCount int32           `protobuf:"varint,3,opt,name=output_count,json=outputCount,proto3" json:"output_count,omitempty"`
	Frequency   []*ListFreqItem `protobuf:"bytes,4,rep,name=frequency,proto3" json:"frequency,omitempty"`
	Error       string          `protobuf:"bytes,5,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*ListResponse) Descriptor deprecated added in v1.2.0

func (*ListResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListResponse.ProtoReflect.Descriptor instead.

func (*ListResponse) GetError added in v1.2.0

func (x *ListResponse) GetError() string

func (*ListResponse) GetFrequency added in v1.2.0

func (x *ListResponse) GetFrequency() []*ListFreqItem

func (*ListResponse) GetInputCount added in v1.2.0

func (x *ListResponse) GetInputCount() int32

func (*ListResponse) GetOutputCount added in v1.2.0

func (x *ListResponse) GetOutputCount() int32

func (*ListResponse) GetResult added in v1.2.0

func (x *ListResponse) GetResult() string

func (*ListResponse) ProtoMessage added in v1.2.0

func (*ListResponse) ProtoMessage()

func (*ListResponse) ProtoReflect added in v1.2.0

func (x *ListResponse) ProtoReflect() protoreflect.Message

func (*ListResponse) Reset added in v1.2.0

func (x *ListResponse) Reset()

func (*ListResponse) String added in v1.2.0

func (x *ListResponse) String() string

type LoremRequest

type LoremRequest struct {
	Type  string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` // "word", "sentence", "paragraph"
	Count int32  `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
	// contains filtered or unexported fields
}

func (*LoremRequest) Descriptor deprecated

func (*LoremRequest) Descriptor() ([]byte, []int)

Deprecated: Use LoremRequest.ProtoReflect.Descriptor instead.

func (*LoremRequest) GetCount

func (x *LoremRequest) GetCount() int32

func (*LoremRequest) GetType

func (x *LoremRequest) GetType() string

func (*LoremRequest) ProtoMessage

func (*LoremRequest) ProtoMessage()

func (*LoremRequest) ProtoReflect

func (x *LoremRequest) ProtoReflect() protoreflect.Message

func (*LoremRequest) Reset

func (x *LoremRequest) Reset()

func (*LoremRequest) String

func (x *LoremRequest) String() string

type LoremResponse

type LoremResponse struct {
	Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	// contains filtered or unexported fields
}

func (*LoremResponse) Descriptor deprecated

func (*LoremResponse) Descriptor() ([]byte, []int)

Deprecated: Use LoremResponse.ProtoReflect.Descriptor instead.

func (*LoremResponse) GetText

func (x *LoremResponse) GetText() string

func (*LoremResponse) ProtoMessage

func (*LoremResponse) ProtoMessage()

func (*LoremResponse) ProtoReflect

func (x *LoremResponse) ProtoReflect() protoreflect.Message

func (*LoremResponse) Reset

func (x *LoremResponse) Reset()

func (*LoremResponse) String

func (x *LoremResponse) String() string

type MacRequest added in v1.2.0

type MacRequest struct {
	Count     int32  `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
	Separator string `protobuf:"bytes,2,opt,name=separator,proto3" json:"separator,omitempty"` // ":", "-", "." (Cisco), or "" (none)
	Uppercase bool   `protobuf:"varint,3,opt,name=uppercase,proto3" json:"uppercase,omitempty"`
	Oui       string `protobuf:"bytes,4,opt,name=oui,proto3" json:"oui,omitempty"`          // optional 3-byte OUI prefix e.g. "00:1A:2B"
	Unicast   bool   `protobuf:"varint,5,opt,name=unicast,proto3" json:"unicast,omitempty"` // ensure unicast bit is set (bit 0 of first byte = 0)
	Local     bool   `protobuf:"varint,6,opt,name=local,proto3" json:"local,omitempty"`     // set locally-administered bit (bit 1 of first byte = 1)
	// contains filtered or unexported fields
}

func (*MacRequest) Descriptor deprecated added in v1.2.0

func (*MacRequest) Descriptor() ([]byte, []int)

Deprecated: Use MacRequest.ProtoReflect.Descriptor instead.

func (*MacRequest) GetCount added in v1.2.0

func (x *MacRequest) GetCount() int32

func (*MacRequest) GetLocal added in v1.2.0

func (x *MacRequest) GetLocal() bool

func (*MacRequest) GetOui added in v1.2.0

func (x *MacRequest) GetOui() string

func (*MacRequest) GetSeparator added in v1.2.0

func (x *MacRequest) GetSeparator() string

func (*MacRequest) GetUnicast added in v1.2.0

func (x *MacRequest) GetUnicast() bool

func (*MacRequest) GetUppercase added in v1.2.0

func (x *MacRequest) GetUppercase() bool

func (*MacRequest) ProtoMessage added in v1.2.0

func (*MacRequest) ProtoMessage()

func (*MacRequest) ProtoReflect added in v1.2.0

func (x *MacRequest) ProtoReflect() protoreflect.Message

func (*MacRequest) Reset added in v1.2.0

func (x *MacRequest) Reset()

func (*MacRequest) String added in v1.2.0

func (x *MacRequest) String() string

type MacResponse added in v1.2.0

type MacResponse struct {
	Addresses []string `protobuf:"bytes,1,rep,name=addresses,proto3" json:"addresses,omitempty"`
	Error     string   `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*MacResponse) Descriptor deprecated added in v1.2.0

func (*MacResponse) Descriptor() ([]byte, []int)

Deprecated: Use MacResponse.ProtoReflect.Descriptor instead.

func (*MacResponse) GetAddresses added in v1.2.0

func (x *MacResponse) GetAddresses() []string

func (*MacResponse) GetError added in v1.2.0

func (x *MacResponse) GetError() string

func (*MacResponse) ProtoMessage added in v1.2.0

func (*MacResponse) ProtoMessage()

func (*MacResponse) ProtoReflect added in v1.2.0

func (x *MacResponse) ProtoReflect() protoreflect.Message

func (*MacResponse) Reset added in v1.2.0

func (x *MacResponse) Reset()

func (*MacResponse) String added in v1.2.0

func (x *MacResponse) String() string

type MathEvalRequest added in v1.2.0

type MathEvalRequest struct {
	Expression string          `protobuf:"bytes,1,opt,name=expression,proto3" json:"expression,omitempty"`
	Variables  []*MathVariable `protobuf:"bytes,2,rep,name=variables,proto3" json:"variables,omitempty"`
	Precision  int32           `protobuf:"varint,3,opt,name=precision,proto3" json:"precision,omitempty"` // 0-15 decimal places, default 10
	Degrees    bool            `protobuf:"varint,4,opt,name=degrees,proto3" json:"degrees,omitempty"`     // if true, trig input/output in degrees
	// contains filtered or unexported fields
}

func (*MathEvalRequest) Descriptor deprecated added in v1.2.0

func (*MathEvalRequest) Descriptor() ([]byte, []int)

Deprecated: Use MathEvalRequest.ProtoReflect.Descriptor instead.

func (*MathEvalRequest) GetDegrees added in v1.2.0

func (x *MathEvalRequest) GetDegrees() bool

func (*MathEvalRequest) GetExpression added in v1.2.0

func (x *MathEvalRequest) GetExpression() string

func (*MathEvalRequest) GetPrecision added in v1.2.0

func (x *MathEvalRequest) GetPrecision() int32

func (*MathEvalRequest) GetVariables added in v1.2.0

func (x *MathEvalRequest) GetVariables() []*MathVariable

func (*MathEvalRequest) ProtoMessage added in v1.2.0

func (*MathEvalRequest) ProtoMessage()

func (*MathEvalRequest) ProtoReflect added in v1.2.0

func (x *MathEvalRequest) ProtoReflect() protoreflect.Message

func (*MathEvalRequest) Reset added in v1.2.0

func (x *MathEvalRequest) Reset()

func (*MathEvalRequest) String added in v1.2.0

func (x *MathEvalRequest) String() string

type MathEvalResponse added in v1.2.0

type MathEvalResponse struct {
	Result   string  `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
	RawValue float64 `protobuf:"fixed64,2,opt,name=raw_value,json=rawValue,proto3" json:"raw_value,omitempty"`
	Error    string  `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*MathEvalResponse) Descriptor deprecated added in v1.2.0

func (*MathEvalResponse) Descriptor() ([]byte, []int)

Deprecated: Use MathEvalResponse.ProtoReflect.Descriptor instead.

func (*MathEvalResponse) GetError added in v1.2.0

func (x *MathEvalResponse) GetError() string

func (*MathEvalResponse) GetRawValue added in v1.2.0

func (x *MathEvalResponse) GetRawValue() float64

func (*MathEvalResponse) GetResult added in v1.2.0

func (x *MathEvalResponse) GetResult() string

func (*MathEvalResponse) ProtoMessage added in v1.2.0

func (*MathEvalResponse) ProtoMessage()

func (*MathEvalResponse) ProtoReflect added in v1.2.0

func (x *MathEvalResponse) ProtoReflect() protoreflect.Message

func (*MathEvalResponse) Reset added in v1.2.0

func (x *MathEvalResponse) Reset()

func (*MathEvalResponse) String added in v1.2.0

func (x *MathEvalResponse) String() string

type MathVariable added in v1.2.0

type MathVariable struct {
	Name  string  `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Value float64 `protobuf:"fixed64,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*MathVariable) Descriptor deprecated added in v1.2.0

func (*MathVariable) Descriptor() ([]byte, []int)

Deprecated: Use MathVariable.ProtoReflect.Descriptor instead.

func (*MathVariable) GetName added in v1.2.0

func (x *MathVariable) GetName() string

func (*MathVariable) GetValue added in v1.2.0

func (x *MathVariable) GetValue() float64

func (*MathVariable) ProtoMessage added in v1.2.0

func (*MathVariable) ProtoMessage()

func (*MathVariable) ProtoReflect added in v1.2.0

func (x *MathVariable) ProtoReflect() protoreflect.Message

func (*MathVariable) Reset added in v1.2.0

func (x *MathVariable) Reset()

func (*MathVariable) String added in v1.2.0

func (x *MathVariable) String() string

type MimeEntry added in v1.2.0

type MimeEntry struct {
	MimeType    string `protobuf:"bytes,1,opt,name=mime_type,json=mimeType,proto3" json:"mime_type,omitempty"`
	Extensions  string `protobuf:"bytes,2,opt,name=extensions,proto3" json:"extensions,omitempty"` // comma-separated
	Category    string `protobuf:"bytes,3,opt,name=category,proto3" json:"category,omitempty"`
	Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
	// contains filtered or unexported fields
}

func (*MimeEntry) Descriptor deprecated added in v1.2.0

func (*MimeEntry) Descriptor() ([]byte, []int)

Deprecated: Use MimeEntry.ProtoReflect.Descriptor instead.

func (*MimeEntry) GetCategory added in v1.2.0

func (x *MimeEntry) GetCategory() string

func (*MimeEntry) GetDescription added in v1.2.0

func (x *MimeEntry) GetDescription() string

func (*MimeEntry) GetExtensions added in v1.2.0

func (x *MimeEntry) GetExtensions() string

func (*MimeEntry) GetMimeType added in v1.2.0

func (x *MimeEntry) GetMimeType() string

func (*MimeEntry) ProtoMessage added in v1.2.0

func (*MimeEntry) ProtoMessage()

func (*MimeEntry) ProtoReflect added in v1.2.0

func (x *MimeEntry) ProtoReflect() protoreflect.Message

func (*MimeEntry) Reset added in v1.2.0

func (x *MimeEntry) Reset()

func (*MimeEntry) String added in v1.2.0

func (x *MimeEntry) String() string

type MimeLookupRequest added in v1.2.0

type MimeLookupRequest struct {
	Query string `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"` // extension (with or without dot) or MIME type or partial
	// contains filtered or unexported fields
}

func (*MimeLookupRequest) Descriptor deprecated added in v1.2.0

func (*MimeLookupRequest) Descriptor() ([]byte, []int)

Deprecated: Use MimeLookupRequest.ProtoReflect.Descriptor instead.

func (*MimeLookupRequest) GetQuery added in v1.2.0

func (x *MimeLookupRequest) GetQuery() string

func (*MimeLookupRequest) ProtoMessage added in v1.2.0

func (*MimeLookupRequest) ProtoMessage()

func (*MimeLookupRequest) ProtoReflect added in v1.2.0

func (x *MimeLookupRequest) ProtoReflect() protoreflect.Message

func (*MimeLookupRequest) Reset added in v1.2.0

func (x *MimeLookupRequest) Reset()

func (*MimeLookupRequest) String added in v1.2.0

func (x *MimeLookupRequest) String() string

type MimeLookupResponse added in v1.2.0

type MimeLookupResponse struct {
	Entries []*MimeEntry `protobuf:"bytes,1,rep,name=entries,proto3" json:"entries,omitempty"`
	Error   string       `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*MimeLookupResponse) Descriptor deprecated added in v1.2.0

func (*MimeLookupResponse) Descriptor() ([]byte, []int)

Deprecated: Use MimeLookupResponse.ProtoReflect.Descriptor instead.

func (*MimeLookupResponse) GetEntries added in v1.2.0

func (x *MimeLookupResponse) GetEntries() []*MimeEntry

func (*MimeLookupResponse) GetError added in v1.2.0

func (x *MimeLookupResponse) GetError() string

func (*MimeLookupResponse) ProtoMessage added in v1.2.0

func (*MimeLookupResponse) ProtoMessage()

func (*MimeLookupResponse) ProtoReflect added in v1.2.0

func (x *MimeLookupResponse) ProtoReflect() protoreflect.Message

func (*MimeLookupResponse) Reset added in v1.2.0

func (x *MimeLookupResponse) Reset()

func (*MimeLookupResponse) String added in v1.2.0

func (x *MimeLookupResponse) String() string

type MorseRequest added in v1.2.0

type MorseRequest struct {
	Text   string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Action string `protobuf:"bytes,2,opt,name=action,proto3" json:"action,omitempty"` // "encode" or "decode"
	// contains filtered or unexported fields
}

func (*MorseRequest) Descriptor deprecated added in v1.2.0

func (*MorseRequest) Descriptor() ([]byte, []int)

Deprecated: Use MorseRequest.ProtoReflect.Descriptor instead.

func (*MorseRequest) GetAction added in v1.2.0

func (x *MorseRequest) GetAction() string

func (*MorseRequest) GetText added in v1.2.0

func (x *MorseRequest) GetText() string

func (*MorseRequest) ProtoMessage added in v1.2.0

func (*MorseRequest) ProtoMessage()

func (*MorseRequest) ProtoReflect added in v1.2.0

func (x *MorseRequest) ProtoReflect() protoreflect.Message

func (*MorseRequest) Reset added in v1.2.0

func (x *MorseRequest) Reset()

func (*MorseRequest) String added in v1.2.0

func (x *MorseRequest) String() string

type MorseResponse added in v1.2.0

type MorseResponse struct {
	Result string `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
	Error  string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*MorseResponse) Descriptor deprecated added in v1.2.0

func (*MorseResponse) Descriptor() ([]byte, []int)

Deprecated: Use MorseResponse.ProtoReflect.Descriptor instead.

func (*MorseResponse) GetError added in v1.2.0

func (x *MorseResponse) GetError() string

func (*MorseResponse) GetResult added in v1.2.0

func (x *MorseResponse) GetResult() string

func (*MorseResponse) ProtoMessage added in v1.2.0

func (*MorseResponse) ProtoMessage()

func (*MorseResponse) ProtoReflect added in v1.2.0

func (x *MorseResponse) ProtoReflect() protoreflect.Message

func (*MorseResponse) Reset added in v1.2.0

func (x *MorseResponse) Reset()

func (*MorseResponse) String added in v1.2.0

func (x *MorseResponse) String() string

type NatoRequest added in v1.2.0

type NatoRequest struct {
	Text   string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Action string `protobuf:"bytes,2,opt,name=action,proto3" json:"action,omitempty"` // "encode" or "decode"
	// contains filtered or unexported fields
}

func (*NatoRequest) Descriptor deprecated added in v1.2.0

func (*NatoRequest) Descriptor() ([]byte, []int)

Deprecated: Use NatoRequest.ProtoReflect.Descriptor instead.

func (*NatoRequest) GetAction added in v1.2.0

func (x *NatoRequest) GetAction() string

func (*NatoRequest) GetText added in v1.2.0

func (x *NatoRequest) GetText() string

func (*NatoRequest) ProtoMessage added in v1.2.0

func (*NatoRequest) ProtoMessage()

func (*NatoRequest) ProtoReflect added in v1.2.0

func (x *NatoRequest) ProtoReflect() protoreflect.Message

func (*NatoRequest) Reset added in v1.2.0

func (x *NatoRequest) Reset()

func (*NatoRequest) String added in v1.2.0

func (x *NatoRequest) String() string

type NatoResponse added in v1.2.0

type NatoResponse struct {
	Result string `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
	Error  string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*NatoResponse) Descriptor deprecated added in v1.2.0

func (*NatoResponse) Descriptor() ([]byte, []int)

Deprecated: Use NatoResponse.ProtoReflect.Descriptor instead.

func (*NatoResponse) GetError added in v1.2.0

func (x *NatoResponse) GetError() string

func (*NatoResponse) GetResult added in v1.2.0

func (x *NatoResponse) GetResult() string

func (*NatoResponse) ProtoMessage added in v1.2.0

func (*NatoResponse) ProtoMessage()

func (*NatoResponse) ProtoReflect added in v1.2.0

func (x *NatoResponse) ProtoReflect() protoreflect.Message

func (*NatoResponse) Reset added in v1.2.0

func (x *NatoResponse) Reset()

func (*NatoResponse) String added in v1.2.0

func (x *NatoResponse) String() string

type NumeronymRequest added in v1.2.0

type NumeronymRequest struct {
	Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	// contains filtered or unexported fields
}

func (*NumeronymRequest) Descriptor deprecated added in v1.2.0

func (*NumeronymRequest) Descriptor() ([]byte, []int)

Deprecated: Use NumeronymRequest.ProtoReflect.Descriptor instead.

func (*NumeronymRequest) GetText added in v1.2.0

func (x *NumeronymRequest) GetText() string

func (*NumeronymRequest) ProtoMessage added in v1.2.0

func (*NumeronymRequest) ProtoMessage()

func (*NumeronymRequest) ProtoReflect added in v1.2.0

func (x *NumeronymRequest) ProtoReflect() protoreflect.Message

func (*NumeronymRequest) Reset added in v1.2.0

func (x *NumeronymRequest) Reset()

func (*NumeronymRequest) String added in v1.2.0

func (x *NumeronymRequest) String() string

type NumeronymResponse added in v1.2.0

type NumeronymResponse struct {
	Words  []string `protobuf:"bytes,1,rep,name=words,proto3" json:"words,omitempty"`   // numeronym per word
	Result string   `protobuf:"bytes,2,opt,name=result,proto3" json:"result,omitempty"` // space-joined
	Error  string   `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*NumeronymResponse) Descriptor deprecated added in v1.2.0

func (*NumeronymResponse) Descriptor() ([]byte, []int)

Deprecated: Use NumeronymResponse.ProtoReflect.Descriptor instead.

func (*NumeronymResponse) GetError added in v1.2.0

func (x *NumeronymResponse) GetError() string

func (*NumeronymResponse) GetResult added in v1.2.0

func (x *NumeronymResponse) GetResult() string

func (*NumeronymResponse) GetWords added in v1.2.0

func (x *NumeronymResponse) GetWords() []string

func (*NumeronymResponse) ProtoMessage added in v1.2.0

func (*NumeronymResponse) ProtoMessage()

func (*NumeronymResponse) ProtoReflect added in v1.2.0

func (x *NumeronymResponse) ProtoReflect() protoreflect.Message

func (*NumeronymResponse) Reset added in v1.2.0

func (x *NumeronymResponse) Reset()

func (*NumeronymResponse) String added in v1.2.0

func (x *NumeronymResponse) String() string

type OtpRequest added in v1.2.0

type OtpRequest struct {
	Secret         string `protobuf:"bytes,1,opt,name=secret,proto3" json:"secret,omitempty"`                                        // base32-encoded secret
	Type           string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`                                            // "totp" or "hotp"
	Counter        int64  `protobuf:"varint,3,opt,name=counter,proto3" json:"counter,omitempty"`                                     // HOTP counter
	Digits         int32  `protobuf:"varint,4,opt,name=digits,proto3" json:"digits,omitempty"`                                       // 6 or 8 (default 6)
	Period         int32  `protobuf:"varint,5,opt,name=period,proto3" json:"period,omitempty"`                                       // TOTP period seconds (default 30)
	Algo           string `protobuf:"bytes,6,opt,name=algo,proto3" json:"algo,omitempty"`                                            // "sha1", "sha256", "sha512" (default sha1)
	GenerateSecret bool   `protobuf:"varint,7,opt,name=generate_secret,json=generateSecret,proto3" json:"generate_secret,omitempty"` // if true, generate a new random secret
	// contains filtered or unexported fields
}

func (*OtpRequest) Descriptor deprecated added in v1.2.0

func (*OtpRequest) Descriptor() ([]byte, []int)

Deprecated: Use OtpRequest.ProtoReflect.Descriptor instead.

func (*OtpRequest) GetAlgo added in v1.2.0

func (x *OtpRequest) GetAlgo() string

func (*OtpRequest) GetCounter added in v1.2.0

func (x *OtpRequest) GetCounter() int64

func (*OtpRequest) GetDigits added in v1.2.0

func (x *OtpRequest) GetDigits() int32

func (*OtpRequest) GetGenerateSecret added in v1.2.0

func (x *OtpRequest) GetGenerateSecret() bool

func (*OtpRequest) GetPeriod added in v1.2.0

func (x *OtpRequest) GetPeriod() int32

func (*OtpRequest) GetSecret added in v1.2.0

func (x *OtpRequest) GetSecret() string

func (*OtpRequest) GetType added in v1.2.0

func (x *OtpRequest) GetType() string

func (*OtpRequest) ProtoMessage added in v1.2.0

func (*OtpRequest) ProtoMessage()

func (*OtpRequest) ProtoReflect added in v1.2.0

func (x *OtpRequest) ProtoReflect() protoreflect.Message

func (*OtpRequest) Reset added in v1.2.0

func (x *OtpRequest) Reset()

func (*OtpRequest) String added in v1.2.0

func (x *OtpRequest) String() string

type OtpResponse added in v1.2.0

type OtpResponse struct {
	Code          string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
	Secret        string `protobuf:"bytes,2,opt,name=secret,proto3" json:"secret,omitempty"`                                     // populated when generate_secret=true
	ValidUntil    int64  `protobuf:"varint,3,opt,name=valid_until,json=validUntil,proto3" json:"valid_until,omitempty"`          // unix timestamp when current period ends
	TimeRemaining int64  `protobuf:"varint,4,opt,name=time_remaining,json=timeRemaining,proto3" json:"time_remaining,omitempty"` // seconds until next period
	Uri           string `protobuf:"bytes,5,opt,name=uri,proto3" json:"uri,omitempty"`                                           // otpauth:// URI
	Error         string `protobuf:"bytes,6,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*OtpResponse) Descriptor deprecated added in v1.2.0

func (*OtpResponse) Descriptor() ([]byte, []int)

Deprecated: Use OtpResponse.ProtoReflect.Descriptor instead.

func (*OtpResponse) GetCode added in v1.2.0

func (x *OtpResponse) GetCode() string

func (*OtpResponse) GetError added in v1.2.0

func (x *OtpResponse) GetError() string

func (*OtpResponse) GetSecret added in v1.2.0

func (x *OtpResponse) GetSecret() string

func (*OtpResponse) GetTimeRemaining added in v1.2.0

func (x *OtpResponse) GetTimeRemaining() int64

func (*OtpResponse) GetUri added in v1.2.0

func (x *OtpResponse) GetUri() string

func (*OtpResponse) GetValidUntil added in v1.2.0

func (x *OtpResponse) GetValidUntil() int64

func (*OtpResponse) ProtoMessage added in v1.2.0

func (*OtpResponse) ProtoMessage()

func (*OtpResponse) ProtoReflect added in v1.2.0

func (x *OtpResponse) ProtoReflect() protoreflect.Message

func (*OtpResponse) Reset added in v1.2.0

func (x *OtpResponse) Reset()

func (*OtpResponse) String added in v1.2.0

func (x *OtpResponse) String() string

type OtpValidateRequest added in v1.2.0

type OtpValidateRequest struct {
	Secret string `protobuf:"bytes,1,opt,name=secret,proto3" json:"secret,omitempty"`
	Code   string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
	Window int32  `protobuf:"varint,3,opt,name=window,proto3" json:"window,omitempty"` // allowed drift in periods (default 1)
	Period int32  `protobuf:"varint,4,opt,name=period,proto3" json:"period,omitempty"` // default 30
	Algo   string `protobuf:"bytes,5,opt,name=algo,proto3" json:"algo,omitempty"`      // "sha1", "sha256", "sha512"
	// contains filtered or unexported fields
}

func (*OtpValidateRequest) Descriptor deprecated added in v1.2.0

func (*OtpValidateRequest) Descriptor() ([]byte, []int)

Deprecated: Use OtpValidateRequest.ProtoReflect.Descriptor instead.

func (*OtpValidateRequest) GetAlgo added in v1.2.0

func (x *OtpValidateRequest) GetAlgo() string

func (*OtpValidateRequest) GetCode added in v1.2.0

func (x *OtpValidateRequest) GetCode() string

func (*OtpValidateRequest) GetPeriod added in v1.2.0

func (x *OtpValidateRequest) GetPeriod() int32

func (*OtpValidateRequest) GetSecret added in v1.2.0

func (x *OtpValidateRequest) GetSecret() string

func (*OtpValidateRequest) GetWindow added in v1.2.0

func (x *OtpValidateRequest) GetWindow() int32

func (*OtpValidateRequest) ProtoMessage added in v1.2.0

func (*OtpValidateRequest) ProtoMessage()

func (*OtpValidateRequest) ProtoReflect added in v1.2.0

func (x *OtpValidateRequest) ProtoReflect() protoreflect.Message

func (*OtpValidateRequest) Reset added in v1.2.0

func (x *OtpValidateRequest) Reset()

func (*OtpValidateRequest) String added in v1.2.0

func (x *OtpValidateRequest) String() string

type OtpValidateResponse added in v1.2.0

type OtpValidateResponse struct {
	Valid bool   `protobuf:"varint,1,opt,name=valid,proto3" json:"valid,omitempty"`
	Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*OtpValidateResponse) Descriptor deprecated added in v1.2.0

func (*OtpValidateResponse) Descriptor() ([]byte, []int)

Deprecated: Use OtpValidateResponse.ProtoReflect.Descriptor instead.

func (*OtpValidateResponse) GetError added in v1.2.0

func (x *OtpValidateResponse) GetError() string

func (*OtpValidateResponse) GetValid added in v1.2.0

func (x *OtpValidateResponse) GetValid() bool

func (*OtpValidateResponse) ProtoMessage added in v1.2.0

func (*OtpValidateResponse) ProtoMessage()

func (*OtpValidateResponse) ProtoReflect added in v1.2.0

func (x *OtpValidateResponse) ProtoReflect() protoreflect.Message

func (*OtpValidateResponse) Reset added in v1.2.0

func (x *OtpValidateResponse) Reset()

func (*OtpValidateResponse) String added in v1.2.0

func (x *OtpValidateResponse) String() string

type PasswordRequest

type PasswordRequest struct {
	Length      int32  `protobuf:"varint,1,opt,name=length,proto3" json:"length,omitempty"`
	Uppercase   bool   `protobuf:"varint,2,opt,name=uppercase,proto3" json:"uppercase,omitempty"`
	Lowercase   bool   `protobuf:"varint,3,opt,name=lowercase,proto3" json:"lowercase,omitempty"`
	Numbers     bool   `protobuf:"varint,4,opt,name=numbers,proto3" json:"numbers,omitempty"`
	Symbols     bool   `protobuf:"varint,5,opt,name=symbols,proto3" json:"symbols,omitempty"`
	CustomChars string `protobuf:"bytes,6,opt,name=custom_chars,json=customChars,proto3" json:"custom_chars,omitempty"` // Custom character set to use
	Count       int32  `protobuf:"varint,7,opt,name=count,proto3" json:"count,omitempty"`                               // Number of passwords to generate
	// contains filtered or unexported fields
}

func (*PasswordRequest) Descriptor deprecated

func (*PasswordRequest) Descriptor() ([]byte, []int)

Deprecated: Use PasswordRequest.ProtoReflect.Descriptor instead.

func (*PasswordRequest) GetCount

func (x *PasswordRequest) GetCount() int32

func (*PasswordRequest) GetCustomChars

func (x *PasswordRequest) GetCustomChars() string

func (*PasswordRequest) GetLength

func (x *PasswordRequest) GetLength() int32

func (*PasswordRequest) GetLowercase

func (x *PasswordRequest) GetLowercase() bool

func (*PasswordRequest) GetNumbers

func (x *PasswordRequest) GetNumbers() bool

func (*PasswordRequest) GetSymbols

func (x *PasswordRequest) GetSymbols() bool

func (*PasswordRequest) GetUppercase

func (x *PasswordRequest) GetUppercase() bool

func (*PasswordRequest) ProtoMessage

func (*PasswordRequest) ProtoMessage()

func (*PasswordRequest) ProtoReflect

func (x *PasswordRequest) ProtoReflect() protoreflect.Message

func (*PasswordRequest) Reset

func (x *PasswordRequest) Reset()

func (*PasswordRequest) String

func (x *PasswordRequest) String() string

type PasswordResponse

type PasswordResponse struct {
	Passwords []string `protobuf:"bytes,1,rep,name=passwords,proto3" json:"passwords,omitempty"`
	Error     string   `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*PasswordResponse) Descriptor deprecated

func (*PasswordResponse) Descriptor() ([]byte, []int)

Deprecated: Use PasswordResponse.ProtoReflect.Descriptor instead.

func (*PasswordResponse) GetError

func (x *PasswordResponse) GetError() string

func (*PasswordResponse) GetPasswords

func (x *PasswordResponse) GetPasswords() []string

func (*PasswordResponse) ProtoMessage

func (*PasswordResponse) ProtoMessage()

func (*PasswordResponse) ProtoReflect

func (x *PasswordResponse) ProtoReflect() protoreflect.Message

func (*PasswordResponse) Reset

func (x *PasswordResponse) Reset()

func (*PasswordResponse) String

func (x *PasswordResponse) String() string

type PercentMode added in v1.2.0

type PercentMode int32
const (
	PercentMode_PCT_X_OF_Y  PercentMode = 0 // what is A% of B?
	PercentMode_PCT_WHAT    PercentMode = 1 // A is what % of B?
	PercentMode_PCT_CHANGE  PercentMode = 2 // % change from A to B
	PercentMode_PCT_REVERSE PercentMode = 3 // A is B% of what?
)

func (PercentMode) Descriptor added in v1.2.0

func (PercentMode) Enum added in v1.2.0

func (x PercentMode) Enum() *PercentMode

func (PercentMode) EnumDescriptor deprecated added in v1.2.0

func (PercentMode) EnumDescriptor() ([]byte, []int)

Deprecated: Use PercentMode.Descriptor instead.

func (PercentMode) Number added in v1.2.0

func (x PercentMode) Number() protoreflect.EnumNumber

func (PercentMode) String added in v1.2.0

func (x PercentMode) String() string

func (PercentMode) Type added in v1.2.0

type PercentageRequest added in v1.2.0

type PercentageRequest struct {
	Mode PercentMode `protobuf:"varint,1,opt,name=mode,proto3,enum=privutil.PercentMode" json:"mode,omitempty"`
	A    float64     `protobuf:"fixed64,2,opt,name=a,proto3" json:"a,omitempty"`
	B    float64     `protobuf:"fixed64,3,opt,name=b,proto3" json:"b,omitempty"`
	// contains filtered or unexported fields
}

func (*PercentageRequest) Descriptor deprecated added in v1.2.0

func (*PercentageRequest) Descriptor() ([]byte, []int)

Deprecated: Use PercentageRequest.ProtoReflect.Descriptor instead.

func (*PercentageRequest) GetA added in v1.2.0

func (x *PercentageRequest) GetA() float64

func (*PercentageRequest) GetB added in v1.2.0

func (x *PercentageRequest) GetB() float64

func (*PercentageRequest) GetMode added in v1.2.0

func (x *PercentageRequest) GetMode() PercentMode

func (*PercentageRequest) ProtoMessage added in v1.2.0

func (*PercentageRequest) ProtoMessage()

func (*PercentageRequest) ProtoReflect added in v1.2.0

func (x *PercentageRequest) ProtoReflect() protoreflect.Message

func (*PercentageRequest) Reset added in v1.2.0

func (x *PercentageRequest) Reset()

func (*PercentageRequest) String added in v1.2.0

func (x *PercentageRequest) String() string

type PercentageResponse added in v1.2.0

type PercentageResponse struct {
	Result    float64 `protobuf:"fixed64,1,opt,name=result,proto3" json:"result,omitempty"`
	Formatted string  `protobuf:"bytes,2,opt,name=formatted,proto3" json:"formatted,omitempty"` // human-readable sentence
	Formula   string  `protobuf:"bytes,3,opt,name=formula,proto3" json:"formula,omitempty"`     // the formula used
	Error     string  `protobuf:"bytes,4,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*PercentageResponse) Descriptor deprecated added in v1.2.0

func (*PercentageResponse) Descriptor() ([]byte, []int)

Deprecated: Use PercentageResponse.ProtoReflect.Descriptor instead.

func (*PercentageResponse) GetError added in v1.2.0

func (x *PercentageResponse) GetError() string

func (*PercentageResponse) GetFormatted added in v1.2.0

func (x *PercentageResponse) GetFormatted() string

func (*PercentageResponse) GetFormula added in v1.2.0

func (x *PercentageResponse) GetFormula() string

func (*PercentageResponse) GetResult added in v1.2.0

func (x *PercentageResponse) GetResult() float64

func (*PercentageResponse) ProtoMessage added in v1.2.0

func (*PercentageResponse) ProtoMessage()

func (*PercentageResponse) ProtoReflect added in v1.2.0

func (x *PercentageResponse) ProtoReflect() protoreflect.Message

func (*PercentageResponse) Reset added in v1.2.0

func (x *PercentageResponse) Reset()

func (*PercentageResponse) String added in v1.2.0

func (x *PercentageResponse) String() string

type PortRequest added in v1.2.0

type PortRequest struct {
	Count         int32 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
	Min           int32 `protobuf:"varint,2,opt,name=min,proto3" json:"min,omitempty"`
	Max           int32 `protobuf:"varint,3,opt,name=max,proto3" json:"max,omitempty"`
	ExcludeSystem bool  `protobuf:"varint,4,opt,name=exclude_system,json=excludeSystem,proto3" json:"exclude_system,omitempty"` // exclude ports 0–1023
	// contains filtered or unexported fields
}

func (*PortRequest) Descriptor deprecated added in v1.2.0

func (*PortRequest) Descriptor() ([]byte, []int)

Deprecated: Use PortRequest.ProtoReflect.Descriptor instead.

func (*PortRequest) GetCount added in v1.2.0

func (x *PortRequest) GetCount() int32

func (*PortRequest) GetExcludeSystem added in v1.2.0

func (x *PortRequest) GetExcludeSystem() bool

func (*PortRequest) GetMax added in v1.2.0

func (x *PortRequest) GetMax() int32

func (*PortRequest) GetMin added in v1.2.0

func (x *PortRequest) GetMin() int32

func (*PortRequest) ProtoMessage added in v1.2.0

func (*PortRequest) ProtoMessage()

func (*PortRequest) ProtoReflect added in v1.2.0

func (x *PortRequest) ProtoReflect() protoreflect.Message

func (*PortRequest) Reset added in v1.2.0

func (x *PortRequest) Reset()

func (*PortRequest) String added in v1.2.0

func (x *PortRequest) String() string

type PortResponse added in v1.2.0

type PortResponse struct {
	Ports []int32 `protobuf:"varint,1,rep,packed,name=ports,proto3" json:"ports,omitempty"`
	Error string  `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*PortResponse) Descriptor deprecated added in v1.2.0

func (*PortResponse) Descriptor() ([]byte, []int)

Deprecated: Use PortResponse.ProtoReflect.Descriptor instead.

func (*PortResponse) GetError added in v1.2.0

func (x *PortResponse) GetError() string

func (*PortResponse) GetPorts added in v1.2.0

func (x *PortResponse) GetPorts() []int32

func (*PortResponse) ProtoMessage added in v1.2.0

func (*PortResponse) ProtoMessage()

func (*PortResponse) ProtoReflect added in v1.2.0

func (x *PortResponse) ProtoReflect() protoreflect.Message

func (*PortResponse) Reset added in v1.2.0

func (x *PortResponse) Reset()

func (*PortResponse) String added in v1.2.0

func (x *PortResponse) String() string

type QueryParam added in v1.2.0

type QueryParam struct {
	Key   string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryParam) Descriptor deprecated added in v1.2.0

func (*QueryParam) Descriptor() ([]byte, []int)

Deprecated: Use QueryParam.ProtoReflect.Descriptor instead.

func (*QueryParam) GetKey added in v1.2.0

func (x *QueryParam) GetKey() string

func (*QueryParam) GetValue added in v1.2.0

func (x *QueryParam) GetValue() string

func (*QueryParam) ProtoMessage added in v1.2.0

func (*QueryParam) ProtoMessage()

func (*QueryParam) ProtoReflect added in v1.2.0

func (x *QueryParam) ProtoReflect() protoreflect.Message

func (*QueryParam) Reset added in v1.2.0

func (x *QueryParam) Reset()

func (*QueryParam) String added in v1.2.0

func (x *QueryParam) String() string

type RegexRequest

type RegexRequest struct {
	Pattern string `protobuf:"bytes,1,opt,name=pattern,proto3" json:"pattern,omitempty"`
	Text    string `protobuf:"bytes,2,opt,name=text,proto3" json:"text,omitempty"`
	// contains filtered or unexported fields
}

func (*RegexRequest) Descriptor deprecated

func (*RegexRequest) Descriptor() ([]byte, []int)

Deprecated: Use RegexRequest.ProtoReflect.Descriptor instead.

func (*RegexRequest) GetPattern

func (x *RegexRequest) GetPattern() string

func (*RegexRequest) GetText

func (x *RegexRequest) GetText() string

func (*RegexRequest) ProtoMessage

func (*RegexRequest) ProtoMessage()

func (*RegexRequest) ProtoReflect

func (x *RegexRequest) ProtoReflect() protoreflect.Message

func (*RegexRequest) Reset

func (x *RegexRequest) Reset()

func (*RegexRequest) String

func (x *RegexRequest) String() string

type RegexResponse

type RegexResponse struct {
	Match   bool     `protobuf:"varint,1,opt,name=match,proto3" json:"match,omitempty"`
	Matches []string `protobuf:"bytes,2,rep,name=matches,proto3" json:"matches,omitempty"`
	Error   string   `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*RegexResponse) Descriptor deprecated

func (*RegexResponse) Descriptor() ([]byte, []int)

Deprecated: Use RegexResponse.ProtoReflect.Descriptor instead.

func (*RegexResponse) GetError

func (x *RegexResponse) GetError() string

func (*RegexResponse) GetMatch

func (x *RegexResponse) GetMatch() bool

func (*RegexResponse) GetMatches

func (x *RegexResponse) GetMatches() []string

func (*RegexResponse) ProtoMessage

func (*RegexResponse) ProtoMessage()

func (*RegexResponse) ProtoReflect

func (x *RegexResponse) ProtoReflect() protoreflect.Message

func (*RegexResponse) Reset

func (x *RegexResponse) Reset()

func (*RegexResponse) String

func (x *RegexResponse) String() string

type RsaKeyRequest added in v1.1.4

type RsaKeyRequest struct {
	Bits int32 `protobuf:"varint,1,opt,name=bits,proto3" json:"bits,omitempty"` // e.g. 1024, 2048, 4096
	// contains filtered or unexported fields
}

func (*RsaKeyRequest) Descriptor deprecated added in v1.1.4

func (*RsaKeyRequest) Descriptor() ([]byte, []int)

Deprecated: Use RsaKeyRequest.ProtoReflect.Descriptor instead.

func (*RsaKeyRequest) GetBits added in v1.1.4

func (x *RsaKeyRequest) GetBits() int32

func (*RsaKeyRequest) ProtoMessage added in v1.1.4

func (*RsaKeyRequest) ProtoMessage()

func (*RsaKeyRequest) ProtoReflect added in v1.1.4

func (x *RsaKeyRequest) ProtoReflect() protoreflect.Message

func (*RsaKeyRequest) Reset added in v1.1.4

func (x *RsaKeyRequest) Reset()

func (*RsaKeyRequest) String added in v1.1.4

func (x *RsaKeyRequest) String() string

type RsaKeyResponse added in v1.1.4

type RsaKeyResponse struct {
	PrivateKey string `protobuf:"bytes,1,opt,name=private_key,json=privateKey,proto3" json:"private_key,omitempty"`
	PublicKey  string `protobuf:"bytes,2,opt,name=public_key,json=publicKey,proto3" json:"public_key,omitempty"`
	Error      string `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*RsaKeyResponse) Descriptor deprecated added in v1.1.4

func (*RsaKeyResponse) Descriptor() ([]byte, []int)

Deprecated: Use RsaKeyResponse.ProtoReflect.Descriptor instead.

func (*RsaKeyResponse) GetError added in v1.1.4

func (x *RsaKeyResponse) GetError() string

func (*RsaKeyResponse) GetPrivateKey added in v1.1.4

func (x *RsaKeyResponse) GetPrivateKey() string

func (*RsaKeyResponse) GetPublicKey added in v1.1.4

func (x *RsaKeyResponse) GetPublicKey() string

func (*RsaKeyResponse) ProtoMessage added in v1.1.4

func (*RsaKeyResponse) ProtoMessage()

func (*RsaKeyResponse) ProtoReflect added in v1.1.4

func (x *RsaKeyResponse) ProtoReflect() protoreflect.Message

func (*RsaKeyResponse) Reset added in v1.1.4

func (x *RsaKeyResponse) Reset()

func (*RsaKeyResponse) String added in v1.1.4

func (x *RsaKeyResponse) String() string

type SimilarityRequest

type SimilarityRequest struct {
	Text1 string `protobuf:"bytes,1,opt,name=text1,proto3" json:"text1,omitempty"`
	Text2 string `protobuf:"bytes,2,opt,name=text2,proto3" json:"text2,omitempty"`
	// contains filtered or unexported fields
}

func (*SimilarityRequest) Descriptor deprecated

func (*SimilarityRequest) Descriptor() ([]byte, []int)

Deprecated: Use SimilarityRequest.ProtoReflect.Descriptor instead.

func (*SimilarityRequest) GetText1

func (x *SimilarityRequest) GetText1() string

func (*SimilarityRequest) GetText2

func (x *SimilarityRequest) GetText2() string

func (*SimilarityRequest) ProtoMessage

func (*SimilarityRequest) ProtoMessage()

func (*SimilarityRequest) ProtoReflect

func (x *SimilarityRequest) ProtoReflect() protoreflect.Message

func (*SimilarityRequest) Reset

func (x *SimilarityRequest) Reset()

func (*SimilarityRequest) String

func (x *SimilarityRequest) String() string

type SimilarityResponse

type SimilarityResponse struct {
	Distance   int32   `protobuf:"varint,1,opt,name=distance,proto3" json:"distance,omitempty"`
	Similarity float32 `protobuf:"fixed32,2,opt,name=similarity,proto3" json:"similarity,omitempty"` // 0.0 to 1.0
	Error      string  `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*SimilarityResponse) Descriptor deprecated

func (*SimilarityResponse) Descriptor() ([]byte, []int)

Deprecated: Use SimilarityResponse.ProtoReflect.Descriptor instead.

func (*SimilarityResponse) GetDistance

func (x *SimilarityResponse) GetDistance() int32

func (*SimilarityResponse) GetError

func (x *SimilarityResponse) GetError() string

func (*SimilarityResponse) GetSimilarity

func (x *SimilarityResponse) GetSimilarity() float32

func (*SimilarityResponse) ProtoMessage

func (*SimilarityResponse) ProtoMessage()

func (*SimilarityResponse) ProtoReflect

func (x *SimilarityResponse) ProtoReflect() protoreflect.Message

func (*SimilarityResponse) Reset

func (x *SimilarityResponse) Reset()

func (*SimilarityResponse) String

func (x *SimilarityResponse) String() string

type SlugifyRequest added in v1.2.0

type SlugifyRequest struct {
	Text      string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Separator string `protobuf:"bytes,2,opt,name=separator,proto3" json:"separator,omitempty"`          // "-" (default), "_", or "" (no separator)
	Uppercase bool   `protobuf:"varint,3,opt,name=uppercase,proto3" json:"uppercase,omitempty"`         // default false → lowercase
	MaxLen    int32  `protobuf:"varint,4,opt,name=max_len,json=maxLen,proto3" json:"max_len,omitempty"` // 0 = unlimited
	// contains filtered or unexported fields
}

func (*SlugifyRequest) Descriptor deprecated added in v1.2.0

func (*SlugifyRequest) Descriptor() ([]byte, []int)

Deprecated: Use SlugifyRequest.ProtoReflect.Descriptor instead.

func (*SlugifyRequest) GetMaxLen added in v1.2.0

func (x *SlugifyRequest) GetMaxLen() int32

func (*SlugifyRequest) GetSeparator added in v1.2.0

func (x *SlugifyRequest) GetSeparator() string

func (*SlugifyRequest) GetText added in v1.2.0

func (x *SlugifyRequest) GetText() string

func (*SlugifyRequest) GetUppercase added in v1.2.0

func (x *SlugifyRequest) GetUppercase() bool

func (*SlugifyRequest) ProtoMessage added in v1.2.0

func (*SlugifyRequest) ProtoMessage()

func (*SlugifyRequest) ProtoReflect added in v1.2.0

func (x *SlugifyRequest) ProtoReflect() protoreflect.Message

func (*SlugifyRequest) Reset added in v1.2.0

func (x *SlugifyRequest) Reset()

func (*SlugifyRequest) String added in v1.2.0

func (x *SlugifyRequest) String() string

type SlugifyResponse added in v1.2.0

type SlugifyResponse struct {
	Result string `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
	Error  string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*SlugifyResponse) Descriptor deprecated added in v1.2.0

func (*SlugifyResponse) Descriptor() ([]byte, []int)

Deprecated: Use SlugifyResponse.ProtoReflect.Descriptor instead.

func (*SlugifyResponse) GetError added in v1.2.0

func (x *SlugifyResponse) GetError() string

func (*SlugifyResponse) GetResult added in v1.2.0

func (x *SlugifyResponse) GetResult() string

func (*SlugifyResponse) ProtoMessage added in v1.2.0

func (*SlugifyResponse) ProtoMessage()

func (*SlugifyResponse) ProtoReflect added in v1.2.0

func (x *SlugifyResponse) ProtoReflect() protoreflect.Message

func (*SlugifyResponse) Reset added in v1.2.0

func (x *SlugifyResponse) Reset()

func (*SlugifyResponse) String added in v1.2.0

func (x *SlugifyResponse) String() string

type SpellCheckRequest added in v1.5.0

type SpellCheckRequest struct {
	Text     string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Language string `protobuf:"bytes,2,opt,name=language,proto3" json:"language,omitempty"` // language code, e.g. "en", "es" (default "en")
	// contains filtered or unexported fields
}

func (*SpellCheckRequest) Descriptor deprecated added in v1.5.0

func (*SpellCheckRequest) Descriptor() ([]byte, []int)

Deprecated: Use SpellCheckRequest.ProtoReflect.Descriptor instead.

func (*SpellCheckRequest) GetLanguage added in v1.5.0

func (x *SpellCheckRequest) GetLanguage() string

func (*SpellCheckRequest) GetText added in v1.5.0

func (x *SpellCheckRequest) GetText() string

func (*SpellCheckRequest) ProtoMessage added in v1.5.0

func (*SpellCheckRequest) ProtoMessage()

func (*SpellCheckRequest) ProtoReflect added in v1.5.0

func (x *SpellCheckRequest) ProtoReflect() protoreflect.Message

func (*SpellCheckRequest) Reset added in v1.5.0

func (x *SpellCheckRequest) Reset()

func (*SpellCheckRequest) String added in v1.5.0

func (x *SpellCheckRequest) String() string

type SpellCheckResponse added in v1.5.0

type SpellCheckResponse struct {
	Issues    []*SpellIssue `protobuf:"bytes,1,rep,name=issues,proto3" json:"issues,omitempty"`
	Language  string        `protobuf:"bytes,2,opt,name=language,proto3" json:"language,omitempty"` // resolved language code
	WordCount int32         `protobuf:"varint,3,opt,name=word_count,json=wordCount,proto3" json:"word_count,omitempty"`
	Error     string        `protobuf:"bytes,4,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*SpellCheckResponse) Descriptor deprecated added in v1.5.0

func (*SpellCheckResponse) Descriptor() ([]byte, []int)

Deprecated: Use SpellCheckResponse.ProtoReflect.Descriptor instead.

func (*SpellCheckResponse) GetError added in v1.5.0

func (x *SpellCheckResponse) GetError() string

func (*SpellCheckResponse) GetIssues added in v1.5.0

func (x *SpellCheckResponse) GetIssues() []*SpellIssue

func (*SpellCheckResponse) GetLanguage added in v1.5.0

func (x *SpellCheckResponse) GetLanguage() string

func (*SpellCheckResponse) GetWordCount added in v1.5.0

func (x *SpellCheckResponse) GetWordCount() int32

func (*SpellCheckResponse) ProtoMessage added in v1.5.0

func (*SpellCheckResponse) ProtoMessage()

func (*SpellCheckResponse) ProtoReflect added in v1.5.0

func (x *SpellCheckResponse) ProtoReflect() protoreflect.Message

func (*SpellCheckResponse) Reset added in v1.5.0

func (x *SpellCheckResponse) Reset()

func (*SpellCheckResponse) String added in v1.5.0

func (x *SpellCheckResponse) String() string

type SpellIssue added in v1.5.0

type SpellIssue struct {
	Id            string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`                                              // stable id for this issue within the response
	Offset        int32    `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`                                     // rune offset of the flagged span in text
	Length        int32    `protobuf:"varint,3,opt,name=length,proto3" json:"length,omitempty"`                                     // rune length of the flagged span
	Text          string   `protobuf:"bytes,4,opt,name=text,proto3" json:"text,omitempty"`                                          // the flagged substring
	Type          string   `protobuf:"bytes,5,opt,name=type,proto3" json:"type,omitempty"`                                          // "spelling" | "grammar" | "punctuation" | "style"
	Rule          string   `protobuf:"bytes,6,opt,name=rule,proto3" json:"rule,omitempty"`                                          // rule identifier
	Message       string   `protobuf:"bytes,7,opt,name=message,proto3" json:"message,omitempty"`                                    // human-readable description of the issue
	Replacements  []string `protobuf:"bytes,8,rep,name=replacements,proto3" json:"replacements,omitempty"`                          // suggested corrections (may be empty)
	Context       string   `protobuf:"bytes,9,opt,name=context,proto3" json:"context,omitempty"`                                    // surrounding text snippet
	ContextOffset int32    `protobuf:"varint,10,opt,name=context_offset,json=contextOffset,proto3" json:"context_offset,omitempty"` // rune offset of the flagged span within context
	// contains filtered or unexported fields
}

func (*SpellIssue) Descriptor deprecated added in v1.5.0

func (*SpellIssue) Descriptor() ([]byte, []int)

Deprecated: Use SpellIssue.ProtoReflect.Descriptor instead.

func (*SpellIssue) GetContext added in v1.5.0

func (x *SpellIssue) GetContext() string

func (*SpellIssue) GetContextOffset added in v1.5.0

func (x *SpellIssue) GetContextOffset() int32

func (*SpellIssue) GetId added in v1.5.0

func (x *SpellIssue) GetId() string

func (*SpellIssue) GetLength added in v1.5.0

func (x *SpellIssue) GetLength() int32

func (*SpellIssue) GetMessage added in v1.5.0

func (x *SpellIssue) GetMessage() string

func (*SpellIssue) GetOffset added in v1.5.0

func (x *SpellIssue) GetOffset() int32

func (*SpellIssue) GetReplacements added in v1.5.0

func (x *SpellIssue) GetReplacements() []string

func (*SpellIssue) GetRule added in v1.5.0

func (x *SpellIssue) GetRule() string

func (*SpellIssue) GetText added in v1.5.0

func (x *SpellIssue) GetText() string

func (*SpellIssue) GetType added in v1.5.0

func (x *SpellIssue) GetType() string

func (*SpellIssue) ProtoMessage added in v1.5.0

func (*SpellIssue) ProtoMessage()

func (*SpellIssue) ProtoReflect added in v1.5.0

func (x *SpellIssue) ProtoReflect() protoreflect.Message

func (*SpellIssue) Reset added in v1.5.0

func (x *SpellIssue) Reset()

func (*SpellIssue) String added in v1.5.0

func (x *SpellIssue) String() string

type SpellLanguage added in v1.5.0

type SpellLanguage struct {
	Code  string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
	Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
	// contains filtered or unexported fields
}

func (*SpellLanguage) Descriptor deprecated added in v1.5.0

func (*SpellLanguage) Descriptor() ([]byte, []int)

Deprecated: Use SpellLanguage.ProtoReflect.Descriptor instead.

func (*SpellLanguage) GetCode added in v1.5.0

func (x *SpellLanguage) GetCode() string

func (*SpellLanguage) GetLabel added in v1.5.0

func (x *SpellLanguage) GetLabel() string

func (*SpellLanguage) ProtoMessage added in v1.5.0

func (*SpellLanguage) ProtoMessage()

func (*SpellLanguage) ProtoReflect added in v1.5.0

func (x *SpellLanguage) ProtoReflect() protoreflect.Message

func (*SpellLanguage) Reset added in v1.5.0

func (x *SpellLanguage) Reset()

func (*SpellLanguage) String added in v1.5.0

func (x *SpellLanguage) String() string

type SpellLanguagesRequest added in v1.5.0

type SpellLanguagesRequest struct {
	// contains filtered or unexported fields
}

func (*SpellLanguagesRequest) Descriptor deprecated added in v1.5.0

func (*SpellLanguagesRequest) Descriptor() ([]byte, []int)

Deprecated: Use SpellLanguagesRequest.ProtoReflect.Descriptor instead.

func (*SpellLanguagesRequest) ProtoMessage added in v1.5.0

func (*SpellLanguagesRequest) ProtoMessage()

func (*SpellLanguagesRequest) ProtoReflect added in v1.5.0

func (x *SpellLanguagesRequest) ProtoReflect() protoreflect.Message

func (*SpellLanguagesRequest) Reset added in v1.5.0

func (x *SpellLanguagesRequest) Reset()

func (*SpellLanguagesRequest) String added in v1.5.0

func (x *SpellLanguagesRequest) String() string

type SpellLanguagesResponse added in v1.5.0

type SpellLanguagesResponse struct {
	Languages []*SpellLanguage `protobuf:"bytes,1,rep,name=languages,proto3" json:"languages,omitempty"`
	// contains filtered or unexported fields
}

func (*SpellLanguagesResponse) Descriptor deprecated added in v1.5.0

func (*SpellLanguagesResponse) Descriptor() ([]byte, []int)

Deprecated: Use SpellLanguagesResponse.ProtoReflect.Descriptor instead.

func (*SpellLanguagesResponse) GetLanguages added in v1.5.0

func (x *SpellLanguagesResponse) GetLanguages() []*SpellLanguage

func (*SpellLanguagesResponse) ProtoMessage added in v1.5.0

func (*SpellLanguagesResponse) ProtoMessage()

func (*SpellLanguagesResponse) ProtoReflect added in v1.5.0

func (x *SpellLanguagesResponse) ProtoReflect() protoreflect.Message

func (*SpellLanguagesResponse) Reset added in v1.5.0

func (x *SpellLanguagesResponse) Reset()

func (*SpellLanguagesResponse) String added in v1.5.0

func (x *SpellLanguagesResponse) String() string

type SqlRequest

type SqlRequest struct {
	Query string `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"`
	// contains filtered or unexported fields
}

func (*SqlRequest) Descriptor deprecated

func (*SqlRequest) Descriptor() ([]byte, []int)

Deprecated: Use SqlRequest.ProtoReflect.Descriptor instead.

func (*SqlRequest) GetQuery

func (x *SqlRequest) GetQuery() string

func (*SqlRequest) ProtoMessage

func (*SqlRequest) ProtoMessage()

func (*SqlRequest) ProtoReflect

func (x *SqlRequest) ProtoReflect() protoreflect.Message

func (*SqlRequest) Reset

func (x *SqlRequest) Reset()

func (*SqlRequest) String

func (x *SqlRequest) String() string

type SqlResponse

type SqlResponse struct {
	Formatted string `protobuf:"bytes,1,opt,name=formatted,proto3" json:"formatted,omitempty"`
	Error     string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*SqlResponse) Descriptor deprecated

func (*SqlResponse) Descriptor() ([]byte, []int)

Deprecated: Use SqlResponse.ProtoReflect.Descriptor instead.

func (*SqlResponse) GetError

func (x *SqlResponse) GetError() string

func (*SqlResponse) GetFormatted

func (x *SqlResponse) GetFormatted() string

func (*SqlResponse) ProtoMessage

func (*SqlResponse) ProtoMessage()

func (*SqlResponse) ProtoReflect

func (x *SqlResponse) ProtoReflect() protoreflect.Message

func (*SqlResponse) Reset

func (x *SqlResponse) Reset()

func (*SqlResponse) String

func (x *SqlResponse) String() string

type StringObfuscateRequest added in v1.2.0

type StringObfuscateRequest struct {
	Text      string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	KeepStart int32  `protobuf:"varint,2,opt,name=keep_start,json=keepStart,proto3" json:"keep_start,omitempty"`
	KeepEnd   int32  `protobuf:"varint,3,opt,name=keep_end,json=keepEnd,proto3" json:"keep_end,omitempty"`
	MaskChar  string `protobuf:"bytes,4,opt,name=mask_char,json=maskChar,proto3" json:"mask_char,omitempty"` // default "*"
	// contains filtered or unexported fields
}

func (*StringObfuscateRequest) Descriptor deprecated added in v1.2.0

func (*StringObfuscateRequest) Descriptor() ([]byte, []int)

Deprecated: Use StringObfuscateRequest.ProtoReflect.Descriptor instead.

func (*StringObfuscateRequest) GetKeepEnd added in v1.2.0

func (x *StringObfuscateRequest) GetKeepEnd() int32

func (*StringObfuscateRequest) GetKeepStart added in v1.2.0

func (x *StringObfuscateRequest) GetKeepStart() int32

func (*StringObfuscateRequest) GetMaskChar added in v1.2.0

func (x *StringObfuscateRequest) GetMaskChar() string

func (*StringObfuscateRequest) GetText added in v1.2.0

func (x *StringObfuscateRequest) GetText() string

func (*StringObfuscateRequest) ProtoMessage added in v1.2.0

func (*StringObfuscateRequest) ProtoMessage()

func (*StringObfuscateRequest) ProtoReflect added in v1.2.0

func (x *StringObfuscateRequest) ProtoReflect() protoreflect.Message

func (*StringObfuscateRequest) Reset added in v1.2.0

func (x *StringObfuscateRequest) Reset()

func (*StringObfuscateRequest) String added in v1.2.0

func (x *StringObfuscateRequest) String() string

type StringObfuscateResponse added in v1.2.0

type StringObfuscateResponse struct {
	Result string `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
	Error  string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*StringObfuscateResponse) Descriptor deprecated added in v1.2.0

func (*StringObfuscateResponse) Descriptor() ([]byte, []int)

Deprecated: Use StringObfuscateResponse.ProtoReflect.Descriptor instead.

func (*StringObfuscateResponse) GetError added in v1.2.0

func (x *StringObfuscateResponse) GetError() string

func (*StringObfuscateResponse) GetResult added in v1.2.0

func (x *StringObfuscateResponse) GetResult() string

func (*StringObfuscateResponse) ProtoMessage added in v1.2.0

func (*StringObfuscateResponse) ProtoMessage()

func (*StringObfuscateResponse) ProtoReflect added in v1.2.0

func (x *StringObfuscateResponse) ProtoReflect() protoreflect.Message

func (*StringObfuscateResponse) Reset added in v1.2.0

func (x *StringObfuscateResponse) Reset()

func (*StringObfuscateResponse) String added in v1.2.0

func (x *StringObfuscateResponse) String() string

type SvgOptimizeRequest added in v1.2.0

type SvgOptimizeRequest struct {
	Svg    string `protobuf:"bytes,1,opt,name=svg,proto3" json:"svg,omitempty"`
	Preset string `protobuf:"bytes,2,opt,name=preset,proto3" json:"preset,omitempty"` // "safe" (default), "aggressive", "minimal", "custom"
	// Only used when preset = "custom":
	RemoveComments     bool `protobuf:"varint,3,opt,name=remove_comments,json=removeComments,proto3" json:"remove_comments,omitempty"`
	RemoveXmlDecl      bool `protobuf:"varint,4,opt,name=remove_xml_decl,json=removeXmlDecl,proto3" json:"remove_xml_decl,omitempty"`
	RemoveDoctype      bool `protobuf:"varint,5,opt,name=remove_doctype,json=removeDoctype,proto3" json:"remove_doctype,omitempty"`
	RemoveMetadata     bool `protobuf:"varint,6,opt,name=remove_metadata,json=removeMetadata,proto3" json:"remove_metadata,omitempty"`
	RemoveTitle        bool `protobuf:"varint,7,opt,name=remove_title,json=removeTitle,proto3" json:"remove_title,omitempty"`
	RemoveDesc         bool `protobuf:"varint,8,opt,name=remove_desc,json=removeDesc,proto3" json:"remove_desc,omitempty"`
	RemoveEmptyGroups  bool `protobuf:"varint,9,opt,name=remove_empty_groups,json=removeEmptyGroups,proto3" json:"remove_empty_groups,omitempty"`
	CollapseWhitespace bool `protobuf:"varint,10,opt,name=collapse_whitespace,json=collapseWhitespace,proto3" json:"collapse_whitespace,omitempty"`
	RemoveEmptyAttrs   bool `protobuf:"varint,11,opt,name=remove_empty_attrs,json=removeEmptyAttrs,proto3" json:"remove_empty_attrs,omitempty"`
	// contains filtered or unexported fields
}

func (*SvgOptimizeRequest) Descriptor deprecated added in v1.2.0

func (*SvgOptimizeRequest) Descriptor() ([]byte, []int)

Deprecated: Use SvgOptimizeRequest.ProtoReflect.Descriptor instead.

func (*SvgOptimizeRequest) GetCollapseWhitespace added in v1.2.0

func (x *SvgOptimizeRequest) GetCollapseWhitespace() bool

func (*SvgOptimizeRequest) GetPreset added in v1.2.0

func (x *SvgOptimizeRequest) GetPreset() string

func (*SvgOptimizeRequest) GetRemoveComments added in v1.2.0

func (x *SvgOptimizeRequest) GetRemoveComments() bool

func (*SvgOptimizeRequest) GetRemoveDesc added in v1.2.0

func (x *SvgOptimizeRequest) GetRemoveDesc() bool

func (*SvgOptimizeRequest) GetRemoveDoctype added in v1.2.0

func (x *SvgOptimizeRequest) GetRemoveDoctype() bool

func (*SvgOptimizeRequest) GetRemoveEmptyAttrs added in v1.2.0

func (x *SvgOptimizeRequest) GetRemoveEmptyAttrs() bool

func (*SvgOptimizeRequest) GetRemoveEmptyGroups added in v1.2.0

func (x *SvgOptimizeRequest) GetRemoveEmptyGroups() bool

func (*SvgOptimizeRequest) GetRemoveMetadata added in v1.2.0

func (x *SvgOptimizeRequest) GetRemoveMetadata() bool

func (*SvgOptimizeRequest) GetRemoveTitle added in v1.2.0

func (x *SvgOptimizeRequest) GetRemoveTitle() bool

func (*SvgOptimizeRequest) GetRemoveXmlDecl added in v1.2.0

func (x *SvgOptimizeRequest) GetRemoveXmlDecl() bool

func (*SvgOptimizeRequest) GetSvg added in v1.2.0

func (x *SvgOptimizeRequest) GetSvg() string

func (*SvgOptimizeRequest) ProtoMessage added in v1.2.0

func (*SvgOptimizeRequest) ProtoMessage()

func (*SvgOptimizeRequest) ProtoReflect added in v1.2.0

func (x *SvgOptimizeRequest) ProtoReflect() protoreflect.Message

func (*SvgOptimizeRequest) Reset added in v1.2.0

func (x *SvgOptimizeRequest) Reset()

func (*SvgOptimizeRequest) String added in v1.2.0

func (x *SvgOptimizeRequest) String() string

type SvgOptimizeResponse added in v1.2.0

type SvgOptimizeResponse struct {
	Result        string   `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
	OriginalSize  int32    `protobuf:"varint,2,opt,name=original_size,json=originalSize,proto3" json:"original_size,omitempty"`
	OptimizedSize int32    `protobuf:"varint,3,opt,name=optimized_size,json=optimizedSize,proto3" json:"optimized_size,omitempty"`
	SavingsPct    float32  `protobuf:"fixed32,4,opt,name=savings_pct,json=savingsPct,proto3" json:"savings_pct,omitempty"`
	Applied       []string `protobuf:"bytes,5,rep,name=applied,proto3" json:"applied,omitempty"`
	Error         string   `protobuf:"bytes,6,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*SvgOptimizeResponse) Descriptor deprecated added in v1.2.0

func (*SvgOptimizeResponse) Descriptor() ([]byte, []int)

Deprecated: Use SvgOptimizeResponse.ProtoReflect.Descriptor instead.

func (*SvgOptimizeResponse) GetApplied added in v1.2.0

func (x *SvgOptimizeResponse) GetApplied() []string

func (*SvgOptimizeResponse) GetError added in v1.2.0

func (x *SvgOptimizeResponse) GetError() string

func (*SvgOptimizeResponse) GetOptimizedSize added in v1.2.0

func (x *SvgOptimizeResponse) GetOptimizedSize() int32

func (*SvgOptimizeResponse) GetOriginalSize added in v1.2.0

func (x *SvgOptimizeResponse) GetOriginalSize() int32

func (*SvgOptimizeResponse) GetResult added in v1.2.0

func (x *SvgOptimizeResponse) GetResult() string

func (*SvgOptimizeResponse) GetSavingsPct added in v1.2.0

func (x *SvgOptimizeResponse) GetSavingsPct() float32

func (*SvgOptimizeResponse) ProtoMessage added in v1.2.0

func (*SvgOptimizeResponse) ProtoMessage()

func (*SvgOptimizeResponse) ProtoReflect added in v1.2.0

func (x *SvgOptimizeResponse) ProtoReflect() protoreflect.Message

func (*SvgOptimizeResponse) Reset added in v1.2.0

func (x *SvgOptimizeResponse) Reset()

func (*SvgOptimizeResponse) String added in v1.2.0

func (x *SvgOptimizeResponse) String() string

type TempConvertRequest added in v1.2.0

type TempConvertRequest struct {
	Value    float64 `protobuf:"fixed64,1,opt,name=value,proto3" json:"value,omitempty"`
	FromUnit string  `protobuf:"bytes,2,opt,name=from_unit,json=fromUnit,proto3" json:"from_unit,omitempty"` // "c", "f", "k"
	// contains filtered or unexported fields
}

func (*TempConvertRequest) Descriptor deprecated added in v1.2.0

func (*TempConvertRequest) Descriptor() ([]byte, []int)

Deprecated: Use TempConvertRequest.ProtoReflect.Descriptor instead.

func (*TempConvertRequest) GetFromUnit added in v1.2.0

func (x *TempConvertRequest) GetFromUnit() string

func (*TempConvertRequest) GetValue added in v1.2.0

func (x *TempConvertRequest) GetValue() float64

func (*TempConvertRequest) ProtoMessage added in v1.2.0

func (*TempConvertRequest) ProtoMessage()

func (*TempConvertRequest) ProtoReflect added in v1.2.0

func (x *TempConvertRequest) ProtoReflect() protoreflect.Message

func (*TempConvertRequest) Reset added in v1.2.0

func (x *TempConvertRequest) Reset()

func (*TempConvertRequest) String added in v1.2.0

func (x *TempConvertRequest) String() string

type TempConvertResponse added in v1.2.0

type TempConvertResponse struct {
	Celsius    float64 `protobuf:"fixed64,1,opt,name=celsius,proto3" json:"celsius,omitempty"`
	Fahrenheit float64 `protobuf:"fixed64,2,opt,name=fahrenheit,proto3" json:"fahrenheit,omitempty"`
	Kelvin     float64 `protobuf:"fixed64,3,opt,name=kelvin,proto3" json:"kelvin,omitempty"`
	Error      string  `protobuf:"bytes,4,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*TempConvertResponse) Descriptor deprecated added in v1.2.0

func (*TempConvertResponse) Descriptor() ([]byte, []int)

Deprecated: Use TempConvertResponse.ProtoReflect.Descriptor instead.

func (*TempConvertResponse) GetCelsius added in v1.2.0

func (x *TempConvertResponse) GetCelsius() float64

func (*TempConvertResponse) GetError added in v1.2.0

func (x *TempConvertResponse) GetError() string

func (*TempConvertResponse) GetFahrenheit added in v1.2.0

func (x *TempConvertResponse) GetFahrenheit() float64

func (*TempConvertResponse) GetKelvin added in v1.2.0

func (x *TempConvertResponse) GetKelvin() float64

func (*TempConvertResponse) ProtoMessage added in v1.2.0

func (*TempConvertResponse) ProtoMessage()

func (*TempConvertResponse) ProtoReflect added in v1.2.0

func (x *TempConvertResponse) ProtoReflect() protoreflect.Message

func (*TempConvertResponse) Reset added in v1.2.0

func (x *TempConvertResponse) Reset()

func (*TempConvertResponse) String added in v1.2.0

func (x *TempConvertResponse) String() string

type TextAction

type TextAction int32
const (
	TextAction_SORT_AZ      TextAction = 0
	TextAction_SORT_ZA      TextAction = 1
	TextAction_SORT_NUMERIC TextAction = 2
	TextAction_REVERSE      TextAction = 3
	TextAction_DEDUPE       TextAction = 4
	TextAction_REMOVE_EMPTY TextAction = 5
	TextAction_TRIM         TextAction = 6
)

func (TextAction) Descriptor

func (TextAction) Descriptor() protoreflect.EnumDescriptor

func (TextAction) Enum

func (x TextAction) Enum() *TextAction

func (TextAction) EnumDescriptor deprecated

func (TextAction) EnumDescriptor() ([]byte, []int)

Deprecated: Use TextAction.Descriptor instead.

func (TextAction) Number

func (x TextAction) Number() protoreflect.EnumNumber

func (TextAction) String

func (x TextAction) String() string

func (TextAction) Type

type TextEncodeRequest added in v1.2.0

type TextEncodeRequest struct {
	Text   string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Action string `protobuf:"bytes,2,opt,name=action,proto3" json:"action,omitempty"` // "encode" or "decode"
	Format string `protobuf:"bytes,3,opt,name=format,proto3" json:"format,omitempty"` // "binary", "hex", "octal", "decimal"
	// contains filtered or unexported fields
}

func (*TextEncodeRequest) Descriptor deprecated added in v1.2.0

func (*TextEncodeRequest) Descriptor() ([]byte, []int)

Deprecated: Use TextEncodeRequest.ProtoReflect.Descriptor instead.

func (*TextEncodeRequest) GetAction added in v1.2.0

func (x *TextEncodeRequest) GetAction() string

func (*TextEncodeRequest) GetFormat added in v1.2.0

func (x *TextEncodeRequest) GetFormat() string

func (*TextEncodeRequest) GetText added in v1.2.0

func (x *TextEncodeRequest) GetText() string

func (*TextEncodeRequest) ProtoMessage added in v1.2.0

func (*TextEncodeRequest) ProtoMessage()

func (*TextEncodeRequest) ProtoReflect added in v1.2.0

func (x *TextEncodeRequest) ProtoReflect() protoreflect.Message

func (*TextEncodeRequest) Reset added in v1.2.0

func (x *TextEncodeRequest) Reset()

func (*TextEncodeRequest) String added in v1.2.0

func (x *TextEncodeRequest) String() string

type TextEncodeResponse added in v1.2.0

type TextEncodeResponse struct {
	Result string `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
	Error  string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*TextEncodeResponse) Descriptor deprecated added in v1.2.0

func (*TextEncodeResponse) Descriptor() ([]byte, []int)

Deprecated: Use TextEncodeResponse.ProtoReflect.Descriptor instead.

func (*TextEncodeResponse) GetError added in v1.2.0

func (x *TextEncodeResponse) GetError() string

func (*TextEncodeResponse) GetResult added in v1.2.0

func (x *TextEncodeResponse) GetResult() string

func (*TextEncodeResponse) ProtoMessage added in v1.2.0

func (*TextEncodeResponse) ProtoMessage()

func (*TextEncodeResponse) ProtoReflect added in v1.2.0

func (x *TextEncodeResponse) ProtoReflect() protoreflect.Message

func (*TextEncodeResponse) Reset added in v1.2.0

func (x *TextEncodeResponse) Reset()

func (*TextEncodeResponse) String added in v1.2.0

func (x *TextEncodeResponse) String() string

type TextInspectRequest

type TextInspectRequest struct {
	Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	// contains filtered or unexported fields
}

func (*TextInspectRequest) Descriptor deprecated

func (*TextInspectRequest) Descriptor() ([]byte, []int)

Deprecated: Use TextInspectRequest.ProtoReflect.Descriptor instead.

func (*TextInspectRequest) GetText

func (x *TextInspectRequest) GetText() string

func (*TextInspectRequest) ProtoMessage

func (*TextInspectRequest) ProtoMessage()

func (*TextInspectRequest) ProtoReflect

func (x *TextInspectRequest) ProtoReflect() protoreflect.Message

func (*TextInspectRequest) Reset

func (x *TextInspectRequest) Reset()

func (*TextInspectRequest) String

func (x *TextInspectRequest) String() string

type TextInspectResponse

type TextInspectResponse struct {
	CharCount int32 `protobuf:"varint,1,opt,name=char_count,json=charCount,proto3" json:"char_count,omitempty"`
	WordCount int32 `protobuf:"varint,2,opt,name=word_count,json=wordCount,proto3" json:"word_count,omitempty"`
	LineCount int32 `protobuf:"varint,3,opt,name=line_count,json=lineCount,proto3" json:"line_count,omitempty"`
	ByteCount int32 `protobuf:"varint,4,opt,name=byte_count,json=byteCount,proto3" json:"byte_count,omitempty"`
	// contains filtered or unexported fields
}

func (*TextInspectResponse) Descriptor deprecated

func (*TextInspectResponse) Descriptor() ([]byte, []int)

Deprecated: Use TextInspectResponse.ProtoReflect.Descriptor instead.

func (*TextInspectResponse) GetByteCount

func (x *TextInspectResponse) GetByteCount() int32

func (*TextInspectResponse) GetCharCount

func (x *TextInspectResponse) GetCharCount() int32

func (*TextInspectResponse) GetLineCount

func (x *TextInspectResponse) GetLineCount() int32

func (*TextInspectResponse) GetWordCount

func (x *TextInspectResponse) GetWordCount() int32

func (*TextInspectResponse) ProtoMessage

func (*TextInspectResponse) ProtoMessage()

func (*TextInspectResponse) ProtoReflect

func (x *TextInspectResponse) ProtoReflect() protoreflect.Message

func (*TextInspectResponse) Reset

func (x *TextInspectResponse) Reset()

func (*TextInspectResponse) String

func (x *TextInspectResponse) String() string

type TextManipulateRequest

type TextManipulateRequest struct {
	Text   string     `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Action TextAction `protobuf:"varint,2,opt,name=action,proto3,enum=privutil.TextAction" json:"action,omitempty"`
	// contains filtered or unexported fields
}

func (*TextManipulateRequest) Descriptor deprecated

func (*TextManipulateRequest) Descriptor() ([]byte, []int)

Deprecated: Use TextManipulateRequest.ProtoReflect.Descriptor instead.

func (*TextManipulateRequest) GetAction

func (x *TextManipulateRequest) GetAction() TextAction

func (*TextManipulateRequest) GetText

func (x *TextManipulateRequest) GetText() string

func (*TextManipulateRequest) ProtoMessage

func (*TextManipulateRequest) ProtoMessage()

func (*TextManipulateRequest) ProtoReflect

func (x *TextManipulateRequest) ProtoReflect() protoreflect.Message

func (*TextManipulateRequest) Reset

func (x *TextManipulateRequest) Reset()

func (*TextManipulateRequest) String

func (x *TextManipulateRequest) String() string

type TextManipulateResponse

type TextManipulateResponse struct {
	Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	// contains filtered or unexported fields
}

func (*TextManipulateResponse) Descriptor deprecated

func (*TextManipulateResponse) Descriptor() ([]byte, []int)

Deprecated: Use TextManipulateResponse.ProtoReflect.Descriptor instead.

func (*TextManipulateResponse) GetText

func (x *TextManipulateResponse) GetText() string

func (*TextManipulateResponse) ProtoMessage

func (*TextManipulateResponse) ProtoMessage()

func (*TextManipulateResponse) ProtoReflect

func (x *TextManipulateResponse) ProtoReflect() protoreflect.Message

func (*TextManipulateResponse) Reset

func (x *TextManipulateResponse) Reset()

func (*TextManipulateResponse) String

func (x *TextManipulateResponse) String() string

type TextReplaceRequest added in v1.2.0

type TextReplaceRequest struct {
	Text            string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Find            string `protobuf:"bytes,2,opt,name=find,proto3" json:"find,omitempty"`
	ReplaceWith     string `protobuf:"bytes,3,opt,name=replace_with,json=replaceWith,proto3" json:"replace_with,omitempty"`
	UseRegex        bool   `protobuf:"varint,4,opt,name=use_regex,json=useRegex,proto3" json:"use_regex,omitempty"`
	CaseInsensitive bool   `protobuf:"varint,5,opt,name=case_insensitive,json=caseInsensitive,proto3" json:"case_insensitive,omitempty"`
	// contains filtered or unexported fields
}

func (*TextReplaceRequest) Descriptor deprecated added in v1.2.0

func (*TextReplaceRequest) Descriptor() ([]byte, []int)

Deprecated: Use TextReplaceRequest.ProtoReflect.Descriptor instead.

func (*TextReplaceRequest) GetCaseInsensitive added in v1.2.0

func (x *TextReplaceRequest) GetCaseInsensitive() bool

func (*TextReplaceRequest) GetFind added in v1.2.0

func (x *TextReplaceRequest) GetFind() string

func (*TextReplaceRequest) GetReplaceWith added in v1.2.0

func (x *TextReplaceRequest) GetReplaceWith() string

func (*TextReplaceRequest) GetText added in v1.2.0

func (x *TextReplaceRequest) GetText() string

func (*TextReplaceRequest) GetUseRegex added in v1.2.0

func (x *TextReplaceRequest) GetUseRegex() bool

func (*TextReplaceRequest) ProtoMessage added in v1.2.0

func (*TextReplaceRequest) ProtoMessage()

func (*TextReplaceRequest) ProtoReflect added in v1.2.0

func (x *TextReplaceRequest) ProtoReflect() protoreflect.Message

func (*TextReplaceRequest) Reset added in v1.2.0

func (x *TextReplaceRequest) Reset()

func (*TextReplaceRequest) String added in v1.2.0

func (x *TextReplaceRequest) String() string

type TextReplaceResponse added in v1.2.0

type TextReplaceResponse struct {
	Result string `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
	Count  int32  `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
	Error  string `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*TextReplaceResponse) Descriptor deprecated added in v1.2.0

func (*TextReplaceResponse) Descriptor() ([]byte, []int)

Deprecated: Use TextReplaceResponse.ProtoReflect.Descriptor instead.

func (*TextReplaceResponse) GetCount added in v1.2.0

func (x *TextReplaceResponse) GetCount() int32

func (*TextReplaceResponse) GetError added in v1.2.0

func (x *TextReplaceResponse) GetError() string

func (*TextReplaceResponse) GetResult added in v1.2.0

func (x *TextReplaceResponse) GetResult() string

func (*TextReplaceResponse) ProtoMessage added in v1.2.0

func (*TextReplaceResponse) ProtoMessage()

func (*TextReplaceResponse) ProtoReflect added in v1.2.0

func (x *TextReplaceResponse) ProtoReflect() protoreflect.Message

func (*TextReplaceResponse) Reset added in v1.2.0

func (x *TextReplaceResponse) Reset()

func (*TextReplaceResponse) String added in v1.2.0

func (x *TextReplaceResponse) String() string

type TextRequest

type TextRequest struct {
	Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	// contains filtered or unexported fields
}

func (*TextRequest) Descriptor deprecated

func (*TextRequest) Descriptor() ([]byte, []int)

Deprecated: Use TextRequest.ProtoReflect.Descriptor instead.

func (*TextRequest) GetText

func (x *TextRequest) GetText() string

func (*TextRequest) ProtoMessage

func (*TextRequest) ProtoMessage()

func (*TextRequest) ProtoReflect

func (x *TextRequest) ProtoReflect() protoreflect.Message

func (*TextRequest) Reset

func (x *TextRequest) Reset()

func (*TextRequest) String

func (x *TextRequest) String() string

type TextResponse

type TextResponse struct {
	Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	// contains filtered or unexported fields
}

func (*TextResponse) Descriptor deprecated

func (*TextResponse) Descriptor() ([]byte, []int)

Deprecated: Use TextResponse.ProtoReflect.Descriptor instead.

func (*TextResponse) GetText

func (x *TextResponse) GetText() string

func (*TextResponse) ProtoMessage

func (*TextResponse) ProtoMessage()

func (*TextResponse) ProtoReflect

func (x *TextResponse) ProtoReflect() protoreflect.Message

func (*TextResponse) Reset

func (x *TextResponse) Reset()

func (*TextResponse) String

func (x *TextResponse) String() string

type TimeRequest

type TimeRequest struct {
	Input string `protobuf:"bytes,1,opt,name=input,proto3" json:"input,omitempty"` // Can be timestamp (int string) or ISO date
	// contains filtered or unexported fields
}

func (*TimeRequest) Descriptor deprecated

func (*TimeRequest) Descriptor() ([]byte, []int)

Deprecated: Use TimeRequest.ProtoReflect.Descriptor instead.

func (*TimeRequest) GetInput

func (x *TimeRequest) GetInput() string

func (*TimeRequest) ProtoMessage

func (*TimeRequest) ProtoMessage()

func (*TimeRequest) ProtoReflect

func (x *TimeRequest) ProtoReflect() protoreflect.Message

func (*TimeRequest) Reset

func (x *TimeRequest) Reset()

func (*TimeRequest) String

func (x *TimeRequest) String() string

type TimeResponse

type TimeResponse struct {
	Unix  int64  `protobuf:"varint,1,opt,name=unix,proto3" json:"unix,omitempty"`
	Utc   string `protobuf:"bytes,2,opt,name=utc,proto3" json:"utc,omitempty"`
	Local string `protobuf:"bytes,3,opt,name=local,proto3" json:"local,omitempty"`
	Iso   string `protobuf:"bytes,4,opt,name=iso,proto3" json:"iso,omitempty"`
	// contains filtered or unexported fields
}

func (*TimeResponse) Descriptor deprecated

func (*TimeResponse) Descriptor() ([]byte, []int)

Deprecated: Use TimeResponse.ProtoReflect.Descriptor instead.

func (*TimeResponse) GetIso

func (x *TimeResponse) GetIso() string

func (*TimeResponse) GetLocal

func (x *TimeResponse) GetLocal() string

func (*TimeResponse) GetUnix

func (x *TimeResponse) GetUnix() int64

func (*TimeResponse) GetUtc

func (x *TimeResponse) GetUtc() string

func (*TimeResponse) ProtoMessage

func (*TimeResponse) ProtoMessage()

func (*TimeResponse) ProtoReflect

func (x *TimeResponse) ProtoReflect() protoreflect.Message

func (*TimeResponse) Reset

func (x *TimeResponse) Reset()

func (*TimeResponse) String

func (x *TimeResponse) String() string

type TokenCountRequest added in v1.4.0

type TokenCountRequest struct {
	Text     string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Strategy string `protobuf:"bytes,2,opt,name=strategy,proto3" json:"strategy,omitempty"` // optional: strategy id filter (empty = return all)
	// contains filtered or unexported fields
}

func (*TokenCountRequest) Descriptor deprecated added in v1.4.0

func (*TokenCountRequest) Descriptor() ([]byte, []int)

Deprecated: Use TokenCountRequest.ProtoReflect.Descriptor instead.

func (*TokenCountRequest) GetStrategy added in v1.4.0

func (x *TokenCountRequest) GetStrategy() string

func (*TokenCountRequest) GetText added in v1.4.0

func (x *TokenCountRequest) GetText() string

func (*TokenCountRequest) ProtoMessage added in v1.4.0

func (*TokenCountRequest) ProtoMessage()

func (*TokenCountRequest) ProtoReflect added in v1.4.0

func (x *TokenCountRequest) ProtoReflect() protoreflect.Message

func (*TokenCountRequest) Reset added in v1.4.0

func (x *TokenCountRequest) Reset()

func (*TokenCountRequest) String added in v1.4.0

func (x *TokenCountRequest) String() string

type TokenCountResponse added in v1.4.0

type TokenCountResponse struct {
	Strategies []*TokenStrategy `protobuf:"bytes,1,rep,name=strategies,proto3" json:"strategies,omitempty"`
	CharCount  int32            `protobuf:"varint,2,opt,name=char_count,json=charCount,proto3" json:"char_count,omitempty"`
	ByteCount  int32            `protobuf:"varint,3,opt,name=byte_count,json=byteCount,proto3" json:"byte_count,omitempty"`
	Error      string           `protobuf:"bytes,4,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*TokenCountResponse) Descriptor deprecated added in v1.4.0

func (*TokenCountResponse) Descriptor() ([]byte, []int)

Deprecated: Use TokenCountResponse.ProtoReflect.Descriptor instead.

func (*TokenCountResponse) GetByteCount added in v1.4.0

func (x *TokenCountResponse) GetByteCount() int32

func (*TokenCountResponse) GetCharCount added in v1.4.0

func (x *TokenCountResponse) GetCharCount() int32

func (*TokenCountResponse) GetError added in v1.4.0

func (x *TokenCountResponse) GetError() string

func (*TokenCountResponse) GetStrategies added in v1.4.0

func (x *TokenCountResponse) GetStrategies() []*TokenStrategy

func (*TokenCountResponse) ProtoMessage added in v1.4.0

func (*TokenCountResponse) ProtoMessage()

func (*TokenCountResponse) ProtoReflect added in v1.4.0

func (x *TokenCountResponse) ProtoReflect() protoreflect.Message

func (*TokenCountResponse) Reset added in v1.4.0

func (x *TokenCountResponse) Reset()

func (*TokenCountResponse) String added in v1.4.0

func (x *TokenCountResponse) String() string

type TokenStrategy added in v1.4.0

type TokenStrategy struct {
	Name     string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`   // strategy id
	Label    string   `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"` // human-friendly name
	Count    int32    `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
	Sample   []string `protobuf:"bytes,4,rep,name=sample,proto3" json:"sample,omitempty"`     // first N tokens as preview (capped at 200)
	Exact    bool     `protobuf:"varint,5,opt,name=exact,proto3" json:"exact,omitempty"`      // true = exact BPE tokenization, false = heuristic estimate
	Encoding string   `protobuf:"bytes,6,opt,name=encoding,proto3" json:"encoding,omitempty"` // underlying encoding used (e.g. "o200k_base")
	Group    string   `protobuf:"bytes,7,opt,name=group,proto3" json:"group,omitempty"`       // grouping: "openai", "anthropic", "meta", "google", "mistral", "classic"
	// contains filtered or unexported fields
}

func (*TokenStrategy) Descriptor deprecated added in v1.4.0

func (*TokenStrategy) Descriptor() ([]byte, []int)

Deprecated: Use TokenStrategy.ProtoReflect.Descriptor instead.

func (*TokenStrategy) GetCount added in v1.4.0

func (x *TokenStrategy) GetCount() int32

func (*TokenStrategy) GetEncoding added in v1.4.0

func (x *TokenStrategy) GetEncoding() string

func (*TokenStrategy) GetExact added in v1.4.0

func (x *TokenStrategy) GetExact() bool

func (*TokenStrategy) GetGroup added in v1.4.0

func (x *TokenStrategy) GetGroup() string

func (*TokenStrategy) GetLabel added in v1.4.0

func (x *TokenStrategy) GetLabel() string

func (*TokenStrategy) GetName added in v1.4.0

func (x *TokenStrategy) GetName() string

func (*TokenStrategy) GetSample added in v1.4.0

func (x *TokenStrategy) GetSample() []string

func (*TokenStrategy) ProtoMessage added in v1.4.0

func (*TokenStrategy) ProtoMessage()

func (*TokenStrategy) ProtoReflect added in v1.4.0

func (x *TokenStrategy) ProtoReflect() protoreflect.Message

func (*TokenStrategy) Reset added in v1.4.0

func (x *TokenStrategy) Reset()

func (*TokenStrategy) String added in v1.4.0

func (x *TokenStrategy) String() string

type UAParsedField added in v1.2.0

type UAParsedField struct {
	Label string `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
	Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*UAParsedField) Descriptor deprecated added in v1.2.0

func (*UAParsedField) Descriptor() ([]byte, []int)

Deprecated: Use UAParsedField.ProtoReflect.Descriptor instead.

func (*UAParsedField) GetLabel added in v1.2.0

func (x *UAParsedField) GetLabel() string

func (*UAParsedField) GetValue added in v1.2.0

func (x *UAParsedField) GetValue() string

func (*UAParsedField) ProtoMessage added in v1.2.0

func (*UAParsedField) ProtoMessage()

func (*UAParsedField) ProtoReflect added in v1.2.0

func (x *UAParsedField) ProtoReflect() protoreflect.Message

func (*UAParsedField) Reset added in v1.2.0

func (x *UAParsedField) Reset()

func (*UAParsedField) String added in v1.2.0

func (x *UAParsedField) String() string

type UlidRequest added in v1.2.0

type UlidRequest struct {
	Count     int32 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
	Monotonic bool  `protobuf:"varint,2,opt,name=monotonic,proto3" json:"monotonic,omitempty"` // use monotonic entropy for ordering within same millisecond
	// contains filtered or unexported fields
}

func (*UlidRequest) Descriptor deprecated added in v1.2.0

func (*UlidRequest) Descriptor() ([]byte, []int)

Deprecated: Use UlidRequest.ProtoReflect.Descriptor instead.

func (*UlidRequest) GetCount added in v1.2.0

func (x *UlidRequest) GetCount() int32

func (*UlidRequest) GetMonotonic added in v1.2.0

func (x *UlidRequest) GetMonotonic() bool

func (*UlidRequest) ProtoMessage added in v1.2.0

func (*UlidRequest) ProtoMessage()

func (*UlidRequest) ProtoReflect added in v1.2.0

func (x *UlidRequest) ProtoReflect() protoreflect.Message

func (*UlidRequest) Reset added in v1.2.0

func (x *UlidRequest) Reset()

func (*UlidRequest) String added in v1.2.0

func (x *UlidRequest) String() string

type UlidResponse added in v1.2.0

type UlidResponse struct {
	Ulids []string `protobuf:"bytes,1,rep,name=ulids,proto3" json:"ulids,omitempty"`
	Error string   `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*UlidResponse) Descriptor deprecated added in v1.2.0

func (*UlidResponse) Descriptor() ([]byte, []int)

Deprecated: Use UlidResponse.ProtoReflect.Descriptor instead.

func (*UlidResponse) GetError added in v1.2.0

func (x *UlidResponse) GetError() string

func (*UlidResponse) GetUlids added in v1.2.0

func (x *UlidResponse) GetUlids() []string

func (*UlidResponse) ProtoMessage added in v1.2.0

func (*UlidResponse) ProtoMessage()

func (*UlidResponse) ProtoReflect added in v1.2.0

func (x *UlidResponse) ProtoReflect() protoreflect.Message

func (*UlidResponse) Reset added in v1.2.0

func (x *UlidResponse) Reset()

func (*UlidResponse) String added in v1.2.0

func (x *UlidResponse) String() string

type UnitCategory added in v1.2.0

type UnitCategory int32
const (
	UnitCategory_UNIT_BYTES  UnitCategory = 0
	UnitCategory_UNIT_LENGTH UnitCategory = 1
	UnitCategory_UNIT_MASS   UnitCategory = 2
	UnitCategory_UNIT_AREA   UnitCategory = 3
	UnitCategory_UNIT_VOLUME UnitCategory = 4
	UnitCategory_UNIT_SPEED  UnitCategory = 5
)

func (UnitCategory) Descriptor added in v1.2.0

func (UnitCategory) Enum added in v1.2.0

func (x UnitCategory) Enum() *UnitCategory

func (UnitCategory) EnumDescriptor deprecated added in v1.2.0

func (UnitCategory) EnumDescriptor() ([]byte, []int)

Deprecated: Use UnitCategory.Descriptor instead.

func (UnitCategory) Number added in v1.2.0

func (UnitCategory) String added in v1.2.0

func (x UnitCategory) String() string

func (UnitCategory) Type added in v1.2.0

type UnitConvertRequest added in v1.2.0

type UnitConvertRequest struct {
	Value    float64      `protobuf:"fixed64,1,opt,name=value,proto3" json:"value,omitempty"`
	FromUnit string       `protobuf:"bytes,2,opt,name=from_unit,json=fromUnit,proto3" json:"from_unit,omitempty"`
	Category UnitCategory `protobuf:"varint,3,opt,name=category,proto3,enum=privutil.UnitCategory" json:"category,omitempty"`
	// contains filtered or unexported fields
}

func (*UnitConvertRequest) Descriptor deprecated added in v1.2.0

func (*UnitConvertRequest) Descriptor() ([]byte, []int)

Deprecated: Use UnitConvertRequest.ProtoReflect.Descriptor instead.

func (*UnitConvertRequest) GetCategory added in v1.2.0

func (x *UnitConvertRequest) GetCategory() UnitCategory

func (*UnitConvertRequest) GetFromUnit added in v1.2.0

func (x *UnitConvertRequest) GetFromUnit() string

func (*UnitConvertRequest) GetValue added in v1.2.0

func (x *UnitConvertRequest) GetValue() float64

func (*UnitConvertRequest) ProtoMessage added in v1.2.0

func (*UnitConvertRequest) ProtoMessage()

func (*UnitConvertRequest) ProtoReflect added in v1.2.0

func (x *UnitConvertRequest) ProtoReflect() protoreflect.Message

func (*UnitConvertRequest) Reset added in v1.2.0

func (x *UnitConvertRequest) Reset()

func (*UnitConvertRequest) String added in v1.2.0

func (x *UnitConvertRequest) String() string

type UnitConvertResponse added in v1.2.0

type UnitConvertResponse struct {
	Results []*UnitResult `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
	Error   string        `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*UnitConvertResponse) Descriptor deprecated added in v1.2.0

func (*UnitConvertResponse) Descriptor() ([]byte, []int)

Deprecated: Use UnitConvertResponse.ProtoReflect.Descriptor instead.

func (*UnitConvertResponse) GetError added in v1.2.0

func (x *UnitConvertResponse) GetError() string

func (*UnitConvertResponse) GetResults added in v1.2.0

func (x *UnitConvertResponse) GetResults() []*UnitResult

func (*UnitConvertResponse) ProtoMessage added in v1.2.0

func (*UnitConvertResponse) ProtoMessage()

func (*UnitConvertResponse) ProtoReflect added in v1.2.0

func (x *UnitConvertResponse) ProtoReflect() protoreflect.Message

func (*UnitConvertResponse) Reset added in v1.2.0

func (x *UnitConvertResponse) Reset()

func (*UnitConvertResponse) String added in v1.2.0

func (x *UnitConvertResponse) String() string

type UnitResult added in v1.2.0

type UnitResult struct {
	Unit      string  `protobuf:"bytes,1,opt,name=unit,proto3" json:"unit,omitempty"`
	Label     string  `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
	Value     float64 `protobuf:"fixed64,3,opt,name=value,proto3" json:"value,omitempty"`
	Formatted string  `protobuf:"bytes,4,opt,name=formatted,proto3" json:"formatted,omitempty"`
	// contains filtered or unexported fields
}

func (*UnitResult) Descriptor deprecated added in v1.2.0

func (*UnitResult) Descriptor() ([]byte, []int)

Deprecated: Use UnitResult.ProtoReflect.Descriptor instead.

func (*UnitResult) GetFormatted added in v1.2.0

func (x *UnitResult) GetFormatted() string

func (*UnitResult) GetLabel added in v1.2.0

func (x *UnitResult) GetLabel() string

func (*UnitResult) GetUnit added in v1.2.0

func (x *UnitResult) GetUnit() string

func (*UnitResult) GetValue added in v1.2.0

func (x *UnitResult) GetValue() float64

func (*UnitResult) ProtoMessage added in v1.2.0

func (*UnitResult) ProtoMessage()

func (*UnitResult) ProtoReflect added in v1.2.0

func (x *UnitResult) ProtoReflect() protoreflect.Message

func (*UnitResult) Reset added in v1.2.0

func (x *UnitResult) Reset()

func (*UnitResult) String added in v1.2.0

func (x *UnitResult) String() string

type UrlParseRequest added in v1.2.0

type UrlParseRequest struct {
	Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	// contains filtered or unexported fields
}

func (*UrlParseRequest) Descriptor deprecated added in v1.2.0

func (*UrlParseRequest) Descriptor() ([]byte, []int)

Deprecated: Use UrlParseRequest.ProtoReflect.Descriptor instead.

func (*UrlParseRequest) GetUrl added in v1.2.0

func (x *UrlParseRequest) GetUrl() string

func (*UrlParseRequest) ProtoMessage added in v1.2.0

func (*UrlParseRequest) ProtoMessage()

func (*UrlParseRequest) ProtoReflect added in v1.2.0

func (x *UrlParseRequest) ProtoReflect() protoreflect.Message

func (*UrlParseRequest) Reset added in v1.2.0

func (x *UrlParseRequest) Reset()

func (*UrlParseRequest) String added in v1.2.0

func (x *UrlParseRequest) String() string

type UrlParseResponse added in v1.2.0

type UrlParseResponse struct {
	Scheme      string        `protobuf:"bytes,1,opt,name=scheme,proto3" json:"scheme,omitempty"`
	Username    string        `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
	Password    string        `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
	Host        string        `protobuf:"bytes,4,opt,name=host,proto3" json:"host,omitempty"` // hostname:port
	Hostname    string        `protobuf:"bytes,5,opt,name=hostname,proto3" json:"hostname,omitempty"`
	Port        string        `protobuf:"bytes,6,opt,name=port,proto3" json:"port,omitempty"`
	Path        string        `protobuf:"bytes,7,opt,name=path,proto3" json:"path,omitempty"`
	Query       string        `protobuf:"bytes,8,opt,name=query,proto3" json:"query,omitempty"` // raw query string
	QueryParams []*QueryParam `protobuf:"bytes,9,rep,name=query_params,json=queryParams,proto3" json:"query_params,omitempty"`
	Fragment    string        `protobuf:"bytes,10,opt,name=fragment,proto3" json:"fragment,omitempty"`
	Normalized  string        `protobuf:"bytes,11,opt,name=normalized,proto3" json:"normalized,omitempty"`
	IsValid     bool          `protobuf:"varint,12,opt,name=is_valid,json=isValid,proto3" json:"is_valid,omitempty"`
	Error       string        `protobuf:"bytes,13,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*UrlParseResponse) Descriptor deprecated added in v1.2.0

func (*UrlParseResponse) Descriptor() ([]byte, []int)

Deprecated: Use UrlParseResponse.ProtoReflect.Descriptor instead.

func (*UrlParseResponse) GetError added in v1.2.0

func (x *UrlParseResponse) GetError() string

func (*UrlParseResponse) GetFragment added in v1.2.0

func (x *UrlParseResponse) GetFragment() string

func (*UrlParseResponse) GetHost added in v1.2.0

func (x *UrlParseResponse) GetHost() string

func (*UrlParseResponse) GetHostname added in v1.2.0

func (x *UrlParseResponse) GetHostname() string

func (*UrlParseResponse) GetIsValid added in v1.2.0

func (x *UrlParseResponse) GetIsValid() bool

func (*UrlParseResponse) GetNormalized added in v1.2.0

func (x *UrlParseResponse) GetNormalized() string

func (*UrlParseResponse) GetPassword added in v1.2.0

func (x *UrlParseResponse) GetPassword() string

func (*UrlParseResponse) GetPath added in v1.2.0

func (x *UrlParseResponse) GetPath() string

func (*UrlParseResponse) GetPort added in v1.2.0

func (x *UrlParseResponse) GetPort() string

func (*UrlParseResponse) GetQuery added in v1.2.0

func (x *UrlParseResponse) GetQuery() string

func (*UrlParseResponse) GetQueryParams added in v1.2.0

func (x *UrlParseResponse) GetQueryParams() []*QueryParam

func (*UrlParseResponse) GetScheme added in v1.2.0

func (x *UrlParseResponse) GetScheme() string

func (*UrlParseResponse) GetUsername added in v1.2.0

func (x *UrlParseResponse) GetUsername() string

func (*UrlParseResponse) ProtoMessage added in v1.2.0

func (*UrlParseResponse) ProtoMessage()

func (*UrlParseResponse) ProtoReflect added in v1.2.0

func (x *UrlParseResponse) ProtoReflect() protoreflect.Message

func (*UrlParseResponse) Reset added in v1.2.0

func (x *UrlParseResponse) Reset()

func (*UrlParseResponse) String added in v1.2.0

func (x *UrlParseResponse) String() string

type UserAgentParseRequest added in v1.2.0

type UserAgentParseRequest struct {
	UserAgent string `protobuf:"bytes,1,opt,name=user_agent,json=userAgent,proto3" json:"user_agent,omitempty"`
	// contains filtered or unexported fields
}

func (*UserAgentParseRequest) Descriptor deprecated added in v1.2.0

func (*UserAgentParseRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserAgentParseRequest.ProtoReflect.Descriptor instead.

func (*UserAgentParseRequest) GetUserAgent added in v1.2.0

func (x *UserAgentParseRequest) GetUserAgent() string

func (*UserAgentParseRequest) ProtoMessage added in v1.2.0

func (*UserAgentParseRequest) ProtoMessage()

func (*UserAgentParseRequest) ProtoReflect added in v1.2.0

func (x *UserAgentParseRequest) ProtoReflect() protoreflect.Message

func (*UserAgentParseRequest) Reset added in v1.2.0

func (x *UserAgentParseRequest) Reset()

func (*UserAgentParseRequest) String added in v1.2.0

func (x *UserAgentParseRequest) String() string

type UserAgentParseResponse added in v1.2.0

type UserAgentParseResponse struct {
	BrowserName    string           `protobuf:"bytes,1,opt,name=browser_name,json=browserName,proto3" json:"browser_name,omitempty"`
	BrowserVersion string           `protobuf:"bytes,2,opt,name=browser_version,json=browserVersion,proto3" json:"browser_version,omitempty"`
	OsName         string           `protobuf:"bytes,3,opt,name=os_name,json=osName,proto3" json:"os_name,omitempty"`
	OsVersion      string           `protobuf:"bytes,4,opt,name=os_version,json=osVersion,proto3" json:"os_version,omitempty"`
	DeviceType     string           `protobuf:"bytes,5,opt,name=device_type,json=deviceType,proto3" json:"device_type,omitempty"` // "desktop", "mobile", "tablet", "bot"
	Engine         string           `protobuf:"bytes,6,opt,name=engine,proto3" json:"engine,omitempty"`
	EngineVersion  string           `protobuf:"bytes,7,opt,name=engine_version,json=engineVersion,proto3" json:"engine_version,omitempty"`
	IsBot          bool             `protobuf:"varint,8,opt,name=is_bot,json=isBot,proto3" json:"is_bot,omitempty"`
	IsMobile       bool             `protobuf:"varint,9,opt,name=is_mobile,json=isMobile,proto3" json:"is_mobile,omitempty"`
	Fields         []*UAParsedField `protobuf:"bytes,10,rep,name=fields,proto3" json:"fields,omitempty"`
	Error          string           `protobuf:"bytes,11,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*UserAgentParseResponse) Descriptor deprecated added in v1.2.0

func (*UserAgentParseResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserAgentParseResponse.ProtoReflect.Descriptor instead.

func (*UserAgentParseResponse) GetBrowserName added in v1.2.0

func (x *UserAgentParseResponse) GetBrowserName() string

func (*UserAgentParseResponse) GetBrowserVersion added in v1.2.0

func (x *UserAgentParseResponse) GetBrowserVersion() string

func (*UserAgentParseResponse) GetDeviceType added in v1.2.0

func (x *UserAgentParseResponse) GetDeviceType() string

func (*UserAgentParseResponse) GetEngine added in v1.2.0

func (x *UserAgentParseResponse) GetEngine() string

func (*UserAgentParseResponse) GetEngineVersion added in v1.2.0

func (x *UserAgentParseResponse) GetEngineVersion() string

func (*UserAgentParseResponse) GetError added in v1.2.0

func (x *UserAgentParseResponse) GetError() string

func (*UserAgentParseResponse) GetFields added in v1.2.0

func (x *UserAgentParseResponse) GetFields() []*UAParsedField

func (*UserAgentParseResponse) GetIsBot added in v1.2.0

func (x *UserAgentParseResponse) GetIsBot() bool

func (*UserAgentParseResponse) GetIsMobile added in v1.2.0

func (x *UserAgentParseResponse) GetIsMobile() bool

func (*UserAgentParseResponse) GetOsName added in v1.2.0

func (x *UserAgentParseResponse) GetOsName() string

func (*UserAgentParseResponse) GetOsVersion added in v1.2.0

func (x *UserAgentParseResponse) GetOsVersion() string

func (*UserAgentParseResponse) ProtoMessage added in v1.2.0

func (*UserAgentParseResponse) ProtoMessage()

func (*UserAgentParseResponse) ProtoReflect added in v1.2.0

func (x *UserAgentParseResponse) ProtoReflect() protoreflect.Message

func (*UserAgentParseResponse) Reset added in v1.2.0

func (x *UserAgentParseResponse) Reset()

func (*UserAgentParseResponse) String added in v1.2.0

func (x *UserAgentParseResponse) String() string

type UuidRequest

type UuidRequest struct {
	Hyphen    bool   `protobuf:"varint,1,opt,name=hyphen,proto3" json:"hyphen,omitempty"`
	Uppercase bool   `protobuf:"varint,2,opt,name=uppercase,proto3" json:"uppercase,omitempty"`
	Count     int32  `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
	Version   string `protobuf:"bytes,4,opt,name=version,proto3" json:"version,omitempty"`     // "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8"
	Namespace string `protobuf:"bytes,5,opt,name=namespace,proto3" json:"namespace,omitempty"` // For v3, v5, v8: "dns", "url", "oid", "x500" (default: "dns")
	// contains filtered or unexported fields
}

func (*UuidRequest) Descriptor deprecated

func (*UuidRequest) Descriptor() ([]byte, []int)

Deprecated: Use UuidRequest.ProtoReflect.Descriptor instead.

func (*UuidRequest) GetCount

func (x *UuidRequest) GetCount() int32

func (*UuidRequest) GetHyphen

func (x *UuidRequest) GetHyphen() bool

func (*UuidRequest) GetNamespace added in v1.1.4

func (x *UuidRequest) GetNamespace() string

func (*UuidRequest) GetUppercase

func (x *UuidRequest) GetUppercase() bool

func (*UuidRequest) GetVersion

func (x *UuidRequest) GetVersion() string

func (*UuidRequest) ProtoMessage

func (*UuidRequest) ProtoMessage()

func (*UuidRequest) ProtoReflect

func (x *UuidRequest) ProtoReflect() protoreflect.Message

func (*UuidRequest) Reset

func (x *UuidRequest) Reset()

func (*UuidRequest) String

func (x *UuidRequest) String() string

type UuidResponse

type UuidResponse struct {
	Uuids []string `protobuf:"bytes,1,rep,name=uuids,proto3" json:"uuids,omitempty"`
	// contains filtered or unexported fields
}

func (*UuidResponse) Descriptor deprecated

func (*UuidResponse) Descriptor() ([]byte, []int)

Deprecated: Use UuidResponse.ProtoReflect.Descriptor instead.

func (*UuidResponse) GetUuids

func (x *UuidResponse) GetUuids() []string

func (*UuidResponse) ProtoMessage

func (*UuidResponse) ProtoMessage()

func (*UuidResponse) ProtoReflect

func (x *UuidResponse) ProtoReflect() protoreflect.Message

func (*UuidResponse) Reset

func (x *UuidResponse) Reset()

func (*UuidResponse) String

func (x *UuidResponse) String() string

type ValidateRequest added in v1.2.0

type ValidateRequest struct {
	Data   string     `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Format DataFormat `protobuf:"varint,2,opt,name=format,proto3,enum=privutil.DataFormat" json:"format,omitempty"` // JSON, YAML, XML, or TOML
	// contains filtered or unexported fields
}

func (*ValidateRequest) Descriptor deprecated added in v1.2.0

func (*ValidateRequest) Descriptor() ([]byte, []int)

Deprecated: Use ValidateRequest.ProtoReflect.Descriptor instead.

func (*ValidateRequest) GetData added in v1.2.0

func (x *ValidateRequest) GetData() string

func (*ValidateRequest) GetFormat added in v1.2.0

func (x *ValidateRequest) GetFormat() DataFormat

func (*ValidateRequest) ProtoMessage added in v1.2.0

func (*ValidateRequest) ProtoMessage()

func (*ValidateRequest) ProtoReflect added in v1.2.0

func (x *ValidateRequest) ProtoReflect() protoreflect.Message

func (*ValidateRequest) Reset added in v1.2.0

func (x *ValidateRequest) Reset()

func (*ValidateRequest) String added in v1.2.0

func (x *ValidateRequest) String() string

type ValidateResponse added in v1.2.0

type ValidateResponse struct {
	Valid  bool   `protobuf:"varint,1,opt,name=valid,proto3" json:"valid,omitempty"`
	Error  string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	Line   int32  `protobuf:"varint,3,opt,name=line,proto3" json:"line,omitempty"`
	Column int32  `protobuf:"varint,4,opt,name=column,proto3" json:"column,omitempty"`
	// contains filtered or unexported fields
}

func (*ValidateResponse) Descriptor deprecated added in v1.2.0

func (*ValidateResponse) Descriptor() ([]byte, []int)

Deprecated: Use ValidateResponse.ProtoReflect.Descriptor instead.

func (*ValidateResponse) GetColumn added in v1.2.0

func (x *ValidateResponse) GetColumn() int32

func (*ValidateResponse) GetError added in v1.2.0

func (x *ValidateResponse) GetError() string

func (*ValidateResponse) GetLine added in v1.2.0

func (x *ValidateResponse) GetLine() int32

func (*ValidateResponse) GetValid added in v1.2.0

func (x *ValidateResponse) GetValid() bool

func (*ValidateResponse) ProtoMessage added in v1.2.0

func (*ValidateResponse) ProtoMessage()

func (*ValidateResponse) ProtoReflect added in v1.2.0

func (x *ValidateResponse) ProtoReflect() protoreflect.Message

func (*ValidateResponse) Reset added in v1.2.0

func (x *ValidateResponse) Reset()

func (*ValidateResponse) String added in v1.2.0

func (x *ValidateResponse) String() string

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL