api

package
v0.6.8 Latest Latest
Warning

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

Go to latest
Published: Apr 20, 2024 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Daemon_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "api.Daemon",
	HandlerType: (*DaemonServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetVersion",
			Handler:    _Daemon_GetVersion_Handler,
		},
		{
			MethodName: "PingTest",
			Handler:    _Daemon_PingTest_Handler,
		},
		{
			MethodName: "AddProxyProfile",
			Handler:    _Daemon_AddProxyProfile_Handler,
		},
		{
			MethodName: "GetProxyProfiles",
			Handler:    _Daemon_GetProxyProfiles_Handler,
		},
		{
			MethodName: "NotifyProxy",
			Handler:    _Daemon_NotifyProxy_Handler,
		},
		{
			MethodName: "PullImage",
			Handler:    _Daemon_PullImage_Handler,
		},
		{
			MethodName: "SetOptimizer",
			Handler:    _Daemon_SetOptimizer_Handler,
		},
		{
			MethodName: "ReportTraces",
			Handler:    _Daemon_ReportTraces_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "client/api/daemon.proto",
}

Daemon_ServiceDesc is the grpc.ServiceDesc for Daemon service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_client_api_daemon_proto protoreflect.FileDescriptor

Functions

func RegisterDaemonServer

func RegisterDaemonServer(s grpc.ServiceRegistrar, srv DaemonServer)

Types

type AuthRequest

type AuthRequest struct {
	ProfileName string `protobuf:"bytes,1,opt,name=profileName,proto3" json:"profileName,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"`
	Protocol    string `protobuf:"bytes,4,opt,name=protocol,proto3" json:"protocol,omitempty"`
	Address     string `protobuf:"bytes,5,opt,name=address,proto3" json:"address,omitempty"`
	// contains filtered or unexported fields
}

Add Auth

func (*AuthRequest) Descriptor deprecated

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

Deprecated: Use AuthRequest.ProtoReflect.Descriptor instead.

func (*AuthRequest) GetAddress

func (x *AuthRequest) GetAddress() string

func (*AuthRequest) GetPassword

func (x *AuthRequest) GetPassword() string

func (*AuthRequest) GetProfileName

func (x *AuthRequest) GetProfileName() string

func (*AuthRequest) GetProtocol

func (x *AuthRequest) GetProtocol() string

func (*AuthRequest) GetUsername

func (x *AuthRequest) GetUsername() string

func (*AuthRequest) ProtoMessage

func (*AuthRequest) ProtoMessage()

func (*AuthRequest) ProtoReflect

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

func (*AuthRequest) Reset

func (x *AuthRequest) Reset()

func (*AuthRequest) String

func (x *AuthRequest) String() string

type AuthResponse

type AuthResponse struct {
	Success bool   `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthResponse) Descriptor deprecated

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

Deprecated: Use AuthResponse.ProtoReflect.Descriptor instead.

func (*AuthResponse) GetMessage

func (x *AuthResponse) GetMessage() string

func (*AuthResponse) GetSuccess

func (x *AuthResponse) GetSuccess() bool

func (*AuthResponse) ProtoMessage

func (*AuthResponse) ProtoMessage()

func (*AuthResponse) ProtoReflect

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

func (*AuthResponse) Reset

func (x *AuthResponse) Reset()

func (*AuthResponse) String

func (x *AuthResponse) String() string

type DaemonClient

type DaemonClient interface {
	GetVersion(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Version, error)
	PingTest(ctx context.Context, in *PingRequest, opts ...grpc.CallOption) (*PingResponse, error)
	AddProxyProfile(ctx context.Context, in *AuthRequest, opts ...grpc.CallOption) (*AuthResponse, error)
	GetProxyProfiles(ctx context.Context, in *Request, opts ...grpc.CallOption) (*GetProxyProfilesResponse, error)
	NotifyProxy(ctx context.Context, in *NotifyRequest, opts ...grpc.CallOption) (*NotifyResponse, error)
	PullImage(ctx context.Context, in *ImageReference, opts ...grpc.CallOption) (*ImagePullResponse, error)
	SetOptimizer(ctx context.Context, in *OptimizeRequest, opts ...grpc.CallOption) (*OptimizeResponse, error)
	ReportTraces(ctx context.Context, in *ReportTracesRequest, opts ...grpc.CallOption) (*ReportTracesResponse, error)
}

DaemonClient is the client API for Daemon service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewDaemonClient

func NewDaemonClient(cc grpc.ClientConnInterface) DaemonClient

type DaemonServer

type DaemonServer interface {
	GetVersion(context.Context, *Request) (*Version, error)
	PingTest(context.Context, *PingRequest) (*PingResponse, error)
	AddProxyProfile(context.Context, *AuthRequest) (*AuthResponse, error)
	GetProxyProfiles(context.Context, *Request) (*GetProxyProfilesResponse, error)
	NotifyProxy(context.Context, *NotifyRequest) (*NotifyResponse, error)
	PullImage(context.Context, *ImageReference) (*ImagePullResponse, error)
	SetOptimizer(context.Context, *OptimizeRequest) (*OptimizeResponse, error)
	ReportTraces(context.Context, *ReportTracesRequest) (*ReportTracesResponse, error)
	// contains filtered or unexported methods
}

DaemonServer is the server API for Daemon service. All implementations must embed UnimplementedDaemonServer for forward compatibility

type GetProxyProfilesResponse added in v0.3.1

type GetProxyProfilesResponse struct {
	Profiles []*GetProxyProfilesResponse_Profile `protobuf:"bytes,1,rep,name=profiles,proto3" json:"profiles,omitempty"`
	// contains filtered or unexported fields
}

func (*GetProxyProfilesResponse) Descriptor deprecated added in v0.3.1

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

Deprecated: Use GetProxyProfilesResponse.ProtoReflect.Descriptor instead.

func (*GetProxyProfilesResponse) GetProfiles added in v0.3.1

func (*GetProxyProfilesResponse) ProtoMessage added in v0.3.1

func (*GetProxyProfilesResponse) ProtoMessage()

func (*GetProxyProfilesResponse) ProtoReflect added in v0.3.1

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

func (*GetProxyProfilesResponse) Reset added in v0.3.1

func (x *GetProxyProfilesResponse) Reset()

func (*GetProxyProfilesResponse) String added in v0.3.1

func (x *GetProxyProfilesResponse) String() string

type GetProxyProfilesResponse_Profile added in v0.3.1

type GetProxyProfilesResponse_Profile struct {
	Name     string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Protocol string `protobuf:"bytes,2,opt,name=protocol,proto3" json:"protocol,omitempty"`
	Address  string `protobuf:"bytes,3,opt,name=address,proto3" json:"address,omitempty"`
	// contains filtered or unexported fields
}

func (*GetProxyProfilesResponse_Profile) Descriptor deprecated added in v0.3.1

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

Deprecated: Use GetProxyProfilesResponse_Profile.ProtoReflect.Descriptor instead.

func (*GetProxyProfilesResponse_Profile) GetAddress added in v0.3.1

func (x *GetProxyProfilesResponse_Profile) GetAddress() string

func (*GetProxyProfilesResponse_Profile) GetName added in v0.3.1

func (*GetProxyProfilesResponse_Profile) GetProtocol added in v0.3.1

func (x *GetProxyProfilesResponse_Profile) GetProtocol() string

func (*GetProxyProfilesResponse_Profile) ProtoMessage added in v0.3.1

func (*GetProxyProfilesResponse_Profile) ProtoMessage()

func (*GetProxyProfilesResponse_Profile) ProtoReflect added in v0.3.1

func (*GetProxyProfilesResponse_Profile) Reset added in v0.3.1

func (*GetProxyProfilesResponse_Profile) String added in v0.3.1

type ImagePullResponse

type ImagePullResponse struct {
	Success           bool   `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	Message           string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	BaseImage         string `protobuf:"bytes,3,opt,name=baseImage,proto3" json:"baseImage,omitempty"`
	TotalImageSize    int64  `protobuf:"varint,4,opt,name=totalImageSize,proto3" json:"totalImageSize,omitempty"`
	OriginalImageSize int64  `protobuf:"varint,5,opt,name=originalImageSize,proto3" json:"originalImageSize,omitempty"`
	// contains filtered or unexported fields
}

func (*ImagePullResponse) Descriptor deprecated

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

Deprecated: Use ImagePullResponse.ProtoReflect.Descriptor instead.

func (*ImagePullResponse) GetBaseImage

func (x *ImagePullResponse) GetBaseImage() string

func (*ImagePullResponse) GetMessage

func (x *ImagePullResponse) GetMessage() string

func (*ImagePullResponse) GetOriginalImageSize added in v0.5.4

func (x *ImagePullResponse) GetOriginalImageSize() int64

func (*ImagePullResponse) GetSuccess

func (x *ImagePullResponse) GetSuccess() bool

func (*ImagePullResponse) GetTotalImageSize added in v0.5.0

func (x *ImagePullResponse) GetTotalImageSize() int64

func (*ImagePullResponse) ProtoMessage

func (*ImagePullResponse) ProtoMessage()

func (*ImagePullResponse) ProtoReflect

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

func (*ImagePullResponse) Reset

func (x *ImagePullResponse) Reset()

func (*ImagePullResponse) String

func (x *ImagePullResponse) String() string

type ImageReference

type ImageReference struct {
	Reference         string `protobuf:"bytes,1,opt,name=reference,proto3" json:"reference,omitempty"`
	Base              string `protobuf:"bytes,2,opt,name=base,proto3" json:"base,omitempty"`
	ProxyConfig       string `protobuf:"bytes,3,opt,name=proxyConfig,proto3" json:"proxyConfig,omitempty"`
	Namespace         string `protobuf:"bytes,4,opt,name=namespace,proto3" json:"namespace,omitempty"`
	DisableEarlyStart bool   `protobuf:"varint,5,opt,name=disableEarlyStart,proto3" json:"disableEarlyStart,omitempty"`
	// contains filtered or unexported fields
}

Pull Image

func (*ImageReference) Descriptor deprecated

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

Deprecated: Use ImageReference.ProtoReflect.Descriptor instead.

func (*ImageReference) GetBase

func (x *ImageReference) GetBase() string

func (*ImageReference) GetDisableEarlyStart added in v0.5.0

func (x *ImageReference) GetDisableEarlyStart() bool

func (*ImageReference) GetNamespace added in v0.2.3

func (x *ImageReference) GetNamespace() string

func (*ImageReference) GetProxyConfig

func (x *ImageReference) GetProxyConfig() string

func (*ImageReference) GetReference

func (x *ImageReference) GetReference() string

func (*ImageReference) ProtoMessage

func (*ImageReference) ProtoMessage()

func (*ImageReference) ProtoReflect

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

func (*ImageReference) Reset

func (x *ImageReference) Reset()

func (*ImageReference) String

func (x *ImageReference) String() string

type NotifyRequest added in v0.2.1

type NotifyRequest struct {
	Reference   string `protobuf:"bytes,1,opt,name=reference,proto3" json:"reference,omitempty"`
	Insecure    bool   `protobuf:"varint,2,opt,name=insecure,proto3" json:"insecure,omitempty"`
	ProxyConfig string `protobuf:"bytes,3,opt,name=proxyConfig,proto3" json:"proxyConfig,omitempty"`
	// contains filtered or unexported fields
}

Notify Proxy

func (*NotifyRequest) Descriptor deprecated added in v0.2.1

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

Deprecated: Use NotifyRequest.ProtoReflect.Descriptor instead.

func (*NotifyRequest) GetInsecure added in v0.3.1

func (x *NotifyRequest) GetInsecure() bool

func (*NotifyRequest) GetProxyConfig added in v0.2.1

func (x *NotifyRequest) GetProxyConfig() string

func (*NotifyRequest) GetReference added in v0.2.1

func (x *NotifyRequest) GetReference() string

func (*NotifyRequest) ProtoMessage added in v0.2.1

func (*NotifyRequest) ProtoMessage()

func (*NotifyRequest) ProtoReflect added in v0.2.1

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

func (*NotifyRequest) Reset added in v0.2.1

func (x *NotifyRequest) Reset()

func (*NotifyRequest) String added in v0.2.1

func (x *NotifyRequest) String() string

type NotifyResponse added in v0.2.1

type NotifyResponse struct {
	Success bool   `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*NotifyResponse) Descriptor deprecated added in v0.2.1

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

Deprecated: Use NotifyResponse.ProtoReflect.Descriptor instead.

func (*NotifyResponse) GetMessage added in v0.2.1

func (x *NotifyResponse) GetMessage() string

func (*NotifyResponse) GetSuccess added in v0.2.1

func (x *NotifyResponse) GetSuccess() bool

func (*NotifyResponse) ProtoMessage added in v0.2.1

func (*NotifyResponse) ProtoMessage()

func (*NotifyResponse) ProtoReflect added in v0.2.1

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

func (*NotifyResponse) Reset added in v0.2.1

func (x *NotifyResponse) Reset()

func (*NotifyResponse) String added in v0.2.1

func (x *NotifyResponse) String() string

type OptimizeRequest

type OptimizeRequest struct {
	Enable bool   `protobuf:"varint,1,opt,name=enable,proto3" json:"enable,omitempty"`
	Group  string `protobuf:"bytes,2,opt,name=group,proto3" json:"group,omitempty"`
	// contains filtered or unexported fields
}

Optimize

func (*OptimizeRequest) Descriptor deprecated

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

Deprecated: Use OptimizeRequest.ProtoReflect.Descriptor instead.

func (*OptimizeRequest) GetEnable

func (x *OptimizeRequest) GetEnable() bool

func (*OptimizeRequest) GetGroup

func (x *OptimizeRequest) GetGroup() string

func (*OptimizeRequest) ProtoMessage

func (*OptimizeRequest) ProtoMessage()

func (*OptimizeRequest) ProtoReflect

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

func (*OptimizeRequest) Reset

func (x *OptimizeRequest) Reset()

func (*OptimizeRequest) String

func (x *OptimizeRequest) String() string

type OptimizeResponse

type OptimizeResponse struct {
	Success bool              `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	Message string            `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	Okay    map[string]string `` /* 149-byte string literal not displayed */
	Failed  map[string]string `` /* 153-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*OptimizeResponse) Descriptor deprecated

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

Deprecated: Use OptimizeResponse.ProtoReflect.Descriptor instead.

func (*OptimizeResponse) GetFailed

func (x *OptimizeResponse) GetFailed() map[string]string

func (*OptimizeResponse) GetMessage

func (x *OptimizeResponse) GetMessage() string

func (*OptimizeResponse) GetOkay

func (x *OptimizeResponse) GetOkay() map[string]string

func (*OptimizeResponse) GetSuccess

func (x *OptimizeResponse) GetSuccess() bool

func (*OptimizeResponse) ProtoMessage

func (*OptimizeResponse) ProtoMessage()

func (*OptimizeResponse) ProtoReflect

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

func (*OptimizeResponse) Reset

func (x *OptimizeResponse) Reset()

func (*OptimizeResponse) String

func (x *OptimizeResponse) String() string

type PingRequest added in v0.2.1

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

Ping Test

func (*PingRequest) Descriptor deprecated added in v0.2.1

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

Deprecated: Use PingRequest.ProtoReflect.Descriptor instead.

func (*PingRequest) GetProxyConfig added in v0.2.1

func (x *PingRequest) GetProxyConfig() string

func (*PingRequest) ProtoMessage added in v0.2.1

func (*PingRequest) ProtoMessage()

func (*PingRequest) ProtoReflect added in v0.2.1

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

func (*PingRequest) Reset added in v0.2.1

func (x *PingRequest) Reset()

func (*PingRequest) String added in v0.2.1

func (x *PingRequest) String() string

type PingResponse added in v0.2.1

type PingResponse struct {
	Success bool   `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	Latency int64  `protobuf:"varint,3,opt,name=latency,proto3" json:"latency,omitempty"`
	// contains filtered or unexported fields
}

func (*PingResponse) Descriptor deprecated added in v0.2.1

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

Deprecated: Use PingResponse.ProtoReflect.Descriptor instead.

func (*PingResponse) GetLatency added in v0.2.1

func (x *PingResponse) GetLatency() int64

func (*PingResponse) GetMessage added in v0.2.1

func (x *PingResponse) GetMessage() string

func (*PingResponse) GetSuccess added in v0.2.1

func (x *PingResponse) GetSuccess() bool

func (*PingResponse) ProtoMessage added in v0.2.1

func (*PingResponse) ProtoMessage()

func (*PingResponse) ProtoReflect added in v0.2.1

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

func (*PingResponse) Reset added in v0.2.1

func (x *PingResponse) Reset()

func (*PingResponse) String added in v0.2.1

func (x *PingResponse) String() string

type ReportTracesRequest

type ReportTracesRequest struct {
	ProxyConfig string `protobuf:"bytes,1,opt,name=proxyConfig,proto3" json:"proxyConfig,omitempty"`
	Remove      bool   `protobuf:"varint,2,opt,name=remove,proto3" json:"remove,omitempty"`
	// contains filtered or unexported fields
}

Report Traces

func (*ReportTracesRequest) Descriptor deprecated

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

Deprecated: Use ReportTracesRequest.ProtoReflect.Descriptor instead.

func (*ReportTracesRequest) GetProxyConfig

func (x *ReportTracesRequest) GetProxyConfig() string

func (*ReportTracesRequest) GetRemove added in v0.2.1

func (x *ReportTracesRequest) GetRemove() bool

func (*ReportTracesRequest) ProtoMessage

func (*ReportTracesRequest) ProtoMessage()

func (*ReportTracesRequest) ProtoReflect

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

func (*ReportTracesRequest) Reset

func (x *ReportTracesRequest) Reset()

func (*ReportTracesRequest) String

func (x *ReportTracesRequest) String() string

type ReportTracesResponse

type ReportTracesResponse struct {
	Success bool              `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	Message string            `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	Okay    map[string]string `` /* 149-byte string literal not displayed */
	Failed  map[string]string `` /* 153-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ReportTracesResponse) Descriptor deprecated

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

Deprecated: Use ReportTracesResponse.ProtoReflect.Descriptor instead.

func (*ReportTracesResponse) GetFailed added in v0.2.1

func (x *ReportTracesResponse) GetFailed() map[string]string

func (*ReportTracesResponse) GetMessage

func (x *ReportTracesResponse) GetMessage() string

func (*ReportTracesResponse) GetOkay added in v0.2.1

func (x *ReportTracesResponse) GetOkay() map[string]string

func (*ReportTracesResponse) GetSuccess

func (x *ReportTracesResponse) GetSuccess() bool

func (*ReportTracesResponse) ProtoMessage

func (*ReportTracesResponse) ProtoMessage()

func (*ReportTracesResponse) ProtoReflect

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

func (*ReportTracesResponse) Reset

func (x *ReportTracesResponse) Reset()

func (*ReportTracesResponse) String

func (x *ReportTracesResponse) String() string

type Request

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

GetVersion

func (*Request) Descriptor deprecated

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

Deprecated: Use Request.ProtoReflect.Descriptor instead.

func (*Request) ProtoMessage

func (*Request) ProtoMessage()

func (*Request) ProtoReflect

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

func (*Request) Reset

func (x *Request) Reset()

func (*Request) String

func (x *Request) String() string

type UnimplementedDaemonServer

type UnimplementedDaemonServer struct {
}

UnimplementedDaemonServer must be embedded to have forward compatible implementations.

func (UnimplementedDaemonServer) AddProxyProfile

func (UnimplementedDaemonServer) GetProxyProfiles added in v0.3.1

func (UnimplementedDaemonServer) GetVersion

func (UnimplementedDaemonServer) NotifyProxy added in v0.2.1

func (UnimplementedDaemonServer) PingTest added in v0.2.1

func (UnimplementedDaemonServer) PullImage

func (UnimplementedDaemonServer) ReportTraces

func (UnimplementedDaemonServer) SetOptimizer

type UnsafeDaemonServer

type UnsafeDaemonServer interface {
	// contains filtered or unexported methods
}

UnsafeDaemonServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to DaemonServer will result in compilation errors.

type Version

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

func (*Version) Descriptor deprecated

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

Deprecated: Use Version.ProtoReflect.Descriptor instead.

func (*Version) GetVersion

func (x *Version) GetVersion() string

func (*Version) ProtoMessage

func (*Version) ProtoMessage()

func (*Version) ProtoReflect

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

func (*Version) Reset

func (x *Version) Reset()

func (*Version) String

func (x *Version) String() string

Jump to

Keyboard shortcuts

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