vcsv1

package
v1.36.10-2024070907380... Latest Latest
Warning

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

Go to latest
Published: unknown License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_vcs_v1_vcs_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type CommitAuthor

type CommitAuthor struct {

	// the author login
	Login string `protobuf:"bytes,1,opt,name=login,proto3" json:"login,omitempty"`
	// the author avatar URL
	AvatarURL string `protobuf:"bytes,2,opt,name=avatarURL,proto3" json:"avatarURL,omitempty"`
	// contains filtered or unexported fields
}

func (*CommitAuthor) GetAvatarURL

func (x *CommitAuthor) GetAvatarURL() string

func (*CommitAuthor) GetLogin

func (x *CommitAuthor) GetLogin() string

func (*CommitAuthor) ProtoMessage

func (*CommitAuthor) ProtoMessage()

func (*CommitAuthor) ProtoReflect

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

func (*CommitAuthor) Reset

func (x *CommitAuthor) Reset()

func (*CommitAuthor) SetAvatarURL

func (x *CommitAuthor) SetAvatarURL(v string)

func (*CommitAuthor) SetLogin

func (x *CommitAuthor) SetLogin(v string)

func (*CommitAuthor) String

func (x *CommitAuthor) String() string

type CommitAuthor_builder

type CommitAuthor_builder struct {

	// the author login
	Login string
	// the author avatar URL
	AvatarURL string
	// contains filtered or unexported fields
}

func (CommitAuthor_builder) Build

func (b0 CommitAuthor_builder) Build() *CommitAuthor

type GetCommitRequest

type GetCommitRequest struct {

	// the full path to the repository
	RepositoryURL string `protobuf:"bytes,1,opt,name=repositoryURL,proto3" json:"repositoryURL,omitempty"`
	// the vcs ref to get the file from
	Ref string `protobuf:"bytes,2,opt,name=ref,proto3" json:"ref,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCommitRequest) GetRef

func (x *GetCommitRequest) GetRef() string

func (*GetCommitRequest) GetRepositoryURL

func (x *GetCommitRequest) GetRepositoryURL() string

func (*GetCommitRequest) ProtoMessage

func (*GetCommitRequest) ProtoMessage()

func (*GetCommitRequest) ProtoReflect

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

func (*GetCommitRequest) Reset

func (x *GetCommitRequest) Reset()

func (*GetCommitRequest) SetRef

func (x *GetCommitRequest) SetRef(v string)

func (*GetCommitRequest) SetRepositoryURL

func (x *GetCommitRequest) SetRepositoryURL(v string)

func (*GetCommitRequest) String

func (x *GetCommitRequest) String() string

type GetCommitRequest_builder

type GetCommitRequest_builder struct {

	// the full path to the repository
	RepositoryURL string
	// the vcs ref to get the file from
	Ref string
	// contains filtered or unexported fields
}

func (GetCommitRequest_builder) Build

type GetCommitResponse

type GetCommitResponse struct {

	// the commit message
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// the commit author login
	Author *CommitAuthor `protobuf:"bytes,2,opt,name=author,proto3" json:"author,omitempty"`
	// the commit date
	Date string `protobuf:"bytes,3,opt,name=date,proto3" json:"date,omitempty"`
	// the commit sha
	Sha string `protobuf:"bytes,4,opt,name=sha,proto3" json:"sha,omitempty"`
	// the full URL to the commit
	URL string `protobuf:"bytes,5,opt,name=URL,proto3" json:"URL,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCommitResponse) ClearAuthor

func (x *GetCommitResponse) ClearAuthor()

func (*GetCommitResponse) GetAuthor

func (x *GetCommitResponse) GetAuthor() *CommitAuthor

func (*GetCommitResponse) GetDate

func (x *GetCommitResponse) GetDate() string

func (*GetCommitResponse) GetMessage

func (x *GetCommitResponse) GetMessage() string

func (*GetCommitResponse) GetSha

func (x *GetCommitResponse) GetSha() string

func (*GetCommitResponse) GetURL

func (x *GetCommitResponse) GetURL() string

func (*GetCommitResponse) HasAuthor

func (x *GetCommitResponse) HasAuthor() bool

func (*GetCommitResponse) ProtoMessage

func (*GetCommitResponse) ProtoMessage()

func (*GetCommitResponse) ProtoReflect

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

func (*GetCommitResponse) Reset

func (x *GetCommitResponse) Reset()

func (*GetCommitResponse) SetAuthor

func (x *GetCommitResponse) SetAuthor(v *CommitAuthor)

func (*GetCommitResponse) SetDate

func (x *GetCommitResponse) SetDate(v string)

func (*GetCommitResponse) SetMessage

func (x *GetCommitResponse) SetMessage(v string)

func (*GetCommitResponse) SetSha

func (x *GetCommitResponse) SetSha(v string)

func (*GetCommitResponse) SetURL

func (x *GetCommitResponse) SetURL(v string)

func (*GetCommitResponse) String

func (x *GetCommitResponse) String() string

type GetCommitResponse_builder

type GetCommitResponse_builder struct {

	// the commit message
	Message string
	// the commit author login
	Author *CommitAuthor
	// the commit date
	Date string
	// the commit sha
	Sha string
	// the full URL to the commit
	URL string
	// contains filtered or unexported fields
}

func (GetCommitResponse_builder) Build

type GetFileRequest

type GetFileRequest struct {

	// the full path to the repository
	RepositoryURL string `protobuf:"bytes,1,opt,name=repositoryURL,proto3" json:"repositoryURL,omitempty"`
	// the vcs ref to get the file from
	Ref string `protobuf:"bytes,2,opt,name=ref,proto3" json:"ref,omitempty"`
	// the path to the file as provided by the symbols
	LocalPath string `protobuf:"bytes,3,opt,name=localPath,proto3" json:"localPath,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFileRequest) GetLocalPath

func (x *GetFileRequest) GetLocalPath() string

func (*GetFileRequest) GetRef

func (x *GetFileRequest) GetRef() string

func (*GetFileRequest) GetRepositoryURL

func (x *GetFileRequest) GetRepositoryURL() string

func (*GetFileRequest) ProtoMessage

func (*GetFileRequest) ProtoMessage()

func (*GetFileRequest) ProtoReflect

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

func (*GetFileRequest) Reset

func (x *GetFileRequest) Reset()

func (*GetFileRequest) SetLocalPath

func (x *GetFileRequest) SetLocalPath(v string)

func (*GetFileRequest) SetRef

func (x *GetFileRequest) SetRef(v string)

func (*GetFileRequest) SetRepositoryURL

func (x *GetFileRequest) SetRepositoryURL(v string)

func (*GetFileRequest) String

func (x *GetFileRequest) String() string

type GetFileRequest_builder

type GetFileRequest_builder struct {

	// the full path to the repository
	RepositoryURL string
	// the vcs ref to get the file from
	Ref string
	// the path to the file as provided by the symbols
	LocalPath string
	// contains filtered or unexported fields
}

func (GetFileRequest_builder) Build

type GetFileResponse

type GetFileResponse struct {

	// base64 content of the file
	Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
	// the full URL to the file
	URL string `protobuf:"bytes,2,opt,name=URL,proto3" json:"URL,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFileResponse) GetContent

func (x *GetFileResponse) GetContent() string

func (*GetFileResponse) GetURL

func (x *GetFileResponse) GetURL() string

func (*GetFileResponse) ProtoMessage

func (*GetFileResponse) ProtoMessage()

func (*GetFileResponse) ProtoReflect

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

func (*GetFileResponse) Reset

func (x *GetFileResponse) Reset()

func (*GetFileResponse) SetContent

func (x *GetFileResponse) SetContent(v string)

func (*GetFileResponse) SetURL

func (x *GetFileResponse) SetURL(v string)

func (*GetFileResponse) String

func (x *GetFileResponse) String() string

type GetFileResponse_builder

type GetFileResponse_builder struct {

	// base64 content of the file
	Content string
	// the full URL to the file
	URL string
	// contains filtered or unexported fields
}

func (GetFileResponse_builder) Build

type GithubAppRequest

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

func (*GithubAppRequest) ProtoMessage

func (*GithubAppRequest) ProtoMessage()

func (*GithubAppRequest) ProtoReflect

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

func (*GithubAppRequest) Reset

func (x *GithubAppRequest) Reset()

func (*GithubAppRequest) String

func (x *GithubAppRequest) String() string

type GithubAppRequest_builder

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

func (GithubAppRequest_builder) Build

type GithubAppResponse

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

func (*GithubAppResponse) GetClientID

func (x *GithubAppResponse) GetClientID() string

func (*GithubAppResponse) ProtoMessage

func (*GithubAppResponse) ProtoMessage()

func (*GithubAppResponse) ProtoReflect

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

func (*GithubAppResponse) Reset

func (x *GithubAppResponse) Reset()

func (*GithubAppResponse) SetClientID

func (x *GithubAppResponse) SetClientID(v string)

func (*GithubAppResponse) String

func (x *GithubAppResponse) String() string

type GithubAppResponse_builder

type GithubAppResponse_builder struct {
	ClientID string
	// contains filtered or unexported fields
}

func (GithubAppResponse_builder) Build

type GithubLoginRequest

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

func (*GithubLoginRequest) GetAuthorizationCode

func (x *GithubLoginRequest) GetAuthorizationCode() string

func (*GithubLoginRequest) ProtoMessage

func (*GithubLoginRequest) ProtoMessage()

func (*GithubLoginRequest) ProtoReflect

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

func (*GithubLoginRequest) Reset

func (x *GithubLoginRequest) Reset()

func (*GithubLoginRequest) SetAuthorizationCode

func (x *GithubLoginRequest) SetAuthorizationCode(v string)

func (*GithubLoginRequest) String

func (x *GithubLoginRequest) String() string

type GithubLoginRequest_builder

type GithubLoginRequest_builder struct {
	AuthorizationCode string
	// contains filtered or unexported fields
}

func (GithubLoginRequest_builder) Build

type GithubLoginResponse

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

func (*GithubLoginResponse) GetCookie

func (x *GithubLoginResponse) GetCookie() string

func (*GithubLoginResponse) ProtoMessage

func (*GithubLoginResponse) ProtoMessage()

func (*GithubLoginResponse) ProtoReflect

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

func (*GithubLoginResponse) Reset

func (x *GithubLoginResponse) Reset()

func (*GithubLoginResponse) SetCookie

func (x *GithubLoginResponse) SetCookie(v string)

func (*GithubLoginResponse) String

func (x *GithubLoginResponse) String() string

type GithubLoginResponse_builder

type GithubLoginResponse_builder struct {
	Cookie string
	// contains filtered or unexported fields
}

func (GithubLoginResponse_builder) Build

type GithubRefreshRequest

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

func (*GithubRefreshRequest) ProtoMessage

func (*GithubRefreshRequest) ProtoMessage()

func (*GithubRefreshRequest) ProtoReflect

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

func (*GithubRefreshRequest) Reset

func (x *GithubRefreshRequest) Reset()

func (*GithubRefreshRequest) String

func (x *GithubRefreshRequest) String() string

type GithubRefreshRequest_builder

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

func (GithubRefreshRequest_builder) Build

type GithubRefreshResponse

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

func (*GithubRefreshResponse) GetCookie

func (x *GithubRefreshResponse) GetCookie() string

func (*GithubRefreshResponse) ProtoMessage

func (*GithubRefreshResponse) ProtoMessage()

func (*GithubRefreshResponse) ProtoReflect

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

func (*GithubRefreshResponse) Reset

func (x *GithubRefreshResponse) Reset()

func (*GithubRefreshResponse) SetCookie

func (x *GithubRefreshResponse) SetCookie(v string)

func (*GithubRefreshResponse) String

func (x *GithubRefreshResponse) String() string

type GithubRefreshResponse_builder

type GithubRefreshResponse_builder struct {
	Cookie string
	// contains filtered or unexported fields
}

func (GithubRefreshResponse_builder) Build

Source Files

  • vcs.pb.go

Jump to

Keyboard shortcuts

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