analysis_service

package
v0.0.0-...-5dc5008 Latest Latest
Warning

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

Go to latest
Published: Apr 19, 2024 License: BSD-3-Clause Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_analysis_service_analysis_service_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AnalysisServiceEvent

type AnalysisServiceEvent struct {

	// The Buildbucket id for the build doing the request and response.
	BuildId int64 `protobuf:"varint,42,opt,name=build_id,json=buildId,proto3" json:"build_id,omitempty"`
	// The name of the step doing the request and response. Must be the same
	// format as Buildbucket Build proto's step name (i.e. parent and child step
	// names are separated by the "|" character).
	StepName string `protobuf:"bytes,43,opt,name=step_name,json=stepName,proto3" json:"step_name,omitempty"`
	// The time the request and response were sent and recieved by the caller.
	RequestTime  *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=request_time,json=requestTime,proto3" json:"request_time,omitempty"`
	ResponseTime *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=response_time,json=responseTime,proto3" json:"response_time,omitempty"`
	// The stdout and stderr logs for a stage. Either log string may be truncated
	// to ensure individual entries and proto request sizes work well for upload
	// and for later querying.
	Stdout string `protobuf:"bytes,50,opt,name=stdout,proto3" json:"stdout,omitempty"`
	Stderr string `protobuf:"bytes,51,opt,name=stderr,proto3" json:"stderr,omitempty"`
	// Data about the execution of the step doing the request and response.
	StepExecutionResult *StepExecutionResult `protobuf:"bytes,52,opt,name=step_execution_result,json=stepExecutionResult,proto3" json:"step_execution_result,omitempty"`
	// The request to upload.
	//
	// Types that are assignable to Request:
	//	*AnalysisServiceEvent_InstallPackagesRequest
	//	*AnalysisServiceEvent_BundleRequest
	//	*AnalysisServiceEvent_BundleVmFilesRequest
	//	*AnalysisServiceEvent_BinhostGetRequest
	//	*AnalysisServiceEvent_AclArgsRequest
	//	*AnalysisServiceEvent_PrepareBinhostUploadsRequest
	//	*AnalysisServiceEvent_SetBinhostRequest
	//	*AnalysisServiceEvent_RegenBuildCacheRequest
	//	*AnalysisServiceEvent_GetBuildDependencyGraphRequest
	//	*AnalysisServiceEvent_CreateImageRequest
	//	*AnalysisServiceEvent_TestImageRequest
	//	*AnalysisServiceEvent_CreateRequest
	//	*AnalysisServiceEvent_UpdateRequest
	//	*AnalysisServiceEvent_SysrootCreateRequest
	//	*AnalysisServiceEvent_InstallToolchainRequest
	//	*AnalysisServiceEvent_BuildTargetUnitTestRequest
	//	*AnalysisServiceEvent_ChromiteUnitTestRequest
	//	*AnalysisServiceEvent_DebugInfoTestRequest
	//	*AnalysisServiceEvent_VmTestRequest
	//	*AnalysisServiceEvent_UprevPackagesRequest
	//	*AnalysisServiceEvent_GetBestVisibleRequest
	//	*AnalysisServiceEvent_GetChromeVersionRequest
	//	*AnalysisServiceEvent_GetBuilderMetadataRequest
	//	*AnalysisServiceEvent_BuildAllFirmwareRequest
	//	*AnalysisServiceEvent_TestAllFirmwareRequest
	Request isAnalysisServiceEvent_Request `protobuf_oneof:"request"`
	// The response to upload.
	//
	// Types that are assignable to Response:
	//	*AnalysisServiceEvent_InstallPackagesResponse
	//	*AnalysisServiceEvent_BundleResponse
	//	*AnalysisServiceEvent_BinhostGetResponse
	//	*AnalysisServiceEvent_AclArgsResponse
	//	*AnalysisServiceEvent_PrepareBinhostUploadsResponse
	//	*AnalysisServiceEvent_SetBinhostResponse
	//	*AnalysisServiceEvent_RegenBuildCacheResponse
	//	*AnalysisServiceEvent_GetBuildDependencyGraphResponse
	//	*AnalysisServiceEvent_CreateImageResult
	//	*AnalysisServiceEvent_TestImageResult
	//	*AnalysisServiceEvent_CreateResponse
	//	*AnalysisServiceEvent_UpdateResponse
	//	*AnalysisServiceEvent_SysrootCreateResponse
	//	*AnalysisServiceEvent_InstallToolchainResponse
	//	*AnalysisServiceEvent_BuildTargetUnitTestResponse
	//	*AnalysisServiceEvent_ChromiteUnitTestResponse
	//	*AnalysisServiceEvent_DebugInfoTestResponse
	//	*AnalysisServiceEvent_VmTestResponse
	//	*AnalysisServiceEvent_UprevPackagesResponse
	//	*AnalysisServiceEvent_GetBestVisibleResponse
	//	*AnalysisServiceEvent_GetChromeVersionResponse
	//	*AnalysisServiceEvent_GetBuilderMetadataResponse
	//	*AnalysisServiceEvent_BuildAllFirmwareResponse
	//	*AnalysisServiceEvent_TestAllFirmwareResponse
	Response isAnalysisServiceEvent_Response `protobuf_oneof:"response"`
	// contains filtered or unexported fields
}

Requests and responses are sent to the Artifacts Analysis Service on a single Pub/Sub topic; thus, the type of the request and response need to be encoded in the Pub/Sub message. This is done with this wrapper proto.

This proto should only be used by a recipes module to do the wrapping and a layer on the Analysis Server to do the unwrapping.

NEXT ID: 59;

func (*AnalysisServiceEvent) Descriptor deprecated

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

Deprecated: Use AnalysisServiceEvent.ProtoReflect.Descriptor instead.

func (*AnalysisServiceEvent) GetAclArgsRequest

func (x *AnalysisServiceEvent) GetAclArgsRequest() *api.AclArgsRequest

func (*AnalysisServiceEvent) GetAclArgsResponse

func (x *AnalysisServiceEvent) GetAclArgsResponse() *api.AclArgsResponse

func (*AnalysisServiceEvent) GetBinhostGetRequest

func (x *AnalysisServiceEvent) GetBinhostGetRequest() *api.BinhostGetRequest

func (*AnalysisServiceEvent) GetBinhostGetResponse

func (x *AnalysisServiceEvent) GetBinhostGetResponse() *api.BinhostGetResponse

func (*AnalysisServiceEvent) GetBuildAllFirmwareRequest

func (x *AnalysisServiceEvent) GetBuildAllFirmwareRequest() *api.BuildAllFirmwareRequest

func (*AnalysisServiceEvent) GetBuildAllFirmwareResponse

func (x *AnalysisServiceEvent) GetBuildAllFirmwareResponse() *api.BuildAllFirmwareResponse

func (*AnalysisServiceEvent) GetBuildId

func (x *AnalysisServiceEvent) GetBuildId() int64

func (*AnalysisServiceEvent) GetBuildTargetUnitTestRequest

func (x *AnalysisServiceEvent) GetBuildTargetUnitTestRequest() *api.BuildTargetUnitTestRequest

func (*AnalysisServiceEvent) GetBuildTargetUnitTestResponse

func (x *AnalysisServiceEvent) GetBuildTargetUnitTestResponse() *api.BuildTargetUnitTestResponse

func (*AnalysisServiceEvent) GetBundleRequest

func (x *AnalysisServiceEvent) GetBundleRequest() *api.BundleRequest

func (*AnalysisServiceEvent) GetBundleResponse

func (x *AnalysisServiceEvent) GetBundleResponse() *api.BundleResponse

func (*AnalysisServiceEvent) GetBundleVmFilesRequest

func (x *AnalysisServiceEvent) GetBundleVmFilesRequest() *api.BundleVmFilesRequest

func (*AnalysisServiceEvent) GetChromiteUnitTestRequest

func (x *AnalysisServiceEvent) GetChromiteUnitTestRequest() *api.ChromiteUnitTestRequest

func (*AnalysisServiceEvent) GetChromiteUnitTestResponse

func (x *AnalysisServiceEvent) GetChromiteUnitTestResponse() *api.ChromiteUnitTestResponse

func (*AnalysisServiceEvent) GetCreateImageRequest

func (x *AnalysisServiceEvent) GetCreateImageRequest() *api.CreateImageRequest

func (*AnalysisServiceEvent) GetCreateImageResult

func (x *AnalysisServiceEvent) GetCreateImageResult() *api.CreateImageResult

func (*AnalysisServiceEvent) GetCreateRequest

func (x *AnalysisServiceEvent) GetCreateRequest() *api.CreateRequest

func (*AnalysisServiceEvent) GetCreateResponse

func (x *AnalysisServiceEvent) GetCreateResponse() *api.CreateResponse

func (*AnalysisServiceEvent) GetDebugInfoTestRequest

func (x *AnalysisServiceEvent) GetDebugInfoTestRequest() *api.DebugInfoTestRequest

func (*AnalysisServiceEvent) GetDebugInfoTestResponse

func (x *AnalysisServiceEvent) GetDebugInfoTestResponse() *api.DebugInfoTestResponse

func (*AnalysisServiceEvent) GetGetBestVisibleRequest

func (x *AnalysisServiceEvent) GetGetBestVisibleRequest() *api.GetBestVisibleRequest

func (*AnalysisServiceEvent) GetGetBestVisibleResponse

func (x *AnalysisServiceEvent) GetGetBestVisibleResponse() *api.GetBestVisibleResponse

func (*AnalysisServiceEvent) GetGetBuildDependencyGraphRequest

func (x *AnalysisServiceEvent) GetGetBuildDependencyGraphRequest() *api.GetBuildDependencyGraphRequest

func (*AnalysisServiceEvent) GetGetBuildDependencyGraphResponse

func (x *AnalysisServiceEvent) GetGetBuildDependencyGraphResponse() *api.GetBuildDependencyGraphResponse

func (*AnalysisServiceEvent) GetGetBuilderMetadataRequest

func (x *AnalysisServiceEvent) GetGetBuilderMetadataRequest() *api.GetBuilderMetadataRequest

func (*AnalysisServiceEvent) GetGetBuilderMetadataResponse

func (x *AnalysisServiceEvent) GetGetBuilderMetadataResponse() *api.GetBuilderMetadataResponse

func (*AnalysisServiceEvent) GetGetChromeVersionRequest

func (x *AnalysisServiceEvent) GetGetChromeVersionRequest() *api.GetChromeVersionRequest

func (*AnalysisServiceEvent) GetGetChromeVersionResponse

func (x *AnalysisServiceEvent) GetGetChromeVersionResponse() *api.GetChromeVersionResponse

func (*AnalysisServiceEvent) GetInstallPackagesRequest

func (x *AnalysisServiceEvent) GetInstallPackagesRequest() *api.InstallPackagesRequest

func (*AnalysisServiceEvent) GetInstallPackagesResponse

func (x *AnalysisServiceEvent) GetInstallPackagesResponse() *api.InstallPackagesResponse

func (*AnalysisServiceEvent) GetInstallToolchainRequest

func (x *AnalysisServiceEvent) GetInstallToolchainRequest() *api.InstallToolchainRequest

func (*AnalysisServiceEvent) GetInstallToolchainResponse

func (x *AnalysisServiceEvent) GetInstallToolchainResponse() *api.InstallToolchainResponse

func (*AnalysisServiceEvent) GetPrepareBinhostUploadsRequest

func (x *AnalysisServiceEvent) GetPrepareBinhostUploadsRequest() *api.PrepareBinhostUploadsRequest

func (*AnalysisServiceEvent) GetPrepareBinhostUploadsResponse

func (x *AnalysisServiceEvent) GetPrepareBinhostUploadsResponse() *api.PrepareBinhostUploadsResponse

func (*AnalysisServiceEvent) GetRegenBuildCacheRequest

func (x *AnalysisServiceEvent) GetRegenBuildCacheRequest() *api.RegenBuildCacheRequest

func (*AnalysisServiceEvent) GetRegenBuildCacheResponse

func (x *AnalysisServiceEvent) GetRegenBuildCacheResponse() *api.RegenBuildCacheResponse

func (*AnalysisServiceEvent) GetRequest

func (m *AnalysisServiceEvent) GetRequest() isAnalysisServiceEvent_Request

func (*AnalysisServiceEvent) GetRequestTime

func (x *AnalysisServiceEvent) GetRequestTime() *timestamppb.Timestamp

func (*AnalysisServiceEvent) GetResponse

func (m *AnalysisServiceEvent) GetResponse() isAnalysisServiceEvent_Response

func (*AnalysisServiceEvent) GetResponseTime

func (x *AnalysisServiceEvent) GetResponseTime() *timestamppb.Timestamp

func (*AnalysisServiceEvent) GetSetBinhostRequest

func (x *AnalysisServiceEvent) GetSetBinhostRequest() *api.SetBinhostRequest

func (*AnalysisServiceEvent) GetSetBinhostResponse

func (x *AnalysisServiceEvent) GetSetBinhostResponse() *api.SetBinhostResponse

func (*AnalysisServiceEvent) GetStderr

func (x *AnalysisServiceEvent) GetStderr() string

func (*AnalysisServiceEvent) GetStdout

func (x *AnalysisServiceEvent) GetStdout() string

func (*AnalysisServiceEvent) GetStepExecutionResult

func (x *AnalysisServiceEvent) GetStepExecutionResult() *StepExecutionResult

func (*AnalysisServiceEvent) GetStepName

func (x *AnalysisServiceEvent) GetStepName() string

func (*AnalysisServiceEvent) GetSysrootCreateRequest

func (x *AnalysisServiceEvent) GetSysrootCreateRequest() *api.SysrootCreateRequest

func (*AnalysisServiceEvent) GetSysrootCreateResponse

func (x *AnalysisServiceEvent) GetSysrootCreateResponse() *api.SysrootCreateResponse

func (*AnalysisServiceEvent) GetTestAllFirmwareRequest

func (x *AnalysisServiceEvent) GetTestAllFirmwareRequest() *api.TestAllFirmwareRequest

func (*AnalysisServiceEvent) GetTestAllFirmwareResponse

func (x *AnalysisServiceEvent) GetTestAllFirmwareResponse() *api.TestAllFirmwareResponse

func (*AnalysisServiceEvent) GetTestImageRequest

func (x *AnalysisServiceEvent) GetTestImageRequest() *api.TestImageRequest

func (*AnalysisServiceEvent) GetTestImageResult

func (x *AnalysisServiceEvent) GetTestImageResult() *api.TestImageResult

func (*AnalysisServiceEvent) GetUpdateRequest

func (x *AnalysisServiceEvent) GetUpdateRequest() *api.UpdateRequest

func (*AnalysisServiceEvent) GetUpdateResponse

func (x *AnalysisServiceEvent) GetUpdateResponse() *api.UpdateResponse

func (*AnalysisServiceEvent) GetUprevPackagesRequest

func (x *AnalysisServiceEvent) GetUprevPackagesRequest() *api.UprevPackagesRequest

func (*AnalysisServiceEvent) GetUprevPackagesResponse

func (x *AnalysisServiceEvent) GetUprevPackagesResponse() *api.UprevPackagesResponse

func (*AnalysisServiceEvent) GetVmTestRequest

func (x *AnalysisServiceEvent) GetVmTestRequest() *api.VmTestRequest

func (*AnalysisServiceEvent) GetVmTestResponse

func (x *AnalysisServiceEvent) GetVmTestResponse() *api.VmTestResponse

func (*AnalysisServiceEvent) ProtoMessage

func (*AnalysisServiceEvent) ProtoMessage()

func (*AnalysisServiceEvent) ProtoReflect

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

func (*AnalysisServiceEvent) Reset

func (x *AnalysisServiceEvent) Reset()

func (*AnalysisServiceEvent) String

func (x *AnalysisServiceEvent) String() string

type AnalysisServiceEvent_AclArgsRequest

type AnalysisServiceEvent_AclArgsRequest struct {
	AclArgsRequest *api.AclArgsRequest `protobuf:"bytes,10,opt,name=acl_args_request,json=aclArgsRequest,proto3,oneof"`
}

type AnalysisServiceEvent_AclArgsResponse

type AnalysisServiceEvent_AclArgsResponse struct {
	AclArgsResponse *api.AclArgsResponse `protobuf:"bytes,11,opt,name=acl_args_response,json=aclArgsResponse,proto3,oneof"`
}

type AnalysisServiceEvent_BinhostGetRequest

type AnalysisServiceEvent_BinhostGetRequest struct {
	BinhostGetRequest *api.BinhostGetRequest `protobuf:"bytes,8,opt,name=binhost_get_request,json=binhostGetRequest,proto3,oneof"`
}

type AnalysisServiceEvent_BinhostGetResponse

type AnalysisServiceEvent_BinhostGetResponse struct {
	BinhostGetResponse *api.BinhostGetResponse `protobuf:"bytes,9,opt,name=binhost_get_response,json=binhostGetResponse,proto3,oneof"`
}

type AnalysisServiceEvent_BuildAllFirmwareRequest

type AnalysisServiceEvent_BuildAllFirmwareRequest struct {
	BuildAllFirmwareRequest *api.BuildAllFirmwareRequest `protobuf:"bytes,55,opt,name=build_all_firmware_request,json=buildAllFirmwareRequest,proto3,oneof"`
}

type AnalysisServiceEvent_BuildAllFirmwareResponse

type AnalysisServiceEvent_BuildAllFirmwareResponse struct {
	BuildAllFirmwareResponse *api.BuildAllFirmwareResponse `protobuf:"bytes,56,opt,name=build_all_firmware_response,json=buildAllFirmwareResponse,proto3,oneof"`
}

type AnalysisServiceEvent_BuildTargetUnitTestRequest

type AnalysisServiceEvent_BuildTargetUnitTestRequest struct {
	BuildTargetUnitTestRequest *api.BuildTargetUnitTestRequest `protobuf:"bytes,32,opt,name=build_target_unit_test_request,json=buildTargetUnitTestRequest,proto3,oneof"`
}

type AnalysisServiceEvent_BuildTargetUnitTestResponse

type AnalysisServiceEvent_BuildTargetUnitTestResponse struct {
	BuildTargetUnitTestResponse *api.BuildTargetUnitTestResponse `protobuf:"bytes,33,opt,name=build_target_unit_test_response,json=buildTargetUnitTestResponse,proto3,oneof"`
}

type AnalysisServiceEvent_BundleRequest

type AnalysisServiceEvent_BundleRequest struct {
	BundleRequest *api.BundleRequest `protobuf:"bytes,5,opt,name=bundle_request,json=bundleRequest,proto3,oneof"`
}

type AnalysisServiceEvent_BundleResponse

type AnalysisServiceEvent_BundleResponse struct {
	BundleResponse *api.BundleResponse `protobuf:"bytes,6,opt,name=bundle_response,json=bundleResponse,proto3,oneof"`
}

type AnalysisServiceEvent_BundleVmFilesRequest

type AnalysisServiceEvent_BundleVmFilesRequest struct {
	BundleVmFilesRequest *api.BundleVmFilesRequest `protobuf:"bytes,7,opt,name=bundle_vm_files_request,json=bundleVmFilesRequest,proto3,oneof"`
}

type AnalysisServiceEvent_ChromiteUnitTestRequest

type AnalysisServiceEvent_ChromiteUnitTestRequest struct {
	ChromiteUnitTestRequest *api.ChromiteUnitTestRequest `protobuf:"bytes,34,opt,name=chromite_unit_test_request,json=chromiteUnitTestRequest,proto3,oneof"`
}

type AnalysisServiceEvent_ChromiteUnitTestResponse

type AnalysisServiceEvent_ChromiteUnitTestResponse struct {
	ChromiteUnitTestResponse *api.ChromiteUnitTestResponse `protobuf:"bytes,35,opt,name=chromite_unit_test_response,json=chromiteUnitTestResponse,proto3,oneof"`
}

type AnalysisServiceEvent_CreateImageRequest

type AnalysisServiceEvent_CreateImageRequest struct {
	CreateImageRequest *api.CreateImageRequest `protobuf:"bytes,20,opt,name=create_image_request,json=createImageRequest,proto3,oneof"`
}

type AnalysisServiceEvent_CreateImageResult

type AnalysisServiceEvent_CreateImageResult struct {
	CreateImageResult *api.CreateImageResult `protobuf:"bytes,21,opt,name=create_image_result,json=createImageResult,proto3,oneof"`
}

type AnalysisServiceEvent_CreateRequest

type AnalysisServiceEvent_CreateRequest struct {
	CreateRequest *api.CreateRequest `protobuf:"bytes,24,opt,name=create_request,json=createRequest,proto3,oneof"`
}

type AnalysisServiceEvent_CreateResponse

type AnalysisServiceEvent_CreateResponse struct {
	CreateResponse *api.CreateResponse `protobuf:"bytes,25,opt,name=create_response,json=createResponse,proto3,oneof"`
}

type AnalysisServiceEvent_DebugInfoTestRequest

type AnalysisServiceEvent_DebugInfoTestRequest struct {
	DebugInfoTestRequest *api.DebugInfoTestRequest `protobuf:"bytes,36,opt,name=debug_info_test_request,json=debugInfoTestRequest,proto3,oneof"`
}

type AnalysisServiceEvent_DebugInfoTestResponse

type AnalysisServiceEvent_DebugInfoTestResponse struct {
	DebugInfoTestResponse *api.DebugInfoTestResponse `protobuf:"bytes,37,opt,name=debug_info_test_response,json=debugInfoTestResponse,proto3,oneof"`
}

type AnalysisServiceEvent_GetBestVisibleRequest

type AnalysisServiceEvent_GetBestVisibleRequest struct {
	GetBestVisibleRequest *api.GetBestVisibleRequest `protobuf:"bytes,46,opt,name=get_best_visible_request,json=getBestVisibleRequest,proto3,oneof"`
}

type AnalysisServiceEvent_GetBestVisibleResponse

type AnalysisServiceEvent_GetBestVisibleResponse struct {
	GetBestVisibleResponse *api.GetBestVisibleResponse `protobuf:"bytes,47,opt,name=get_best_visible_response,json=getBestVisibleResponse,proto3,oneof"`
}

type AnalysisServiceEvent_GetBuildDependencyGraphRequest

type AnalysisServiceEvent_GetBuildDependencyGraphRequest struct {
	GetBuildDependencyGraphRequest *api.GetBuildDependencyGraphRequest `protobuf:"bytes,18,opt,name=get_build_dependency_graph_request,json=getBuildDependencyGraphRequest,proto3,oneof"`
}

type AnalysisServiceEvent_GetBuildDependencyGraphResponse

type AnalysisServiceEvent_GetBuildDependencyGraphResponse struct {
	GetBuildDependencyGraphResponse *api.GetBuildDependencyGraphResponse `protobuf:"bytes,19,opt,name=get_build_dependency_graph_response,json=getBuildDependencyGraphResponse,proto3,oneof"`
}

type AnalysisServiceEvent_GetBuilderMetadataRequest

type AnalysisServiceEvent_GetBuilderMetadataRequest struct {
	GetBuilderMetadataRequest *api.GetBuilderMetadataRequest `protobuf:"bytes,53,opt,name=get_builder_metadata_request,json=getBuilderMetadataRequest,proto3,oneof"`
}

type AnalysisServiceEvent_GetBuilderMetadataResponse

type AnalysisServiceEvent_GetBuilderMetadataResponse struct {
	GetBuilderMetadataResponse *api.GetBuilderMetadataResponse `protobuf:"bytes,54,opt,name=get_builder_metadata_response,json=getBuilderMetadataResponse,proto3,oneof"`
}

type AnalysisServiceEvent_GetChromeVersionRequest

type AnalysisServiceEvent_GetChromeVersionRequest struct {
	GetChromeVersionRequest *api.GetChromeVersionRequest `protobuf:"bytes,48,opt,name=get_chrome_version_request,json=getChromeVersionRequest,proto3,oneof"`
}

type AnalysisServiceEvent_GetChromeVersionResponse

type AnalysisServiceEvent_GetChromeVersionResponse struct {
	GetChromeVersionResponse *api.GetChromeVersionResponse `protobuf:"bytes,49,opt,name=get_chrome_version_response,json=getChromeVersionResponse,proto3,oneof"`
}

type AnalysisServiceEvent_InstallPackagesRequest

type AnalysisServiceEvent_InstallPackagesRequest struct {
	InstallPackagesRequest *api.InstallPackagesRequest `protobuf:"bytes,1,opt,name=install_packages_request,json=installPackagesRequest,proto3,oneof"`
}

type AnalysisServiceEvent_InstallPackagesResponse

type AnalysisServiceEvent_InstallPackagesResponse struct {
	InstallPackagesResponse *api.InstallPackagesResponse `protobuf:"bytes,2,opt,name=install_packages_response,json=installPackagesResponse,proto3,oneof"`
}

type AnalysisServiceEvent_InstallToolchainRequest

type AnalysisServiceEvent_InstallToolchainRequest struct {
	InstallToolchainRequest *api.InstallToolchainRequest `protobuf:"bytes,30,opt,name=install_toolchain_request,json=installToolchainRequest,proto3,oneof"`
}

type AnalysisServiceEvent_InstallToolchainResponse

type AnalysisServiceEvent_InstallToolchainResponse struct {
	InstallToolchainResponse *api.InstallToolchainResponse `protobuf:"bytes,31,opt,name=install_toolchain_response,json=installToolchainResponse,proto3,oneof"`
}

type AnalysisServiceEvent_PrepareBinhostUploadsRequest

type AnalysisServiceEvent_PrepareBinhostUploadsRequest struct {
	PrepareBinhostUploadsRequest *api.PrepareBinhostUploadsRequest `protobuf:"bytes,12,opt,name=prepare_binhost_uploads_request,json=prepareBinhostUploadsRequest,proto3,oneof"`
}

type AnalysisServiceEvent_PrepareBinhostUploadsResponse

type AnalysisServiceEvent_PrepareBinhostUploadsResponse struct {
	PrepareBinhostUploadsResponse *api.PrepareBinhostUploadsResponse `protobuf:"bytes,13,opt,name=prepare_binhost_uploads_response,json=prepareBinhostUploadsResponse,proto3,oneof"`
}

type AnalysisServiceEvent_RegenBuildCacheRequest

type AnalysisServiceEvent_RegenBuildCacheRequest struct {
	RegenBuildCacheRequest *api.RegenBuildCacheRequest `protobuf:"bytes,16,opt,name=regen_build_cache_request,json=regenBuildCacheRequest,proto3,oneof"`
}

type AnalysisServiceEvent_RegenBuildCacheResponse

type AnalysisServiceEvent_RegenBuildCacheResponse struct {
	RegenBuildCacheResponse *api.RegenBuildCacheResponse `protobuf:"bytes,17,opt,name=regen_build_cache_response,json=regenBuildCacheResponse,proto3,oneof"`
}

type AnalysisServiceEvent_SetBinhostRequest

type AnalysisServiceEvent_SetBinhostRequest struct {
	SetBinhostRequest *api.SetBinhostRequest `protobuf:"bytes,14,opt,name=set_binhost_request,json=setBinhostRequest,proto3,oneof"`
}

type AnalysisServiceEvent_SetBinhostResponse

type AnalysisServiceEvent_SetBinhostResponse struct {
	SetBinhostResponse *api.SetBinhostResponse `protobuf:"bytes,15,opt,name=set_binhost_response,json=setBinhostResponse,proto3,oneof"`
}

type AnalysisServiceEvent_SysrootCreateRequest

type AnalysisServiceEvent_SysrootCreateRequest struct {
	SysrootCreateRequest *api.SysrootCreateRequest `protobuf:"bytes,28,opt,name=sysroot_create_request,json=sysrootCreateRequest,proto3,oneof"`
}

type AnalysisServiceEvent_SysrootCreateResponse

type AnalysisServiceEvent_SysrootCreateResponse struct {
	SysrootCreateResponse *api.SysrootCreateResponse `protobuf:"bytes,29,opt,name=sysroot_create_response,json=sysrootCreateResponse,proto3,oneof"`
}

type AnalysisServiceEvent_TestAllFirmwareRequest

type AnalysisServiceEvent_TestAllFirmwareRequest struct {
	TestAllFirmwareRequest *api.TestAllFirmwareRequest `protobuf:"bytes,57,opt,name=test_all_firmware_request,json=testAllFirmwareRequest,proto3,oneof"`
}

type AnalysisServiceEvent_TestAllFirmwareResponse

type AnalysisServiceEvent_TestAllFirmwareResponse struct {
	TestAllFirmwareResponse *api.TestAllFirmwareResponse `protobuf:"bytes,58,opt,name=test_all_firmware_response,json=testAllFirmwareResponse,proto3,oneof"`
}

type AnalysisServiceEvent_TestImageRequest

type AnalysisServiceEvent_TestImageRequest struct {
	TestImageRequest *api.TestImageRequest `protobuf:"bytes,22,opt,name=test_image_request,json=testImageRequest,proto3,oneof"`
}

type AnalysisServiceEvent_TestImageResult

type AnalysisServiceEvent_TestImageResult struct {
	TestImageResult *api.TestImageResult `protobuf:"bytes,23,opt,name=test_image_result,json=testImageResult,proto3,oneof"`
}

type AnalysisServiceEvent_UpdateRequest

type AnalysisServiceEvent_UpdateRequest struct {
	UpdateRequest *api.UpdateRequest `protobuf:"bytes,26,opt,name=update_request,json=updateRequest,proto3,oneof"`
}

type AnalysisServiceEvent_UpdateResponse

type AnalysisServiceEvent_UpdateResponse struct {
	UpdateResponse *api.UpdateResponse `protobuf:"bytes,27,opt,name=update_response,json=updateResponse,proto3,oneof"`
}

type AnalysisServiceEvent_UprevPackagesRequest

type AnalysisServiceEvent_UprevPackagesRequest struct {
	UprevPackagesRequest *api.UprevPackagesRequest `protobuf:"bytes,44,opt,name=uprev_packages_request,json=uprevPackagesRequest,proto3,oneof"`
}

type AnalysisServiceEvent_UprevPackagesResponse

type AnalysisServiceEvent_UprevPackagesResponse struct {
	UprevPackagesResponse *api.UprevPackagesResponse `protobuf:"bytes,45,opt,name=uprev_packages_response,json=uprevPackagesResponse,proto3,oneof"`
}

type AnalysisServiceEvent_VmTestRequest

type AnalysisServiceEvent_VmTestRequest struct {
	VmTestRequest *api.VmTestRequest `protobuf:"bytes,38,opt,name=vm_test_request,json=vmTestRequest,proto3,oneof"`
}

type AnalysisServiceEvent_VmTestResponse

type AnalysisServiceEvent_VmTestResponse struct {
	VmTestResponse *api.VmTestResponse `protobuf:"bytes,39,opt,name=vm_test_response,json=vmTestResponse,proto3,oneof"`
}

type StepExecutionResult

type StepExecutionResult struct {
	Retcode      int32 `protobuf:"varint,1,opt,name=retcode,proto3" json:"retcode,omitempty"`
	HadTimeout   bool  `protobuf:"varint,2,opt,name=had_timeout,json=hadTimeout,proto3" json:"had_timeout,omitempty"`
	HadException bool  `protobuf:"varint,3,opt,name=had_exception,json=hadException,proto3" json:"had_exception,omitempty"`
	WasCancelled bool  `protobuf:"varint,4,opt,name=was_cancelled,json=wasCancelled,proto3" json:"was_cancelled,omitempty"`
	// contains filtered or unexported fields
}

Data about the execution of a step. Fields mirror those of the ExecutionResult object returned by a step.

func (*StepExecutionResult) Descriptor deprecated

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

Deprecated: Use StepExecutionResult.ProtoReflect.Descriptor instead.

func (*StepExecutionResult) GetHadException

func (x *StepExecutionResult) GetHadException() bool

func (*StepExecutionResult) GetHadTimeout

func (x *StepExecutionResult) GetHadTimeout() bool

func (*StepExecutionResult) GetRetcode

func (x *StepExecutionResult) GetRetcode() int32

func (*StepExecutionResult) GetWasCancelled

func (x *StepExecutionResult) GetWasCancelled() bool

func (*StepExecutionResult) ProtoMessage

func (*StepExecutionResult) ProtoMessage()

func (*StepExecutionResult) ProtoReflect

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

func (*StepExecutionResult) Reset

func (x *StepExecutionResult) Reset()

func (*StepExecutionResult) String

func (x *StepExecutionResult) String() string

Jump to

Keyboard shortcuts

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