Enum value maps for AliasContext_Kind.
var ( AliasContext_Kind_name = map[int32]string{ 0: "KIND_UNSPECIFIED", 1: "FIXED", 2: "MOVABLE", 4: "OTHER", } AliasContext_Kind_value = map[string]int32{ "KIND_UNSPECIFIED": 0, "FIXED": 1, "MOVABLE": 2, "OTHER": 4, } )
var File_google_devtools_containeranalysis_v1beta1_source_source_proto protoreflect.FileDescriptor
An alias to a repo revision.
type AliasContext struct { // The alias kind. Kind AliasContext_Kind `protobuf:"varint,1,opt,name=kind,proto3,enum=grafeas.v1beta1.source.AliasContext_Kind" json:"kind,omitempty"` // The alias name. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` // contains filtered or unexported fields }
func (*AliasContext) Descriptor() ([]byte, []int)
Deprecated: Use AliasContext.ProtoReflect.Descriptor instead.
func (x *AliasContext) GetKind() AliasContext_Kind
func (x *AliasContext) GetName() string
func (*AliasContext) ProtoMessage()
func (x *AliasContext) ProtoReflect() protoreflect.Message
func (x *AliasContext) Reset()
func (x *AliasContext) String() string
The type of an alias.
type AliasContext_Kind int32
const ( // Unknown. AliasContext_KIND_UNSPECIFIED AliasContext_Kind = 0 // Git tag. AliasContext_FIXED AliasContext_Kind = 1 // Git branch. AliasContext_MOVABLE AliasContext_Kind = 2 // Used to specify non-standard aliases. For example, if a Git repo has a // ref named "refs/foo/bar". AliasContext_OTHER AliasContext_Kind = 4 )
func (AliasContext_Kind) Descriptor() protoreflect.EnumDescriptor
func (x AliasContext_Kind) Enum() *AliasContext_Kind
func (AliasContext_Kind) EnumDescriptor() ([]byte, []int)
Deprecated: Use AliasContext_Kind.Descriptor instead.
func (x AliasContext_Kind) Number() protoreflect.EnumNumber
func (x AliasContext_Kind) String() string
func (AliasContext_Kind) Type() protoreflect.EnumType
A CloudRepoSourceContext denotes a particular revision in a Google Cloud Source Repo.
type CloudRepoSourceContext struct { // The ID of the repo. RepoId *RepoId `protobuf:"bytes,1,opt,name=repo_id,json=repoId,proto3" json:"repo_id,omitempty"` // A revision in a Cloud Repo can be identified by either its revision ID or // its alias. // // Types that are assignable to Revision: // *CloudRepoSourceContext_RevisionId // *CloudRepoSourceContext_AliasContext Revision isCloudRepoSourceContext_Revision `protobuf_oneof:"revision"` // contains filtered or unexported fields }
func (*CloudRepoSourceContext) Descriptor() ([]byte, []int)
Deprecated: Use CloudRepoSourceContext.ProtoReflect.Descriptor instead.
func (x *CloudRepoSourceContext) GetAliasContext() *AliasContext
func (x *CloudRepoSourceContext) GetRepoId() *RepoId
func (m *CloudRepoSourceContext) GetRevision() isCloudRepoSourceContext_Revision
func (x *CloudRepoSourceContext) GetRevisionId() string
func (*CloudRepoSourceContext) ProtoMessage()
func (x *CloudRepoSourceContext) ProtoReflect() protoreflect.Message
func (x *CloudRepoSourceContext) Reset()
func (x *CloudRepoSourceContext) String() string
type CloudRepoSourceContext_AliasContext struct { // An alias, which may be a branch or tag. AliasContext *AliasContext `protobuf:"bytes,3,opt,name=alias_context,json=aliasContext,proto3,oneof"` }
type CloudRepoSourceContext_RevisionId struct { // A revision ID. RevisionId string `protobuf:"bytes,2,opt,name=revision_id,json=revisionId,proto3,oneof"` }
A SourceContext referring to a Gerrit project.
type GerritSourceContext struct { // The URI of a running Gerrit instance. HostUri string `protobuf:"bytes,1,opt,name=host_uri,json=hostUri,proto3" json:"host_uri,omitempty"` // The full project name within the host. Projects may be nested, so // "project/subproject" is a valid project name. The "repo name" is the // hostURI/project. GerritProject string `protobuf:"bytes,2,opt,name=gerrit_project,json=gerritProject,proto3" json:"gerrit_project,omitempty"` // A revision in a Gerrit project can be identified by either its revision ID // or its alias. // // Types that are assignable to Revision: // *GerritSourceContext_RevisionId // *GerritSourceContext_AliasContext Revision isGerritSourceContext_Revision `protobuf_oneof:"revision"` // contains filtered or unexported fields }
func (*GerritSourceContext) Descriptor() ([]byte, []int)
Deprecated: Use GerritSourceContext.ProtoReflect.Descriptor instead.
func (x *GerritSourceContext) GetAliasContext() *AliasContext
func (x *GerritSourceContext) GetGerritProject() string
func (x *GerritSourceContext) GetHostUri() string
func (m *GerritSourceContext) GetRevision() isGerritSourceContext_Revision
func (x *GerritSourceContext) GetRevisionId() string
func (*GerritSourceContext) ProtoMessage()
func (x *GerritSourceContext) ProtoReflect() protoreflect.Message
func (x *GerritSourceContext) Reset()
func (x *GerritSourceContext) String() string
type GerritSourceContext_AliasContext struct { // An alias, which may be a branch or tag. AliasContext *AliasContext `protobuf:"bytes,4,opt,name=alias_context,json=aliasContext,proto3,oneof"` }
type GerritSourceContext_RevisionId struct { // A revision (commit) ID. RevisionId string `protobuf:"bytes,3,opt,name=revision_id,json=revisionId,proto3,oneof"` }
A GitSourceContext denotes a particular revision in a third party Git repository (e.g., GitHub).
type GitSourceContext struct { // Git repository URL. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"` // Git commit hash. RevisionId string `protobuf:"bytes,2,opt,name=revision_id,json=revisionId,proto3" json:"revision_id,omitempty"` // contains filtered or unexported fields }
func (*GitSourceContext) Descriptor() ([]byte, []int)
Deprecated: Use GitSourceContext.ProtoReflect.Descriptor instead.
func (x *GitSourceContext) GetRevisionId() string
func (x *GitSourceContext) GetUrl() string
func (*GitSourceContext) ProtoMessage()
func (x *GitSourceContext) ProtoReflect() protoreflect.Message
func (x *GitSourceContext) Reset()
func (x *GitSourceContext) String() string
Selects a repo using a Google Cloud Platform project ID (e.g., winged-cargo-31) and a repo name within that project.
type ProjectRepoId struct { // The ID of the project. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // The name of the repo. Leave empty for the default repo. RepoName string `protobuf:"bytes,2,opt,name=repo_name,json=repoName,proto3" json:"repo_name,omitempty"` // contains filtered or unexported fields }
func (*ProjectRepoId) Descriptor() ([]byte, []int)
Deprecated: Use ProjectRepoId.ProtoReflect.Descriptor instead.
func (x *ProjectRepoId) GetProjectId() string
func (x *ProjectRepoId) GetRepoName() string
func (*ProjectRepoId) ProtoMessage()
func (x *ProjectRepoId) ProtoReflect() protoreflect.Message
func (x *ProjectRepoId) Reset()
func (x *ProjectRepoId) String() string
A unique identifier for a Cloud Repo.
type RepoId struct { // A cloud repo can be identified by either its project ID and repository name // combination, or its globally unique identifier. // // Types that are assignable to Id: // *RepoId_ProjectRepoId // *RepoId_Uid Id isRepoId_Id `protobuf_oneof:"id"` // contains filtered or unexported fields }
func (*RepoId) Descriptor() ([]byte, []int)
Deprecated: Use RepoId.ProtoReflect.Descriptor instead.
func (m *RepoId) GetId() isRepoId_Id
func (x *RepoId) GetProjectRepoId() *ProjectRepoId
func (x *RepoId) GetUid() string
func (*RepoId) ProtoMessage()
func (x *RepoId) ProtoReflect() protoreflect.Message
func (x *RepoId) Reset()
func (x *RepoId) String() string
type RepoId_ProjectRepoId struct { // A combination of a project ID and a repo name. ProjectRepoId *ProjectRepoId `protobuf:"bytes,1,opt,name=project_repo_id,json=projectRepoId,proto3,oneof"` }
type RepoId_Uid struct { // A server-assigned, globally unique identifier. Uid string `protobuf:"bytes,2,opt,name=uid,proto3,oneof"` }
A SourceContext is a reference to a tree of files. A SourceContext together with a path point to a unique revision of a single file or directory.
type SourceContext struct { // A SourceContext can refer any one of the following types of repositories. // // Types that are assignable to Context: // *SourceContext_CloudRepo // *SourceContext_Gerrit // *SourceContext_Git Context isSourceContext_Context `protobuf_oneof:"context"` // Labels with user defined metadata. Labels map[string]string `protobuf:"bytes,4,rep,name=labels,proto3" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // contains filtered or unexported fields }
func (*SourceContext) Descriptor() ([]byte, []int)
Deprecated: Use SourceContext.ProtoReflect.Descriptor instead.
func (x *SourceContext) GetCloudRepo() *CloudRepoSourceContext
func (m *SourceContext) GetContext() isSourceContext_Context
func (x *SourceContext) GetGerrit() *GerritSourceContext
func (x *SourceContext) GetGit() *GitSourceContext
func (x *SourceContext) GetLabels() map[string]string
func (*SourceContext) ProtoMessage()
func (x *SourceContext) ProtoReflect() protoreflect.Message
func (x *SourceContext) Reset()
func (x *SourceContext) String() string
type SourceContext_CloudRepo struct { // A SourceContext referring to a revision in a Google Cloud Source Repo. CloudRepo *CloudRepoSourceContext `protobuf:"bytes,1,opt,name=cloud_repo,json=cloudRepo,proto3,oneof"` }
type SourceContext_Gerrit struct { // A SourceContext referring to a Gerrit project. Gerrit *GerritSourceContext `protobuf:"bytes,2,opt,name=gerrit,proto3,oneof"` }
type SourceContext_Git struct { // A SourceContext referring to any third party Git repo (e.g., GitHub). Git *GitSourceContext `protobuf:"bytes,3,opt,name=git,proto3,oneof"` }