pps

package
v2.9.4 Latest Latest
Warning

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

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

Documentation

Overview

Package pps is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	API_InspectJob_FullMethodName         = "/pps_v2.API/InspectJob"
	API_InspectJobSet_FullMethodName      = "/pps_v2.API/InspectJobSet"
	API_ListJob_FullMethodName            = "/pps_v2.API/ListJob"
	API_ListJobSet_FullMethodName         = "/pps_v2.API/ListJobSet"
	API_SubscribeJob_FullMethodName       = "/pps_v2.API/SubscribeJob"
	API_DeleteJob_FullMethodName          = "/pps_v2.API/DeleteJob"
	API_StopJob_FullMethodName            = "/pps_v2.API/StopJob"
	API_InspectDatum_FullMethodName       = "/pps_v2.API/InspectDatum"
	API_ListDatum_FullMethodName          = "/pps_v2.API/ListDatum"
	API_CreateDatum_FullMethodName        = "/pps_v2.API/CreateDatum"
	API_RestartDatum_FullMethodName       = "/pps_v2.API/RestartDatum"
	API_RerunPipeline_FullMethodName      = "/pps_v2.API/RerunPipeline"
	API_CreatePipeline_FullMethodName     = "/pps_v2.API/CreatePipeline"
	API_CreatePipelineV2_FullMethodName   = "/pps_v2.API/CreatePipelineV2"
	API_InspectPipeline_FullMethodName    = "/pps_v2.API/InspectPipeline"
	API_ListPipeline_FullMethodName       = "/pps_v2.API/ListPipeline"
	API_DeletePipeline_FullMethodName     = "/pps_v2.API/DeletePipeline"
	API_DeletePipelines_FullMethodName    = "/pps_v2.API/DeletePipelines"
	API_StartPipeline_FullMethodName      = "/pps_v2.API/StartPipeline"
	API_StopPipeline_FullMethodName       = "/pps_v2.API/StopPipeline"
	API_RunPipeline_FullMethodName        = "/pps_v2.API/RunPipeline"
	API_RunCron_FullMethodName            = "/pps_v2.API/RunCron"
	API_CheckStatus_FullMethodName        = "/pps_v2.API/CheckStatus"
	API_CreateSecret_FullMethodName       = "/pps_v2.API/CreateSecret"
	API_DeleteSecret_FullMethodName       = "/pps_v2.API/DeleteSecret"
	API_ListSecret_FullMethodName         = "/pps_v2.API/ListSecret"
	API_InspectSecret_FullMethodName      = "/pps_v2.API/InspectSecret"
	API_DeleteAll_FullMethodName          = "/pps_v2.API/DeleteAll"
	API_GetLogs_FullMethodName            = "/pps_v2.API/GetLogs"
	API_ActivateAuth_FullMethodName       = "/pps_v2.API/ActivateAuth"
	API_UpdateJobState_FullMethodName     = "/pps_v2.API/UpdateJobState"
	API_RunLoadTest_FullMethodName        = "/pps_v2.API/RunLoadTest"
	API_RunLoadTestDefault_FullMethodName = "/pps_v2.API/RunLoadTestDefault"
	API_RenderTemplate_FullMethodName     = "/pps_v2.API/RenderTemplate"
	API_ListTask_FullMethodName           = "/pps_v2.API/ListTask"
	API_GetKubeEvents_FullMethodName      = "/pps_v2.API/GetKubeEvents"
	API_QueryLoki_FullMethodName          = "/pps_v2.API/QueryLoki"
	API_GetClusterDefaults_FullMethodName = "/pps_v2.API/GetClusterDefaults"
	API_SetClusterDefaults_FullMethodName = "/pps_v2.API/SetClusterDefaults"
	API_GetProjectDefaults_FullMethodName = "/pps_v2.API/GetProjectDefaults"
	API_SetProjectDefaults_FullMethodName = "/pps_v2.API/SetProjectDefaults"
)

Variables

View Source
var (
	JobState_name = map[int32]string{
		0: "JOB_STATE_UNKNOWN",
		1: "JOB_CREATED",
		2: "JOB_STARTING",
		3: "JOB_RUNNING",
		4: "JOB_FAILURE",
		5: "JOB_SUCCESS",
		6: "JOB_KILLED",
		7: "JOB_EGRESSING",
		8: "JOB_FINISHING",
		9: "JOB_UNRUNNABLE",
	}
	JobState_value = map[string]int32{
		"JOB_STATE_UNKNOWN": 0,
		"JOB_CREATED":       1,
		"JOB_STARTING":      2,
		"JOB_RUNNING":       3,
		"JOB_FAILURE":       4,
		"JOB_SUCCESS":       5,
		"JOB_KILLED":        6,
		"JOB_EGRESSING":     7,
		"JOB_FINISHING":     8,
		"JOB_UNRUNNABLE":    9,
	}
)

Enum value maps for JobState.

View Source
var (
	DatumState_name = map[int32]string{
		0: "UNKNOWN",
		1: "FAILED",
		2: "SUCCESS",
		3: "SKIPPED",
		4: "STARTING",
		5: "RECOVERED",
	}
	DatumState_value = map[string]int32{
		"UNKNOWN":   0,
		"FAILED":    1,
		"SUCCESS":   2,
		"SKIPPED":   3,
		"STARTING":  4,
		"RECOVERED": 5,
	}
)

Enum value maps for DatumState.

View Source
var (
	WorkerState_name = map[int32]string{
		0: "WORKER_STATE_UNKNOWN",
		1: "POD_RUNNING",
		2: "POD_SUCCESS",
		3: "POD_FAILED",
	}
	WorkerState_value = map[string]int32{
		"WORKER_STATE_UNKNOWN": 0,
		"POD_RUNNING":          1,
		"POD_SUCCESS":          2,
		"POD_FAILED":           3,
	}
)

Enum value maps for WorkerState.

View Source
var (
	PipelineState_name = map[int32]string{
		0: "PIPELINE_STATE_UNKNOWN",
		1: "PIPELINE_STARTING",
		2: "PIPELINE_RUNNING",
		3: "PIPELINE_RESTARTING",
		4: "PIPELINE_FAILURE",
		5: "PIPELINE_PAUSED",
		6: "PIPELINE_STANDBY",
		7: "PIPELINE_CRASHING",
	}
	PipelineState_value = map[string]int32{
		"PIPELINE_STATE_UNKNOWN": 0,
		"PIPELINE_STARTING":      1,
		"PIPELINE_RUNNING":       2,
		"PIPELINE_RESTARTING":    3,
		"PIPELINE_FAILURE":       4,
		"PIPELINE_PAUSED":        5,
		"PIPELINE_STANDBY":       6,
		"PIPELINE_CRASHING":      7,
	}
)

Enum value maps for PipelineState.

View Source
var (
	TolerationOperator_name = map[int32]string{
		0: "EMPTY",
		1: "EXISTS",
		2: "EQUAL",
	}
	TolerationOperator_value = map[string]int32{
		"EMPTY":  0,
		"EXISTS": 1,
		"EQUAL":  2,
	}
)

Enum value maps for TolerationOperator.

View Source
var (
	TaintEffect_name = map[int32]string{
		0: "ALL_EFFECTS",
		1: "NO_SCHEDULE",
		2: "PREFER_NO_SCHEDULE",
		3: "NO_EXECUTE",
	}
	TaintEffect_value = map[string]int32{
		"ALL_EFFECTS":        0,
		"NO_SCHEDULE":        1,
		"PREFER_NO_SCHEDULE": 2,
		"NO_EXECUTE":         3,
	}
)

Enum value maps for TaintEffect.

View Source
var (
	PipelineInfo_PipelineType_name = map[int32]string{
		0: "PIPELINT_TYPE_UNKNOWN",
		1: "PIPELINE_TYPE_TRANSFORM",
		2: "PIPELINE_TYPE_SPOUT",
		3: "PIPELINE_TYPE_SERVICE",
	}
	PipelineInfo_PipelineType_value = map[string]int32{
		"PIPELINT_TYPE_UNKNOWN":   0,
		"PIPELINE_TYPE_TRANSFORM": 1,
		"PIPELINE_TYPE_SPOUT":     2,
		"PIPELINE_TYPE_SERVICE":   3,
	}
)

Enum value maps for PipelineInfo_PipelineType.

View Source
var API_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "pps_v2.API",
	HandlerType: (*APIServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "InspectJob",
			Handler:    _API_InspectJob_Handler,
		},
		{
			MethodName: "DeleteJob",
			Handler:    _API_DeleteJob_Handler,
		},
		{
			MethodName: "StopJob",
			Handler:    _API_StopJob_Handler,
		},
		{
			MethodName: "InspectDatum",
			Handler:    _API_InspectDatum_Handler,
		},
		{
			MethodName: "RestartDatum",
			Handler:    _API_RestartDatum_Handler,
		},
		{
			MethodName: "RerunPipeline",
			Handler:    _API_RerunPipeline_Handler,
		},
		{
			MethodName: "CreatePipeline",
			Handler:    _API_CreatePipeline_Handler,
		},
		{
			MethodName: "CreatePipelineV2",
			Handler:    _API_CreatePipelineV2_Handler,
		},
		{
			MethodName: "InspectPipeline",
			Handler:    _API_InspectPipeline_Handler,
		},
		{
			MethodName: "DeletePipeline",
			Handler:    _API_DeletePipeline_Handler,
		},
		{
			MethodName: "DeletePipelines",
			Handler:    _API_DeletePipelines_Handler,
		},
		{
			MethodName: "StartPipeline",
			Handler:    _API_StartPipeline_Handler,
		},
		{
			MethodName: "StopPipeline",
			Handler:    _API_StopPipeline_Handler,
		},
		{
			MethodName: "RunPipeline",
			Handler:    _API_RunPipeline_Handler,
		},
		{
			MethodName: "RunCron",
			Handler:    _API_RunCron_Handler,
		},
		{
			MethodName: "CreateSecret",
			Handler:    _API_CreateSecret_Handler,
		},
		{
			MethodName: "DeleteSecret",
			Handler:    _API_DeleteSecret_Handler,
		},
		{
			MethodName: "ListSecret",
			Handler:    _API_ListSecret_Handler,
		},
		{
			MethodName: "InspectSecret",
			Handler:    _API_InspectSecret_Handler,
		},
		{
			MethodName: "DeleteAll",
			Handler:    _API_DeleteAll_Handler,
		},
		{
			MethodName: "ActivateAuth",
			Handler:    _API_ActivateAuth_Handler,
		},
		{
			MethodName: "UpdateJobState",
			Handler:    _API_UpdateJobState_Handler,
		},
		{
			MethodName: "RunLoadTest",
			Handler:    _API_RunLoadTest_Handler,
		},
		{
			MethodName: "RunLoadTestDefault",
			Handler:    _API_RunLoadTestDefault_Handler,
		},
		{
			MethodName: "RenderTemplate",
			Handler:    _API_RenderTemplate_Handler,
		},
		{
			MethodName: "GetClusterDefaults",
			Handler:    _API_GetClusterDefaults_Handler,
		},
		{
			MethodName: "SetClusterDefaults",
			Handler:    _API_SetClusterDefaults_Handler,
		},
		{
			MethodName: "GetProjectDefaults",
			Handler:    _API_GetProjectDefaults_Handler,
		},
		{
			MethodName: "SetProjectDefaults",
			Handler:    _API_SetProjectDefaults_Handler,
		},
	},
	Streams: []grpc.StreamDesc{
		{
			StreamName:    "InspectJobSet",
			Handler:       _API_InspectJobSet_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "ListJob",
			Handler:       _API_ListJob_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "ListJobSet",
			Handler:       _API_ListJobSet_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "SubscribeJob",
			Handler:       _API_SubscribeJob_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "ListDatum",
			Handler:       _API_ListDatum_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "CreateDatum",
			Handler:       _API_CreateDatum_Handler,
			ServerStreams: true,
			ClientStreams: true,
		},
		{
			StreamName:    "ListPipeline",
			Handler:       _API_ListPipeline_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "CheckStatus",
			Handler:       _API_CheckStatus_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "GetLogs",
			Handler:       _API_GetLogs_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "ListTask",
			Handler:       _API_ListTask_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "GetKubeEvents",
			Handler:       _API_GetKubeEvents_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "QueryLoki",
			Handler:       _API_QueryLoki_Handler,
			ServerStreams: true,
		},
	},
	Metadata: "pps/pps.proto",
}

API_ServiceDesc is the grpc.ServiceDesc for API 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_pps_pps_proto protoreflect.FileDescriptor

Functions

func DataField

func DataField(data []*InputFile) zap.Field

func DatumIDField

func DatumIDField(id string) zap.Field

func GetAlerts added in v2.9.0

func GetAlerts(pi *PipelineInfo) []string

func InputBranches deprecated

func InputBranches(input *Input) []*pfs.Branch

InputBranches returns the branches in an Input.

Deprecated: Use ProjectInputBranches instead.

func InputName

func InputName(input *Input) string

InputName computes the name of an Input.

func IsTerminal

func IsTerminal(state JobState) bool

IsTerminal returns 'true' if 'state' indicates that the job is done (i.e. the state will not change later: SUCCESS, FAILURE, KILLED) and 'false' otherwise.

func JobIDField

func JobIDField(id string) zap.Field

func MasterField

func MasterField(master bool) zap.Field

func PipelineNameField

func PipelineNameField(name string) zap.Field

func ProjectInputBranches

func ProjectInputBranches(projectName string, input *Input) []*pfs.Branch

func ProjectNameField

func ProjectNameField(name string) zap.Field

The following are zap fields for log lines that can be parsed into a LogMessage. The field name must be equal to the `protobuf:"...,json="` name.

func RegisterAPIHandler added in v2.8.0

func RegisterAPIHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterAPIHandler registers the http handlers for service API to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterAPIHandlerClient added in v2.8.0

func RegisterAPIHandlerClient(ctx context.Context, mux *runtime.ServeMux, client APIClient) error

RegisterAPIHandlerClient registers the http handlers for service API to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "APIClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "APIClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "APIClient" to call the correct interceptors.

func RegisterAPIHandlerFromEndpoint added in v2.8.0

func RegisterAPIHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterAPIHandlerFromEndpoint is same as RegisterAPIHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterAPIHandlerServer added in v2.8.0

func RegisterAPIHandlerServer(ctx context.Context, mux *runtime.ServeMux, server APIServer) error

RegisterAPIHandlerServer registers the http handlers for service API to "mux". UnaryRPC :call APIServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterAPIHandlerFromEndpoint instead.

func RegisterAPIServer

func RegisterAPIServer(s grpc.ServiceRegistrar, srv APIServer)

func SortInput

func SortInput(input *Input)

SortInput sorts an Input.

func UserField

func UserField(user bool) zap.Field

func VisitInput

func VisitInput(input *Input, f func(*Input) error) error

VisitInput visits each input recursively in ascending order (root last). It cannot return an error unless f returns an error.

func WorkerIDField

func WorkerIDField(id string) zap.Field

Types

type APIClient

type APIClient interface {
	InspectJob(ctx context.Context, in *InspectJobRequest, opts ...grpc.CallOption) (*JobInfo, error)
	InspectJobSet(ctx context.Context, in *InspectJobSetRequest, opts ...grpc.CallOption) (API_InspectJobSetClient, error)
	// ListJob returns information about current and past Pachyderm jobs.
	ListJob(ctx context.Context, in *ListJobRequest, opts ...grpc.CallOption) (API_ListJobClient, error)
	ListJobSet(ctx context.Context, in *ListJobSetRequest, opts ...grpc.CallOption) (API_ListJobSetClient, error)
	SubscribeJob(ctx context.Context, in *SubscribeJobRequest, opts ...grpc.CallOption) (API_SubscribeJobClient, error)
	DeleteJob(ctx context.Context, in *DeleteJobRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	StopJob(ctx context.Context, in *StopJobRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	InspectDatum(ctx context.Context, in *InspectDatumRequest, opts ...grpc.CallOption) (*DatumInfo, error)
	// ListDatum returns information about each datum fed to a Pachyderm job
	ListDatum(ctx context.Context, in *ListDatumRequest, opts ...grpc.CallOption) (API_ListDatumClient, error)
	// CreateDatum prioritizes time to first datum. Each request returns a batch
	// of datums.
	CreateDatum(ctx context.Context, opts ...grpc.CallOption) (API_CreateDatumClient, error)
	RestartDatum(ctx context.Context, in *RestartDatumRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	RerunPipeline(ctx context.Context, in *RerunPipelineRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	CreatePipeline(ctx context.Context, in *CreatePipelineRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	CreatePipelineV2(ctx context.Context, in *CreatePipelineV2Request, opts ...grpc.CallOption) (*CreatePipelineV2Response, error)
	InspectPipeline(ctx context.Context, in *InspectPipelineRequest, opts ...grpc.CallOption) (*PipelineInfo, error)
	ListPipeline(ctx context.Context, in *ListPipelineRequest, opts ...grpc.CallOption) (API_ListPipelineClient, error)
	DeletePipeline(ctx context.Context, in *DeletePipelineRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	DeletePipelines(ctx context.Context, in *DeletePipelinesRequest, opts ...grpc.CallOption) (*DeletePipelinesResponse, error)
	StartPipeline(ctx context.Context, in *StartPipelineRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	StopPipeline(ctx context.Context, in *StopPipelineRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	RunPipeline(ctx context.Context, in *RunPipelineRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	RunCron(ctx context.Context, in *RunCronRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// Check Status returns the status of pipelines within a project.
	CheckStatus(ctx context.Context, in *CheckStatusRequest, opts ...grpc.CallOption) (API_CheckStatusClient, error)
	CreateSecret(ctx context.Context, in *CreateSecretRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	DeleteSecret(ctx context.Context, in *DeleteSecretRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	ListSecret(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*SecretInfos, error)
	InspectSecret(ctx context.Context, in *InspectSecretRequest, opts ...grpc.CallOption) (*SecretInfo, error)
	// DeleteAll deletes everything
	DeleteAll(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*emptypb.Empty, error)
	GetLogs(ctx context.Context, in *GetLogsRequest, opts ...grpc.CallOption) (API_GetLogsClient, error)
	// An internal call that causes PPS to put itself into an auth-enabled state
	// (all pipeline have tokens, correct permissions, etcd)
	ActivateAuth(ctx context.Context, in *ActivateAuthRequest, opts ...grpc.CallOption) (*ActivateAuthResponse, error)
	// An internal call used to move a job from one state to another
	UpdateJobState(ctx context.Context, in *UpdateJobStateRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// RunLoadTest runs a load test.
	RunLoadTest(ctx context.Context, in *RunLoadTestRequest, opts ...grpc.CallOption) (*RunLoadTestResponse, error)
	// RunLoadTestDefault runs the default load test.
	RunLoadTestDefault(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*RunLoadTestResponse, error)
	// RenderTemplate renders the provided template and arguments into a list of Pipeline specicifications
	RenderTemplate(ctx context.Context, in *RenderTemplateRequest, opts ...grpc.CallOption) (*RenderTemplateResponse, error)
	// ListTask lists PPS tasks
	ListTask(ctx context.Context, in *task.ListTaskRequest, opts ...grpc.CallOption) (API_ListTaskClient, error)
	// GetKubeEvents returns a stream of kubernetes events
	GetKubeEvents(ctx context.Context, in *LokiRequest, opts ...grpc.CallOption) (API_GetKubeEventsClient, error)
	// QueryLoki returns a stream of loki log messages given a query string
	QueryLoki(ctx context.Context, in *LokiRequest, opts ...grpc.CallOption) (API_QueryLokiClient, error)
	// GetClusterDefaults returns the current cluster defaults.
	GetClusterDefaults(ctx context.Context, in *GetClusterDefaultsRequest, opts ...grpc.CallOption) (*GetClusterDefaultsResponse, error)
	// SetClusterDefaults returns the current cluster defaults.
	SetClusterDefaults(ctx context.Context, in *SetClusterDefaultsRequest, opts ...grpc.CallOption) (*SetClusterDefaultsResponse, error)
	// GetProjectDefaults returns the defaults for a particular project.
	GetProjectDefaults(ctx context.Context, in *GetProjectDefaultsRequest, opts ...grpc.CallOption) (*GetProjectDefaultsResponse, error)
	// SetProjectDefaults sets the defaults for a particular project.
	SetProjectDefaults(ctx context.Context, in *SetProjectDefaultsRequest, opts ...grpc.CallOption) (*SetProjectDefaultsResponse, error)
}

APIClient is the client API for API 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 NewAPIClient

func NewAPIClient(cc grpc.ClientConnInterface) APIClient

type APIServer

type APIServer interface {
	InspectJob(context.Context, *InspectJobRequest) (*JobInfo, error)
	InspectJobSet(*InspectJobSetRequest, API_InspectJobSetServer) error
	// ListJob returns information about current and past Pachyderm jobs.
	ListJob(*ListJobRequest, API_ListJobServer) error
	ListJobSet(*ListJobSetRequest, API_ListJobSetServer) error
	SubscribeJob(*SubscribeJobRequest, API_SubscribeJobServer) error
	DeleteJob(context.Context, *DeleteJobRequest) (*emptypb.Empty, error)
	StopJob(context.Context, *StopJobRequest) (*emptypb.Empty, error)
	InspectDatum(context.Context, *InspectDatumRequest) (*DatumInfo, error)
	// ListDatum returns information about each datum fed to a Pachyderm job
	ListDatum(*ListDatumRequest, API_ListDatumServer) error
	// CreateDatum prioritizes time to first datum. Each request returns a batch
	// of datums.
	CreateDatum(API_CreateDatumServer) error
	RestartDatum(context.Context, *RestartDatumRequest) (*emptypb.Empty, error)
	RerunPipeline(context.Context, *RerunPipelineRequest) (*emptypb.Empty, error)
	CreatePipeline(context.Context, *CreatePipelineRequest) (*emptypb.Empty, error)
	CreatePipelineV2(context.Context, *CreatePipelineV2Request) (*CreatePipelineV2Response, error)
	InspectPipeline(context.Context, *InspectPipelineRequest) (*PipelineInfo, error)
	ListPipeline(*ListPipelineRequest, API_ListPipelineServer) error
	DeletePipeline(context.Context, *DeletePipelineRequest) (*emptypb.Empty, error)
	DeletePipelines(context.Context, *DeletePipelinesRequest) (*DeletePipelinesResponse, error)
	StartPipeline(context.Context, *StartPipelineRequest) (*emptypb.Empty, error)
	StopPipeline(context.Context, *StopPipelineRequest) (*emptypb.Empty, error)
	RunPipeline(context.Context, *RunPipelineRequest) (*emptypb.Empty, error)
	RunCron(context.Context, *RunCronRequest) (*emptypb.Empty, error)
	// Check Status returns the status of pipelines within a project.
	CheckStatus(*CheckStatusRequest, API_CheckStatusServer) error
	CreateSecret(context.Context, *CreateSecretRequest) (*emptypb.Empty, error)
	DeleteSecret(context.Context, *DeleteSecretRequest) (*emptypb.Empty, error)
	ListSecret(context.Context, *emptypb.Empty) (*SecretInfos, error)
	InspectSecret(context.Context, *InspectSecretRequest) (*SecretInfo, error)
	// DeleteAll deletes everything
	DeleteAll(context.Context, *emptypb.Empty) (*emptypb.Empty, error)
	GetLogs(*GetLogsRequest, API_GetLogsServer) error
	// An internal call that causes PPS to put itself into an auth-enabled state
	// (all pipeline have tokens, correct permissions, etcd)
	ActivateAuth(context.Context, *ActivateAuthRequest) (*ActivateAuthResponse, error)
	// An internal call used to move a job from one state to another
	UpdateJobState(context.Context, *UpdateJobStateRequest) (*emptypb.Empty, error)
	// RunLoadTest runs a load test.
	RunLoadTest(context.Context, *RunLoadTestRequest) (*RunLoadTestResponse, error)
	// RunLoadTestDefault runs the default load test.
	RunLoadTestDefault(context.Context, *emptypb.Empty) (*RunLoadTestResponse, error)
	// RenderTemplate renders the provided template and arguments into a list of Pipeline specicifications
	RenderTemplate(context.Context, *RenderTemplateRequest) (*RenderTemplateResponse, error)
	// ListTask lists PPS tasks
	ListTask(*task.ListTaskRequest, API_ListTaskServer) error
	// GetKubeEvents returns a stream of kubernetes events
	GetKubeEvents(*LokiRequest, API_GetKubeEventsServer) error
	// QueryLoki returns a stream of loki log messages given a query string
	QueryLoki(*LokiRequest, API_QueryLokiServer) error
	// GetClusterDefaults returns the current cluster defaults.
	GetClusterDefaults(context.Context, *GetClusterDefaultsRequest) (*GetClusterDefaultsResponse, error)
	// SetClusterDefaults returns the current cluster defaults.
	SetClusterDefaults(context.Context, *SetClusterDefaultsRequest) (*SetClusterDefaultsResponse, error)
	// GetProjectDefaults returns the defaults for a particular project.
	GetProjectDefaults(context.Context, *GetProjectDefaultsRequest) (*GetProjectDefaultsResponse, error)
	// SetProjectDefaults sets the defaults for a particular project.
	SetProjectDefaults(context.Context, *SetProjectDefaultsRequest) (*SetProjectDefaultsResponse, error)
	// contains filtered or unexported methods
}

APIServer is the server API for API service. All implementations must embed UnimplementedAPIServer for forward compatibility

type API_CheckStatusClient added in v2.9.0

type API_CheckStatusClient interface {
	Recv() (*CheckStatusResponse, error)
	grpc.ClientStream
}

type API_CheckStatusServer added in v2.9.0

type API_CheckStatusServer interface {
	Send(*CheckStatusResponse) error
	grpc.ServerStream
}

type API_CreateDatumClient added in v2.9.0

type API_CreateDatumClient interface {
	Send(*CreateDatumRequest) error
	Recv() (*DatumInfo, error)
	grpc.ClientStream
}

type API_CreateDatumServer added in v2.9.0

type API_CreateDatumServer interface {
	Send(*DatumInfo) error
	Recv() (*CreateDatumRequest, error)
	grpc.ServerStream
}

type API_GetKubeEventsClient

type API_GetKubeEventsClient interface {
	Recv() (*LokiLogMessage, error)
	grpc.ClientStream
}

type API_GetKubeEventsServer

type API_GetKubeEventsServer interface {
	Send(*LokiLogMessage) error
	grpc.ServerStream
}

type API_GetLogsClient

type API_GetLogsClient interface {
	Recv() (*LogMessage, error)
	grpc.ClientStream
}

type API_GetLogsServer

type API_GetLogsServer interface {
	Send(*LogMessage) error
	grpc.ServerStream
}

type API_InspectJobSetClient

type API_InspectJobSetClient interface {
	Recv() (*JobInfo, error)
	grpc.ClientStream
}

type API_InspectJobSetServer

type API_InspectJobSetServer interface {
	Send(*JobInfo) error
	grpc.ServerStream
}

type API_ListDatumClient

type API_ListDatumClient interface {
	Recv() (*DatumInfo, error)
	grpc.ClientStream
}

type API_ListDatumServer

type API_ListDatumServer interface {
	Send(*DatumInfo) error
	grpc.ServerStream
}

type API_ListJobClient

type API_ListJobClient interface {
	Recv() (*JobInfo, error)
	grpc.ClientStream
}

type API_ListJobServer

type API_ListJobServer interface {
	Send(*JobInfo) error
	grpc.ServerStream
}

type API_ListJobSetClient

type API_ListJobSetClient interface {
	Recv() (*JobSetInfo, error)
	grpc.ClientStream
}

type API_ListJobSetServer

type API_ListJobSetServer interface {
	Send(*JobSetInfo) error
	grpc.ServerStream
}

type API_ListPipelineClient

type API_ListPipelineClient interface {
	Recv() (*PipelineInfo, error)
	grpc.ClientStream
}

type API_ListPipelineServer

type API_ListPipelineServer interface {
	Send(*PipelineInfo) error
	grpc.ServerStream
}

type API_ListTaskClient

type API_ListTaskClient interface {
	Recv() (*task.TaskInfo, error)
	grpc.ClientStream
}

type API_ListTaskServer

type API_ListTaskServer interface {
	Send(*task.TaskInfo) error
	grpc.ServerStream
}

type API_QueryLokiClient

type API_QueryLokiClient interface {
	Recv() (*LokiLogMessage, error)
	grpc.ClientStream
}

type API_QueryLokiServer

type API_QueryLokiServer interface {
	Send(*LokiLogMessage) error
	grpc.ServerStream
}

type API_SubscribeJobClient

type API_SubscribeJobClient interface {
	Recv() (*JobInfo, error)
	grpc.ClientStream
}

type API_SubscribeJobServer

type API_SubscribeJobServer interface {
	Send(*JobInfo) error
	grpc.ServerStream
}

type ActivateAuthRequest

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

func (*ActivateAuthRequest) Descriptor deprecated

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

Deprecated: Use ActivateAuthRequest.ProtoReflect.Descriptor instead.

func (*ActivateAuthRequest) MarshalLogObject

func (x *ActivateAuthRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ActivateAuthRequest) ProtoMessage

func (*ActivateAuthRequest) ProtoMessage()

func (*ActivateAuthRequest) ProtoReflect added in v2.7.0

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

func (*ActivateAuthRequest) Reset

func (x *ActivateAuthRequest) Reset()

func (*ActivateAuthRequest) String

func (x *ActivateAuthRequest) String() string

func (*ActivateAuthRequest) Validate added in v2.8.0

func (m *ActivateAuthRequest) Validate() error

Validate checks the field values on ActivateAuthRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ActivateAuthRequest) ValidateAll added in v2.8.0

func (m *ActivateAuthRequest) ValidateAll() error

ValidateAll checks the field values on ActivateAuthRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ActivateAuthRequestMultiError, or nil if none found.

type ActivateAuthRequestMultiError added in v2.8.0

type ActivateAuthRequestMultiError []error

ActivateAuthRequestMultiError is an error wrapping multiple validation errors returned by ActivateAuthRequest.ValidateAll() if the designated constraints aren't met.

func (ActivateAuthRequestMultiError) AllErrors added in v2.8.0

func (m ActivateAuthRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ActivateAuthRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ActivateAuthRequestValidationError added in v2.8.0

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

ActivateAuthRequestValidationError is the validation error returned by ActivateAuthRequest.Validate if the designated constraints aren't met.

func (ActivateAuthRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ActivateAuthRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ActivateAuthRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ActivateAuthRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ActivateAuthRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ActivateAuthRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ActivateAuthResponse

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

func (*ActivateAuthResponse) Descriptor deprecated

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

Deprecated: Use ActivateAuthResponse.ProtoReflect.Descriptor instead.

func (*ActivateAuthResponse) MarshalLogObject

func (x *ActivateAuthResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ActivateAuthResponse) ProtoMessage

func (*ActivateAuthResponse) ProtoMessage()

func (*ActivateAuthResponse) ProtoReflect added in v2.7.0

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

func (*ActivateAuthResponse) Reset

func (x *ActivateAuthResponse) Reset()

func (*ActivateAuthResponse) String

func (x *ActivateAuthResponse) String() string

func (*ActivateAuthResponse) Validate added in v2.8.0

func (m *ActivateAuthResponse) Validate() error

Validate checks the field values on ActivateAuthResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ActivateAuthResponse) ValidateAll added in v2.8.0

func (m *ActivateAuthResponse) ValidateAll() error

ValidateAll checks the field values on ActivateAuthResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ActivateAuthResponseMultiError, or nil if none found.

type ActivateAuthResponseMultiError added in v2.8.0

type ActivateAuthResponseMultiError []error

ActivateAuthResponseMultiError is an error wrapping multiple validation errors returned by ActivateAuthResponse.ValidateAll() if the designated constraints aren't met.

func (ActivateAuthResponseMultiError) AllErrors added in v2.8.0

func (m ActivateAuthResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ActivateAuthResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ActivateAuthResponseValidationError added in v2.8.0

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

ActivateAuthResponseValidationError is the validation error returned by ActivateAuthResponse.Validate if the designated constraints aren't met.

func (ActivateAuthResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ActivateAuthResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ActivateAuthResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ActivateAuthResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (ActivateAuthResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (ActivateAuthResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type Aggregate

type Aggregate struct {
	Count                 int64   `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
	Mean                  float64 `protobuf:"fixed64,2,opt,name=mean,proto3" json:"mean,omitempty"`
	Stddev                float64 `protobuf:"fixed64,3,opt,name=stddev,proto3" json:"stddev,omitempty"`
	FifthPercentile       float64 `protobuf:"fixed64,4,opt,name=fifth_percentile,json=fifthPercentile,proto3" json:"fifth_percentile,omitempty"`
	NinetyFifthPercentile float64 `` /* 128-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Aggregate) Descriptor deprecated

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

Deprecated: Use Aggregate.ProtoReflect.Descriptor instead.

func (*Aggregate) GetCount

func (x *Aggregate) GetCount() int64

func (*Aggregate) GetFifthPercentile

func (x *Aggregate) GetFifthPercentile() float64

func (*Aggregate) GetMean

func (x *Aggregate) GetMean() float64

func (*Aggregate) GetNinetyFifthPercentile

func (x *Aggregate) GetNinetyFifthPercentile() float64

func (*Aggregate) GetStddev

func (x *Aggregate) GetStddev() float64

func (*Aggregate) MarshalLogObject

func (x *Aggregate) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Aggregate) ProtoMessage

func (*Aggregate) ProtoMessage()

func (*Aggregate) ProtoReflect added in v2.7.0

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

func (*Aggregate) Reset

func (x *Aggregate) Reset()

func (*Aggregate) String

func (x *Aggregate) String() string

func (*Aggregate) Validate added in v2.8.0

func (m *Aggregate) Validate() error

Validate checks the field values on Aggregate with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Aggregate) ValidateAll added in v2.8.0

func (m *Aggregate) ValidateAll() error

ValidateAll checks the field values on Aggregate with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in AggregateMultiError, or nil if none found.

type AggregateMultiError added in v2.8.0

type AggregateMultiError []error

AggregateMultiError is an error wrapping multiple validation errors returned by Aggregate.ValidateAll() if the designated constraints aren't met.

func (AggregateMultiError) AllErrors added in v2.8.0

func (m AggregateMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AggregateMultiError) Error added in v2.8.0

func (m AggregateMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type AggregateProcessStats

type AggregateProcessStats struct {
	DownloadTime  *Aggregate `protobuf:"bytes,1,opt,name=download_time,json=downloadTime,proto3" json:"download_time,omitempty"`
	ProcessTime   *Aggregate `protobuf:"bytes,2,opt,name=process_time,json=processTime,proto3" json:"process_time,omitempty"`
	UploadTime    *Aggregate `protobuf:"bytes,3,opt,name=upload_time,json=uploadTime,proto3" json:"upload_time,omitempty"`
	DownloadBytes *Aggregate `protobuf:"bytes,4,opt,name=download_bytes,json=downloadBytes,proto3" json:"download_bytes,omitempty"`
	UploadBytes   *Aggregate `protobuf:"bytes,5,opt,name=upload_bytes,json=uploadBytes,proto3" json:"upload_bytes,omitempty"`
	// contains filtered or unexported fields
}

func (*AggregateProcessStats) Descriptor deprecated

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

Deprecated: Use AggregateProcessStats.ProtoReflect.Descriptor instead.

func (*AggregateProcessStats) GetDownloadBytes

func (x *AggregateProcessStats) GetDownloadBytes() *Aggregate

func (*AggregateProcessStats) GetDownloadTime

func (x *AggregateProcessStats) GetDownloadTime() *Aggregate

func (*AggregateProcessStats) GetProcessTime

func (x *AggregateProcessStats) GetProcessTime() *Aggregate

func (*AggregateProcessStats) GetUploadBytes

func (x *AggregateProcessStats) GetUploadBytes() *Aggregate

func (*AggregateProcessStats) GetUploadTime

func (x *AggregateProcessStats) GetUploadTime() *Aggregate

func (*AggregateProcessStats) MarshalLogObject

func (x *AggregateProcessStats) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*AggregateProcessStats) ProtoMessage

func (*AggregateProcessStats) ProtoMessage()

func (*AggregateProcessStats) ProtoReflect added in v2.7.0

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

func (*AggregateProcessStats) Reset

func (x *AggregateProcessStats) Reset()

func (*AggregateProcessStats) String

func (x *AggregateProcessStats) String() string

func (*AggregateProcessStats) Validate added in v2.8.0

func (m *AggregateProcessStats) Validate() error

Validate checks the field values on AggregateProcessStats with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*AggregateProcessStats) ValidateAll added in v2.8.0

func (m *AggregateProcessStats) ValidateAll() error

ValidateAll checks the field values on AggregateProcessStats with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in AggregateProcessStatsMultiError, or nil if none found.

type AggregateProcessStatsMultiError added in v2.8.0

type AggregateProcessStatsMultiError []error

AggregateProcessStatsMultiError is an error wrapping multiple validation errors returned by AggregateProcessStats.ValidateAll() if the designated constraints aren't met.

func (AggregateProcessStatsMultiError) AllErrors added in v2.8.0

func (m AggregateProcessStatsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AggregateProcessStatsMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type AggregateProcessStatsValidationError added in v2.8.0

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

AggregateProcessStatsValidationError is the validation error returned by AggregateProcessStats.Validate if the designated constraints aren't met.

func (AggregateProcessStatsValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (AggregateProcessStatsValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (AggregateProcessStatsValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (AggregateProcessStatsValidationError) Field added in v2.8.0

Field function returns field value.

func (AggregateProcessStatsValidationError) Key added in v2.8.0

Key function returns key value.

func (AggregateProcessStatsValidationError) Reason added in v2.8.0

Reason function returns reason value.

type AggregateValidationError added in v2.8.0

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

AggregateValidationError is the validation error returned by Aggregate.Validate if the designated constraints aren't met.

func (AggregateValidationError) Cause added in v2.8.0

func (e AggregateValidationError) Cause() error

Cause function returns cause value.

func (AggregateValidationError) Error added in v2.8.0

func (e AggregateValidationError) Error() string

Error satisfies the builtin error interface

func (AggregateValidationError) ErrorName added in v2.8.0

func (e AggregateValidationError) ErrorName() string

ErrorName returns error name.

func (AggregateValidationError) Field added in v2.8.0

func (e AggregateValidationError) Field() string

Field function returns field value.

func (AggregateValidationError) Key added in v2.8.0

Key function returns key value.

func (AggregateValidationError) Reason added in v2.8.0

func (e AggregateValidationError) Reason() string

Reason function returns reason value.

type CheckStatusRequest added in v2.9.0

type CheckStatusRequest struct {

	// Types that are assignable to Context:
	//
	//	*CheckStatusRequest_All
	//	*CheckStatusRequest_Project
	Context isCheckStatusRequest_Context `protobuf_oneof:"context"`
	// contains filtered or unexported fields
}

Request to check the status of pipelines within a project.

func (*CheckStatusRequest) Descriptor deprecated added in v2.9.0

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

Deprecated: Use CheckStatusRequest.ProtoReflect.Descriptor instead.

func (*CheckStatusRequest) GetAll added in v2.9.0

func (x *CheckStatusRequest) GetAll() bool

func (*CheckStatusRequest) GetContext added in v2.9.0

func (m *CheckStatusRequest) GetContext() isCheckStatusRequest_Context

func (*CheckStatusRequest) GetProject added in v2.9.0

func (x *CheckStatusRequest) GetProject() *pfs.Project

func (*CheckStatusRequest) MarshalLogObject added in v2.9.0

func (x *CheckStatusRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CheckStatusRequest) ProtoMessage added in v2.9.0

func (*CheckStatusRequest) ProtoMessage()

func (*CheckStatusRequest) ProtoReflect added in v2.9.0

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

func (*CheckStatusRequest) Reset added in v2.9.0

func (x *CheckStatusRequest) Reset()

func (*CheckStatusRequest) String added in v2.9.0

func (x *CheckStatusRequest) String() string

func (*CheckStatusRequest) Validate added in v2.9.0

func (m *CheckStatusRequest) Validate() error

Validate checks the field values on CheckStatusRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CheckStatusRequest) ValidateAll added in v2.9.0

func (m *CheckStatusRequest) ValidateAll() error

ValidateAll checks the field values on CheckStatusRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CheckStatusRequestMultiError, or nil if none found.

type CheckStatusRequestMultiError added in v2.9.0

type CheckStatusRequestMultiError []error

CheckStatusRequestMultiError is an error wrapping multiple validation errors returned by CheckStatusRequest.ValidateAll() if the designated constraints aren't met.

func (CheckStatusRequestMultiError) AllErrors added in v2.9.0

func (m CheckStatusRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CheckStatusRequestMultiError) Error added in v2.9.0

Error returns a concatenation of all the error messages it wraps.

type CheckStatusRequestValidationError added in v2.9.0

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

CheckStatusRequestValidationError is the validation error returned by CheckStatusRequest.Validate if the designated constraints aren't met.

func (CheckStatusRequestValidationError) Cause added in v2.9.0

Cause function returns cause value.

func (CheckStatusRequestValidationError) Error added in v2.9.0

Error satisfies the builtin error interface

func (CheckStatusRequestValidationError) ErrorName added in v2.9.0

ErrorName returns error name.

func (CheckStatusRequestValidationError) Field added in v2.9.0

Field function returns field value.

func (CheckStatusRequestValidationError) Key added in v2.9.0

Key function returns key value.

func (CheckStatusRequestValidationError) Reason added in v2.9.0

Reason function returns reason value.

type CheckStatusRequest_All added in v2.9.0

type CheckStatusRequest_All struct {
	// boolean field indicating status of all project pipelines.
	All bool `protobuf:"varint,1,opt,name=all,proto3,oneof"`
}

type CheckStatusRequest_Project added in v2.9.0

type CheckStatusRequest_Project struct {
	// project field
	Project *pfs.Project `protobuf:"bytes,2,opt,name=project,proto3,oneof"`
}

type CheckStatusResponse added in v2.9.0

type CheckStatusResponse struct {

	// project field
	Project *pfs.Project `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"`
	// pipeline field
	Pipeline *Pipeline `protobuf:"bytes,2,opt,name=pipeline,proto3" json:"pipeline,omitempty"`
	// alert indicators
	Alerts []string `protobuf:"bytes,3,rep,name=alerts,proto3" json:"alerts,omitempty"`
	// contains filtered or unexported fields
}

Response for check status request. Provides alerts if any.

func (*CheckStatusResponse) Descriptor deprecated added in v2.9.0

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

Deprecated: Use CheckStatusResponse.ProtoReflect.Descriptor instead.

func (*CheckStatusResponse) GetAlerts added in v2.9.0

func (x *CheckStatusResponse) GetAlerts() []string

func (*CheckStatusResponse) GetPipeline added in v2.9.0

func (x *CheckStatusResponse) GetPipeline() *Pipeline

func (*CheckStatusResponse) GetProject added in v2.9.0

func (x *CheckStatusResponse) GetProject() *pfs.Project

func (*CheckStatusResponse) MarshalLogObject added in v2.9.0

func (x *CheckStatusResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CheckStatusResponse) ProtoMessage added in v2.9.0

func (*CheckStatusResponse) ProtoMessage()

func (*CheckStatusResponse) ProtoReflect added in v2.9.0

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

func (*CheckStatusResponse) Reset added in v2.9.0

func (x *CheckStatusResponse) Reset()

func (*CheckStatusResponse) String added in v2.9.0

func (x *CheckStatusResponse) String() string

func (*CheckStatusResponse) Validate added in v2.9.0

func (m *CheckStatusResponse) Validate() error

Validate checks the field values on CheckStatusResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CheckStatusResponse) ValidateAll added in v2.9.0

func (m *CheckStatusResponse) ValidateAll() error

ValidateAll checks the field values on CheckStatusResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CheckStatusResponseMultiError, or nil if none found.

type CheckStatusResponseMultiError added in v2.9.0

type CheckStatusResponseMultiError []error

CheckStatusResponseMultiError is an error wrapping multiple validation errors returned by CheckStatusResponse.ValidateAll() if the designated constraints aren't met.

func (CheckStatusResponseMultiError) AllErrors added in v2.9.0

func (m CheckStatusResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CheckStatusResponseMultiError) Error added in v2.9.0

Error returns a concatenation of all the error messages it wraps.

type CheckStatusResponseValidationError added in v2.9.0

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

CheckStatusResponseValidationError is the validation error returned by CheckStatusResponse.Validate if the designated constraints aren't met.

func (CheckStatusResponseValidationError) Cause added in v2.9.0

Cause function returns cause value.

func (CheckStatusResponseValidationError) Error added in v2.9.0

Error satisfies the builtin error interface

func (CheckStatusResponseValidationError) ErrorName added in v2.9.0

ErrorName returns error name.

func (CheckStatusResponseValidationError) Field added in v2.9.0

Field function returns field value.

func (CheckStatusResponseValidationError) Key added in v2.9.0

Key function returns key value.

func (CheckStatusResponseValidationError) Reason added in v2.9.0

Reason function returns reason value.

type ClusterDefaults added in v2.7.0

type ClusterDefaults struct {

	// CreatePipelineRequest contains the default JSON CreatePipelineRequest into
	// which pipeline specs are merged to form the effective spec used to create a
	// pipeline.
	CreatePipelineRequest *CreatePipelineRequest `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ClusterDefaults) Descriptor deprecated added in v2.7.0

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

Deprecated: Use ClusterDefaults.ProtoReflect.Descriptor instead.

func (*ClusterDefaults) GetCreatePipelineRequest added in v2.8.0

func (x *ClusterDefaults) GetCreatePipelineRequest() *CreatePipelineRequest

func (*ClusterDefaults) MarshalLogObject added in v2.7.0

func (x *ClusterDefaults) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ClusterDefaults) ProtoMessage added in v2.7.0

func (*ClusterDefaults) ProtoMessage()

func (*ClusterDefaults) ProtoReflect added in v2.7.0

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

func (*ClusterDefaults) Reset added in v2.7.0

func (x *ClusterDefaults) Reset()

func (*ClusterDefaults) String added in v2.7.0

func (x *ClusterDefaults) String() string

func (*ClusterDefaults) Validate added in v2.8.0

func (m *ClusterDefaults) Validate() error

Validate checks the field values on ClusterDefaults with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ClusterDefaults) ValidateAll added in v2.8.0

func (m *ClusterDefaults) ValidateAll() error

ValidateAll checks the field values on ClusterDefaults with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClusterDefaultsMultiError, or nil if none found.

type ClusterDefaultsMultiError added in v2.8.0

type ClusterDefaultsMultiError []error

ClusterDefaultsMultiError is an error wrapping multiple validation errors returned by ClusterDefaults.ValidateAll() if the designated constraints aren't met.

func (ClusterDefaultsMultiError) AllErrors added in v2.8.0

func (m ClusterDefaultsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ClusterDefaultsMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ClusterDefaultsValidationError added in v2.8.0

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

ClusterDefaultsValidationError is the validation error returned by ClusterDefaults.Validate if the designated constraints aren't met.

func (ClusterDefaultsValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ClusterDefaultsValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ClusterDefaultsValidationError) ErrorName added in v2.8.0

func (e ClusterDefaultsValidationError) ErrorName() string

ErrorName returns error name.

func (ClusterDefaultsValidationError) Field added in v2.8.0

Field function returns field value.

func (ClusterDefaultsValidationError) Key added in v2.8.0

Key function returns key value.

func (ClusterDefaultsValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ContinueCreateDatumRequest added in v2.9.2

type ContinueCreateDatumRequest struct {

	// Number of datums to return in next batch. If 0, default batch size
	// is returned.
	Number int32 `protobuf:"varint,1,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*ContinueCreateDatumRequest) Descriptor deprecated added in v2.9.2

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

Deprecated: Use ContinueCreateDatumRequest.ProtoReflect.Descriptor instead.

func (*ContinueCreateDatumRequest) GetNumber added in v2.9.2

func (x *ContinueCreateDatumRequest) GetNumber() int32

func (*ContinueCreateDatumRequest) MarshalLogObject added in v2.9.2

func (x *ContinueCreateDatumRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ContinueCreateDatumRequest) ProtoMessage added in v2.9.2

func (*ContinueCreateDatumRequest) ProtoMessage()

func (*ContinueCreateDatumRequest) ProtoReflect added in v2.9.2

func (*ContinueCreateDatumRequest) Reset added in v2.9.2

func (x *ContinueCreateDatumRequest) Reset()

func (*ContinueCreateDatumRequest) String added in v2.9.2

func (x *ContinueCreateDatumRequest) String() string

func (*ContinueCreateDatumRequest) Validate added in v2.9.2

func (m *ContinueCreateDatumRequest) Validate() error

Validate checks the field values on ContinueCreateDatumRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ContinueCreateDatumRequest) ValidateAll added in v2.9.2

func (m *ContinueCreateDatumRequest) ValidateAll() error

ValidateAll checks the field values on ContinueCreateDatumRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ContinueCreateDatumRequestMultiError, or nil if none found.

type ContinueCreateDatumRequestMultiError added in v2.9.2

type ContinueCreateDatumRequestMultiError []error

ContinueCreateDatumRequestMultiError is an error wrapping multiple validation errors returned by ContinueCreateDatumRequest.ValidateAll() if the designated constraints aren't met.

func (ContinueCreateDatumRequestMultiError) AllErrors added in v2.9.2

AllErrors returns a list of validation violation errors.

func (ContinueCreateDatumRequestMultiError) Error added in v2.9.2

Error returns a concatenation of all the error messages it wraps.

type ContinueCreateDatumRequestValidationError added in v2.9.2

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

ContinueCreateDatumRequestValidationError is the validation error returned by ContinueCreateDatumRequest.Validate if the designated constraints aren't met.

func (ContinueCreateDatumRequestValidationError) Cause added in v2.9.2

Cause function returns cause value.

func (ContinueCreateDatumRequestValidationError) Error added in v2.9.2

Error satisfies the builtin error interface

func (ContinueCreateDatumRequestValidationError) ErrorName added in v2.9.2

ErrorName returns error name.

func (ContinueCreateDatumRequestValidationError) Field added in v2.9.2

Field function returns field value.

func (ContinueCreateDatumRequestValidationError) Key added in v2.9.2

Key function returns key value.

func (ContinueCreateDatumRequestValidationError) Reason added in v2.9.2

Reason function returns reason value.

type CreateDatumRequest added in v2.9.0

type CreateDatumRequest struct {

	// Use StartCreateDatumRequest for the first request and
	// ContinueCreateDatumRequest for subsequent requests.
	//
	// Types that are assignable to Body:
	//
	//	*CreateDatumRequest_Start
	//	*CreateDatumRequest_Continue
	Body isCreateDatumRequest_Body `protobuf_oneof:"body"`
	// contains filtered or unexported fields
}

Emits a stream of datums as they are created from the given input. Client must cancel the stream when it no longer wants to receive datums.

func (*CreateDatumRequest) Descriptor deprecated added in v2.9.0

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

Deprecated: Use CreateDatumRequest.ProtoReflect.Descriptor instead.

func (*CreateDatumRequest) GetBody added in v2.9.2

func (m *CreateDatumRequest) GetBody() isCreateDatumRequest_Body

func (*CreateDatumRequest) GetContinue added in v2.9.2

func (*CreateDatumRequest) GetStart added in v2.9.2

func (*CreateDatumRequest) MarshalLogObject added in v2.9.0

func (x *CreateDatumRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CreateDatumRequest) ProtoMessage added in v2.9.0

func (*CreateDatumRequest) ProtoMessage()

func (*CreateDatumRequest) ProtoReflect added in v2.9.0

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

func (*CreateDatumRequest) Reset added in v2.9.0

func (x *CreateDatumRequest) Reset()

func (*CreateDatumRequest) String added in v2.9.0

func (x *CreateDatumRequest) String() string

func (*CreateDatumRequest) Validate added in v2.9.0

func (m *CreateDatumRequest) Validate() error

Validate checks the field values on CreateDatumRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateDatumRequest) ValidateAll added in v2.9.0

func (m *CreateDatumRequest) ValidateAll() error

ValidateAll checks the field values on CreateDatumRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateDatumRequestMultiError, or nil if none found.

type CreateDatumRequestMultiError added in v2.9.0

type CreateDatumRequestMultiError []error

CreateDatumRequestMultiError is an error wrapping multiple validation errors returned by CreateDatumRequest.ValidateAll() if the designated constraints aren't met.

func (CreateDatumRequestMultiError) AllErrors added in v2.9.0

func (m CreateDatumRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateDatumRequestMultiError) Error added in v2.9.0

Error returns a concatenation of all the error messages it wraps.

type CreateDatumRequestValidationError added in v2.9.0

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

CreateDatumRequestValidationError is the validation error returned by CreateDatumRequest.Validate if the designated constraints aren't met.

func (CreateDatumRequestValidationError) Cause added in v2.9.0

Cause function returns cause value.

func (CreateDatumRequestValidationError) Error added in v2.9.0

Error satisfies the builtin error interface

func (CreateDatumRequestValidationError) ErrorName added in v2.9.0

ErrorName returns error name.

func (CreateDatumRequestValidationError) Field added in v2.9.0

Field function returns field value.

func (CreateDatumRequestValidationError) Key added in v2.9.0

Key function returns key value.

func (CreateDatumRequestValidationError) Reason added in v2.9.0

Reason function returns reason value.

type CreateDatumRequest_Continue added in v2.9.2

type CreateDatumRequest_Continue struct {
	Continue *ContinueCreateDatumRequest `protobuf:"bytes,2,opt,name=continue,proto3,oneof"`
}

type CreateDatumRequest_Start added in v2.9.2

type CreateDatumRequest_Start struct {
	Start *StartCreateDatumRequest `protobuf:"bytes,1,opt,name=start,proto3,oneof"`
}

type CreatePipelineRequest

type CreatePipelineRequest struct {
	Pipeline *Pipeline `protobuf:"bytes,1,opt,name=pipeline,proto3" json:"pipeline,omitempty"`
	// tf_job encodes a Kubeflow TFJob spec. Pachyderm uses this to create TFJobs
	// when running in a kubernetes cluster on which kubeflow has been installed.
	// Exactly one of 'tf_job' and 'transform' should be set
	TfJob           *TFJob           `protobuf:"bytes,2,opt,name=tf_job,json=tfJob,proto3" json:"tf_job,omitempty"`
	Transform       *Transform       `protobuf:"bytes,3,opt,name=transform,proto3" json:"transform,omitempty"`
	ParallelismSpec *ParallelismSpec `protobuf:"bytes,4,opt,name=parallelism_spec,json=parallelismSpec,proto3" json:"parallelism_spec,omitempty"`
	Egress          *Egress          `protobuf:"bytes,5,opt,name=egress,proto3" json:"egress,omitempty"`
	Update          bool             `protobuf:"varint,6,opt,name=update,proto3" json:"update,omitempty"`
	OutputBranch    string           `protobuf:"bytes,7,opt,name=output_branch,json=outputBranch,proto3" json:"output_branch,omitempty"`
	// s3_out, if set, requires a pipeline's user to write to its output repo
	// via Pachyderm's s3 gateway (if set, workers will serve Pachyderm's s3
	// gateway API at http://<pipeline>-s3.<namespace>/<job id>.out/my/file).
	// In this mode /pfs_v2/out won't be walked or uploaded, and the s3 gateway
	// service in the workers will allow writes to the job's output commit
	S3Out                 bool          `protobuf:"varint,8,opt,name=s3_out,json=s3Out,proto3" json:"s3_out,omitempty"`
	ResourceRequests      *ResourceSpec `protobuf:"bytes,9,opt,name=resource_requests,json=resourceRequests,proto3" json:"resource_requests,omitempty"`
	ResourceLimits        *ResourceSpec `protobuf:"bytes,10,opt,name=resource_limits,json=resourceLimits,proto3" json:"resource_limits,omitempty"`
	SidecarResourceLimits *ResourceSpec `` /* 127-byte string literal not displayed */
	Input                 *Input        `protobuf:"bytes,12,opt,name=input,proto3" json:"input,omitempty"`
	Description           string        `protobuf:"bytes,13,opt,name=description,proto3" json:"description,omitempty"`
	// Reprocess forces the pipeline to reprocess all datums.
	// It only has meaning if Update is true
	Reprocess               bool                 `protobuf:"varint,15,opt,name=reprocess,proto3" json:"reprocess,omitempty"`
	Service                 *Service             `protobuf:"bytes,17,opt,name=service,proto3" json:"service,omitempty"`
	Spout                   *Spout               `protobuf:"bytes,18,opt,name=spout,proto3" json:"spout,omitempty"`
	DatumSetSpec            *DatumSetSpec        `protobuf:"bytes,19,opt,name=datum_set_spec,json=datumSetSpec,proto3" json:"datum_set_spec,omitempty"`
	DatumTimeout            *durationpb.Duration `protobuf:"bytes,20,opt,name=datum_timeout,json=datumTimeout,proto3" json:"datum_timeout,omitempty"`
	JobTimeout              *durationpb.Duration `protobuf:"bytes,21,opt,name=job_timeout,json=jobTimeout,proto3" json:"job_timeout,omitempty"`
	Salt                    string               `protobuf:"bytes,22,opt,name=salt,proto3" json:"salt,omitempty"`
	DatumTries              int64                `protobuf:"varint,23,opt,name=datum_tries,json=datumTries,proto3" json:"datum_tries,omitempty"`
	SchedulingSpec          *SchedulingSpec      `protobuf:"bytes,24,opt,name=scheduling_spec,json=schedulingSpec,proto3" json:"scheduling_spec,omitempty"`
	PodSpec                 string               `protobuf:"bytes,25,opt,name=pod_spec,json=podSpec,proto3" json:"pod_spec,omitempty"`    // deprecated, use pod_patch below
	PodPatch                string               `protobuf:"bytes,26,opt,name=pod_patch,json=podPatch,proto3" json:"pod_patch,omitempty"` // a json patch will be applied to the pipeline's pod_spec before it's created;
	SpecCommit              *pfs.Commit          `protobuf:"bytes,27,opt,name=spec_commit,json=specCommit,proto3" json:"spec_commit,omitempty"`
	Metadata                *Metadata            `protobuf:"bytes,28,opt,name=metadata,proto3" json:"metadata,omitempty"`
	ReprocessSpec           string               `protobuf:"bytes,29,opt,name=reprocess_spec,json=reprocessSpec,proto3" json:"reprocess_spec,omitempty"`
	Autoscaling             bool                 `protobuf:"varint,30,opt,name=autoscaling,proto3" json:"autoscaling,omitempty"`
	Tolerations             []*Toleration        `protobuf:"bytes,34,rep,name=tolerations,proto3" json:"tolerations,omitempty"`
	SidecarResourceRequests *ResourceSpec        `` /* 133-byte string literal not displayed */
	DryRun                  bool                 `protobuf:"varint,37,opt,name=dry_run,json=dryRun,proto3" json:"dry_run,omitempty"`
	Determined              *Determined          `protobuf:"bytes,38,opt,name=determined,proto3" json:"determined,omitempty"`
	MaximumExpectedUptime   *durationpb.Duration `` /* 127-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*CreatePipelineRequest) Descriptor deprecated

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

Deprecated: Use CreatePipelineRequest.ProtoReflect.Descriptor instead.

func (*CreatePipelineRequest) GetAutoscaling

func (x *CreatePipelineRequest) GetAutoscaling() bool

func (*CreatePipelineRequest) GetDatumSetSpec

func (x *CreatePipelineRequest) GetDatumSetSpec() *DatumSetSpec

func (*CreatePipelineRequest) GetDatumTimeout

func (x *CreatePipelineRequest) GetDatumTimeout() *durationpb.Duration

func (*CreatePipelineRequest) GetDatumTries

func (x *CreatePipelineRequest) GetDatumTries() int64

func (*CreatePipelineRequest) GetDescription

func (x *CreatePipelineRequest) GetDescription() string

func (*CreatePipelineRequest) GetDetermined added in v2.7.0

func (x *CreatePipelineRequest) GetDetermined() *Determined

func (*CreatePipelineRequest) GetDryRun added in v2.7.0

func (x *CreatePipelineRequest) GetDryRun() bool

func (*CreatePipelineRequest) GetEgress

func (x *CreatePipelineRequest) GetEgress() *Egress

func (*CreatePipelineRequest) GetInput

func (x *CreatePipelineRequest) GetInput() *Input

func (*CreatePipelineRequest) GetJobTimeout

func (x *CreatePipelineRequest) GetJobTimeout() *durationpb.Duration

func (*CreatePipelineRequest) GetMaximumExpectedUptime added in v2.9.0

func (x *CreatePipelineRequest) GetMaximumExpectedUptime() *durationpb.Duration

func (*CreatePipelineRequest) GetMetadata

func (x *CreatePipelineRequest) GetMetadata() *Metadata

func (*CreatePipelineRequest) GetOutputBranch

func (x *CreatePipelineRequest) GetOutputBranch() string

func (*CreatePipelineRequest) GetParallelismSpec

func (x *CreatePipelineRequest) GetParallelismSpec() *ParallelismSpec

func (*CreatePipelineRequest) GetPipeline

func (x *CreatePipelineRequest) GetPipeline() *Pipeline

func (*CreatePipelineRequest) GetPodPatch

func (x *CreatePipelineRequest) GetPodPatch() string

func (*CreatePipelineRequest) GetPodSpec

func (x *CreatePipelineRequest) GetPodSpec() string

func (*CreatePipelineRequest) GetReprocess

func (x *CreatePipelineRequest) GetReprocess() bool

func (*CreatePipelineRequest) GetReprocessSpec

func (x *CreatePipelineRequest) GetReprocessSpec() string

func (*CreatePipelineRequest) GetResourceLimits

func (x *CreatePipelineRequest) GetResourceLimits() *ResourceSpec

func (*CreatePipelineRequest) GetResourceRequests

func (x *CreatePipelineRequest) GetResourceRequests() *ResourceSpec

func (*CreatePipelineRequest) GetS3Out

func (x *CreatePipelineRequest) GetS3Out() bool

func (*CreatePipelineRequest) GetSalt

func (x *CreatePipelineRequest) GetSalt() string

func (*CreatePipelineRequest) GetSchedulingSpec

func (x *CreatePipelineRequest) GetSchedulingSpec() *SchedulingSpec

func (*CreatePipelineRequest) GetService

func (x *CreatePipelineRequest) GetService() *Service

func (*CreatePipelineRequest) GetSidecarResourceLimits

func (x *CreatePipelineRequest) GetSidecarResourceLimits() *ResourceSpec

func (*CreatePipelineRequest) GetSidecarResourceRequests

func (x *CreatePipelineRequest) GetSidecarResourceRequests() *ResourceSpec

func (*CreatePipelineRequest) GetSpecCommit

func (x *CreatePipelineRequest) GetSpecCommit() *pfs.Commit

func (*CreatePipelineRequest) GetSpout

func (x *CreatePipelineRequest) GetSpout() *Spout

func (*CreatePipelineRequest) GetTfJob added in v2.7.0

func (x *CreatePipelineRequest) GetTfJob() *TFJob

func (*CreatePipelineRequest) GetTolerations

func (x *CreatePipelineRequest) GetTolerations() []*Toleration

func (*CreatePipelineRequest) GetTransform

func (x *CreatePipelineRequest) GetTransform() *Transform

func (*CreatePipelineRequest) GetUpdate

func (x *CreatePipelineRequest) GetUpdate() bool

func (*CreatePipelineRequest) MarshalLogObject

func (x *CreatePipelineRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CreatePipelineRequest) ProtoMessage

func (*CreatePipelineRequest) ProtoMessage()

func (*CreatePipelineRequest) ProtoReflect added in v2.7.0

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

func (*CreatePipelineRequest) Reset

func (x *CreatePipelineRequest) Reset()

func (*CreatePipelineRequest) String

func (x *CreatePipelineRequest) String() string

func (*CreatePipelineRequest) Validate added in v2.8.0

func (m *CreatePipelineRequest) Validate() error

Validate checks the field values on CreatePipelineRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreatePipelineRequest) ValidateAll added in v2.8.0

func (m *CreatePipelineRequest) ValidateAll() error

ValidateAll checks the field values on CreatePipelineRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreatePipelineRequestMultiError, or nil if none found.

type CreatePipelineRequestMultiError added in v2.8.0

type CreatePipelineRequestMultiError []error

CreatePipelineRequestMultiError is an error wrapping multiple validation errors returned by CreatePipelineRequest.ValidateAll() if the designated constraints aren't met.

func (CreatePipelineRequestMultiError) AllErrors added in v2.8.0

func (m CreatePipelineRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreatePipelineRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type CreatePipelineRequestValidationError added in v2.8.0

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

CreatePipelineRequestValidationError is the validation error returned by CreatePipelineRequest.Validate if the designated constraints aren't met.

func (CreatePipelineRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (CreatePipelineRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (CreatePipelineRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (CreatePipelineRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (CreatePipelineRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (CreatePipelineRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type CreatePipelineTransaction added in v2.8.0

type CreatePipelineTransaction struct {
	CreatePipelineRequest *CreatePipelineRequest ``                                                                                                     /* 126-byte string literal not displayed */
	UserJson              string                 `protobuf:"bytes,2,opt,name=user_json,json=userJson,proto3" json:"user_json,omitempty"`                // the JSON the user originally submitted
	EffectiveJson         string                 `protobuf:"bytes,3,opt,name=effective_json,json=effectiveJson,proto3" json:"effective_json,omitempty"` // the effective spec: the result of merging the user JSON into the cluster defaults
	// contains filtered or unexported fields
}

func (*CreatePipelineTransaction) Descriptor deprecated added in v2.8.0

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

Deprecated: Use CreatePipelineTransaction.ProtoReflect.Descriptor instead.

func (*CreatePipelineTransaction) GetCreatePipelineRequest added in v2.8.0

func (x *CreatePipelineTransaction) GetCreatePipelineRequest() *CreatePipelineRequest

func (*CreatePipelineTransaction) GetEffectiveJson added in v2.8.0

func (x *CreatePipelineTransaction) GetEffectiveJson() string

func (*CreatePipelineTransaction) GetUserJson added in v2.8.0

func (x *CreatePipelineTransaction) GetUserJson() string

func (*CreatePipelineTransaction) MarshalLogObject added in v2.8.0

func (x *CreatePipelineTransaction) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CreatePipelineTransaction) ProtoMessage added in v2.8.0

func (*CreatePipelineTransaction) ProtoMessage()

func (*CreatePipelineTransaction) ProtoReflect added in v2.8.0

func (*CreatePipelineTransaction) Reset added in v2.8.0

func (x *CreatePipelineTransaction) Reset()

func (*CreatePipelineTransaction) String added in v2.8.0

func (x *CreatePipelineTransaction) String() string

func (*CreatePipelineTransaction) Validate added in v2.8.0

func (m *CreatePipelineTransaction) Validate() error

Validate checks the field values on CreatePipelineTransaction with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreatePipelineTransaction) ValidateAll added in v2.8.0

func (m *CreatePipelineTransaction) ValidateAll() error

ValidateAll checks the field values on CreatePipelineTransaction with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreatePipelineTransactionMultiError, or nil if none found.

type CreatePipelineTransactionMultiError added in v2.8.0

type CreatePipelineTransactionMultiError []error

CreatePipelineTransactionMultiError is an error wrapping multiple validation errors returned by CreatePipelineTransaction.ValidateAll() if the designated constraints aren't met.

func (CreatePipelineTransactionMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (CreatePipelineTransactionMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type CreatePipelineTransactionValidationError added in v2.8.0

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

CreatePipelineTransactionValidationError is the validation error returned by CreatePipelineTransaction.Validate if the designated constraints aren't met.

func (CreatePipelineTransactionValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (CreatePipelineTransactionValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (CreatePipelineTransactionValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (CreatePipelineTransactionValidationError) Field added in v2.8.0

Field function returns field value.

func (CreatePipelineTransactionValidationError) Key added in v2.8.0

Key function returns key value.

func (CreatePipelineTransactionValidationError) Reason added in v2.8.0

Reason function returns reason value.

type CreatePipelineV2Request added in v2.8.0

type CreatePipelineV2Request struct {
	CreatePipelineRequestJson string `` // a JSON-encoded CreatePipelineRequest
	/* 140-byte string literal not displayed */
	DryRun    bool `protobuf:"varint,2,opt,name=dry_run,json=dryRun,proto3" json:"dry_run,omitempty"`
	Update    bool `protobuf:"varint,3,opt,name=update,proto3" json:"update,omitempty"`
	Reprocess bool `protobuf:"varint,4,opt,name=reprocess,proto3" json:"reprocess,omitempty"`
	// contains filtered or unexported fields
}

func (*CreatePipelineV2Request) Descriptor deprecated added in v2.8.0

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

Deprecated: Use CreatePipelineV2Request.ProtoReflect.Descriptor instead.

func (*CreatePipelineV2Request) GetCreatePipelineRequestJson added in v2.8.0

func (x *CreatePipelineV2Request) GetCreatePipelineRequestJson() string

func (*CreatePipelineV2Request) GetDryRun added in v2.8.0

func (x *CreatePipelineV2Request) GetDryRun() bool

func (*CreatePipelineV2Request) GetReprocess added in v2.8.0

func (x *CreatePipelineV2Request) GetReprocess() bool

func (*CreatePipelineV2Request) GetUpdate added in v2.8.0

func (x *CreatePipelineV2Request) GetUpdate() bool

func (*CreatePipelineV2Request) MarshalLogObject added in v2.8.0

func (x *CreatePipelineV2Request) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CreatePipelineV2Request) ProtoMessage added in v2.8.0

func (*CreatePipelineV2Request) ProtoMessage()

func (*CreatePipelineV2Request) ProtoReflect added in v2.8.0

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

func (*CreatePipelineV2Request) Reset added in v2.8.0

func (x *CreatePipelineV2Request) Reset()

func (*CreatePipelineV2Request) String added in v2.8.0

func (x *CreatePipelineV2Request) String() string

func (*CreatePipelineV2Request) Validate added in v2.8.0

func (m *CreatePipelineV2Request) Validate() error

Validate checks the field values on CreatePipelineV2Request with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreatePipelineV2Request) ValidateAll added in v2.8.0

func (m *CreatePipelineV2Request) ValidateAll() error

ValidateAll checks the field values on CreatePipelineV2Request with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreatePipelineV2RequestMultiError, or nil if none found.

type CreatePipelineV2RequestMultiError added in v2.8.0

type CreatePipelineV2RequestMultiError []error

CreatePipelineV2RequestMultiError is an error wrapping multiple validation errors returned by CreatePipelineV2Request.ValidateAll() if the designated constraints aren't met.

func (CreatePipelineV2RequestMultiError) AllErrors added in v2.8.0

func (m CreatePipelineV2RequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreatePipelineV2RequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type CreatePipelineV2RequestValidationError added in v2.8.0

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

CreatePipelineV2RequestValidationError is the validation error returned by CreatePipelineV2Request.Validate if the designated constraints aren't met.

func (CreatePipelineV2RequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (CreatePipelineV2RequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (CreatePipelineV2RequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (CreatePipelineV2RequestValidationError) Field added in v2.8.0

Field function returns field value.

func (CreatePipelineV2RequestValidationError) Key added in v2.8.0

Key function returns key value.

func (CreatePipelineV2RequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type CreatePipelineV2Response added in v2.8.0

type CreatePipelineV2Response struct {
	EffectiveCreatePipelineRequestJson string `` /* 169-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*CreatePipelineV2Response) Descriptor deprecated added in v2.8.0

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

Deprecated: Use CreatePipelineV2Response.ProtoReflect.Descriptor instead.

func (*CreatePipelineV2Response) GetEffectiveCreatePipelineRequestJson added in v2.8.0

func (x *CreatePipelineV2Response) GetEffectiveCreatePipelineRequestJson() string

func (*CreatePipelineV2Response) MarshalLogObject added in v2.8.0

func (x *CreatePipelineV2Response) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CreatePipelineV2Response) ProtoMessage added in v2.8.0

func (*CreatePipelineV2Response) ProtoMessage()

func (*CreatePipelineV2Response) ProtoReflect added in v2.8.0

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

func (*CreatePipelineV2Response) Reset added in v2.8.0

func (x *CreatePipelineV2Response) Reset()

func (*CreatePipelineV2Response) String added in v2.8.0

func (x *CreatePipelineV2Response) String() string

func (*CreatePipelineV2Response) Validate added in v2.8.0

func (m *CreatePipelineV2Response) Validate() error

Validate checks the field values on CreatePipelineV2Response with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreatePipelineV2Response) ValidateAll added in v2.8.0

func (m *CreatePipelineV2Response) ValidateAll() error

ValidateAll checks the field values on CreatePipelineV2Response with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreatePipelineV2ResponseMultiError, or nil if none found.

type CreatePipelineV2ResponseMultiError added in v2.8.0

type CreatePipelineV2ResponseMultiError []error

CreatePipelineV2ResponseMultiError is an error wrapping multiple validation errors returned by CreatePipelineV2Response.ValidateAll() if the designated constraints aren't met.

func (CreatePipelineV2ResponseMultiError) AllErrors added in v2.8.0

func (m CreatePipelineV2ResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreatePipelineV2ResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type CreatePipelineV2ResponseValidationError added in v2.8.0

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

CreatePipelineV2ResponseValidationError is the validation error returned by CreatePipelineV2Response.Validate if the designated constraints aren't met.

func (CreatePipelineV2ResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (CreatePipelineV2ResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (CreatePipelineV2ResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (CreatePipelineV2ResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (CreatePipelineV2ResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (CreatePipelineV2ResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type CreateSecretRequest

type CreateSecretRequest struct {
	File []byte `protobuf:"bytes,1,opt,name=file,proto3" json:"file,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateSecretRequest) Descriptor deprecated

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

Deprecated: Use CreateSecretRequest.ProtoReflect.Descriptor instead.

func (*CreateSecretRequest) GetFile

func (x *CreateSecretRequest) GetFile() []byte

func (*CreateSecretRequest) MarshalLogObject

func (x *CreateSecretRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CreateSecretRequest) ProtoMessage

func (*CreateSecretRequest) ProtoMessage()

func (*CreateSecretRequest) ProtoReflect added in v2.7.0

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

func (*CreateSecretRequest) Reset

func (x *CreateSecretRequest) Reset()

func (*CreateSecretRequest) String

func (x *CreateSecretRequest) String() string

func (*CreateSecretRequest) Validate added in v2.8.0

func (m *CreateSecretRequest) Validate() error

Validate checks the field values on CreateSecretRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateSecretRequest) ValidateAll added in v2.8.0

func (m *CreateSecretRequest) ValidateAll() error

ValidateAll checks the field values on CreateSecretRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateSecretRequestMultiError, or nil if none found.

type CreateSecretRequestMultiError added in v2.8.0

type CreateSecretRequestMultiError []error

CreateSecretRequestMultiError is an error wrapping multiple validation errors returned by CreateSecretRequest.ValidateAll() if the designated constraints aren't met.

func (CreateSecretRequestMultiError) AllErrors added in v2.8.0

func (m CreateSecretRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateSecretRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type CreateSecretRequestValidationError added in v2.8.0

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

CreateSecretRequestValidationError is the validation error returned by CreateSecretRequest.Validate if the designated constraints aren't met.

func (CreateSecretRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (CreateSecretRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (CreateSecretRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (CreateSecretRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (CreateSecretRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (CreateSecretRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type CronInput

type CronInput struct {
	Name    string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Project string `protobuf:"bytes,7,opt,name=project,proto3" json:"project,omitempty"`
	Repo    string `protobuf:"bytes,2,opt,name=repo,proto3" json:"repo,omitempty"`
	Commit  string `protobuf:"bytes,3,opt,name=commit,proto3" json:"commit,omitempty"`
	Spec    string `protobuf:"bytes,4,opt,name=spec,proto3" json:"spec,omitempty"`
	// Overwrite, if true, will expose a single datum that gets overwritten each
	// tick. If false, it will create a new datum for each tick.
	Overwrite bool                   `protobuf:"varint,5,opt,name=overwrite,proto3" json:"overwrite,omitempty"`
	Start     *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=start,proto3" json:"start,omitempty"`
	// contains filtered or unexported fields
}

func (*CronInput) Descriptor deprecated

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

Deprecated: Use CronInput.ProtoReflect.Descriptor instead.

func (*CronInput) GetCommit

func (x *CronInput) GetCommit() string

func (*CronInput) GetName

func (x *CronInput) GetName() string

func (*CronInput) GetOverwrite

func (x *CronInput) GetOverwrite() bool

func (*CronInput) GetProject

func (x *CronInput) GetProject() string

func (*CronInput) GetRepo

func (x *CronInput) GetRepo() string

func (*CronInput) GetSpec

func (x *CronInput) GetSpec() string

func (*CronInput) GetStart

func (x *CronInput) GetStart() *timestamppb.Timestamp

func (*CronInput) MarshalLogObject

func (x *CronInput) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*CronInput) ProtoMessage

func (*CronInput) ProtoMessage()

func (*CronInput) ProtoReflect added in v2.7.0

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

func (*CronInput) Reset

func (x *CronInput) Reset()

func (*CronInput) String

func (x *CronInput) String() string

func (*CronInput) Validate added in v2.8.0

func (m *CronInput) Validate() error

Validate checks the field values on CronInput with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CronInput) ValidateAll added in v2.8.0

func (m *CronInput) ValidateAll() error

ValidateAll checks the field values on CronInput with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CronInputMultiError, or nil if none found.

type CronInputMultiError added in v2.8.0

type CronInputMultiError []error

CronInputMultiError is an error wrapping multiple validation errors returned by CronInput.ValidateAll() if the designated constraints aren't met.

func (CronInputMultiError) AllErrors added in v2.8.0

func (m CronInputMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CronInputMultiError) Error added in v2.8.0

func (m CronInputMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type CronInputValidationError added in v2.8.0

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

CronInputValidationError is the validation error returned by CronInput.Validate if the designated constraints aren't met.

func (CronInputValidationError) Cause added in v2.8.0

func (e CronInputValidationError) Cause() error

Cause function returns cause value.

func (CronInputValidationError) Error added in v2.8.0

func (e CronInputValidationError) Error() string

Error satisfies the builtin error interface

func (CronInputValidationError) ErrorName added in v2.8.0

func (e CronInputValidationError) ErrorName() string

ErrorName returns error name.

func (CronInputValidationError) Field added in v2.8.0

func (e CronInputValidationError) Field() string

Field function returns field value.

func (CronInputValidationError) Key added in v2.8.0

Key function returns key value.

func (CronInputValidationError) Reason added in v2.8.0

func (e CronInputValidationError) Reason() string

Reason function returns reason value.

type Datum

type Datum struct {

	// ID is the hash computed from all the files
	Job *Job   `protobuf:"bytes,1,opt,name=job,proto3" json:"job,omitempty"`
	Id  string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*Datum) Descriptor deprecated

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

Deprecated: Use Datum.ProtoReflect.Descriptor instead.

func (*Datum) GetId added in v2.7.0

func (x *Datum) GetId() string

func (*Datum) GetJob

func (x *Datum) GetJob() *Job

func (*Datum) MarshalLogObject

func (x *Datum) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Datum) ProtoMessage

func (*Datum) ProtoMessage()

func (*Datum) ProtoReflect added in v2.7.0

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

func (*Datum) Reset

func (x *Datum) Reset()

func (*Datum) String

func (x *Datum) String() string

func (*Datum) Validate added in v2.8.0

func (m *Datum) Validate() error

Validate checks the field values on Datum with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Datum) ValidateAll added in v2.8.0

func (m *Datum) ValidateAll() error

ValidateAll checks the field values on Datum with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DatumMultiError, or nil if none found.

type DatumInfo

type DatumInfo struct {
	Datum    *Datum          `protobuf:"bytes,1,opt,name=datum,proto3" json:"datum,omitempty"`
	State    DatumState      `protobuf:"varint,2,opt,name=state,proto3,enum=pps_v2.DatumState" json:"state,omitempty"`
	Stats    *ProcessStats   `protobuf:"bytes,3,opt,name=stats,proto3" json:"stats,omitempty"`
	PfsState *pfs.File       `protobuf:"bytes,4,opt,name=pfs_state,json=pfsState,proto3" json:"pfs_state,omitempty"`
	Data     []*pfs.FileInfo `protobuf:"bytes,5,rep,name=data,proto3" json:"data,omitempty"`
	ImageId  string          `protobuf:"bytes,6,opt,name=image_id,json=imageId,proto3" json:"image_id,omitempty"`
	// contains filtered or unexported fields
}

func (*DatumInfo) Descriptor deprecated

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

Deprecated: Use DatumInfo.ProtoReflect.Descriptor instead.

func (*DatumInfo) GetData

func (x *DatumInfo) GetData() []*pfs.FileInfo

func (*DatumInfo) GetDatum

func (x *DatumInfo) GetDatum() *Datum

func (*DatumInfo) GetImageId

func (x *DatumInfo) GetImageId() string

func (*DatumInfo) GetPfsState

func (x *DatumInfo) GetPfsState() *pfs.File

func (*DatumInfo) GetState

func (x *DatumInfo) GetState() DatumState

func (*DatumInfo) GetStats

func (x *DatumInfo) GetStats() *ProcessStats

func (*DatumInfo) MarshalLogObject

func (x *DatumInfo) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DatumInfo) ProtoMessage

func (*DatumInfo) ProtoMessage()

func (*DatumInfo) ProtoReflect added in v2.7.0

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

func (*DatumInfo) Reset

func (x *DatumInfo) Reset()

func (*DatumInfo) String

func (x *DatumInfo) String() string

func (*DatumInfo) Validate added in v2.8.0

func (m *DatumInfo) Validate() error

Validate checks the field values on DatumInfo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DatumInfo) ValidateAll added in v2.8.0

func (m *DatumInfo) ValidateAll() error

ValidateAll checks the field values on DatumInfo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DatumInfoMultiError, or nil if none found.

type DatumInfoMultiError added in v2.8.0

type DatumInfoMultiError []error

DatumInfoMultiError is an error wrapping multiple validation errors returned by DatumInfo.ValidateAll() if the designated constraints aren't met.

func (DatumInfoMultiError) AllErrors added in v2.8.0

func (m DatumInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DatumInfoMultiError) Error added in v2.8.0

func (m DatumInfoMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type DatumInfoValidationError added in v2.8.0

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

DatumInfoValidationError is the validation error returned by DatumInfo.Validate if the designated constraints aren't met.

func (DatumInfoValidationError) Cause added in v2.8.0

func (e DatumInfoValidationError) Cause() error

Cause function returns cause value.

func (DatumInfoValidationError) Error added in v2.8.0

func (e DatumInfoValidationError) Error() string

Error satisfies the builtin error interface

func (DatumInfoValidationError) ErrorName added in v2.8.0

func (e DatumInfoValidationError) ErrorName() string

ErrorName returns error name.

func (DatumInfoValidationError) Field added in v2.8.0

func (e DatumInfoValidationError) Field() string

Field function returns field value.

func (DatumInfoValidationError) Key added in v2.8.0

Key function returns key value.

func (DatumInfoValidationError) Reason added in v2.8.0

func (e DatumInfoValidationError) Reason() string

Reason function returns reason value.

type DatumMultiError added in v2.8.0

type DatumMultiError []error

DatumMultiError is an error wrapping multiple validation errors returned by Datum.ValidateAll() if the designated constraints aren't met.

func (DatumMultiError) AllErrors added in v2.8.0

func (m DatumMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DatumMultiError) Error added in v2.8.0

func (m DatumMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type DatumSetSpec

type DatumSetSpec struct {

	// number, if nonzero, specifies that each datum set should contain `number`
	// datums. Datum sets may contain fewer if the total number of datums don't
	// divide evenly.
	Number int64 `protobuf:"varint,1,opt,name=number,proto3" json:"number,omitempty"`
	// size_bytes, if nonzero, specifies a target size for each datum set.
	// Datum sets may be larger or smaller than size_bytes, but will usually be
	// pretty close to size_bytes in size.
	SizeBytes int64 `protobuf:"varint,2,opt,name=size_bytes,json=sizeBytes,proto3" json:"size_bytes,omitempty"`
	// per_worker, if nonzero, specifies how many datum sets should be created
	// for each worker. It can't be set with number or size_bytes.
	PerWorker int64 `protobuf:"varint,3,opt,name=per_worker,json=perWorker,proto3" json:"per_worker,omitempty"`
	// contains filtered or unexported fields
}

DatumSetSpec specifies how a pipeline should split its datums into datum sets.

func (*DatumSetSpec) Descriptor deprecated

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

Deprecated: Use DatumSetSpec.ProtoReflect.Descriptor instead.

func (*DatumSetSpec) GetNumber

func (x *DatumSetSpec) GetNumber() int64

func (*DatumSetSpec) GetPerWorker

func (x *DatumSetSpec) GetPerWorker() int64

func (*DatumSetSpec) GetSizeBytes

func (x *DatumSetSpec) GetSizeBytes() int64

func (*DatumSetSpec) MarshalLogObject

func (x *DatumSetSpec) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DatumSetSpec) ProtoMessage

func (*DatumSetSpec) ProtoMessage()

func (*DatumSetSpec) ProtoReflect added in v2.7.0

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

func (*DatumSetSpec) Reset

func (x *DatumSetSpec) Reset()

func (*DatumSetSpec) String

func (x *DatumSetSpec) String() string

func (*DatumSetSpec) Validate added in v2.8.0

func (m *DatumSetSpec) Validate() error

Validate checks the field values on DatumSetSpec with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DatumSetSpec) ValidateAll added in v2.8.0

func (m *DatumSetSpec) ValidateAll() error

ValidateAll checks the field values on DatumSetSpec with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DatumSetSpecMultiError, or nil if none found.

type DatumSetSpecMultiError added in v2.8.0

type DatumSetSpecMultiError []error

DatumSetSpecMultiError is an error wrapping multiple validation errors returned by DatumSetSpec.ValidateAll() if the designated constraints aren't met.

func (DatumSetSpecMultiError) AllErrors added in v2.8.0

func (m DatumSetSpecMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DatumSetSpecMultiError) Error added in v2.8.0

func (m DatumSetSpecMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type DatumSetSpecValidationError added in v2.8.0

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

DatumSetSpecValidationError is the validation error returned by DatumSetSpec.Validate if the designated constraints aren't met.

func (DatumSetSpecValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DatumSetSpecValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DatumSetSpecValidationError) ErrorName added in v2.8.0

func (e DatumSetSpecValidationError) ErrorName() string

ErrorName returns error name.

func (DatumSetSpecValidationError) Field added in v2.8.0

Field function returns field value.

func (DatumSetSpecValidationError) Key added in v2.8.0

Key function returns key value.

func (DatumSetSpecValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DatumState

type DatumState int32
const (
	DatumState_UNKNOWN   DatumState = 0 // or not part of a job
	DatumState_FAILED    DatumState = 1
	DatumState_SUCCESS   DatumState = 2
	DatumState_SKIPPED   DatumState = 3
	DatumState_STARTING  DatumState = 4
	DatumState_RECOVERED DatumState = 5
)

func (DatumState) Descriptor added in v2.7.0

func (DatumState) Descriptor() protoreflect.EnumDescriptor

func (DatumState) Enum added in v2.7.0

func (x DatumState) Enum() *DatumState

func (DatumState) EnumDescriptor deprecated

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

Deprecated: Use DatumState.Descriptor instead.

func (DatumState) Number added in v2.7.0

func (x DatumState) Number() protoreflect.EnumNumber

func (DatumState) String

func (x DatumState) String() string

func (DatumState) Type added in v2.7.0

type DatumStatus

type DatumStatus struct {

	// Started is the time processing on the current datum began.
	Started *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=started,proto3" json:"started,omitempty"`
	Data    []*InputFile           `protobuf:"bytes,2,rep,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*DatumStatus) Descriptor deprecated

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

Deprecated: Use DatumStatus.ProtoReflect.Descriptor instead.

func (*DatumStatus) GetData

func (x *DatumStatus) GetData() []*InputFile

func (*DatumStatus) GetStarted

func (x *DatumStatus) GetStarted() *timestamppb.Timestamp

func (*DatumStatus) MarshalLogObject

func (x *DatumStatus) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DatumStatus) ProtoMessage

func (*DatumStatus) ProtoMessage()

func (*DatumStatus) ProtoReflect added in v2.7.0

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

func (*DatumStatus) Reset

func (x *DatumStatus) Reset()

func (*DatumStatus) String

func (x *DatumStatus) String() string

func (*DatumStatus) Validate added in v2.8.0

func (m *DatumStatus) Validate() error

Validate checks the field values on DatumStatus with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DatumStatus) ValidateAll added in v2.8.0

func (m *DatumStatus) ValidateAll() error

ValidateAll checks the field values on DatumStatus with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DatumStatusMultiError, or nil if none found.

type DatumStatusMultiError added in v2.8.0

type DatumStatusMultiError []error

DatumStatusMultiError is an error wrapping multiple validation errors returned by DatumStatus.ValidateAll() if the designated constraints aren't met.

func (DatumStatusMultiError) AllErrors added in v2.8.0

func (m DatumStatusMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DatumStatusMultiError) Error added in v2.8.0

func (m DatumStatusMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type DatumStatusValidationError added in v2.8.0

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

DatumStatusValidationError is the validation error returned by DatumStatus.Validate if the designated constraints aren't met.

func (DatumStatusValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DatumStatusValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DatumStatusValidationError) ErrorName added in v2.8.0

func (e DatumStatusValidationError) ErrorName() string

ErrorName returns error name.

func (DatumStatusValidationError) Field added in v2.8.0

Field function returns field value.

func (DatumStatusValidationError) Key added in v2.8.0

Key function returns key value.

func (DatumStatusValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DatumValidationError added in v2.8.0

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

DatumValidationError is the validation error returned by Datum.Validate if the designated constraints aren't met.

func (DatumValidationError) Cause added in v2.8.0

func (e DatumValidationError) Cause() error

Cause function returns cause value.

func (DatumValidationError) Error added in v2.8.0

func (e DatumValidationError) Error() string

Error satisfies the builtin error interface

func (DatumValidationError) ErrorName added in v2.8.0

func (e DatumValidationError) ErrorName() string

ErrorName returns error name.

func (DatumValidationError) Field added in v2.8.0

func (e DatumValidationError) Field() string

Field function returns field value.

func (DatumValidationError) Key added in v2.8.0

func (e DatumValidationError) Key() bool

Key function returns key value.

func (DatumValidationError) Reason added in v2.8.0

func (e DatumValidationError) Reason() string

Reason function returns reason value.

type DeleteJobRequest

type DeleteJobRequest struct {
	Job *Job `protobuf:"bytes,1,opt,name=job,proto3" json:"job,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteJobRequest) Descriptor deprecated

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

Deprecated: Use DeleteJobRequest.ProtoReflect.Descriptor instead.

func (*DeleteJobRequest) GetJob

func (x *DeleteJobRequest) GetJob() *Job

func (*DeleteJobRequest) MarshalLogObject

func (x *DeleteJobRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DeleteJobRequest) ProtoMessage

func (*DeleteJobRequest) ProtoMessage()

func (*DeleteJobRequest) ProtoReflect added in v2.7.0

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

func (*DeleteJobRequest) Reset

func (x *DeleteJobRequest) Reset()

func (*DeleteJobRequest) String

func (x *DeleteJobRequest) String() string

func (*DeleteJobRequest) Validate added in v2.8.0

func (m *DeleteJobRequest) Validate() error

Validate checks the field values on DeleteJobRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeleteJobRequest) ValidateAll added in v2.8.0

func (m *DeleteJobRequest) ValidateAll() error

ValidateAll checks the field values on DeleteJobRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeleteJobRequestMultiError, or nil if none found.

type DeleteJobRequestMultiError added in v2.8.0

type DeleteJobRequestMultiError []error

DeleteJobRequestMultiError is an error wrapping multiple validation errors returned by DeleteJobRequest.ValidateAll() if the designated constraints aren't met.

func (DeleteJobRequestMultiError) AllErrors added in v2.8.0

func (m DeleteJobRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteJobRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type DeleteJobRequestValidationError added in v2.8.0

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

DeleteJobRequestValidationError is the validation error returned by DeleteJobRequest.Validate if the designated constraints aren't met.

func (DeleteJobRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DeleteJobRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DeleteJobRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DeleteJobRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (DeleteJobRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (DeleteJobRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DeletePipelineRequest

type DeletePipelineRequest struct {
	Pipeline *Pipeline `protobuf:"bytes,1,opt,name=pipeline,proto3" json:"pipeline,omitempty"`
	// Deprecated: Marked as deprecated in pps/pps.proto.
	All      bool `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"` // Deprecated.
	Force    bool `protobuf:"varint,3,opt,name=force,proto3" json:"force,omitempty"`
	KeepRepo bool `protobuf:"varint,4,opt,name=keep_repo,json=keepRepo,proto3" json:"keep_repo,omitempty"`
	// If true, an error will be returned if the pipeline doesn't exist.
	MustExist bool `protobuf:"varint,5,opt,name=must_exist,json=mustExist,proto3" json:"must_exist,omitempty"`
	// contains filtered or unexported fields
}

Delete a pipeline. If the deprecated all member is true, then delete all pipelines in the default project.

func (*DeletePipelineRequest) Descriptor deprecated

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

Deprecated: Use DeletePipelineRequest.ProtoReflect.Descriptor instead.

func (*DeletePipelineRequest) GetAll deprecated

func (x *DeletePipelineRequest) GetAll() bool

Deprecated: Marked as deprecated in pps/pps.proto.

func (*DeletePipelineRequest) GetForce

func (x *DeletePipelineRequest) GetForce() bool

func (*DeletePipelineRequest) GetKeepRepo

func (x *DeletePipelineRequest) GetKeepRepo() bool

func (*DeletePipelineRequest) GetMustExist added in v2.8.0

func (x *DeletePipelineRequest) GetMustExist() bool

func (*DeletePipelineRequest) GetPipeline

func (x *DeletePipelineRequest) GetPipeline() *Pipeline

func (*DeletePipelineRequest) MarshalLogObject

func (x *DeletePipelineRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DeletePipelineRequest) ProtoMessage

func (*DeletePipelineRequest) ProtoMessage()

func (*DeletePipelineRequest) ProtoReflect added in v2.7.0

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

func (*DeletePipelineRequest) Reset

func (x *DeletePipelineRequest) Reset()

func (*DeletePipelineRequest) String

func (x *DeletePipelineRequest) String() string

func (*DeletePipelineRequest) Validate added in v2.8.0

func (m *DeletePipelineRequest) Validate() error

Validate checks the field values on DeletePipelineRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeletePipelineRequest) ValidateAll added in v2.8.0

func (m *DeletePipelineRequest) ValidateAll() error

ValidateAll checks the field values on DeletePipelineRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeletePipelineRequestMultiError, or nil if none found.

type DeletePipelineRequestMultiError added in v2.8.0

type DeletePipelineRequestMultiError []error

DeletePipelineRequestMultiError is an error wrapping multiple validation errors returned by DeletePipelineRequest.ValidateAll() if the designated constraints aren't met.

func (DeletePipelineRequestMultiError) AllErrors added in v2.8.0

func (m DeletePipelineRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeletePipelineRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type DeletePipelineRequestValidationError added in v2.8.0

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

DeletePipelineRequestValidationError is the validation error returned by DeletePipelineRequest.Validate if the designated constraints aren't met.

func (DeletePipelineRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DeletePipelineRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DeletePipelineRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DeletePipelineRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (DeletePipelineRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (DeletePipelineRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DeletePipelinesRequest

type DeletePipelinesRequest struct {

	// All pipelines in each project will be deleted if the caller has
	// permission.
	Projects []*pfs.Project `protobuf:"bytes,1,rep,name=projects,proto3" json:"projects,omitempty"`
	Force    bool           `protobuf:"varint,2,opt,name=force,proto3" json:"force,omitempty"`
	KeepRepo bool           `protobuf:"varint,3,opt,name=keep_repo,json=keepRepo,proto3" json:"keep_repo,omitempty"`
	// If set, all pipelines in all projects will be deleted if the caller has
	// permission.
	All bool `protobuf:"varint,4,opt,name=all,proto3" json:"all,omitempty"`
	// contains filtered or unexported fields
}

Delete more than one pipeline.

func (*DeletePipelinesRequest) Descriptor deprecated

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

Deprecated: Use DeletePipelinesRequest.ProtoReflect.Descriptor instead.

func (*DeletePipelinesRequest) GetAll

func (x *DeletePipelinesRequest) GetAll() bool

func (*DeletePipelinesRequest) GetForce

func (x *DeletePipelinesRequest) GetForce() bool

func (*DeletePipelinesRequest) GetKeepRepo

func (x *DeletePipelinesRequest) GetKeepRepo() bool

func (*DeletePipelinesRequest) GetProjects

func (x *DeletePipelinesRequest) GetProjects() []*pfs.Project

func (*DeletePipelinesRequest) MarshalLogObject

func (x *DeletePipelinesRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DeletePipelinesRequest) ProtoMessage

func (*DeletePipelinesRequest) ProtoMessage()

func (*DeletePipelinesRequest) ProtoReflect added in v2.7.0

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

func (*DeletePipelinesRequest) Reset

func (x *DeletePipelinesRequest) Reset()

func (*DeletePipelinesRequest) String

func (x *DeletePipelinesRequest) String() string

func (*DeletePipelinesRequest) Validate added in v2.8.0

func (m *DeletePipelinesRequest) Validate() error

Validate checks the field values on DeletePipelinesRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeletePipelinesRequest) ValidateAll added in v2.8.0

func (m *DeletePipelinesRequest) ValidateAll() error

ValidateAll checks the field values on DeletePipelinesRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeletePipelinesRequestMultiError, or nil if none found.

type DeletePipelinesRequestMultiError added in v2.8.0

type DeletePipelinesRequestMultiError []error

DeletePipelinesRequestMultiError is an error wrapping multiple validation errors returned by DeletePipelinesRequest.ValidateAll() if the designated constraints aren't met.

func (DeletePipelinesRequestMultiError) AllErrors added in v2.8.0

func (m DeletePipelinesRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeletePipelinesRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type DeletePipelinesRequestValidationError added in v2.8.0

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

DeletePipelinesRequestValidationError is the validation error returned by DeletePipelinesRequest.Validate if the designated constraints aren't met.

func (DeletePipelinesRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DeletePipelinesRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DeletePipelinesRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DeletePipelinesRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (DeletePipelinesRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (DeletePipelinesRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DeletePipelinesResponse

type DeletePipelinesResponse struct {
	Pipelines []*Pipeline `protobuf:"bytes,1,rep,name=pipelines,proto3" json:"pipelines,omitempty"`
	// contains filtered or unexported fields
}

func (*DeletePipelinesResponse) Descriptor deprecated

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

Deprecated: Use DeletePipelinesResponse.ProtoReflect.Descriptor instead.

func (*DeletePipelinesResponse) GetPipelines

func (x *DeletePipelinesResponse) GetPipelines() []*Pipeline

func (*DeletePipelinesResponse) MarshalLogObject

func (x *DeletePipelinesResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DeletePipelinesResponse) ProtoMessage

func (*DeletePipelinesResponse) ProtoMessage()

func (*DeletePipelinesResponse) ProtoReflect added in v2.7.0

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

func (*DeletePipelinesResponse) Reset

func (x *DeletePipelinesResponse) Reset()

func (*DeletePipelinesResponse) String

func (x *DeletePipelinesResponse) String() string

func (*DeletePipelinesResponse) Validate added in v2.8.0

func (m *DeletePipelinesResponse) Validate() error

Validate checks the field values on DeletePipelinesResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeletePipelinesResponse) ValidateAll added in v2.8.0

func (m *DeletePipelinesResponse) ValidateAll() error

ValidateAll checks the field values on DeletePipelinesResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeletePipelinesResponseMultiError, or nil if none found.

type DeletePipelinesResponseMultiError added in v2.8.0

type DeletePipelinesResponseMultiError []error

DeletePipelinesResponseMultiError is an error wrapping multiple validation errors returned by DeletePipelinesResponse.ValidateAll() if the designated constraints aren't met.

func (DeletePipelinesResponseMultiError) AllErrors added in v2.8.0

func (m DeletePipelinesResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeletePipelinesResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type DeletePipelinesResponseValidationError added in v2.8.0

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

DeletePipelinesResponseValidationError is the validation error returned by DeletePipelinesResponse.Validate if the designated constraints aren't met.

func (DeletePipelinesResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DeletePipelinesResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DeletePipelinesResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DeletePipelinesResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (DeletePipelinesResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (DeletePipelinesResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type DeleteSecretRequest

type DeleteSecretRequest struct {
	Secret *Secret `protobuf:"bytes,1,opt,name=secret,proto3" json:"secret,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteSecretRequest) Descriptor deprecated

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

Deprecated: Use DeleteSecretRequest.ProtoReflect.Descriptor instead.

func (*DeleteSecretRequest) GetSecret

func (x *DeleteSecretRequest) GetSecret() *Secret

func (*DeleteSecretRequest) MarshalLogObject

func (x *DeleteSecretRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*DeleteSecretRequest) ProtoMessage

func (*DeleteSecretRequest) ProtoMessage()

func (*DeleteSecretRequest) ProtoReflect added in v2.7.0

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

func (*DeleteSecretRequest) Reset

func (x *DeleteSecretRequest) Reset()

func (*DeleteSecretRequest) String

func (x *DeleteSecretRequest) String() string

func (*DeleteSecretRequest) Validate added in v2.8.0

func (m *DeleteSecretRequest) Validate() error

Validate checks the field values on DeleteSecretRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeleteSecretRequest) ValidateAll added in v2.8.0

func (m *DeleteSecretRequest) ValidateAll() error

ValidateAll checks the field values on DeleteSecretRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeleteSecretRequestMultiError, or nil if none found.

type DeleteSecretRequestMultiError added in v2.8.0

type DeleteSecretRequestMultiError []error

DeleteSecretRequestMultiError is an error wrapping multiple validation errors returned by DeleteSecretRequest.ValidateAll() if the designated constraints aren't met.

func (DeleteSecretRequestMultiError) AllErrors added in v2.8.0

func (m DeleteSecretRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteSecretRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type DeleteSecretRequestValidationError added in v2.8.0

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

DeleteSecretRequestValidationError is the validation error returned by DeleteSecretRequest.Validate if the designated constraints aren't met.

func (DeleteSecretRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (DeleteSecretRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DeleteSecretRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (DeleteSecretRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (DeleteSecretRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (DeleteSecretRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type Determined added in v2.7.0

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

func (*Determined) Descriptor deprecated added in v2.7.0

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

Deprecated: Use Determined.ProtoReflect.Descriptor instead.

func (*Determined) GetWorkspaces added in v2.7.0

func (x *Determined) GetWorkspaces() []string

func (*Determined) MarshalLogObject added in v2.7.0

func (x *Determined) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Determined) ProtoMessage added in v2.7.0

func (*Determined) ProtoMessage()

func (*Determined) ProtoReflect added in v2.7.0

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

func (*Determined) Reset added in v2.7.0

func (x *Determined) Reset()

func (*Determined) String added in v2.7.0

func (x *Determined) String() string

func (*Determined) Validate added in v2.8.0

func (m *Determined) Validate() error

Validate checks the field values on Determined with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Determined) ValidateAll added in v2.8.0

func (m *Determined) ValidateAll() error

ValidateAll checks the field values on Determined with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeterminedMultiError, or nil if none found.

type DeterminedMultiError added in v2.8.0

type DeterminedMultiError []error

DeterminedMultiError is an error wrapping multiple validation errors returned by Determined.ValidateAll() if the designated constraints aren't met.

func (DeterminedMultiError) AllErrors added in v2.8.0

func (m DeterminedMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeterminedMultiError) Error added in v2.8.0

func (m DeterminedMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type DeterminedValidationError added in v2.8.0

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

DeterminedValidationError is the validation error returned by Determined.Validate if the designated constraints aren't met.

func (DeterminedValidationError) Cause added in v2.8.0

func (e DeterminedValidationError) Cause() error

Cause function returns cause value.

func (DeterminedValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (DeterminedValidationError) ErrorName added in v2.8.0

func (e DeterminedValidationError) ErrorName() string

ErrorName returns error name.

func (DeterminedValidationError) Field added in v2.8.0

Field function returns field value.

func (DeterminedValidationError) Key added in v2.8.0

Key function returns key value.

func (DeterminedValidationError) Reason added in v2.8.0

func (e DeterminedValidationError) Reason() string

Reason function returns reason value.

type Egress

type Egress struct {
	URL string `protobuf:"bytes,1,opt,name=URL,proto3" json:"URL,omitempty"`
	// Types that are assignable to Target:
	//
	//	*Egress_ObjectStorage
	//	*Egress_SqlDatabase
	Target isEgress_Target `protobuf_oneof:"target"`
	// contains filtered or unexported fields
}

func (*Egress) Descriptor deprecated

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

Deprecated: Use Egress.ProtoReflect.Descriptor instead.

func (*Egress) GetObjectStorage

func (x *Egress) GetObjectStorage() *pfs.ObjectStorageEgress

func (*Egress) GetSqlDatabase

func (x *Egress) GetSqlDatabase() *pfs.SQLDatabaseEgress

func (*Egress) GetTarget

func (m *Egress) GetTarget() isEgress_Target

func (*Egress) GetURL

func (x *Egress) GetURL() string

func (*Egress) MarshalLogObject

func (x *Egress) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Egress) ProtoMessage

func (*Egress) ProtoMessage()

func (*Egress) ProtoReflect added in v2.7.0

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

func (*Egress) Reset

func (x *Egress) Reset()

func (*Egress) String

func (x *Egress) String() string

func (*Egress) Validate added in v2.8.0

func (m *Egress) Validate() error

Validate checks the field values on Egress with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Egress) ValidateAll added in v2.8.0

func (m *Egress) ValidateAll() error

ValidateAll checks the field values on Egress with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in EgressMultiError, or nil if none found.

type EgressMultiError added in v2.8.0

type EgressMultiError []error

EgressMultiError is an error wrapping multiple validation errors returned by Egress.ValidateAll() if the designated constraints aren't met.

func (EgressMultiError) AllErrors added in v2.8.0

func (m EgressMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (EgressMultiError) Error added in v2.8.0

func (m EgressMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type EgressValidationError added in v2.8.0

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

EgressValidationError is the validation error returned by Egress.Validate if the designated constraints aren't met.

func (EgressValidationError) Cause added in v2.8.0

func (e EgressValidationError) Cause() error

Cause function returns cause value.

func (EgressValidationError) Error added in v2.8.0

func (e EgressValidationError) Error() string

Error satisfies the builtin error interface

func (EgressValidationError) ErrorName added in v2.8.0

func (e EgressValidationError) ErrorName() string

ErrorName returns error name.

func (EgressValidationError) Field added in v2.8.0

func (e EgressValidationError) Field() string

Field function returns field value.

func (EgressValidationError) Key added in v2.8.0

func (e EgressValidationError) Key() bool

Key function returns key value.

func (EgressValidationError) Reason added in v2.8.0

func (e EgressValidationError) Reason() string

Reason function returns reason value.

type Egress_ObjectStorage

type Egress_ObjectStorage struct {
	ObjectStorage *pfs.ObjectStorageEgress `protobuf:"bytes,2,opt,name=object_storage,json=objectStorage,proto3,oneof"`
}

type Egress_SqlDatabase

type Egress_SqlDatabase struct {
	SqlDatabase *pfs.SQLDatabaseEgress `protobuf:"bytes,3,opt,name=sql_database,json=sqlDatabase,proto3,oneof"`
}

type GPUSpec

type GPUSpec struct {

	// The type of GPU (nvidia.com/gpu or amd.com/gpu for example).
	Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	// The number of GPUs to request.
	Number int64 `protobuf:"varint,2,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*GPUSpec) Descriptor deprecated

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

Deprecated: Use GPUSpec.ProtoReflect.Descriptor instead.

func (*GPUSpec) GetNumber

func (x *GPUSpec) GetNumber() int64

func (*GPUSpec) GetType

func (x *GPUSpec) GetType() string

func (*GPUSpec) MarshalLogObject

func (x *GPUSpec) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*GPUSpec) ProtoMessage

func (*GPUSpec) ProtoMessage()

func (*GPUSpec) ProtoReflect added in v2.7.0

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

func (*GPUSpec) Reset

func (x *GPUSpec) Reset()

func (*GPUSpec) String

func (x *GPUSpec) String() string

func (*GPUSpec) Validate added in v2.8.0

func (m *GPUSpec) Validate() error

Validate checks the field values on GPUSpec with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GPUSpec) ValidateAll added in v2.8.0

func (m *GPUSpec) ValidateAll() error

ValidateAll checks the field values on GPUSpec with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GPUSpecMultiError, or nil if none found.

type GPUSpecMultiError added in v2.8.0

type GPUSpecMultiError []error

GPUSpecMultiError is an error wrapping multiple validation errors returned by GPUSpec.ValidateAll() if the designated constraints aren't met.

func (GPUSpecMultiError) AllErrors added in v2.8.0

func (m GPUSpecMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GPUSpecMultiError) Error added in v2.8.0

func (m GPUSpecMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type GPUSpecValidationError added in v2.8.0

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

GPUSpecValidationError is the validation error returned by GPUSpec.Validate if the designated constraints aren't met.

func (GPUSpecValidationError) Cause added in v2.8.0

func (e GPUSpecValidationError) Cause() error

Cause function returns cause value.

func (GPUSpecValidationError) Error added in v2.8.0

func (e GPUSpecValidationError) Error() string

Error satisfies the builtin error interface

func (GPUSpecValidationError) ErrorName added in v2.8.0

func (e GPUSpecValidationError) ErrorName() string

ErrorName returns error name.

func (GPUSpecValidationError) Field added in v2.8.0

func (e GPUSpecValidationError) Field() string

Field function returns field value.

func (GPUSpecValidationError) Key added in v2.8.0

func (e GPUSpecValidationError) Key() bool

Key function returns key value.

func (GPUSpecValidationError) Reason added in v2.8.0

func (e GPUSpecValidationError) Reason() string

Reason function returns reason value.

type GetClusterDefaultsRequest added in v2.7.0

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

func (*GetClusterDefaultsRequest) Descriptor deprecated added in v2.7.0

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

Deprecated: Use GetClusterDefaultsRequest.ProtoReflect.Descriptor instead.

func (*GetClusterDefaultsRequest) MarshalLogObject added in v2.7.0

func (x *GetClusterDefaultsRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*GetClusterDefaultsRequest) ProtoMessage added in v2.7.0

func (*GetClusterDefaultsRequest) ProtoMessage()

func (*GetClusterDefaultsRequest) ProtoReflect added in v2.7.0

func (*GetClusterDefaultsRequest) Reset added in v2.7.0

func (x *GetClusterDefaultsRequest) Reset()

func (*GetClusterDefaultsRequest) String added in v2.7.0

func (x *GetClusterDefaultsRequest) String() string

func (*GetClusterDefaultsRequest) Validate added in v2.8.0

func (m *GetClusterDefaultsRequest) Validate() error

Validate checks the field values on GetClusterDefaultsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetClusterDefaultsRequest) ValidateAll added in v2.8.0

func (m *GetClusterDefaultsRequest) ValidateAll() error

ValidateAll checks the field values on GetClusterDefaultsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetClusterDefaultsRequestMultiError, or nil if none found.

type GetClusterDefaultsRequestMultiError added in v2.8.0

type GetClusterDefaultsRequestMultiError []error

GetClusterDefaultsRequestMultiError is an error wrapping multiple validation errors returned by GetClusterDefaultsRequest.ValidateAll() if the designated constraints aren't met.

func (GetClusterDefaultsRequestMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (GetClusterDefaultsRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type GetClusterDefaultsRequestValidationError added in v2.8.0

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

GetClusterDefaultsRequestValidationError is the validation error returned by GetClusterDefaultsRequest.Validate if the designated constraints aren't met.

func (GetClusterDefaultsRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (GetClusterDefaultsRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (GetClusterDefaultsRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (GetClusterDefaultsRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (GetClusterDefaultsRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (GetClusterDefaultsRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type GetClusterDefaultsResponse added in v2.7.0

type GetClusterDefaultsResponse struct {

	// A JSON-encoded ClusterDefaults message, this is the verbatim input passed
	// to SetClusterDefaults.
	ClusterDefaultsJson string `protobuf:"bytes,2,opt,name=cluster_defaults_json,json=clusterDefaultsJson,proto3" json:"cluster_defaults_json,omitempty"`
	// contains filtered or unexported fields
}

func (*GetClusterDefaultsResponse) Descriptor deprecated added in v2.7.0

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

Deprecated: Use GetClusterDefaultsResponse.ProtoReflect.Descriptor instead.

func (*GetClusterDefaultsResponse) GetClusterDefaultsJson added in v2.8.0

func (x *GetClusterDefaultsResponse) GetClusterDefaultsJson() string

func (*GetClusterDefaultsResponse) MarshalLogObject added in v2.7.0

func (x *GetClusterDefaultsResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*GetClusterDefaultsResponse) ProtoMessage added in v2.7.0

func (*GetClusterDefaultsResponse) ProtoMessage()

func (*GetClusterDefaultsResponse) ProtoReflect added in v2.7.0

func (*GetClusterDefaultsResponse) Reset added in v2.7.0

func (x *GetClusterDefaultsResponse) Reset()

func (*GetClusterDefaultsResponse) String added in v2.7.0

func (x *GetClusterDefaultsResponse) String() string

func (*GetClusterDefaultsResponse) Validate added in v2.8.0

func (m *GetClusterDefaultsResponse) Validate() error

Validate checks the field values on GetClusterDefaultsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetClusterDefaultsResponse) ValidateAll added in v2.8.0

func (m *GetClusterDefaultsResponse) ValidateAll() error

ValidateAll checks the field values on GetClusterDefaultsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetClusterDefaultsResponseMultiError, or nil if none found.

type GetClusterDefaultsResponseMultiError added in v2.8.0

type GetClusterDefaultsResponseMultiError []error

GetClusterDefaultsResponseMultiError is an error wrapping multiple validation errors returned by GetClusterDefaultsResponse.ValidateAll() if the designated constraints aren't met.

func (GetClusterDefaultsResponseMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (GetClusterDefaultsResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type GetClusterDefaultsResponseValidationError added in v2.8.0

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

GetClusterDefaultsResponseValidationError is the validation error returned by GetClusterDefaultsResponse.Validate if the designated constraints aren't met.

func (GetClusterDefaultsResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (GetClusterDefaultsResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (GetClusterDefaultsResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (GetClusterDefaultsResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (GetClusterDefaultsResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (GetClusterDefaultsResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type GetLogsRequest

type GetLogsRequest struct {

	// The pipeline from which we want to get logs (required if the job in 'job'
	// was created as part of a pipeline. To get logs from a non-orphan job
	// without the pipeline that created it, you need to use ElasticSearch).
	Pipeline *Pipeline `protobuf:"bytes,1,opt,name=pipeline,proto3" json:"pipeline,omitempty"`
	// The job from which we want to get logs.
	Job *Job `protobuf:"bytes,2,opt,name=job,proto3" json:"job,omitempty"`
	// Names of input files from which we want processing logs. This may contain
	// multiple files, to query pipelines that contain multiple inputs. Each
	// filter may be an absolute path of a file within a pps repo, or it may be
	// a hash for that file (to search for files at specific versions)
	DataFilters []string `protobuf:"bytes,3,rep,name=data_filters,json=dataFilters,proto3" json:"data_filters,omitempty"`
	Datum       *Datum   `protobuf:"bytes,4,opt,name=datum,proto3" json:"datum,omitempty"`
	// If true get logs from the master process
	Master bool `protobuf:"varint,5,opt,name=master,proto3" json:"master,omitempty"`
	// Continue to follow new logs as they become available.
	Follow bool `protobuf:"varint,6,opt,name=follow,proto3" json:"follow,omitempty"`
	// If nonzero, the number of lines from the end of the logs to return.  Note:
	// tail applies per container, so you will get tail * <number of pods> total
	// lines back.
	Tail int64 `protobuf:"varint,7,opt,name=tail,proto3" json:"tail,omitempty"`
	// UseLokiBackend causes the logs request to go through the loki backend
	// rather than through kubernetes. This behavior can also be achieved by
	// setting the LOKI_LOGGING feature flag.
	UseLokiBackend bool `protobuf:"varint,8,opt,name=use_loki_backend,json=useLokiBackend,proto3" json:"use_loki_backend,omitempty"`
	// Since specifies how far in the past to return logs from. It defaults to 24 hours.
	Since *durationpb.Duration `protobuf:"bytes,9,opt,name=since,proto3" json:"since,omitempty"`
	// contains filtered or unexported fields
}

func (*GetLogsRequest) Descriptor deprecated

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

Deprecated: Use GetLogsRequest.ProtoReflect.Descriptor instead.

func (*GetLogsRequest) GetDataFilters

func (x *GetLogsRequest) GetDataFilters() []string

func (*GetLogsRequest) GetDatum

func (x *GetLogsRequest) GetDatum() *Datum

func (*GetLogsRequest) GetFollow

func (x *GetLogsRequest) GetFollow() bool

func (*GetLogsRequest) GetJob

func (x *GetLogsRequest) GetJob() *Job

func (*GetLogsRequest) GetMaster

func (x *GetLogsRequest) GetMaster() bool

func (*GetLogsRequest) GetPipeline

func (x *GetLogsRequest) GetPipeline() *Pipeline

func (*GetLogsRequest) GetSince

func (x *GetLogsRequest) GetSince() *durationpb.Duration

func (*GetLogsRequest) GetTail

func (x *GetLogsRequest) GetTail() int64

func (*GetLogsRequest) GetUseLokiBackend

func (x *GetLogsRequest) GetUseLokiBackend() bool

func (*GetLogsRequest) MarshalLogObject

func (x *GetLogsRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*GetLogsRequest) ProtoMessage

func (*GetLogsRequest) ProtoMessage()

func (*GetLogsRequest) ProtoReflect added in v2.7.0

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

func (*GetLogsRequest) Reset

func (x *GetLogsRequest) Reset()

func (*GetLogsRequest) String

func (x *GetLogsRequest) String() string

func (*GetLogsRequest) Validate added in v2.8.0

func (m *GetLogsRequest) Validate() error

Validate checks the field values on GetLogsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetLogsRequest) ValidateAll added in v2.8.0

func (m *GetLogsRequest) ValidateAll() error

ValidateAll checks the field values on GetLogsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetLogsRequestMultiError, or nil if none found.

type GetLogsRequestMultiError added in v2.8.0

type GetLogsRequestMultiError []error

GetLogsRequestMultiError is an error wrapping multiple validation errors returned by GetLogsRequest.ValidateAll() if the designated constraints aren't met.

func (GetLogsRequestMultiError) AllErrors added in v2.8.0

func (m GetLogsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetLogsRequestMultiError) Error added in v2.8.0

func (m GetLogsRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type GetLogsRequestValidationError added in v2.8.0

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

GetLogsRequestValidationError is the validation error returned by GetLogsRequest.Validate if the designated constraints aren't met.

func (GetLogsRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (GetLogsRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (GetLogsRequestValidationError) ErrorName added in v2.8.0

func (e GetLogsRequestValidationError) ErrorName() string

ErrorName returns error name.

func (GetLogsRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (GetLogsRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (GetLogsRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type GetProjectDefaultsRequest added in v2.8.0

type GetProjectDefaultsRequest struct {
	Project *pfs.Project `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"`
	// contains filtered or unexported fields
}

func (*GetProjectDefaultsRequest) Descriptor deprecated added in v2.8.0

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

Deprecated: Use GetProjectDefaultsRequest.ProtoReflect.Descriptor instead.

func (*GetProjectDefaultsRequest) GetProject added in v2.8.0

func (x *GetProjectDefaultsRequest) GetProject() *pfs.Project

func (*GetProjectDefaultsRequest) MarshalLogObject added in v2.8.0

func (x *GetProjectDefaultsRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*GetProjectDefaultsRequest) ProtoMessage added in v2.8.0

func (*GetProjectDefaultsRequest) ProtoMessage()

func (*GetProjectDefaultsRequest) ProtoReflect added in v2.8.0

func (*GetProjectDefaultsRequest) Reset added in v2.8.0

func (x *GetProjectDefaultsRequest) Reset()

func (*GetProjectDefaultsRequest) String added in v2.8.0

func (x *GetProjectDefaultsRequest) String() string

func (*GetProjectDefaultsRequest) Validate added in v2.8.0

func (m *GetProjectDefaultsRequest) Validate() error

Validate checks the field values on GetProjectDefaultsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetProjectDefaultsRequest) ValidateAll added in v2.8.0

func (m *GetProjectDefaultsRequest) ValidateAll() error

ValidateAll checks the field values on GetProjectDefaultsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetProjectDefaultsRequestMultiError, or nil if none found.

type GetProjectDefaultsRequestMultiError added in v2.8.0

type GetProjectDefaultsRequestMultiError []error

GetProjectDefaultsRequestMultiError is an error wrapping multiple validation errors returned by GetProjectDefaultsRequest.ValidateAll() if the designated constraints aren't met.

func (GetProjectDefaultsRequestMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (GetProjectDefaultsRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type GetProjectDefaultsRequestValidationError added in v2.8.0

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

GetProjectDefaultsRequestValidationError is the validation error returned by GetProjectDefaultsRequest.Validate if the designated constraints aren't met.

func (GetProjectDefaultsRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (GetProjectDefaultsRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (GetProjectDefaultsRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (GetProjectDefaultsRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (GetProjectDefaultsRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (GetProjectDefaultsRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type GetProjectDefaultsResponse added in v2.8.0

type GetProjectDefaultsResponse struct {

	// A JSON-encoded ProjectDefaults message, this is the verbatim input passed
	// to SetProjectDefaults.
	ProjectDefaultsJson string `protobuf:"bytes,1,opt,name=project_defaults_json,json=projectDefaultsJson,proto3" json:"project_defaults_json,omitempty"`
	// contains filtered or unexported fields
}

func (*GetProjectDefaultsResponse) Descriptor deprecated added in v2.8.0

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

Deprecated: Use GetProjectDefaultsResponse.ProtoReflect.Descriptor instead.

func (*GetProjectDefaultsResponse) GetProjectDefaultsJson added in v2.8.0

func (x *GetProjectDefaultsResponse) GetProjectDefaultsJson() string

func (*GetProjectDefaultsResponse) MarshalLogObject added in v2.8.0

func (x *GetProjectDefaultsResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*GetProjectDefaultsResponse) ProtoMessage added in v2.8.0

func (*GetProjectDefaultsResponse) ProtoMessage()

func (*GetProjectDefaultsResponse) ProtoReflect added in v2.8.0

func (*GetProjectDefaultsResponse) Reset added in v2.8.0

func (x *GetProjectDefaultsResponse) Reset()

func (*GetProjectDefaultsResponse) String added in v2.8.0

func (x *GetProjectDefaultsResponse) String() string

func (*GetProjectDefaultsResponse) Validate added in v2.8.0

func (m *GetProjectDefaultsResponse) Validate() error

Validate checks the field values on GetProjectDefaultsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetProjectDefaultsResponse) ValidateAll added in v2.8.0

func (m *GetProjectDefaultsResponse) ValidateAll() error

ValidateAll checks the field values on GetProjectDefaultsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetProjectDefaultsResponseMultiError, or nil if none found.

type GetProjectDefaultsResponseMultiError added in v2.8.0

type GetProjectDefaultsResponseMultiError []error

GetProjectDefaultsResponseMultiError is an error wrapping multiple validation errors returned by GetProjectDefaultsResponse.ValidateAll() if the designated constraints aren't met.

func (GetProjectDefaultsResponseMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (GetProjectDefaultsResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type GetProjectDefaultsResponseValidationError added in v2.8.0

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

GetProjectDefaultsResponseValidationError is the validation error returned by GetProjectDefaultsResponse.Validate if the designated constraints aren't met.

func (GetProjectDefaultsResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (GetProjectDefaultsResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (GetProjectDefaultsResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (GetProjectDefaultsResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (GetProjectDefaultsResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (GetProjectDefaultsResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type Input

type Input struct {
	Pfs   *PFSInput  `protobuf:"bytes,1,opt,name=pfs,proto3" json:"pfs,omitempty"`
	Join  []*Input   `protobuf:"bytes,2,rep,name=join,proto3" json:"join,omitempty"`
	Group []*Input   `protobuf:"bytes,3,rep,name=group,proto3" json:"group,omitempty"`
	Cross []*Input   `protobuf:"bytes,4,rep,name=cross,proto3" json:"cross,omitempty"`
	Union []*Input   `protobuf:"bytes,5,rep,name=union,proto3" json:"union,omitempty"`
	Cron  *CronInput `protobuf:"bytes,6,opt,name=cron,proto3" json:"cron,omitempty"`
	// contains filtered or unexported fields
}

func (*Input) Descriptor deprecated

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

Deprecated: Use Input.ProtoReflect.Descriptor instead.

func (*Input) GetCron

func (x *Input) GetCron() *CronInput

func (*Input) GetCross

func (x *Input) GetCross() []*Input

func (*Input) GetGroup

func (x *Input) GetGroup() []*Input

func (*Input) GetJoin

func (x *Input) GetJoin() []*Input

func (*Input) GetPfs

func (x *Input) GetPfs() *PFSInput

func (*Input) GetUnion

func (x *Input) GetUnion() []*Input

func (*Input) MarshalLogObject

func (x *Input) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Input) ProtoMessage

func (*Input) ProtoMessage()

func (*Input) ProtoReflect added in v2.7.0

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

func (*Input) Reset

func (x *Input) Reset()

func (*Input) String

func (x *Input) String() string

func (*Input) Validate added in v2.8.0

func (m *Input) Validate() error

Validate checks the field values on Input with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Input) ValidateAll added in v2.8.0

func (m *Input) ValidateAll() error

ValidateAll checks the field values on Input with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InputMultiError, or nil if none found.

type InputFile

type InputFile struct {

	// This file's absolute path within its pfs repo.
	Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	// This file's hash
	Hash []byte `protobuf:"bytes,2,opt,name=hash,proto3" json:"hash,omitempty"`
	// contains filtered or unexported fields
}

func (*InputFile) Descriptor deprecated

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

Deprecated: Use InputFile.ProtoReflect.Descriptor instead.

func (*InputFile) GetHash

func (x *InputFile) GetHash() []byte

func (*InputFile) GetPath

func (x *InputFile) GetPath() string

func (*InputFile) MarshalLogObject

func (x *InputFile) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*InputFile) ProtoMessage

func (*InputFile) ProtoMessage()

func (*InputFile) ProtoReflect added in v2.7.0

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

func (*InputFile) Reset

func (x *InputFile) Reset()

func (*InputFile) String

func (x *InputFile) String() string

func (*InputFile) Validate added in v2.8.0

func (m *InputFile) Validate() error

Validate checks the field values on InputFile with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InputFile) ValidateAll added in v2.8.0

func (m *InputFile) ValidateAll() error

ValidateAll checks the field values on InputFile with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InputFileMultiError, or nil if none found.

type InputFileMultiError added in v2.8.0

type InputFileMultiError []error

InputFileMultiError is an error wrapping multiple validation errors returned by InputFile.ValidateAll() if the designated constraints aren't met.

func (InputFileMultiError) AllErrors added in v2.8.0

func (m InputFileMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InputFileMultiError) Error added in v2.8.0

func (m InputFileMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type InputFileValidationError added in v2.8.0

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

InputFileValidationError is the validation error returned by InputFile.Validate if the designated constraints aren't met.

func (InputFileValidationError) Cause added in v2.8.0

func (e InputFileValidationError) Cause() error

Cause function returns cause value.

func (InputFileValidationError) Error added in v2.8.0

func (e InputFileValidationError) Error() string

Error satisfies the builtin error interface

func (InputFileValidationError) ErrorName added in v2.8.0

func (e InputFileValidationError) ErrorName() string

ErrorName returns error name.

func (InputFileValidationError) Field added in v2.8.0

func (e InputFileValidationError) Field() string

Field function returns field value.

func (InputFileValidationError) Key added in v2.8.0

Key function returns key value.

func (InputFileValidationError) Reason added in v2.8.0

func (e InputFileValidationError) Reason() string

Reason function returns reason value.

type InputMultiError added in v2.8.0

type InputMultiError []error

InputMultiError is an error wrapping multiple validation errors returned by Input.ValidateAll() if the designated constraints aren't met.

func (InputMultiError) AllErrors added in v2.8.0

func (m InputMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InputMultiError) Error added in v2.8.0

func (m InputMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type InputValidationError added in v2.8.0

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

InputValidationError is the validation error returned by Input.Validate if the designated constraints aren't met.

func (InputValidationError) Cause added in v2.8.0

func (e InputValidationError) Cause() error

Cause function returns cause value.

func (InputValidationError) Error added in v2.8.0

func (e InputValidationError) Error() string

Error satisfies the builtin error interface

func (InputValidationError) ErrorName added in v2.8.0

func (e InputValidationError) ErrorName() string

ErrorName returns error name.

func (InputValidationError) Field added in v2.8.0

func (e InputValidationError) Field() string

Field function returns field value.

func (InputValidationError) Key added in v2.8.0

func (e InputValidationError) Key() bool

Key function returns key value.

func (InputValidationError) Reason added in v2.8.0

func (e InputValidationError) Reason() string

Reason function returns reason value.

type InspectDatumRequest

type InspectDatumRequest struct {
	Datum *Datum `protobuf:"bytes,1,opt,name=datum,proto3" json:"datum,omitempty"`
	// contains filtered or unexported fields
}

func (*InspectDatumRequest) Descriptor deprecated

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

Deprecated: Use InspectDatumRequest.ProtoReflect.Descriptor instead.

func (*InspectDatumRequest) GetDatum

func (x *InspectDatumRequest) GetDatum() *Datum

func (*InspectDatumRequest) MarshalLogObject

func (x *InspectDatumRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*InspectDatumRequest) ProtoMessage

func (*InspectDatumRequest) ProtoMessage()

func (*InspectDatumRequest) ProtoReflect added in v2.7.0

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

func (*InspectDatumRequest) Reset

func (x *InspectDatumRequest) Reset()

func (*InspectDatumRequest) String

func (x *InspectDatumRequest) String() string

func (*InspectDatumRequest) Validate added in v2.8.0

func (m *InspectDatumRequest) Validate() error

Validate checks the field values on InspectDatumRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InspectDatumRequest) ValidateAll added in v2.8.0

func (m *InspectDatumRequest) ValidateAll() error

ValidateAll checks the field values on InspectDatumRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InspectDatumRequestMultiError, or nil if none found.

type InspectDatumRequestMultiError added in v2.8.0

type InspectDatumRequestMultiError []error

InspectDatumRequestMultiError is an error wrapping multiple validation errors returned by InspectDatumRequest.ValidateAll() if the designated constraints aren't met.

func (InspectDatumRequestMultiError) AllErrors added in v2.8.0

func (m InspectDatumRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InspectDatumRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type InspectDatumRequestValidationError added in v2.8.0

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

InspectDatumRequestValidationError is the validation error returned by InspectDatumRequest.Validate if the designated constraints aren't met.

func (InspectDatumRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (InspectDatumRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (InspectDatumRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (InspectDatumRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (InspectDatumRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (InspectDatumRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type InspectJobRequest

type InspectJobRequest struct {

	// Callers should set either Job or OutputCommit, not both.
	Job     *Job `protobuf:"bytes,1,opt,name=job,proto3" json:"job,omitempty"`
	Wait    bool `protobuf:"varint,2,opt,name=wait,proto3" json:"wait,omitempty"` // wait until state is either FAILURE or SUCCESS
	Details bool `protobuf:"varint,3,opt,name=details,proto3" json:"details,omitempty"`
	// contains filtered or unexported fields
}

func (*InspectJobRequest) Descriptor deprecated

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

Deprecated: Use InspectJobRequest.ProtoReflect.Descriptor instead.

func (*InspectJobRequest) GetDetails

func (x *InspectJobRequest) GetDetails() bool

func (*InspectJobRequest) GetJob

func (x *InspectJobRequest) GetJob() *Job

func (*InspectJobRequest) GetWait

func (x *InspectJobRequest) GetWait() bool

func (*InspectJobRequest) MarshalLogObject

func (x *InspectJobRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*InspectJobRequest) ProtoMessage

func (*InspectJobRequest) ProtoMessage()

func (*InspectJobRequest) ProtoReflect added in v2.7.0

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

func (*InspectJobRequest) Reset

func (x *InspectJobRequest) Reset()

func (*InspectJobRequest) String

func (x *InspectJobRequest) String() string

func (*InspectJobRequest) Validate added in v2.8.0

func (m *InspectJobRequest) Validate() error

Validate checks the field values on InspectJobRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InspectJobRequest) ValidateAll added in v2.8.0

func (m *InspectJobRequest) ValidateAll() error

ValidateAll checks the field values on InspectJobRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InspectJobRequestMultiError, or nil if none found.

type InspectJobRequestMultiError added in v2.8.0

type InspectJobRequestMultiError []error

InspectJobRequestMultiError is an error wrapping multiple validation errors returned by InspectJobRequest.ValidateAll() if the designated constraints aren't met.

func (InspectJobRequestMultiError) AllErrors added in v2.8.0

func (m InspectJobRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InspectJobRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type InspectJobRequestValidationError added in v2.8.0

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

InspectJobRequestValidationError is the validation error returned by InspectJobRequest.Validate if the designated constraints aren't met.

func (InspectJobRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (InspectJobRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (InspectJobRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (InspectJobRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (InspectJobRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (InspectJobRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type InspectJobSetRequest

type InspectJobSetRequest struct {
	JobSet  *JobSet `protobuf:"bytes,1,opt,name=job_set,json=jobSet,proto3" json:"job_set,omitempty"`
	Wait    bool    `protobuf:"varint,2,opt,name=wait,proto3" json:"wait,omitempty"` // When true, wait until all jobs in the set are finished
	Details bool    `protobuf:"varint,3,opt,name=details,proto3" json:"details,omitempty"`
	// contains filtered or unexported fields
}

func (*InspectJobSetRequest) Descriptor deprecated

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

Deprecated: Use InspectJobSetRequest.ProtoReflect.Descriptor instead.

func (*InspectJobSetRequest) GetDetails

func (x *InspectJobSetRequest) GetDetails() bool

func (*InspectJobSetRequest) GetJobSet

func (x *InspectJobSetRequest) GetJobSet() *JobSet

func (*InspectJobSetRequest) GetWait

func (x *InspectJobSetRequest) GetWait() bool

func (*InspectJobSetRequest) MarshalLogObject

func (x *InspectJobSetRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*InspectJobSetRequest) ProtoMessage

func (*InspectJobSetRequest) ProtoMessage()

func (*InspectJobSetRequest) ProtoReflect added in v2.7.0

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

func (*InspectJobSetRequest) Reset

func (x *InspectJobSetRequest) Reset()

func (*InspectJobSetRequest) String

func (x *InspectJobSetRequest) String() string

func (*InspectJobSetRequest) Validate added in v2.8.0

func (m *InspectJobSetRequest) Validate() error

Validate checks the field values on InspectJobSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InspectJobSetRequest) ValidateAll added in v2.8.0

func (m *InspectJobSetRequest) ValidateAll() error

ValidateAll checks the field values on InspectJobSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InspectJobSetRequestMultiError, or nil if none found.

type InspectJobSetRequestMultiError added in v2.8.0

type InspectJobSetRequestMultiError []error

InspectJobSetRequestMultiError is an error wrapping multiple validation errors returned by InspectJobSetRequest.ValidateAll() if the designated constraints aren't met.

func (InspectJobSetRequestMultiError) AllErrors added in v2.8.0

func (m InspectJobSetRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InspectJobSetRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type InspectJobSetRequestValidationError added in v2.8.0

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

InspectJobSetRequestValidationError is the validation error returned by InspectJobSetRequest.Validate if the designated constraints aren't met.

func (InspectJobSetRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (InspectJobSetRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (InspectJobSetRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (InspectJobSetRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (InspectJobSetRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (InspectJobSetRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type InspectPipelineRequest

type InspectPipelineRequest struct {
	Pipeline *Pipeline `protobuf:"bytes,1,opt,name=pipeline,proto3" json:"pipeline,omitempty"`
	// When true, return PipelineInfos with the details field, which requires
	// loading the pipeline spec from PFS.
	Details bool `protobuf:"varint,2,opt,name=details,proto3" json:"details,omitempty"`
	// contains filtered or unexported fields
}

func (*InspectPipelineRequest) Descriptor deprecated

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

Deprecated: Use InspectPipelineRequest.ProtoReflect.Descriptor instead.

func (*InspectPipelineRequest) GetDetails

func (x *InspectPipelineRequest) GetDetails() bool

func (*InspectPipelineRequest) GetPipeline

func (x *InspectPipelineRequest) GetPipeline() *Pipeline

func (*InspectPipelineRequest) MarshalLogObject

func (x *InspectPipelineRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*InspectPipelineRequest) ProtoMessage

func (*InspectPipelineRequest) ProtoMessage()

func (*InspectPipelineRequest) ProtoReflect added in v2.7.0

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

func (*InspectPipelineRequest) Reset

func (x *InspectPipelineRequest) Reset()

func (*InspectPipelineRequest) String

func (x *InspectPipelineRequest) String() string

func (*InspectPipelineRequest) Validate added in v2.8.0

func (m *InspectPipelineRequest) Validate() error

Validate checks the field values on InspectPipelineRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InspectPipelineRequest) ValidateAll added in v2.8.0

func (m *InspectPipelineRequest) ValidateAll() error

ValidateAll checks the field values on InspectPipelineRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InspectPipelineRequestMultiError, or nil if none found.

type InspectPipelineRequestMultiError added in v2.8.0

type InspectPipelineRequestMultiError []error

InspectPipelineRequestMultiError is an error wrapping multiple validation errors returned by InspectPipelineRequest.ValidateAll() if the designated constraints aren't met.

func (InspectPipelineRequestMultiError) AllErrors added in v2.8.0

func (m InspectPipelineRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InspectPipelineRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type InspectPipelineRequestValidationError added in v2.8.0

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

InspectPipelineRequestValidationError is the validation error returned by InspectPipelineRequest.Validate if the designated constraints aren't met.

func (InspectPipelineRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (InspectPipelineRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (InspectPipelineRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (InspectPipelineRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (InspectPipelineRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (InspectPipelineRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type InspectSecretRequest

type InspectSecretRequest struct {
	Secret *Secret `protobuf:"bytes,1,opt,name=secret,proto3" json:"secret,omitempty"`
	// contains filtered or unexported fields
}

func (*InspectSecretRequest) Descriptor deprecated

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

Deprecated: Use InspectSecretRequest.ProtoReflect.Descriptor instead.

func (*InspectSecretRequest) GetSecret

func (x *InspectSecretRequest) GetSecret() *Secret

func (*InspectSecretRequest) MarshalLogObject

func (x *InspectSecretRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*InspectSecretRequest) ProtoMessage

func (*InspectSecretRequest) ProtoMessage()

func (*InspectSecretRequest) ProtoReflect added in v2.7.0

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

func (*InspectSecretRequest) Reset

func (x *InspectSecretRequest) Reset()

func (*InspectSecretRequest) String

func (x *InspectSecretRequest) String() string

func (*InspectSecretRequest) Validate added in v2.8.0

func (m *InspectSecretRequest) Validate() error

Validate checks the field values on InspectSecretRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InspectSecretRequest) ValidateAll added in v2.8.0

func (m *InspectSecretRequest) ValidateAll() error

ValidateAll checks the field values on InspectSecretRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InspectSecretRequestMultiError, or nil if none found.

type InspectSecretRequestMultiError added in v2.8.0

type InspectSecretRequestMultiError []error

InspectSecretRequestMultiError is an error wrapping multiple validation errors returned by InspectSecretRequest.ValidateAll() if the designated constraints aren't met.

func (InspectSecretRequestMultiError) AllErrors added in v2.8.0

func (m InspectSecretRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InspectSecretRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type InspectSecretRequestValidationError added in v2.8.0

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

InspectSecretRequestValidationError is the validation error returned by InspectSecretRequest.Validate if the designated constraints aren't met.

func (InspectSecretRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (InspectSecretRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (InspectSecretRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (InspectSecretRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (InspectSecretRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (InspectSecretRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type Job

type Job struct {
	Pipeline *Pipeline `protobuf:"bytes,1,opt,name=pipeline,proto3" json:"pipeline,omitempty"`
	Id       string    `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*Job) Descriptor deprecated

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

Deprecated: Use Job.ProtoReflect.Descriptor instead.

func (*Job) GetId added in v2.7.0

func (x *Job) GetId() string

func (*Job) GetPipeline

func (x *Job) GetPipeline() *Pipeline

func (*Job) MarshalLogObject

func (x *Job) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Job) ProtoMessage

func (*Job) ProtoMessage()

func (*Job) ProtoReflect added in v2.7.0

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

func (*Job) Reset

func (x *Job) Reset()

func (*Job) String

func (j *Job) String() string

func (*Job) Validate added in v2.8.0

func (m *Job) Validate() error

Validate checks the field values on Job with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Job) ValidateAll added in v2.8.0

func (m *Job) ValidateAll() error

ValidateAll checks the field values on Job with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in JobMultiError, or nil if none found.

type JobInfo

type JobInfo struct {
	Job             *Job        `protobuf:"bytes,1,opt,name=job,proto3" json:"job,omitempty"`
	PipelineVersion uint64      `protobuf:"varint,2,opt,name=pipeline_version,json=pipelineVersion,proto3" json:"pipeline_version,omitempty"`
	OutputCommit    *pfs.Commit `protobuf:"bytes,3,opt,name=output_commit,json=outputCommit,proto3" json:"output_commit,omitempty"`
	// Job restart count (e.g. due to datum failure)
	Restart uint64 `protobuf:"varint,4,opt,name=restart,proto3" json:"restart,omitempty"`
	// Counts of how many times we processed or skipped a datum
	DataProcessed int64 `protobuf:"varint,5,opt,name=data_processed,json=dataProcessed,proto3" json:"data_processed,omitempty"`
	DataSkipped   int64 `protobuf:"varint,6,opt,name=data_skipped,json=dataSkipped,proto3" json:"data_skipped,omitempty"`
	DataTotal     int64 `protobuf:"varint,7,opt,name=data_total,json=dataTotal,proto3" json:"data_total,omitempty"`
	DataFailed    int64 `protobuf:"varint,8,opt,name=data_failed,json=dataFailed,proto3" json:"data_failed,omitempty"`
	DataRecovered int64 `protobuf:"varint,9,opt,name=data_recovered,json=dataRecovered,proto3" json:"data_recovered,omitempty"`
	// Download/process/upload time and download/upload bytes
	Stats     *ProcessStats          `protobuf:"bytes,10,opt,name=stats,proto3" json:"stats,omitempty"`
	State     JobState               `protobuf:"varint,11,opt,name=state,proto3,enum=pps_v2.JobState" json:"state,omitempty"`
	Reason    string                 `protobuf:"bytes,12,opt,name=reason,proto3" json:"reason,omitempty"` // reason explains why the job is in the current state
	Created   *timestamppb.Timestamp `protobuf:"bytes,13,opt,name=created,proto3" json:"created,omitempty"`
	Started   *timestamppb.Timestamp `protobuf:"bytes,14,opt,name=started,proto3" json:"started,omitempty"`
	Finished  *timestamppb.Timestamp `protobuf:"bytes,15,opt,name=finished,proto3" json:"finished,omitempty"`
	Details   *JobInfo_Details       `protobuf:"bytes,16,opt,name=details,proto3" json:"details,omitempty"`
	AuthToken string                 `protobuf:"bytes,17,opt,name=auth_token,json=authToken,proto3" json:"auth_token,omitempty"`
	// contains filtered or unexported fields
}

JobInfo is the data stored in the database regarding a given job. The 'details' field contains more information about the job which is expensive to fetch, requiring querying workers or loading the pipeline spec from object storage.

func (*JobInfo) Descriptor deprecated

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

Deprecated: Use JobInfo.ProtoReflect.Descriptor instead.

func (*JobInfo) GetAuthToken added in v2.7.0

func (x *JobInfo) GetAuthToken() string

func (*JobInfo) GetCreated

func (x *JobInfo) GetCreated() *timestamppb.Timestamp

func (*JobInfo) GetDataFailed

func (x *JobInfo) GetDataFailed() int64

func (*JobInfo) GetDataProcessed

func (x *JobInfo) GetDataProcessed() int64

func (*JobInfo) GetDataRecovered

func (x *JobInfo) GetDataRecovered() int64

func (*JobInfo) GetDataSkipped

func (x *JobInfo) GetDataSkipped() int64

func (*JobInfo) GetDataTotal

func (x *JobInfo) GetDataTotal() int64

func (*JobInfo) GetDetails

func (x *JobInfo) GetDetails() *JobInfo_Details

func (*JobInfo) GetFinished

func (x *JobInfo) GetFinished() *timestamppb.Timestamp

func (*JobInfo) GetJob

func (x *JobInfo) GetJob() *Job

func (*JobInfo) GetOutputCommit

func (x *JobInfo) GetOutputCommit() *pfs.Commit

func (*JobInfo) GetPipelineVersion

func (x *JobInfo) GetPipelineVersion() uint64

func (*JobInfo) GetReason

func (x *JobInfo) GetReason() string

func (*JobInfo) GetRestart

func (x *JobInfo) GetRestart() uint64

func (*JobInfo) GetStarted

func (x *JobInfo) GetStarted() *timestamppb.Timestamp

func (*JobInfo) GetState

func (x *JobInfo) GetState() JobState

func (*JobInfo) GetStats

func (x *JobInfo) GetStats() *ProcessStats

func (*JobInfo) MarshalLogObject

func (x *JobInfo) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*JobInfo) ProtoMessage

func (*JobInfo) ProtoMessage()

func (*JobInfo) ProtoReflect added in v2.7.0

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

func (*JobInfo) Reset

func (x *JobInfo) Reset()

func (*JobInfo) String

func (x *JobInfo) String() string

func (*JobInfo) Validate added in v2.8.0

func (m *JobInfo) Validate() error

Validate checks the field values on JobInfo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*JobInfo) ValidateAll added in v2.8.0

func (m *JobInfo) ValidateAll() error

ValidateAll checks the field values on JobInfo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in JobInfoMultiError, or nil if none found.

type JobInfoMultiError added in v2.8.0

type JobInfoMultiError []error

JobInfoMultiError is an error wrapping multiple validation errors returned by JobInfo.ValidateAll() if the designated constraints aren't met.

func (JobInfoMultiError) AllErrors added in v2.8.0

func (m JobInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (JobInfoMultiError) Error added in v2.8.0

func (m JobInfoMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type JobInfoValidationError added in v2.8.0

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

JobInfoValidationError is the validation error returned by JobInfo.Validate if the designated constraints aren't met.

func (JobInfoValidationError) Cause added in v2.8.0

func (e JobInfoValidationError) Cause() error

Cause function returns cause value.

func (JobInfoValidationError) Error added in v2.8.0

func (e JobInfoValidationError) Error() string

Error satisfies the builtin error interface

func (JobInfoValidationError) ErrorName added in v2.8.0

func (e JobInfoValidationError) ErrorName() string

ErrorName returns error name.

func (JobInfoValidationError) Field added in v2.8.0

func (e JobInfoValidationError) Field() string

Field function returns field value.

func (JobInfoValidationError) Key added in v2.8.0

func (e JobInfoValidationError) Key() bool

Key function returns key value.

func (JobInfoValidationError) Reason added in v2.8.0

func (e JobInfoValidationError) Reason() string

Reason function returns reason value.

type JobInfo_Details

type JobInfo_Details struct {
	Transform               *Transform           `protobuf:"bytes,1,opt,name=transform,proto3" json:"transform,omitempty"`
	ParallelismSpec         *ParallelismSpec     `protobuf:"bytes,2,opt,name=parallelism_spec,json=parallelismSpec,proto3" json:"parallelism_spec,omitempty"`
	Egress                  *Egress              `protobuf:"bytes,3,opt,name=egress,proto3" json:"egress,omitempty"`
	Service                 *Service             `protobuf:"bytes,4,opt,name=service,proto3" json:"service,omitempty"`
	Spout                   *Spout               `protobuf:"bytes,5,opt,name=spout,proto3" json:"spout,omitempty"`
	WorkerStatus            []*WorkerStatus      `protobuf:"bytes,6,rep,name=worker_status,json=workerStatus,proto3" json:"worker_status,omitempty"`
	ResourceRequests        *ResourceSpec        `protobuf:"bytes,7,opt,name=resource_requests,json=resourceRequests,proto3" json:"resource_requests,omitempty"`
	ResourceLimits          *ResourceSpec        `protobuf:"bytes,8,opt,name=resource_limits,json=resourceLimits,proto3" json:"resource_limits,omitempty"`
	SidecarResourceLimits   *ResourceSpec        `` /* 126-byte string literal not displayed */
	Input                   *Input               `protobuf:"bytes,10,opt,name=input,proto3" json:"input,omitempty"`
	Salt                    string               `protobuf:"bytes,11,opt,name=salt,proto3" json:"salt,omitempty"`
	DatumSetSpec            *DatumSetSpec        `protobuf:"bytes,12,opt,name=datum_set_spec,json=datumSetSpec,proto3" json:"datum_set_spec,omitempty"`
	DatumTimeout            *durationpb.Duration `protobuf:"bytes,13,opt,name=datum_timeout,json=datumTimeout,proto3" json:"datum_timeout,omitempty"`
	JobTimeout              *durationpb.Duration `protobuf:"bytes,14,opt,name=job_timeout,json=jobTimeout,proto3" json:"job_timeout,omitempty"`
	DatumTries              int64                `protobuf:"varint,15,opt,name=datum_tries,json=datumTries,proto3" json:"datum_tries,omitempty"`
	SchedulingSpec          *SchedulingSpec      `protobuf:"bytes,16,opt,name=scheduling_spec,json=schedulingSpec,proto3" json:"scheduling_spec,omitempty"`
	PodSpec                 string               `protobuf:"bytes,17,opt,name=pod_spec,json=podSpec,proto3" json:"pod_spec,omitempty"`
	PodPatch                string               `protobuf:"bytes,18,opt,name=pod_patch,json=podPatch,proto3" json:"pod_patch,omitempty"`
	SidecarResourceRequests *ResourceSpec        `` /* 133-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*JobInfo_Details) Descriptor deprecated

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

Deprecated: Use JobInfo_Details.ProtoReflect.Descriptor instead.

func (*JobInfo_Details) GetDatumSetSpec

func (x *JobInfo_Details) GetDatumSetSpec() *DatumSetSpec

func (*JobInfo_Details) GetDatumTimeout

func (x *JobInfo_Details) GetDatumTimeout() *durationpb.Duration

func (*JobInfo_Details) GetDatumTries

func (x *JobInfo_Details) GetDatumTries() int64

func (*JobInfo_Details) GetEgress

func (x *JobInfo_Details) GetEgress() *Egress

func (*JobInfo_Details) GetInput

func (x *JobInfo_Details) GetInput() *Input

func (*JobInfo_Details) GetJobTimeout

func (x *JobInfo_Details) GetJobTimeout() *durationpb.Duration

func (*JobInfo_Details) GetParallelismSpec

func (x *JobInfo_Details) GetParallelismSpec() *ParallelismSpec

func (*JobInfo_Details) GetPodPatch

func (x *JobInfo_Details) GetPodPatch() string

func (*JobInfo_Details) GetPodSpec

func (x *JobInfo_Details) GetPodSpec() string

func (*JobInfo_Details) GetResourceLimits

func (x *JobInfo_Details) GetResourceLimits() *ResourceSpec

func (*JobInfo_Details) GetResourceRequests

func (x *JobInfo_Details) GetResourceRequests() *ResourceSpec

func (*JobInfo_Details) GetSalt

func (x *JobInfo_Details) GetSalt() string

func (*JobInfo_Details) GetSchedulingSpec

func (x *JobInfo_Details) GetSchedulingSpec() *SchedulingSpec

func (*JobInfo_Details) GetService

func (x *JobInfo_Details) GetService() *Service

func (*JobInfo_Details) GetSidecarResourceLimits

func (x *JobInfo_Details) GetSidecarResourceLimits() *ResourceSpec

func (*JobInfo_Details) GetSidecarResourceRequests

func (x *JobInfo_Details) GetSidecarResourceRequests() *ResourceSpec

func (*JobInfo_Details) GetSpout

func (x *JobInfo_Details) GetSpout() *Spout

func (*JobInfo_Details) GetTransform

func (x *JobInfo_Details) GetTransform() *Transform

func (*JobInfo_Details) GetWorkerStatus

func (x *JobInfo_Details) GetWorkerStatus() []*WorkerStatus

func (*JobInfo_Details) MarshalLogObject

func (x *JobInfo_Details) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*JobInfo_Details) ProtoMessage

func (*JobInfo_Details) ProtoMessage()

func (*JobInfo_Details) ProtoReflect added in v2.7.0

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

func (*JobInfo_Details) Reset

func (x *JobInfo_Details) Reset()

func (*JobInfo_Details) String

func (x *JobInfo_Details) String() string

func (*JobInfo_Details) Validate added in v2.8.0

func (m *JobInfo_Details) Validate() error

Validate checks the field values on JobInfo_Details with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*JobInfo_Details) ValidateAll added in v2.8.0

func (m *JobInfo_Details) ValidateAll() error

ValidateAll checks the field values on JobInfo_Details with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in JobInfo_DetailsMultiError, or nil if none found.

type JobInfo_DetailsMultiError added in v2.8.0

type JobInfo_DetailsMultiError []error

JobInfo_DetailsMultiError is an error wrapping multiple validation errors returned by JobInfo_Details.ValidateAll() if the designated constraints aren't met.

func (JobInfo_DetailsMultiError) AllErrors added in v2.8.0

func (m JobInfo_DetailsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (JobInfo_DetailsMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type JobInfo_DetailsValidationError added in v2.8.0

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

JobInfo_DetailsValidationError is the validation error returned by JobInfo_Details.Validate if the designated constraints aren't met.

func (JobInfo_DetailsValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (JobInfo_DetailsValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (JobInfo_DetailsValidationError) ErrorName added in v2.8.0

func (e JobInfo_DetailsValidationError) ErrorName() string

ErrorName returns error name.

func (JobInfo_DetailsValidationError) Field added in v2.8.0

Field function returns field value.

func (JobInfo_DetailsValidationError) Key added in v2.8.0

Key function returns key value.

func (JobInfo_DetailsValidationError) Reason added in v2.8.0

Reason function returns reason value.

type JobInput

type JobInput struct {
	Name   string      `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Commit *pfs.Commit `protobuf:"bytes,2,opt,name=commit,proto3" json:"commit,omitempty"`
	Glob   string      `protobuf:"bytes,3,opt,name=glob,proto3" json:"glob,omitempty"`
	Lazy   bool        `protobuf:"varint,4,opt,name=lazy,proto3" json:"lazy,omitempty"`
	// contains filtered or unexported fields
}

func (*JobInput) Descriptor deprecated

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

Deprecated: Use JobInput.ProtoReflect.Descriptor instead.

func (*JobInput) GetCommit

func (x *JobInput) GetCommit() *pfs.Commit

func (*JobInput) GetGlob

func (x *JobInput) GetGlob() string

func (*JobInput) GetLazy

func (x *JobInput) GetLazy() bool

func (*JobInput) GetName

func (x *JobInput) GetName() string

func (*JobInput) MarshalLogObject

func (x *JobInput) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*JobInput) ProtoMessage

func (*JobInput) ProtoMessage()

func (*JobInput) ProtoReflect added in v2.7.0

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

func (*JobInput) Reset

func (x *JobInput) Reset()

func (*JobInput) String

func (x *JobInput) String() string

func (*JobInput) Validate added in v2.8.0

func (m *JobInput) Validate() error

Validate checks the field values on JobInput with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*JobInput) ValidateAll added in v2.8.0

func (m *JobInput) ValidateAll() error

ValidateAll checks the field values on JobInput with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in JobInputMultiError, or nil if none found.

type JobInputMultiError added in v2.8.0

type JobInputMultiError []error

JobInputMultiError is an error wrapping multiple validation errors returned by JobInput.ValidateAll() if the designated constraints aren't met.

func (JobInputMultiError) AllErrors added in v2.8.0

func (m JobInputMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (JobInputMultiError) Error added in v2.8.0

func (m JobInputMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type JobInputValidationError added in v2.8.0

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

JobInputValidationError is the validation error returned by JobInput.Validate if the designated constraints aren't met.

func (JobInputValidationError) Cause added in v2.8.0

func (e JobInputValidationError) Cause() error

Cause function returns cause value.

func (JobInputValidationError) Error added in v2.8.0

func (e JobInputValidationError) Error() string

Error satisfies the builtin error interface

func (JobInputValidationError) ErrorName added in v2.8.0

func (e JobInputValidationError) ErrorName() string

ErrorName returns error name.

func (JobInputValidationError) Field added in v2.8.0

func (e JobInputValidationError) Field() string

Field function returns field value.

func (JobInputValidationError) Key added in v2.8.0

func (e JobInputValidationError) Key() bool

Key function returns key value.

func (JobInputValidationError) Reason added in v2.8.0

func (e JobInputValidationError) Reason() string

Reason function returns reason value.

type JobMultiError added in v2.8.0

type JobMultiError []error

JobMultiError is an error wrapping multiple validation errors returned by Job.ValidateAll() if the designated constraints aren't met.

func (JobMultiError) AllErrors added in v2.8.0

func (m JobMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (JobMultiError) Error added in v2.8.0

func (m JobMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type JobSet

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

func (*JobSet) Descriptor deprecated

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

Deprecated: Use JobSet.ProtoReflect.Descriptor instead.

func (*JobSet) GetId added in v2.7.0

func (x *JobSet) GetId() string

func (*JobSet) MarshalLogObject

func (x *JobSet) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*JobSet) ProtoMessage

func (*JobSet) ProtoMessage()

func (*JobSet) ProtoReflect added in v2.7.0

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

func (*JobSet) Reset

func (x *JobSet) Reset()

func (*JobSet) String

func (x *JobSet) String() string

func (*JobSet) Validate added in v2.8.0

func (m *JobSet) Validate() error

Validate checks the field values on JobSet with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*JobSet) ValidateAll added in v2.8.0

func (m *JobSet) ValidateAll() error

ValidateAll checks the field values on JobSet with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in JobSetMultiError, or nil if none found.

type JobSetInfo

type JobSetInfo struct {
	JobSet *JobSet    `protobuf:"bytes,1,opt,name=job_set,json=jobSet,proto3" json:"job_set,omitempty"`
	Jobs   []*JobInfo `protobuf:"bytes,2,rep,name=jobs,proto3" json:"jobs,omitempty"`
	// contains filtered or unexported fields
}

func (*JobSetInfo) Descriptor deprecated

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

Deprecated: Use JobSetInfo.ProtoReflect.Descriptor instead.

func (*JobSetInfo) GetJobSet

func (x *JobSetInfo) GetJobSet() *JobSet

func (*JobSetInfo) GetJobs

func (x *JobSetInfo) GetJobs() []*JobInfo

func (*JobSetInfo) MarshalLogObject

func (x *JobSetInfo) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*JobSetInfo) ProtoMessage

func (*JobSetInfo) ProtoMessage()

func (*JobSetInfo) ProtoReflect added in v2.7.0

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

func (*JobSetInfo) Reset

func (x *JobSetInfo) Reset()

func (*JobSetInfo) String

func (x *JobSetInfo) String() string

func (*JobSetInfo) Validate added in v2.8.0

func (m *JobSetInfo) Validate() error

Validate checks the field values on JobSetInfo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*JobSetInfo) ValidateAll added in v2.8.0

func (m *JobSetInfo) ValidateAll() error

ValidateAll checks the field values on JobSetInfo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in JobSetInfoMultiError, or nil if none found.

type JobSetInfoMultiError added in v2.8.0

type JobSetInfoMultiError []error

JobSetInfoMultiError is an error wrapping multiple validation errors returned by JobSetInfo.ValidateAll() if the designated constraints aren't met.

func (JobSetInfoMultiError) AllErrors added in v2.8.0

func (m JobSetInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (JobSetInfoMultiError) Error added in v2.8.0

func (m JobSetInfoMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type JobSetInfoValidationError added in v2.8.0

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

JobSetInfoValidationError is the validation error returned by JobSetInfo.Validate if the designated constraints aren't met.

func (JobSetInfoValidationError) Cause added in v2.8.0

func (e JobSetInfoValidationError) Cause() error

Cause function returns cause value.

func (JobSetInfoValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (JobSetInfoValidationError) ErrorName added in v2.8.0

func (e JobSetInfoValidationError) ErrorName() string

ErrorName returns error name.

func (JobSetInfoValidationError) Field added in v2.8.0

Field function returns field value.

func (JobSetInfoValidationError) Key added in v2.8.0

Key function returns key value.

func (JobSetInfoValidationError) Reason added in v2.8.0

func (e JobSetInfoValidationError) Reason() string

Reason function returns reason value.

type JobSetMultiError added in v2.8.0

type JobSetMultiError []error

JobSetMultiError is an error wrapping multiple validation errors returned by JobSet.ValidateAll() if the designated constraints aren't met.

func (JobSetMultiError) AllErrors added in v2.8.0

func (m JobSetMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (JobSetMultiError) Error added in v2.8.0

func (m JobSetMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type JobSetValidationError added in v2.8.0

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

JobSetValidationError is the validation error returned by JobSet.Validate if the designated constraints aren't met.

func (JobSetValidationError) Cause added in v2.8.0

func (e JobSetValidationError) Cause() error

Cause function returns cause value.

func (JobSetValidationError) Error added in v2.8.0

func (e JobSetValidationError) Error() string

Error satisfies the builtin error interface

func (JobSetValidationError) ErrorName added in v2.8.0

func (e JobSetValidationError) ErrorName() string

ErrorName returns error name.

func (JobSetValidationError) Field added in v2.8.0

func (e JobSetValidationError) Field() string

Field function returns field value.

func (JobSetValidationError) Key added in v2.8.0

func (e JobSetValidationError) Key() bool

Key function returns key value.

func (JobSetValidationError) Reason added in v2.8.0

func (e JobSetValidationError) Reason() string

Reason function returns reason value.

type JobState

type JobState int32
const (
	JobState_JOB_STATE_UNKNOWN JobState = 0
	JobState_JOB_CREATED       JobState = 1
	JobState_JOB_STARTING      JobState = 2
	JobState_JOB_RUNNING       JobState = 3
	JobState_JOB_FAILURE       JobState = 4
	JobState_JOB_SUCCESS       JobState = 5
	JobState_JOB_KILLED        JobState = 6
	JobState_JOB_EGRESSING     JobState = 7
	JobState_JOB_FINISHING     JobState = 8
	JobState_JOB_UNRUNNABLE    JobState = 9
)

func JobStateFromName

func JobStateFromName(name string) (JobState, error)

JobStateFromName attempts to interpret a string as a JobState, accepting either the enum names or the pretty printed state names

func (JobState) Descriptor added in v2.7.0

func (JobState) Descriptor() protoreflect.EnumDescriptor

func (JobState) Enum added in v2.7.0

func (x JobState) Enum() *JobState

func (JobState) EnumDescriptor deprecated

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

Deprecated: Use JobState.Descriptor instead.

func (JobState) Number added in v2.7.0

func (x JobState) Number() protoreflect.EnumNumber

func (JobState) String

func (x JobState) String() string

func (JobState) Type added in v2.7.0

type JobValidationError added in v2.8.0

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

JobValidationError is the validation error returned by Job.Validate if the designated constraints aren't met.

func (JobValidationError) Cause added in v2.8.0

func (e JobValidationError) Cause() error

Cause function returns cause value.

func (JobValidationError) Error added in v2.8.0

func (e JobValidationError) Error() string

Error satisfies the builtin error interface

func (JobValidationError) ErrorName added in v2.8.0

func (e JobValidationError) ErrorName() string

ErrorName returns error name.

func (JobValidationError) Field added in v2.8.0

func (e JobValidationError) Field() string

Field function returns field value.

func (JobValidationError) Key added in v2.8.0

func (e JobValidationError) Key() bool

Key function returns key value.

func (JobValidationError) Reason added in v2.8.0

func (e JobValidationError) Reason() string

Reason function returns reason value.

type ListDatumRequest

type ListDatumRequest struct {

	// Job and Input are two different ways to specify the datums you want.
	// Only one can be set.
	// Job is the job to list datums from.
	Job *Job `protobuf:"bytes,1,opt,name=job,proto3" json:"job,omitempty"`
	// Input is the input to list datums from.
	// The datums listed are the ones that would be run if a pipeline was created
	// with the provided input.
	Input  *Input                   `protobuf:"bytes,2,opt,name=input,proto3" json:"input,omitempty"`
	Filter *ListDatumRequest_Filter `protobuf:"bytes,3,opt,name=filter,proto3" json:"filter,omitempty"`
	// datum id to start from. we do not include this datum in the response
	PaginationMarker string `protobuf:"bytes,4,opt,name=paginationMarker,proto3" json:"paginationMarker,omitempty"`
	// Number of datums to return
	Number int64 `protobuf:"varint,5,opt,name=number,proto3" json:"number,omitempty"`
	// If true, return datums in reverse order
	Reverse bool `protobuf:"varint,6,opt,name=reverse,proto3" json:"reverse,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDatumRequest) Descriptor deprecated

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

Deprecated: Use ListDatumRequest.ProtoReflect.Descriptor instead.

func (*ListDatumRequest) GetFilter

func (x *ListDatumRequest) GetFilter() *ListDatumRequest_Filter

func (*ListDatumRequest) GetInput

func (x *ListDatumRequest) GetInput() *Input

func (*ListDatumRequest) GetJob

func (x *ListDatumRequest) GetJob() *Job

func (*ListDatumRequest) GetNumber

func (x *ListDatumRequest) GetNumber() int64

func (*ListDatumRequest) GetPaginationMarker

func (x *ListDatumRequest) GetPaginationMarker() string

func (*ListDatumRequest) GetReverse

func (x *ListDatumRequest) GetReverse() bool

func (*ListDatumRequest) MarshalLogObject

func (x *ListDatumRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ListDatumRequest) ProtoMessage

func (*ListDatumRequest) ProtoMessage()

func (*ListDatumRequest) ProtoReflect added in v2.7.0

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

func (*ListDatumRequest) Reset

func (x *ListDatumRequest) Reset()

func (*ListDatumRequest) String

func (x *ListDatumRequest) String() string

func (*ListDatumRequest) Validate added in v2.8.0

func (m *ListDatumRequest) Validate() error

Validate checks the field values on ListDatumRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListDatumRequest) ValidateAll added in v2.8.0

func (m *ListDatumRequest) ValidateAll() error

ValidateAll checks the field values on ListDatumRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListDatumRequestMultiError, or nil if none found.

type ListDatumRequestMultiError added in v2.8.0

type ListDatumRequestMultiError []error

ListDatumRequestMultiError is an error wrapping multiple validation errors returned by ListDatumRequest.ValidateAll() if the designated constraints aren't met.

func (ListDatumRequestMultiError) AllErrors added in v2.8.0

func (m ListDatumRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListDatumRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ListDatumRequestValidationError added in v2.8.0

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

ListDatumRequestValidationError is the validation error returned by ListDatumRequest.Validate if the designated constraints aren't met.

func (ListDatumRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ListDatumRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ListDatumRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ListDatumRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ListDatumRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ListDatumRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ListDatumRequest_Filter

type ListDatumRequest_Filter struct {
	State []DatumState `protobuf:"varint,1,rep,packed,name=state,proto3,enum=pps_v2.DatumState" json:"state,omitempty"` // Must match one of the given states.
	// contains filtered or unexported fields
}

Filter restricts returned DatumInfo messages to those which match all of the filtered attributes.

func (*ListDatumRequest_Filter) Allow

func (r *ListDatumRequest_Filter) Allow(item *DatumInfo) bool

Allow returns true if the filter allows the item. Currently, this means if the item’s state matches one of the states given in the filter.

func (*ListDatumRequest_Filter) Descriptor deprecated

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

Deprecated: Use ListDatumRequest_Filter.ProtoReflect.Descriptor instead.

func (*ListDatumRequest_Filter) GetState

func (x *ListDatumRequest_Filter) GetState() []DatumState

func (*ListDatumRequest_Filter) MarshalLogObject

func (x *ListDatumRequest_Filter) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ListDatumRequest_Filter) ProtoMessage

func (*ListDatumRequest_Filter) ProtoMessage()

func (*ListDatumRequest_Filter) ProtoReflect added in v2.7.0

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

func (*ListDatumRequest_Filter) Reset

func (x *ListDatumRequest_Filter) Reset()

func (*ListDatumRequest_Filter) String

func (x *ListDatumRequest_Filter) String() string

func (*ListDatumRequest_Filter) Validate added in v2.8.0

func (m *ListDatumRequest_Filter) Validate() error

Validate checks the field values on ListDatumRequest_Filter with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListDatumRequest_Filter) ValidateAll added in v2.8.0

func (m *ListDatumRequest_Filter) ValidateAll() error

ValidateAll checks the field values on ListDatumRequest_Filter with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListDatumRequest_FilterMultiError, or nil if none found.

type ListDatumRequest_FilterMultiError added in v2.8.0

type ListDatumRequest_FilterMultiError []error

ListDatumRequest_FilterMultiError is an error wrapping multiple validation errors returned by ListDatumRequest_Filter.ValidateAll() if the designated constraints aren't met.

func (ListDatumRequest_FilterMultiError) AllErrors added in v2.8.0

func (m ListDatumRequest_FilterMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListDatumRequest_FilterMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ListDatumRequest_FilterValidationError added in v2.8.0

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

ListDatumRequest_FilterValidationError is the validation error returned by ListDatumRequest_Filter.Validate if the designated constraints aren't met.

func (ListDatumRequest_FilterValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ListDatumRequest_FilterValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ListDatumRequest_FilterValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ListDatumRequest_FilterValidationError) Field added in v2.8.0

Field function returns field value.

func (ListDatumRequest_FilterValidationError) Key added in v2.8.0

Key function returns key value.

func (ListDatumRequest_FilterValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ListJobRequest

type ListJobRequest struct {

	// A list of projects to filter jobs on, nil means don't filter.
	Projects    []*pfs.Project `protobuf:"bytes,7,rep,name=projects,proto3" json:"projects,omitempty"`
	Pipeline    *Pipeline      `protobuf:"bytes,1,opt,name=pipeline,proto3" json:"pipeline,omitempty"`                          // nil means all pipelines
	InputCommit []*pfs.Commit  `protobuf:"bytes,2,rep,name=input_commit,json=inputCommit,proto3" json:"input_commit,omitempty"` // nil means all inputs
	// History indicates return jobs from historical versions of pipelines
	// semantics are:
	// 0: Return jobs from the current version of the pipeline or pipelines.
	// 1: Return the above and jobs from the next most recent version
	// 2: etc.
	// -1: Return jobs from all historical versions.
	History int64 `protobuf:"varint,4,opt,name=history,proto3" json:"history,omitempty"`
	// Details indicates whether the result should include all pipeline details in
	// each JobInfo, or limited information including name and status, but
	// excluding information in the pipeline spec. Leaving this "false" can make
	// the call significantly faster in clusters with a large number of pipelines
	// and jobs.
	// Note that if 'input_commit' is set, this field is coerced to "true"
	Details bool `protobuf:"varint,5,opt,name=details,proto3" json:"details,omitempty"`
	// A jq program string for additional result filtering
	JqFilter string `protobuf:"bytes,6,opt,name=jqFilter,proto3" json:"jqFilter,omitempty"`
	// timestamp that is pagination marker
	PaginationMarker *timestamppb.Timestamp `protobuf:"bytes,8,opt,name=paginationMarker,proto3" json:"paginationMarker,omitempty"`
	// number of results to return
	Number int64 `protobuf:"varint,9,opt,name=number,proto3" json:"number,omitempty"`
	// flag to indicated if results should be returned in reverse order
	Reverse bool `protobuf:"varint,10,opt,name=reverse,proto3" json:"reverse,omitempty"`
	// contains filtered or unexported fields
}

func (*ListJobRequest) Descriptor deprecated

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

Deprecated: Use ListJobRequest.ProtoReflect.Descriptor instead.

func (*ListJobRequest) GetDetails

func (x *ListJobRequest) GetDetails() bool

func (*ListJobRequest) GetHistory

func (x *ListJobRequest) GetHistory() int64

func (*ListJobRequest) GetInputCommit

func (x *ListJobRequest) GetInputCommit() []*pfs.Commit

func (*ListJobRequest) GetJqFilter

func (x *ListJobRequest) GetJqFilter() string

func (*ListJobRequest) GetNumber

func (x *ListJobRequest) GetNumber() int64

func (*ListJobRequest) GetPaginationMarker

func (x *ListJobRequest) GetPaginationMarker() *timestamppb.Timestamp

func (*ListJobRequest) GetPipeline

func (x *ListJobRequest) GetPipeline() *Pipeline

func (*ListJobRequest) GetProjects

func (x *ListJobRequest) GetProjects() []*pfs.Project

func (*ListJobRequest) GetReverse

func (x *ListJobRequest) GetReverse() bool

func (*ListJobRequest) MarshalLogObject

func (x *ListJobRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ListJobRequest) ProtoMessage

func (*ListJobRequest) ProtoMessage()

func (*ListJobRequest) ProtoReflect added in v2.7.0

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

func (*ListJobRequest) Reset

func (x *ListJobRequest) Reset()

func (*ListJobRequest) String

func (x *ListJobRequest) String() string

func (*ListJobRequest) Validate added in v2.8.0

func (m *ListJobRequest) Validate() error

Validate checks the field values on ListJobRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListJobRequest) ValidateAll added in v2.8.0

func (m *ListJobRequest) ValidateAll() error

ValidateAll checks the field values on ListJobRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListJobRequestMultiError, or nil if none found.

type ListJobRequestMultiError added in v2.8.0

type ListJobRequestMultiError []error

ListJobRequestMultiError is an error wrapping multiple validation errors returned by ListJobRequest.ValidateAll() if the designated constraints aren't met.

func (ListJobRequestMultiError) AllErrors added in v2.8.0

func (m ListJobRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListJobRequestMultiError) Error added in v2.8.0

func (m ListJobRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ListJobRequestValidationError added in v2.8.0

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

ListJobRequestValidationError is the validation error returned by ListJobRequest.Validate if the designated constraints aren't met.

func (ListJobRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ListJobRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ListJobRequestValidationError) ErrorName added in v2.8.0

func (e ListJobRequestValidationError) ErrorName() string

ErrorName returns error name.

func (ListJobRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ListJobRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ListJobRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ListJobSetRequest

type ListJobSetRequest struct {
	Details bool `protobuf:"varint,1,opt,name=details,proto3" json:"details,omitempty"`
	// A list of projects to filter jobs on, nil means don't filter.
	Projects []*pfs.Project `protobuf:"bytes,2,rep,name=projects,proto3" json:"projects,omitempty"`
	// we return job sets created before or after this time based on the reverse flag
	PaginationMarker *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=paginationMarker,proto3" json:"paginationMarker,omitempty"`
	// number of results to return
	Number int64 `protobuf:"varint,4,opt,name=number,proto3" json:"number,omitempty"`
	// if true, return results in reverse order
	Reverse bool `protobuf:"varint,5,opt,name=reverse,proto3" json:"reverse,omitempty"`
	// A jq program string for additional result filtering
	JqFilter string `protobuf:"bytes,6,opt,name=jqFilter,proto3" json:"jqFilter,omitempty"`
	// contains filtered or unexported fields
}

func (*ListJobSetRequest) Descriptor deprecated

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

Deprecated: Use ListJobSetRequest.ProtoReflect.Descriptor instead.

func (*ListJobSetRequest) GetDetails

func (x *ListJobSetRequest) GetDetails() bool

func (*ListJobSetRequest) GetJqFilter added in v2.7.0

func (x *ListJobSetRequest) GetJqFilter() string

func (*ListJobSetRequest) GetNumber

func (x *ListJobSetRequest) GetNumber() int64

func (*ListJobSetRequest) GetPaginationMarker

func (x *ListJobSetRequest) GetPaginationMarker() *timestamppb.Timestamp

func (*ListJobSetRequest) GetProjects

func (x *ListJobSetRequest) GetProjects() []*pfs.Project

func (*ListJobSetRequest) GetReverse

func (x *ListJobSetRequest) GetReverse() bool

func (*ListJobSetRequest) MarshalLogObject

func (x *ListJobSetRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ListJobSetRequest) ProtoMessage

func (*ListJobSetRequest) ProtoMessage()

func (*ListJobSetRequest) ProtoReflect added in v2.7.0

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

func (*ListJobSetRequest) Reset

func (x *ListJobSetRequest) Reset()

func (*ListJobSetRequest) String

func (x *ListJobSetRequest) String() string

func (*ListJobSetRequest) Validate added in v2.8.0

func (m *ListJobSetRequest) Validate() error

Validate checks the field values on ListJobSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListJobSetRequest) ValidateAll added in v2.8.0

func (m *ListJobSetRequest) ValidateAll() error

ValidateAll checks the field values on ListJobSetRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListJobSetRequestMultiError, or nil if none found.

type ListJobSetRequestMultiError added in v2.8.0

type ListJobSetRequestMultiError []error

ListJobSetRequestMultiError is an error wrapping multiple validation errors returned by ListJobSetRequest.ValidateAll() if the designated constraints aren't met.

func (ListJobSetRequestMultiError) AllErrors added in v2.8.0

func (m ListJobSetRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListJobSetRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ListJobSetRequestValidationError added in v2.8.0

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

ListJobSetRequestValidationError is the validation error returned by ListJobSetRequest.Validate if the designated constraints aren't met.

func (ListJobSetRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ListJobSetRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ListJobSetRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ListJobSetRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ListJobSetRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ListJobSetRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ListPipelineRequest

type ListPipelineRequest struct {

	// If non-nil, only return info about a single pipeline, this is redundant
	// with InspectPipeline unless history is non-zero.
	Pipeline *Pipeline `protobuf:"bytes,1,opt,name=pipeline,proto3" json:"pipeline,omitempty"`
	// History indicates how many historical versions you want returned. Its
	// semantics are:
	// 0: Return the current version of the pipeline or pipelines.
	// 1: Return the above and the next most recent version
	// 2: etc.
	// -1: Return all historical versions.
	History int64 `protobuf:"varint,2,opt,name=history,proto3" json:"history,omitempty"`
	// Deprecated: Details are always returned.
	//
	// Deprecated: Marked as deprecated in pps/pps.proto.
	Details bool `protobuf:"varint,3,opt,name=details,proto3" json:"details,omitempty"`
	// A jq program string for additional result filtering
	JqFilter string `protobuf:"bytes,4,opt,name=jqFilter,proto3" json:"jqFilter,omitempty"`
	// If non-nil, will return all the pipeline infos at this commit set
	CommitSet *pfs.CommitSet `protobuf:"bytes,5,opt,name=commit_set,json=commitSet,proto3" json:"commit_set,omitempty"`
	// Projects to filter on. Empty list means no filter, so return all pipelines.
	Projects []*pfs.Project `protobuf:"bytes,6,rep,name=projects,proto3" json:"projects,omitempty"`
	// contains filtered or unexported fields
}

func (*ListPipelineRequest) Descriptor deprecated

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

Deprecated: Use ListPipelineRequest.ProtoReflect.Descriptor instead.

func (*ListPipelineRequest) GetCommitSet

func (x *ListPipelineRequest) GetCommitSet() *pfs.CommitSet

func (*ListPipelineRequest) GetDetails deprecated

func (x *ListPipelineRequest) GetDetails() bool

Deprecated: Marked as deprecated in pps/pps.proto.

func (*ListPipelineRequest) GetHistory

func (x *ListPipelineRequest) GetHistory() int64

func (*ListPipelineRequest) GetJqFilter

func (x *ListPipelineRequest) GetJqFilter() string

func (*ListPipelineRequest) GetPipeline

func (x *ListPipelineRequest) GetPipeline() *Pipeline

func (*ListPipelineRequest) GetProjects

func (x *ListPipelineRequest) GetProjects() []*pfs.Project

func (*ListPipelineRequest) MarshalLogObject

func (x *ListPipelineRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ListPipelineRequest) ProtoMessage

func (*ListPipelineRequest) ProtoMessage()

func (*ListPipelineRequest) ProtoReflect added in v2.7.0

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

func (*ListPipelineRequest) Reset

func (x *ListPipelineRequest) Reset()

func (*ListPipelineRequest) String

func (x *ListPipelineRequest) String() string

func (*ListPipelineRequest) Validate added in v2.8.0

func (m *ListPipelineRequest) Validate() error

Validate checks the field values on ListPipelineRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListPipelineRequest) ValidateAll added in v2.8.0

func (m *ListPipelineRequest) ValidateAll() error

ValidateAll checks the field values on ListPipelineRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListPipelineRequestMultiError, or nil if none found.

type ListPipelineRequestMultiError added in v2.8.0

type ListPipelineRequestMultiError []error

ListPipelineRequestMultiError is an error wrapping multiple validation errors returned by ListPipelineRequest.ValidateAll() if the designated constraints aren't met.

func (ListPipelineRequestMultiError) AllErrors added in v2.8.0

func (m ListPipelineRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListPipelineRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ListPipelineRequestValidationError added in v2.8.0

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

ListPipelineRequestValidationError is the validation error returned by ListPipelineRequest.Validate if the designated constraints aren't met.

func (ListPipelineRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ListPipelineRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ListPipelineRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (ListPipelineRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (ListPipelineRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (ListPipelineRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type LogMessage

type LogMessage struct {

	// The job and pipeline for which a PFS file is being processed (if the job
	// is an orphan job, pipeline name and ID will be unset)
	ProjectName  string `protobuf:"bytes,10,opt,name=project_name,json=projectName,proto3" json:"project_name,omitempty"`
	PipelineName string `protobuf:"bytes,1,opt,name=pipeline_name,json=pipelineName,proto3" json:"pipeline_name,omitempty"`
	JobId        string `protobuf:"bytes,2,opt,name=job_id,json=jobId,proto3" json:"job_id,omitempty"`
	WorkerId     string `protobuf:"bytes,3,opt,name=worker_id,json=workerId,proto3" json:"worker_id,omitempty"`
	DatumId      string `protobuf:"bytes,4,opt,name=datum_id,json=datumId,proto3" json:"datum_id,omitempty"`
	Master       bool   `protobuf:"varint,5,opt,name=master,proto3" json:"master,omitempty"`
	// The PFS files being processed (one per pipeline/job input)
	Data []*InputFile `protobuf:"bytes,6,rep,name=data,proto3" json:"data,omitempty"`
	// User is true if log message comes from the users code.
	User bool `protobuf:"varint,7,opt,name=user,proto3" json:"user,omitempty"`
	// The message logged, and the time at which it was logged
	Ts      *timestamppb.Timestamp `protobuf:"bytes,8,opt,name=ts,proto3" json:"ts,omitempty"`
	Message string                 `protobuf:"bytes,9,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

LogMessage is a log line from a PPS worker, annotated with metadata indicating when and why the line was logged.

func (*LogMessage) Descriptor deprecated

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

Deprecated: Use LogMessage.ProtoReflect.Descriptor instead.

func (*LogMessage) GetData

func (x *LogMessage) GetData() []*InputFile

func (*LogMessage) GetDatumId added in v2.7.0

func (x *LogMessage) GetDatumId() string

func (*LogMessage) GetJobId added in v2.7.0

func (x *LogMessage) GetJobId() string

func (*LogMessage) GetMaster

func (x *LogMessage) GetMaster() bool

func (*LogMessage) GetMessage

func (x *LogMessage) GetMessage() string

func (*LogMessage) GetPipelineName

func (x *LogMessage) GetPipelineName() string

func (*LogMessage) GetProjectName

func (x *LogMessage) GetProjectName() string

func (*LogMessage) GetTs

func (x *LogMessage) GetTs() *timestamppb.Timestamp

func (*LogMessage) GetUser

func (x *LogMessage) GetUser() bool

func (*LogMessage) GetWorkerId added in v2.7.0

func (x *LogMessage) GetWorkerId() string

func (*LogMessage) MarshalLogObject

func (x *LogMessage) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*LogMessage) ProtoMessage

func (*LogMessage) ProtoMessage()

func (*LogMessage) ProtoReflect added in v2.7.0

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

func (*LogMessage) Reset

func (x *LogMessage) Reset()

func (*LogMessage) String

func (x *LogMessage) String() string

func (*LogMessage) Validate added in v2.8.0

func (m *LogMessage) Validate() error

Validate checks the field values on LogMessage with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*LogMessage) ValidateAll added in v2.8.0

func (m *LogMessage) ValidateAll() error

ValidateAll checks the field values on LogMessage with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in LogMessageMultiError, or nil if none found.

type LogMessageMultiError added in v2.8.0

type LogMessageMultiError []error

LogMessageMultiError is an error wrapping multiple validation errors returned by LogMessage.ValidateAll() if the designated constraints aren't met.

func (LogMessageMultiError) AllErrors added in v2.8.0

func (m LogMessageMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LogMessageMultiError) Error added in v2.8.0

func (m LogMessageMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type LogMessageValidationError added in v2.8.0

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

LogMessageValidationError is the validation error returned by LogMessage.Validate if the designated constraints aren't met.

func (LogMessageValidationError) Cause added in v2.8.0

func (e LogMessageValidationError) Cause() error

Cause function returns cause value.

func (LogMessageValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (LogMessageValidationError) ErrorName added in v2.8.0

func (e LogMessageValidationError) ErrorName() string

ErrorName returns error name.

func (LogMessageValidationError) Field added in v2.8.0

Field function returns field value.

func (LogMessageValidationError) Key added in v2.8.0

Key function returns key value.

func (LogMessageValidationError) Reason added in v2.8.0

func (e LogMessageValidationError) Reason() string

Reason function returns reason value.

type LokiLogMessage

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

func (*LokiLogMessage) Descriptor deprecated

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

Deprecated: Use LokiLogMessage.ProtoReflect.Descriptor instead.

func (*LokiLogMessage) GetMessage

func (x *LokiLogMessage) GetMessage() string

func (*LokiLogMessage) MarshalLogObject

func (x *LokiLogMessage) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*LokiLogMessage) ProtoMessage

func (*LokiLogMessage) ProtoMessage()

func (*LokiLogMessage) ProtoReflect added in v2.7.0

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

func (*LokiLogMessage) Reset

func (x *LokiLogMessage) Reset()

func (*LokiLogMessage) String

func (x *LokiLogMessage) String() string

func (*LokiLogMessage) Validate added in v2.8.0

func (m *LokiLogMessage) Validate() error

Validate checks the field values on LokiLogMessage with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*LokiLogMessage) ValidateAll added in v2.8.0

func (m *LokiLogMessage) ValidateAll() error

ValidateAll checks the field values on LokiLogMessage with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in LokiLogMessageMultiError, or nil if none found.

type LokiLogMessageMultiError added in v2.8.0

type LokiLogMessageMultiError []error

LokiLogMessageMultiError is an error wrapping multiple validation errors returned by LokiLogMessage.ValidateAll() if the designated constraints aren't met.

func (LokiLogMessageMultiError) AllErrors added in v2.8.0

func (m LokiLogMessageMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LokiLogMessageMultiError) Error added in v2.8.0

func (m LokiLogMessageMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type LokiLogMessageValidationError added in v2.8.0

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

LokiLogMessageValidationError is the validation error returned by LokiLogMessage.Validate if the designated constraints aren't met.

func (LokiLogMessageValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (LokiLogMessageValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (LokiLogMessageValidationError) ErrorName added in v2.8.0

func (e LokiLogMessageValidationError) ErrorName() string

ErrorName returns error name.

func (LokiLogMessageValidationError) Field added in v2.8.0

Field function returns field value.

func (LokiLogMessageValidationError) Key added in v2.8.0

Key function returns key value.

func (LokiLogMessageValidationError) Reason added in v2.8.0

Reason function returns reason value.

type LokiRequest

type LokiRequest struct {
	Since *durationpb.Duration `protobuf:"bytes,1,opt,name=since,proto3" json:"since,omitempty"`
	Query string               `protobuf:"bytes,2,opt,name=query,proto3" json:"query,omitempty"`
	// contains filtered or unexported fields
}

func (*LokiRequest) Descriptor deprecated

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

Deprecated: Use LokiRequest.ProtoReflect.Descriptor instead.

func (*LokiRequest) GetQuery

func (x *LokiRequest) GetQuery() string

func (*LokiRequest) GetSince

func (x *LokiRequest) GetSince() *durationpb.Duration

func (*LokiRequest) MarshalLogObject

func (x *LokiRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*LokiRequest) ProtoMessage

func (*LokiRequest) ProtoMessage()

func (*LokiRequest) ProtoReflect added in v2.7.0

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

func (*LokiRequest) Reset

func (x *LokiRequest) Reset()

func (*LokiRequest) String

func (x *LokiRequest) String() string

func (*LokiRequest) Validate added in v2.8.0

func (m *LokiRequest) Validate() error

Validate checks the field values on LokiRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*LokiRequest) ValidateAll added in v2.8.0

func (m *LokiRequest) ValidateAll() error

ValidateAll checks the field values on LokiRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in LokiRequestMultiError, or nil if none found.

type LokiRequestMultiError added in v2.8.0

type LokiRequestMultiError []error

LokiRequestMultiError is an error wrapping multiple validation errors returned by LokiRequest.ValidateAll() if the designated constraints aren't met.

func (LokiRequestMultiError) AllErrors added in v2.8.0

func (m LokiRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LokiRequestMultiError) Error added in v2.8.0

func (m LokiRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type LokiRequestValidationError added in v2.8.0

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

LokiRequestValidationError is the validation error returned by LokiRequest.Validate if the designated constraints aren't met.

func (LokiRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (LokiRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (LokiRequestValidationError) ErrorName added in v2.8.0

func (e LokiRequestValidationError) ErrorName() string

ErrorName returns error name.

func (LokiRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (LokiRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (LokiRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type Metadata

type Metadata struct {
	Annotations map[string]string `` /* 163-byte string literal not displayed */
	Labels      map[string]string `` /* 153-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Metadata) Descriptor deprecated

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

Deprecated: Use Metadata.ProtoReflect.Descriptor instead.

func (*Metadata) GetAnnotations

func (x *Metadata) GetAnnotations() map[string]string

func (*Metadata) GetLabels

func (x *Metadata) GetLabels() map[string]string

func (*Metadata) MarshalLogObject

func (x *Metadata) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Metadata) ProtoMessage

func (*Metadata) ProtoMessage()

func (*Metadata) ProtoReflect added in v2.7.0

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

func (*Metadata) Reset

func (x *Metadata) Reset()

func (*Metadata) String

func (x *Metadata) String() string

func (*Metadata) Validate added in v2.8.0

func (m *Metadata) Validate() error

Validate checks the field values on Metadata with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Metadata) ValidateAll added in v2.8.0

func (m *Metadata) ValidateAll() error

ValidateAll checks the field values on Metadata with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in MetadataMultiError, or nil if none found.

type MetadataMultiError added in v2.8.0

type MetadataMultiError []error

MetadataMultiError is an error wrapping multiple validation errors returned by Metadata.ValidateAll() if the designated constraints aren't met.

func (MetadataMultiError) AllErrors added in v2.8.0

func (m MetadataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (MetadataMultiError) Error added in v2.8.0

func (m MetadataMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type MetadataValidationError added in v2.8.0

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

MetadataValidationError is the validation error returned by Metadata.Validate if the designated constraints aren't met.

func (MetadataValidationError) Cause added in v2.8.0

func (e MetadataValidationError) Cause() error

Cause function returns cause value.

func (MetadataValidationError) Error added in v2.8.0

func (e MetadataValidationError) Error() string

Error satisfies the builtin error interface

func (MetadataValidationError) ErrorName added in v2.8.0

func (e MetadataValidationError) ErrorName() string

ErrorName returns error name.

func (MetadataValidationError) Field added in v2.8.0

func (e MetadataValidationError) Field() string

Field function returns field value.

func (MetadataValidationError) Key added in v2.8.0

func (e MetadataValidationError) Key() bool

Key function returns key value.

func (MetadataValidationError) Reason added in v2.8.0

func (e MetadataValidationError) Reason() string

Reason function returns reason value.

type PFSInput

type PFSInput struct {
	Project   string `protobuf:"bytes,14,opt,name=project,proto3" json:"project,omitempty"`
	Name      string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Repo      string `protobuf:"bytes,2,opt,name=repo,proto3" json:"repo,omitempty"`
	RepoType  string `protobuf:"bytes,13,opt,name=repo_type,json=repoType,proto3" json:"repo_type,omitempty"`
	Branch    string `protobuf:"bytes,3,opt,name=branch,proto3" json:"branch,omitempty"`
	Commit    string `protobuf:"bytes,4,opt,name=commit,proto3" json:"commit,omitempty"`
	Glob      string `protobuf:"bytes,5,opt,name=glob,proto3" json:"glob,omitempty"`
	JoinOn    string `protobuf:"bytes,6,opt,name=join_on,json=joinOn,proto3" json:"join_on,omitempty"`
	OuterJoin bool   `protobuf:"varint,7,opt,name=outer_join,json=outerJoin,proto3" json:"outer_join,omitempty"`
	GroupBy   string `protobuf:"bytes,8,opt,name=group_by,json=groupBy,proto3" json:"group_by,omitempty"`
	Lazy      bool   `protobuf:"varint,9,opt,name=lazy,proto3" json:"lazy,omitempty"`
	// EmptyFiles, if true, will cause files from this PFS input to be
	// presented as empty files. This is useful in shuffle pipelines where you
	// want to read the names of files and reorganize them using symlinks.
	EmptyFiles bool `protobuf:"varint,10,opt,name=empty_files,json=emptyFiles,proto3" json:"empty_files,omitempty"`
	// S3, if true, will cause the worker to NOT download or link files from this
	// input into the /pfs_v2 directory. Instead, an instance of our S3 gateway
	// service will run on each of the sidecars, and data can be retrieved from
	// this input by querying
	// http://<pipeline>-s3.<namespace>/<job id>.<input>/my/file
	S3 bool `protobuf:"varint,11,opt,name=s3,proto3" json:"s3,omitempty"`
	// Trigger defines when this input is processed by the pipeline, if it's nil
	// the input is processed anytime something is committed to the input branch.
	Trigger *pfs.Trigger `protobuf:"bytes,12,opt,name=trigger,proto3" json:"trigger,omitempty"`
	// contains filtered or unexported fields
}

func (*PFSInput) Descriptor deprecated

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

Deprecated: Use PFSInput.ProtoReflect.Descriptor instead.

func (*PFSInput) GetBranch

func (x *PFSInput) GetBranch() string

func (*PFSInput) GetCommit

func (x *PFSInput) GetCommit() string

func (*PFSInput) GetEmptyFiles

func (x *PFSInput) GetEmptyFiles() bool

func (*PFSInput) GetGlob

func (x *PFSInput) GetGlob() string

func (*PFSInput) GetGroupBy

func (x *PFSInput) GetGroupBy() string

func (*PFSInput) GetJoinOn

func (x *PFSInput) GetJoinOn() string

func (*PFSInput) GetLazy

func (x *PFSInput) GetLazy() bool

func (*PFSInput) GetName

func (x *PFSInput) GetName() string

func (*PFSInput) GetOuterJoin

func (x *PFSInput) GetOuterJoin() bool

func (*PFSInput) GetProject

func (x *PFSInput) GetProject() string

func (*PFSInput) GetRepo

func (x *PFSInput) GetRepo() string

func (*PFSInput) GetRepoType

func (x *PFSInput) GetRepoType() string

func (*PFSInput) GetS3

func (x *PFSInput) GetS3() bool

func (*PFSInput) GetTrigger

func (x *PFSInput) GetTrigger() *pfs.Trigger

func (*PFSInput) MarshalLogObject

func (x *PFSInput) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*PFSInput) ProtoMessage

func (*PFSInput) ProtoMessage()

func (*PFSInput) ProtoReflect added in v2.7.0

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

func (*PFSInput) Reset

func (x *PFSInput) Reset()

func (*PFSInput) String

func (x *PFSInput) String() string

func (*PFSInput) Validate added in v2.8.0

func (m *PFSInput) Validate() error

Validate checks the field values on PFSInput with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PFSInput) ValidateAll added in v2.8.0

func (m *PFSInput) ValidateAll() error

ValidateAll checks the field values on PFSInput with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PFSInputMultiError, or nil if none found.

type PFSInputMultiError added in v2.8.0

type PFSInputMultiError []error

PFSInputMultiError is an error wrapping multiple validation errors returned by PFSInput.ValidateAll() if the designated constraints aren't met.

func (PFSInputMultiError) AllErrors added in v2.8.0

func (m PFSInputMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PFSInputMultiError) Error added in v2.8.0

func (m PFSInputMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type PFSInputValidationError added in v2.8.0

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

PFSInputValidationError is the validation error returned by PFSInput.Validate if the designated constraints aren't met.

func (PFSInputValidationError) Cause added in v2.8.0

func (e PFSInputValidationError) Cause() error

Cause function returns cause value.

func (PFSInputValidationError) Error added in v2.8.0

func (e PFSInputValidationError) Error() string

Error satisfies the builtin error interface

func (PFSInputValidationError) ErrorName added in v2.8.0

func (e PFSInputValidationError) ErrorName() string

ErrorName returns error name.

func (PFSInputValidationError) Field added in v2.8.0

func (e PFSInputValidationError) Field() string

Field function returns field value.

func (PFSInputValidationError) Key added in v2.8.0

func (e PFSInputValidationError) Key() bool

Key function returns key value.

func (PFSInputValidationError) Reason added in v2.8.0

func (e PFSInputValidationError) Reason() string

Reason function returns reason value.

type ParallelismSpec

type ParallelismSpec struct {

	// Starts the pipeline/job with a 'constant' workers, unless 'constant' is
	// zero. If 'constant' is zero (which is the zero value of ParallelismSpec),
	// then Pachyderm will choose the number of workers that is started,
	// (currently it chooses the number of workers in the cluster)
	Constant uint64 `protobuf:"varint,1,opt,name=constant,proto3" json:"constant,omitempty"`
	// contains filtered or unexported fields
}

func (*ParallelismSpec) Descriptor deprecated

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

Deprecated: Use ParallelismSpec.ProtoReflect.Descriptor instead.

func (*ParallelismSpec) GetConstant

func (x *ParallelismSpec) GetConstant() uint64

func (*ParallelismSpec) MarshalLogObject

func (x *ParallelismSpec) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ParallelismSpec) ProtoMessage

func (*ParallelismSpec) ProtoMessage()

func (*ParallelismSpec) ProtoReflect added in v2.7.0

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

func (*ParallelismSpec) Reset

func (x *ParallelismSpec) Reset()

func (*ParallelismSpec) String

func (x *ParallelismSpec) String() string

func (*ParallelismSpec) Validate added in v2.8.0

func (m *ParallelismSpec) Validate() error

Validate checks the field values on ParallelismSpec with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ParallelismSpec) ValidateAll added in v2.8.0

func (m *ParallelismSpec) ValidateAll() error

ValidateAll checks the field values on ParallelismSpec with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ParallelismSpecMultiError, or nil if none found.

type ParallelismSpecMultiError added in v2.8.0

type ParallelismSpecMultiError []error

ParallelismSpecMultiError is an error wrapping multiple validation errors returned by ParallelismSpec.ValidateAll() if the designated constraints aren't met.

func (ParallelismSpecMultiError) AllErrors added in v2.8.0

func (m ParallelismSpecMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ParallelismSpecMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ParallelismSpecValidationError added in v2.8.0

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

ParallelismSpecValidationError is the validation error returned by ParallelismSpec.Validate if the designated constraints aren't met.

func (ParallelismSpecValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ParallelismSpecValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ParallelismSpecValidationError) ErrorName added in v2.8.0

func (e ParallelismSpecValidationError) ErrorName() string

ErrorName returns error name.

func (ParallelismSpecValidationError) Field added in v2.8.0

Field function returns field value.

func (ParallelismSpecValidationError) Key added in v2.8.0

Key function returns key value.

func (ParallelismSpecValidationError) Reason added in v2.8.0

Reason function returns reason value.

type Pipeline

type Pipeline struct {
	Project *pfs.Project `protobuf:"bytes,2,opt,name=project,proto3" json:"project,omitempty"`
	Name    string       `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func RepoPipeline

func RepoPipeline(r *pfs.Repo) *Pipeline

RepoPipeline returns a Pipeline with the same project and name as the repo.

func (*Pipeline) Descriptor deprecated

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

Deprecated: Use Pipeline.ProtoReflect.Descriptor instead.

func (*Pipeline) GetName

func (x *Pipeline) GetName() string

func (*Pipeline) GetProject

func (x *Pipeline) GetProject() *pfs.Project

func (*Pipeline) MarshalLogObject

func (x *Pipeline) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Pipeline) ProtoMessage

func (*Pipeline) ProtoMessage()

func (*Pipeline) ProtoReflect added in v2.7.0

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

func (*Pipeline) Reset

func (x *Pipeline) Reset()

func (*Pipeline) String

func (p *Pipeline) String() string

func (*Pipeline) Validate added in v2.8.0

func (m *Pipeline) Validate() error

Validate checks the field values on Pipeline with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Pipeline) ValidateAll added in v2.8.0

func (m *Pipeline) ValidateAll() error

ValidateAll checks the field values on Pipeline with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PipelineMultiError, or nil if none found.

type PipelineInfo

type PipelineInfo struct {
	Pipeline   *Pipeline   `protobuf:"bytes,1,opt,name=pipeline,proto3" json:"pipeline,omitempty"`
	Version    uint64      `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"`
	SpecCommit *pfs.Commit `protobuf:"bytes,3,opt,name=spec_commit,json=specCommit,proto3" json:"spec_commit,omitempty"` // The first spec commit for this version of the pipeline
	Stopped    bool        `protobuf:"varint,4,opt,name=stopped,proto3" json:"stopped,omitempty"`
	// state indicates the current state of the pipeline
	State PipelineState `protobuf:"varint,5,opt,name=state,proto3,enum=pps_v2.PipelineState" json:"state,omitempty"`
	// reason includes any error messages associated with a failed pipeline
	Reason string `protobuf:"bytes,6,opt,name=reason,proto3" json:"reason,omitempty"`
	// last_job_state indicates the state of the most recently created job
	LastJobState JobState `protobuf:"varint,8,opt,name=last_job_state,json=lastJobState,proto3,enum=pps_v2.JobState" json:"last_job_state,omitempty"`
	// parallelism tracks the literal number of workers that this pipeline should
	// run.
	Parallelism       uint64                    `protobuf:"varint,9,opt,name=parallelism,proto3" json:"parallelism,omitempty"`
	Type              PipelineInfo_PipelineType `protobuf:"varint,10,opt,name=type,proto3,enum=pps_v2.PipelineInfo_PipelineType" json:"type,omitempty"`
	AuthToken         string                    `protobuf:"bytes,11,opt,name=auth_token,json=authToken,proto3" json:"auth_token,omitempty"`
	Details           *PipelineInfo_Details     `protobuf:"bytes,12,opt,name=details,proto3" json:"details,omitempty"`
	UserSpecJson      string                    `protobuf:"bytes,13,opt,name=user_spec_json,json=userSpecJson,proto3" json:"user_spec_json,omitempty"`                // The user-submitted pipeline spec in JSON format.
	EffectiveSpecJson string                    `protobuf:"bytes,14,opt,name=effective_spec_json,json=effectiveSpecJson,proto3" json:"effective_spec_json,omitempty"` // The effective spec used to create the pipeline.  Created by merging the user spec into the cluster defaults.
	// contains filtered or unexported fields
}

PipelineInfo is proto for each pipeline that Pachd stores in the database. It tracks the state of the pipeline, and points to its metadata in PFS (and, by pointing to a PFS commit, de facto tracks the pipeline's version). Any information about the pipeline _not_ stored in the database is in the Details object, which requires fetching the spec from PFS or other potentially expensive operations.

func (*PipelineInfo) Descriptor deprecated

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

Deprecated: Use PipelineInfo.ProtoReflect.Descriptor instead.

func (*PipelineInfo) GetAuthToken

func (x *PipelineInfo) GetAuthToken() string

func (*PipelineInfo) GetDetails

func (x *PipelineInfo) GetDetails() *PipelineInfo_Details

func (*PipelineInfo) GetEffectiveSpecJson added in v2.8.0

func (x *PipelineInfo) GetEffectiveSpecJson() string

func (*PipelineInfo) GetLastJobState

func (x *PipelineInfo) GetLastJobState() JobState

func (*PipelineInfo) GetParallelism

func (x *PipelineInfo) GetParallelism() uint64

func (*PipelineInfo) GetPipeline

func (x *PipelineInfo) GetPipeline() *Pipeline

func (*PipelineInfo) GetReason

func (x *PipelineInfo) GetReason() string

func (*PipelineInfo) GetSpecCommit

func (x *PipelineInfo) GetSpecCommit() *pfs.Commit

func (*PipelineInfo) GetState

func (x *PipelineInfo) GetState() PipelineState

func (*PipelineInfo) GetStopped

func (x *PipelineInfo) GetStopped() bool

func (*PipelineInfo) GetType

func (*PipelineInfo) GetUserSpecJson added in v2.8.0

func (x *PipelineInfo) GetUserSpecJson() string

func (*PipelineInfo) GetVersion

func (x *PipelineInfo) GetVersion() uint64

func (*PipelineInfo) MarshalLogObject

func (x *PipelineInfo) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*PipelineInfo) ProtoMessage

func (*PipelineInfo) ProtoMessage()

func (*PipelineInfo) ProtoReflect added in v2.7.0

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

func (*PipelineInfo) Reset

func (x *PipelineInfo) Reset()

func (*PipelineInfo) String

func (x *PipelineInfo) String() string

func (*PipelineInfo) Validate added in v2.8.0

func (m *PipelineInfo) Validate() error

Validate checks the field values on PipelineInfo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PipelineInfo) ValidateAll added in v2.8.0

func (m *PipelineInfo) ValidateAll() error

ValidateAll checks the field values on PipelineInfo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PipelineInfoMultiError, or nil if none found.

type PipelineInfoMultiError added in v2.8.0

type PipelineInfoMultiError []error

PipelineInfoMultiError is an error wrapping multiple validation errors returned by PipelineInfo.ValidateAll() if the designated constraints aren't met.

func (PipelineInfoMultiError) AllErrors added in v2.8.0

func (m PipelineInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PipelineInfoMultiError) Error added in v2.8.0

func (m PipelineInfoMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type PipelineInfoValidationError added in v2.8.0

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

PipelineInfoValidationError is the validation error returned by PipelineInfo.Validate if the designated constraints aren't met.

func (PipelineInfoValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (PipelineInfoValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (PipelineInfoValidationError) ErrorName added in v2.8.0

func (e PipelineInfoValidationError) ErrorName() string

ErrorName returns error name.

func (PipelineInfoValidationError) Field added in v2.8.0

Field function returns field value.

func (PipelineInfoValidationError) Key added in v2.8.0

Key function returns key value.

func (PipelineInfoValidationError) Reason added in v2.8.0

Reason function returns reason value.

type PipelineInfo_Details

type PipelineInfo_Details struct {
	Transform *Transform `protobuf:"bytes,1,opt,name=transform,proto3" json:"transform,omitempty"`
	// tf_job encodes a Kubeflow TFJob spec. Pachyderm uses this to create TFJobs
	// when running in a kubernetes cluster on which kubeflow has been installed.
	// Exactly one of 'tf_job' and 'transform' should be set
	TfJob                   *TFJob                 `protobuf:"bytes,2,opt,name=tf_job,json=tfJob,proto3" json:"tf_job,omitempty"`
	ParallelismSpec         *ParallelismSpec       `protobuf:"bytes,3,opt,name=parallelism_spec,json=parallelismSpec,proto3" json:"parallelism_spec,omitempty"`
	Egress                  *Egress                `protobuf:"bytes,4,opt,name=egress,proto3" json:"egress,omitempty"`
	CreatedAt               *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	RecentError             string                 `protobuf:"bytes,6,opt,name=recent_error,json=recentError,proto3" json:"recent_error,omitempty"`
	WorkersRequested        int64                  `protobuf:"varint,7,opt,name=workers_requested,json=workersRequested,proto3" json:"workers_requested,omitempty"`
	WorkersAvailable        int64                  `protobuf:"varint,8,opt,name=workers_available,json=workersAvailable,proto3" json:"workers_available,omitempty"`
	OutputBranch            string                 `protobuf:"bytes,9,opt,name=output_branch,json=outputBranch,proto3" json:"output_branch,omitempty"`
	ResourceRequests        *ResourceSpec          `protobuf:"bytes,10,opt,name=resource_requests,json=resourceRequests,proto3" json:"resource_requests,omitempty"`
	ResourceLimits          *ResourceSpec          `protobuf:"bytes,11,opt,name=resource_limits,json=resourceLimits,proto3" json:"resource_limits,omitempty"`
	SidecarResourceLimits   *ResourceSpec          `` /* 127-byte string literal not displayed */
	Input                   *Input                 `protobuf:"bytes,13,opt,name=input,proto3" json:"input,omitempty"`
	Description             string                 `protobuf:"bytes,14,opt,name=description,proto3" json:"description,omitempty"`
	Salt                    string                 `protobuf:"bytes,16,opt,name=salt,proto3" json:"salt,omitempty"`
	Reason                  string                 `protobuf:"bytes,17,opt,name=reason,proto3" json:"reason,omitempty"`
	Service                 *Service               `protobuf:"bytes,19,opt,name=service,proto3" json:"service,omitempty"`
	Spout                   *Spout                 `protobuf:"bytes,20,opt,name=spout,proto3" json:"spout,omitempty"`
	DatumSetSpec            *DatumSetSpec          `protobuf:"bytes,21,opt,name=datum_set_spec,json=datumSetSpec,proto3" json:"datum_set_spec,omitempty"`
	DatumTimeout            *durationpb.Duration   `protobuf:"bytes,22,opt,name=datum_timeout,json=datumTimeout,proto3" json:"datum_timeout,omitempty"`
	JobTimeout              *durationpb.Duration   `protobuf:"bytes,23,opt,name=job_timeout,json=jobTimeout,proto3" json:"job_timeout,omitempty"`
	DatumTries              int64                  `protobuf:"varint,24,opt,name=datum_tries,json=datumTries,proto3" json:"datum_tries,omitempty"`
	SchedulingSpec          *SchedulingSpec        `protobuf:"bytes,25,opt,name=scheduling_spec,json=schedulingSpec,proto3" json:"scheduling_spec,omitempty"`
	PodSpec                 string                 `protobuf:"bytes,26,opt,name=pod_spec,json=podSpec,proto3" json:"pod_spec,omitempty"`
	PodPatch                string                 `protobuf:"bytes,27,opt,name=pod_patch,json=podPatch,proto3" json:"pod_patch,omitempty"`
	S3Out                   bool                   `protobuf:"varint,28,opt,name=s3_out,json=s3Out,proto3" json:"s3_out,omitempty"`
	Metadata                *Metadata              `protobuf:"bytes,29,opt,name=metadata,proto3" json:"metadata,omitempty"`
	ReprocessSpec           string                 `protobuf:"bytes,30,opt,name=reprocess_spec,json=reprocessSpec,proto3" json:"reprocess_spec,omitempty"`
	UnclaimedTasks          int64                  `protobuf:"varint,31,opt,name=unclaimed_tasks,json=unclaimedTasks,proto3" json:"unclaimed_tasks,omitempty"`
	WorkerRc                string                 `protobuf:"bytes,32,opt,name=worker_rc,json=workerRc,proto3" json:"worker_rc,omitempty"`
	Autoscaling             bool                   `protobuf:"varint,33,opt,name=autoscaling,proto3" json:"autoscaling,omitempty"`
	Tolerations             []*Toleration          `protobuf:"bytes,34,rep,name=tolerations,proto3" json:"tolerations,omitempty"`
	SidecarResourceRequests *ResourceSpec          `` /* 133-byte string literal not displayed */
	Determined              *Determined            `protobuf:"bytes,36,opt,name=determined,proto3" json:"determined,omitempty"`
	MaximumExpectedUptime   *durationpb.Duration   `` /* 127-byte string literal not displayed */
	WorkersStartedAt        *timestamppb.Timestamp `protobuf:"bytes,38,opt,name=workers_started_at,json=workersStartedAt,proto3" json:"workers_started_at,omitempty"`
	// contains filtered or unexported fields
}

func (*PipelineInfo_Details) Descriptor deprecated

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

Deprecated: Use PipelineInfo_Details.ProtoReflect.Descriptor instead.

func (*PipelineInfo_Details) GetAutoscaling

func (x *PipelineInfo_Details) GetAutoscaling() bool

func (*PipelineInfo_Details) GetCreatedAt

func (x *PipelineInfo_Details) GetCreatedAt() *timestamppb.Timestamp

func (*PipelineInfo_Details) GetDatumSetSpec

func (x *PipelineInfo_Details) GetDatumSetSpec() *DatumSetSpec

func (*PipelineInfo_Details) GetDatumTimeout

func (x *PipelineInfo_Details) GetDatumTimeout() *durationpb.Duration

func (*PipelineInfo_Details) GetDatumTries

func (x *PipelineInfo_Details) GetDatumTries() int64

func (*PipelineInfo_Details) GetDescription

func (x *PipelineInfo_Details) GetDescription() string

func (*PipelineInfo_Details) GetDetermined added in v2.7.0

func (x *PipelineInfo_Details) GetDetermined() *Determined

func (*PipelineInfo_Details) GetEgress

func (x *PipelineInfo_Details) GetEgress() *Egress

func (*PipelineInfo_Details) GetInput

func (x *PipelineInfo_Details) GetInput() *Input

func (*PipelineInfo_Details) GetJobTimeout

func (x *PipelineInfo_Details) GetJobTimeout() *durationpb.Duration

func (*PipelineInfo_Details) GetMaximumExpectedUptime added in v2.9.0

func (x *PipelineInfo_Details) GetMaximumExpectedUptime() *durationpb.Duration

func (*PipelineInfo_Details) GetMetadata

func (x *PipelineInfo_Details) GetMetadata() *Metadata

func (*PipelineInfo_Details) GetOutputBranch

func (x *PipelineInfo_Details) GetOutputBranch() string

func (*PipelineInfo_Details) GetParallelismSpec

func (x *PipelineInfo_Details) GetParallelismSpec() *ParallelismSpec

func (*PipelineInfo_Details) GetPodPatch

func (x *PipelineInfo_Details) GetPodPatch() string

func (*PipelineInfo_Details) GetPodSpec

func (x *PipelineInfo_Details) GetPodSpec() string

func (*PipelineInfo_Details) GetReason

func (x *PipelineInfo_Details) GetReason() string

func (*PipelineInfo_Details) GetRecentError

func (x *PipelineInfo_Details) GetRecentError() string

func (*PipelineInfo_Details) GetReprocessSpec

func (x *PipelineInfo_Details) GetReprocessSpec() string

func (*PipelineInfo_Details) GetResourceLimits

func (x *PipelineInfo_Details) GetResourceLimits() *ResourceSpec

func (*PipelineInfo_Details) GetResourceRequests

func (x *PipelineInfo_Details) GetResourceRequests() *ResourceSpec

func (*PipelineInfo_Details) GetS3Out

func (x *PipelineInfo_Details) GetS3Out() bool

func (*PipelineInfo_Details) GetSalt

func (x *PipelineInfo_Details) GetSalt() string

func (*PipelineInfo_Details) GetSchedulingSpec

func (x *PipelineInfo_Details) GetSchedulingSpec() *SchedulingSpec

func (*PipelineInfo_Details) GetService

func (x *PipelineInfo_Details) GetService() *Service

func (*PipelineInfo_Details) GetSidecarResourceLimits

func (x *PipelineInfo_Details) GetSidecarResourceLimits() *ResourceSpec

func (*PipelineInfo_Details) GetSidecarResourceRequests

func (x *PipelineInfo_Details) GetSidecarResourceRequests() *ResourceSpec

func (*PipelineInfo_Details) GetSpout

func (x *PipelineInfo_Details) GetSpout() *Spout

func (*PipelineInfo_Details) GetTfJob added in v2.7.0

func (x *PipelineInfo_Details) GetTfJob() *TFJob

func (*PipelineInfo_Details) GetTolerations

func (x *PipelineInfo_Details) GetTolerations() []*Toleration

func (*PipelineInfo_Details) GetTransform

func (x *PipelineInfo_Details) GetTransform() *Transform

func (*PipelineInfo_Details) GetUnclaimedTasks

func (x *PipelineInfo_Details) GetUnclaimedTasks() int64

func (*PipelineInfo_Details) GetWorkerRc

func (x *PipelineInfo_Details) GetWorkerRc() string

func (*PipelineInfo_Details) GetWorkersAvailable

func (x *PipelineInfo_Details) GetWorkersAvailable() int64

func (*PipelineInfo_Details) GetWorkersRequested

func (x *PipelineInfo_Details) GetWorkersRequested() int64

func (*PipelineInfo_Details) GetWorkersStartedAt added in v2.9.0

func (x *PipelineInfo_Details) GetWorkersStartedAt() *timestamppb.Timestamp

func (*PipelineInfo_Details) MarshalLogObject

func (x *PipelineInfo_Details) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*PipelineInfo_Details) ProtoMessage

func (*PipelineInfo_Details) ProtoMessage()

func (*PipelineInfo_Details) ProtoReflect added in v2.7.0

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

func (*PipelineInfo_Details) Reset

func (x *PipelineInfo_Details) Reset()

func (*PipelineInfo_Details) String

func (x *PipelineInfo_Details) String() string

func (*PipelineInfo_Details) Validate added in v2.8.0

func (m *PipelineInfo_Details) Validate() error

Validate checks the field values on PipelineInfo_Details with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PipelineInfo_Details) ValidateAll added in v2.8.0

func (m *PipelineInfo_Details) ValidateAll() error

ValidateAll checks the field values on PipelineInfo_Details with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PipelineInfo_DetailsMultiError, or nil if none found.

type PipelineInfo_DetailsMultiError added in v2.8.0

type PipelineInfo_DetailsMultiError []error

PipelineInfo_DetailsMultiError is an error wrapping multiple validation errors returned by PipelineInfo_Details.ValidateAll() if the designated constraints aren't met.

func (PipelineInfo_DetailsMultiError) AllErrors added in v2.8.0

func (m PipelineInfo_DetailsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PipelineInfo_DetailsMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type PipelineInfo_DetailsValidationError added in v2.8.0

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

PipelineInfo_DetailsValidationError is the validation error returned by PipelineInfo_Details.Validate if the designated constraints aren't met.

func (PipelineInfo_DetailsValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (PipelineInfo_DetailsValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (PipelineInfo_DetailsValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (PipelineInfo_DetailsValidationError) Field added in v2.8.0

Field function returns field value.

func (PipelineInfo_DetailsValidationError) Key added in v2.8.0

Key function returns key value.

func (PipelineInfo_DetailsValidationError) Reason added in v2.8.0

Reason function returns reason value.

type PipelineInfo_PipelineType

type PipelineInfo_PipelineType int32

The pipeline type is stored here so that we can internally know the type of the pipeline without loading the spec from PFS.

const (
	PipelineInfo_PIPELINT_TYPE_UNKNOWN   PipelineInfo_PipelineType = 0
	PipelineInfo_PIPELINE_TYPE_TRANSFORM PipelineInfo_PipelineType = 1
	PipelineInfo_PIPELINE_TYPE_SPOUT     PipelineInfo_PipelineType = 2
	PipelineInfo_PIPELINE_TYPE_SERVICE   PipelineInfo_PipelineType = 3
)

func (PipelineInfo_PipelineType) Descriptor added in v2.7.0

func (PipelineInfo_PipelineType) Enum added in v2.7.0

func (PipelineInfo_PipelineType) EnumDescriptor deprecated

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

Deprecated: Use PipelineInfo_PipelineType.Descriptor instead.

func (PipelineInfo_PipelineType) Number added in v2.7.0

func (PipelineInfo_PipelineType) String

func (x PipelineInfo_PipelineType) String() string

func (PipelineInfo_PipelineType) Type added in v2.7.0

type PipelineInfos

type PipelineInfos struct {
	PipelineInfo []*PipelineInfo `protobuf:"bytes,1,rep,name=pipeline_info,json=pipelineInfo,proto3" json:"pipeline_info,omitempty"`
	// contains filtered or unexported fields
}

func (*PipelineInfos) Descriptor deprecated

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

Deprecated: Use PipelineInfos.ProtoReflect.Descriptor instead.

func (*PipelineInfos) GetPipelineInfo

func (x *PipelineInfos) GetPipelineInfo() []*PipelineInfo

func (*PipelineInfos) MarshalLogObject

func (x *PipelineInfos) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*PipelineInfos) ProtoMessage

func (*PipelineInfos) ProtoMessage()

func (*PipelineInfos) ProtoReflect added in v2.7.0

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

func (*PipelineInfos) Reset

func (x *PipelineInfos) Reset()

func (*PipelineInfos) String

func (x *PipelineInfos) String() string

func (*PipelineInfos) Validate added in v2.8.0

func (m *PipelineInfos) Validate() error

Validate checks the field values on PipelineInfos with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PipelineInfos) ValidateAll added in v2.8.0

func (m *PipelineInfos) ValidateAll() error

ValidateAll checks the field values on PipelineInfos with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PipelineInfosMultiError, or nil if none found.

type PipelineInfosMultiError added in v2.8.0

type PipelineInfosMultiError []error

PipelineInfosMultiError is an error wrapping multiple validation errors returned by PipelineInfos.ValidateAll() if the designated constraints aren't met.

func (PipelineInfosMultiError) AllErrors added in v2.8.0

func (m PipelineInfosMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PipelineInfosMultiError) Error added in v2.8.0

func (m PipelineInfosMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type PipelineInfosValidationError added in v2.8.0

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

PipelineInfosValidationError is the validation error returned by PipelineInfos.Validate if the designated constraints aren't met.

func (PipelineInfosValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (PipelineInfosValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (PipelineInfosValidationError) ErrorName added in v2.8.0

func (e PipelineInfosValidationError) ErrorName() string

ErrorName returns error name.

func (PipelineInfosValidationError) Field added in v2.8.0

Field function returns field value.

func (PipelineInfosValidationError) Key added in v2.8.0

Key function returns key value.

func (PipelineInfosValidationError) Reason added in v2.8.0

Reason function returns reason value.

type PipelineMultiError added in v2.8.0

type PipelineMultiError []error

PipelineMultiError is an error wrapping multiple validation errors returned by Pipeline.ValidateAll() if the designated constraints aren't met.

func (PipelineMultiError) AllErrors added in v2.8.0

func (m PipelineMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PipelineMultiError) Error added in v2.8.0

func (m PipelineMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type PipelineState

type PipelineState int32
const (
	PipelineState_PIPELINE_STATE_UNKNOWN PipelineState = 0
	// There is a PipelineInfo + spec commit, but no RC
	// This happens when a pipeline has been created but not yet picked up by a
	// PPS server.
	PipelineState_PIPELINE_STARTING PipelineState = 1
	// A pipeline has a spec commit and a service + RC
	// This is the normal state of a pipeline.
	PipelineState_PIPELINE_RUNNING PipelineState = 2
	// Equivalent to STARTING (there is a PipelineInfo + commit, but no RC)
	// After some error caused runPipeline to exit, but before the pipeline is
	// re-run. This is when the exponential backoff is in effect.
	PipelineState_PIPELINE_RESTARTING PipelineState = 3
	// The pipeline has encountered unrecoverable errors and is no longer being
	// retried. It won't leave this state until the pipeline is updated.
	PipelineState_PIPELINE_FAILURE PipelineState = 4
	// The pipeline has been explicitly paused by the user (the pipeline spec's
	// Stopped field should be true if the pipeline is in this state)
	PipelineState_PIPELINE_PAUSED PipelineState = 5
	// The pipeline is fully functional, but there are no commits to process.
	PipelineState_PIPELINE_STANDBY PipelineState = 6
	// The pipeline's workers are crashing, or failing to come up, this may
	// resolve itself, the pipeline may make progress while in this state if the
	// problem is only being experienced by some workers.
	PipelineState_PIPELINE_CRASHING PipelineState = 7
)

func PipelineStateFromName

func PipelineStateFromName(name string) (PipelineState, error)

PipelineStateFromName attempts to interpret a string as a PipelineState, accepting either the enum names or the pretty printed state names

func (PipelineState) Descriptor added in v2.7.0

func (PipelineState) Enum added in v2.7.0

func (x PipelineState) Enum() *PipelineState

func (PipelineState) EnumDescriptor deprecated

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

Deprecated: Use PipelineState.Descriptor instead.

func (PipelineState) Number added in v2.7.0

func (PipelineState) String

func (x PipelineState) String() string

func (PipelineState) Type added in v2.7.0

type PipelineValidationError added in v2.8.0

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

PipelineValidationError is the validation error returned by Pipeline.Validate if the designated constraints aren't met.

func (PipelineValidationError) Cause added in v2.8.0

func (e PipelineValidationError) Cause() error

Cause function returns cause value.

func (PipelineValidationError) Error added in v2.8.0

func (e PipelineValidationError) Error() string

Error satisfies the builtin error interface

func (PipelineValidationError) ErrorName added in v2.8.0

func (e PipelineValidationError) ErrorName() string

ErrorName returns error name.

func (PipelineValidationError) Field added in v2.8.0

func (e PipelineValidationError) Field() string

Field function returns field value.

func (PipelineValidationError) Key added in v2.8.0

func (e PipelineValidationError) Key() bool

Key function returns key value.

func (PipelineValidationError) Reason added in v2.8.0

func (e PipelineValidationError) Reason() string

Reason function returns reason value.

type ProcessStats

type ProcessStats struct {
	DownloadTime  *durationpb.Duration `protobuf:"bytes,1,opt,name=download_time,json=downloadTime,proto3" json:"download_time,omitempty"`
	ProcessTime   *durationpb.Duration `protobuf:"bytes,2,opt,name=process_time,json=processTime,proto3" json:"process_time,omitempty"`
	UploadTime    *durationpb.Duration `protobuf:"bytes,3,opt,name=upload_time,json=uploadTime,proto3" json:"upload_time,omitempty"`
	DownloadBytes int64                `protobuf:"varint,4,opt,name=download_bytes,json=downloadBytes,proto3" json:"download_bytes,omitempty"`
	UploadBytes   int64                `protobuf:"varint,5,opt,name=upload_bytes,json=uploadBytes,proto3" json:"upload_bytes,omitempty"`
	// contains filtered or unexported fields
}

func (*ProcessStats) Descriptor deprecated

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

Deprecated: Use ProcessStats.ProtoReflect.Descriptor instead.

func (*ProcessStats) GetDownloadBytes

func (x *ProcessStats) GetDownloadBytes() int64

func (*ProcessStats) GetDownloadTime

func (x *ProcessStats) GetDownloadTime() *durationpb.Duration

func (*ProcessStats) GetProcessTime

func (x *ProcessStats) GetProcessTime() *durationpb.Duration

func (*ProcessStats) GetUploadBytes

func (x *ProcessStats) GetUploadBytes() int64

func (*ProcessStats) GetUploadTime

func (x *ProcessStats) GetUploadTime() *durationpb.Duration

func (*ProcessStats) MarshalLogObject

func (x *ProcessStats) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ProcessStats) ProtoMessage

func (*ProcessStats) ProtoMessage()

func (*ProcessStats) ProtoReflect added in v2.7.0

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

func (*ProcessStats) Reset

func (x *ProcessStats) Reset()

func (*ProcessStats) String

func (x *ProcessStats) String() string

func (*ProcessStats) Validate added in v2.8.0

func (m *ProcessStats) Validate() error

Validate checks the field values on ProcessStats with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ProcessStats) ValidateAll added in v2.8.0

func (m *ProcessStats) ValidateAll() error

ValidateAll checks the field values on ProcessStats with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ProcessStatsMultiError, or nil if none found.

type ProcessStatsMultiError added in v2.8.0

type ProcessStatsMultiError []error

ProcessStatsMultiError is an error wrapping multiple validation errors returned by ProcessStats.ValidateAll() if the designated constraints aren't met.

func (ProcessStatsMultiError) AllErrors added in v2.8.0

func (m ProcessStatsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ProcessStatsMultiError) Error added in v2.8.0

func (m ProcessStatsMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ProcessStatsValidationError added in v2.8.0

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

ProcessStatsValidationError is the validation error returned by ProcessStats.Validate if the designated constraints aren't met.

func (ProcessStatsValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ProcessStatsValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ProcessStatsValidationError) ErrorName added in v2.8.0

func (e ProcessStatsValidationError) ErrorName() string

ErrorName returns error name.

func (ProcessStatsValidationError) Field added in v2.8.0

Field function returns field value.

func (ProcessStatsValidationError) Key added in v2.8.0

Key function returns key value.

func (ProcessStatsValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ProjectDefaults added in v2.8.0

type ProjectDefaults struct {
	CreatePipelineRequest *CreatePipelineRequest `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ProjectDefaults) Descriptor deprecated added in v2.8.0

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

Deprecated: Use ProjectDefaults.ProtoReflect.Descriptor instead.

func (*ProjectDefaults) GetCreatePipelineRequest added in v2.8.0

func (x *ProjectDefaults) GetCreatePipelineRequest() *CreatePipelineRequest

func (*ProjectDefaults) MarshalLogObject added in v2.8.0

func (x *ProjectDefaults) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ProjectDefaults) ProtoMessage added in v2.8.0

func (*ProjectDefaults) ProtoMessage()

func (*ProjectDefaults) ProtoReflect added in v2.8.0

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

func (*ProjectDefaults) Reset added in v2.8.0

func (x *ProjectDefaults) Reset()

func (*ProjectDefaults) String added in v2.8.0

func (x *ProjectDefaults) String() string

func (*ProjectDefaults) Validate added in v2.8.0

func (m *ProjectDefaults) Validate() error

Validate checks the field values on ProjectDefaults with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ProjectDefaults) ValidateAll added in v2.8.0

func (m *ProjectDefaults) ValidateAll() error

ValidateAll checks the field values on ProjectDefaults with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ProjectDefaultsMultiError, or nil if none found.

type ProjectDefaultsMultiError added in v2.8.0

type ProjectDefaultsMultiError []error

ProjectDefaultsMultiError is an error wrapping multiple validation errors returned by ProjectDefaults.ValidateAll() if the designated constraints aren't met.

func (ProjectDefaultsMultiError) AllErrors added in v2.8.0

func (m ProjectDefaultsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ProjectDefaultsMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type ProjectDefaultsValidationError added in v2.8.0

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

ProjectDefaultsValidationError is the validation error returned by ProjectDefaults.Validate if the designated constraints aren't met.

func (ProjectDefaultsValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ProjectDefaultsValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ProjectDefaultsValidationError) ErrorName added in v2.8.0

func (e ProjectDefaultsValidationError) ErrorName() string

ErrorName returns error name.

func (ProjectDefaultsValidationError) Field added in v2.8.0

Field function returns field value.

func (ProjectDefaultsValidationError) Key added in v2.8.0

Key function returns key value.

func (ProjectDefaultsValidationError) Reason added in v2.8.0

Reason function returns reason value.

type RenderTemplateRequest

type RenderTemplateRequest struct {
	Template string            `protobuf:"bytes,1,opt,name=template,proto3" json:"template,omitempty"`
	Args     map[string]string `` /* 149-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*RenderTemplateRequest) Descriptor deprecated

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

Deprecated: Use RenderTemplateRequest.ProtoReflect.Descriptor instead.

func (*RenderTemplateRequest) GetArgs

func (x *RenderTemplateRequest) GetArgs() map[string]string

func (*RenderTemplateRequest) GetTemplate

func (x *RenderTemplateRequest) GetTemplate() string

func (*RenderTemplateRequest) MarshalLogObject

func (x *RenderTemplateRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*RenderTemplateRequest) ProtoMessage

func (*RenderTemplateRequest) ProtoMessage()

func (*RenderTemplateRequest) ProtoReflect added in v2.7.0

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

func (*RenderTemplateRequest) Reset

func (x *RenderTemplateRequest) Reset()

func (*RenderTemplateRequest) String

func (x *RenderTemplateRequest) String() string

func (*RenderTemplateRequest) Validate added in v2.8.0

func (m *RenderTemplateRequest) Validate() error

Validate checks the field values on RenderTemplateRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RenderTemplateRequest) ValidateAll added in v2.8.0

func (m *RenderTemplateRequest) ValidateAll() error

ValidateAll checks the field values on RenderTemplateRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RenderTemplateRequestMultiError, or nil if none found.

type RenderTemplateRequestMultiError added in v2.8.0

type RenderTemplateRequestMultiError []error

RenderTemplateRequestMultiError is an error wrapping multiple validation errors returned by RenderTemplateRequest.ValidateAll() if the designated constraints aren't met.

func (RenderTemplateRequestMultiError) AllErrors added in v2.8.0

func (m RenderTemplateRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RenderTemplateRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type RenderTemplateRequestValidationError added in v2.8.0

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

RenderTemplateRequestValidationError is the validation error returned by RenderTemplateRequest.Validate if the designated constraints aren't met.

func (RenderTemplateRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (RenderTemplateRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (RenderTemplateRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (RenderTemplateRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (RenderTemplateRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (RenderTemplateRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type RenderTemplateResponse

type RenderTemplateResponse struct {
	Json  string                   `protobuf:"bytes,1,opt,name=json,proto3" json:"json,omitempty"`
	Specs []*CreatePipelineRequest `protobuf:"bytes,2,rep,name=specs,proto3" json:"specs,omitempty"`
	// contains filtered or unexported fields
}

func (*RenderTemplateResponse) Descriptor deprecated

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

Deprecated: Use RenderTemplateResponse.ProtoReflect.Descriptor instead.

func (*RenderTemplateResponse) GetJson

func (x *RenderTemplateResponse) GetJson() string

func (*RenderTemplateResponse) GetSpecs

func (*RenderTemplateResponse) MarshalLogObject

func (x *RenderTemplateResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*RenderTemplateResponse) ProtoMessage

func (*RenderTemplateResponse) ProtoMessage()

func (*RenderTemplateResponse) ProtoReflect added in v2.7.0

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

func (*RenderTemplateResponse) Reset

func (x *RenderTemplateResponse) Reset()

func (*RenderTemplateResponse) String

func (x *RenderTemplateResponse) String() string

func (*RenderTemplateResponse) Validate added in v2.8.0

func (m *RenderTemplateResponse) Validate() error

Validate checks the field values on RenderTemplateResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RenderTemplateResponse) ValidateAll added in v2.8.0

func (m *RenderTemplateResponse) ValidateAll() error

ValidateAll checks the field values on RenderTemplateResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RenderTemplateResponseMultiError, or nil if none found.

type RenderTemplateResponseMultiError added in v2.8.0

type RenderTemplateResponseMultiError []error

RenderTemplateResponseMultiError is an error wrapping multiple validation errors returned by RenderTemplateResponse.ValidateAll() if the designated constraints aren't met.

func (RenderTemplateResponseMultiError) AllErrors added in v2.8.0

func (m RenderTemplateResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RenderTemplateResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type RenderTemplateResponseValidationError added in v2.8.0

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

RenderTemplateResponseValidationError is the validation error returned by RenderTemplateResponse.Validate if the designated constraints aren't met.

func (RenderTemplateResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (RenderTemplateResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (RenderTemplateResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (RenderTemplateResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (RenderTemplateResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (RenderTemplateResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type RerunPipelineRequest added in v2.8.0

type RerunPipelineRequest struct {
	Pipeline *Pipeline `protobuf:"bytes,1,opt,name=pipeline,proto3" json:"pipeline,omitempty"`
	// Reprocess forces the pipeline to reprocess all datums.
	Reprocess bool `protobuf:"varint,15,opt,name=reprocess,proto3" json:"reprocess,omitempty"`
	// contains filtered or unexported fields
}

func (*RerunPipelineRequest) Descriptor deprecated added in v2.8.0

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

Deprecated: Use RerunPipelineRequest.ProtoReflect.Descriptor instead.

func (*RerunPipelineRequest) GetPipeline added in v2.8.0

func (x *RerunPipelineRequest) GetPipeline() *Pipeline

func (*RerunPipelineRequest) GetReprocess added in v2.8.0

func (x *RerunPipelineRequest) GetReprocess() bool

func (*RerunPipelineRequest) MarshalLogObject added in v2.8.0

func (x *RerunPipelineRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*RerunPipelineRequest) ProtoMessage added in v2.8.0

func (*RerunPipelineRequest) ProtoMessage()

func (*RerunPipelineRequest) ProtoReflect added in v2.8.0

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

func (*RerunPipelineRequest) Reset added in v2.8.0

func (x *RerunPipelineRequest) Reset()

func (*RerunPipelineRequest) String added in v2.8.0

func (x *RerunPipelineRequest) String() string

func (*RerunPipelineRequest) Validate added in v2.8.0

func (m *RerunPipelineRequest) Validate() error

Validate checks the field values on RerunPipelineRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RerunPipelineRequest) ValidateAll added in v2.8.0

func (m *RerunPipelineRequest) ValidateAll() error

ValidateAll checks the field values on RerunPipelineRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RerunPipelineRequestMultiError, or nil if none found.

type RerunPipelineRequestMultiError added in v2.8.0

type RerunPipelineRequestMultiError []error

RerunPipelineRequestMultiError is an error wrapping multiple validation errors returned by RerunPipelineRequest.ValidateAll() if the designated constraints aren't met.

func (RerunPipelineRequestMultiError) AllErrors added in v2.8.0

func (m RerunPipelineRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RerunPipelineRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type RerunPipelineRequestValidationError added in v2.8.0

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

RerunPipelineRequestValidationError is the validation error returned by RerunPipelineRequest.Validate if the designated constraints aren't met.

func (RerunPipelineRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (RerunPipelineRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (RerunPipelineRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (RerunPipelineRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (RerunPipelineRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (RerunPipelineRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type ResourceSpec

type ResourceSpec struct {

	// The number of CPUs each worker needs (partial values are allowed, and
	// encouraged)
	Cpu float32 `protobuf:"fixed32,1,opt,name=cpu,proto3" json:"cpu,omitempty"`
	// The amount of memory each worker needs (in bytes, with allowed
	// SI suffixes (M, K, G, Mi, Ki, Gi, etc).
	Memory string `protobuf:"bytes,2,opt,name=memory,proto3" json:"memory,omitempty"`
	// The spec for GPU resources.
	Gpu *GPUSpec `protobuf:"bytes,3,opt,name=gpu,proto3" json:"gpu,omitempty"`
	// The amount of ephemeral storage each worker needs (in bytes, with allowed
	// SI suffixes (M, K, G, Mi, Ki, Gi, etc).
	Disk string `protobuf:"bytes,4,opt,name=disk,proto3" json:"disk,omitempty"`
	// contains filtered or unexported fields
}

ResourceSpec describes the amount of resources that pipeline pods should request from kubernetes, for scheduling.

func (*ResourceSpec) Descriptor deprecated

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

Deprecated: Use ResourceSpec.ProtoReflect.Descriptor instead.

func (*ResourceSpec) GetCpu

func (x *ResourceSpec) GetCpu() float32

func (*ResourceSpec) GetDisk

func (x *ResourceSpec) GetDisk() string

func (*ResourceSpec) GetGpu

func (x *ResourceSpec) GetGpu() *GPUSpec

func (*ResourceSpec) GetMemory

func (x *ResourceSpec) GetMemory() string

func (*ResourceSpec) MarshalLogObject

func (x *ResourceSpec) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*ResourceSpec) ProtoMessage

func (*ResourceSpec) ProtoMessage()

func (*ResourceSpec) ProtoReflect added in v2.7.0

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

func (*ResourceSpec) Reset

func (x *ResourceSpec) Reset()

func (*ResourceSpec) String

func (x *ResourceSpec) String() string

func (*ResourceSpec) Validate added in v2.8.0

func (m *ResourceSpec) Validate() error

Validate checks the field values on ResourceSpec with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ResourceSpec) ValidateAll added in v2.8.0

func (m *ResourceSpec) ValidateAll() error

ValidateAll checks the field values on ResourceSpec with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ResourceSpecMultiError, or nil if none found.

type ResourceSpecMultiError added in v2.8.0

type ResourceSpecMultiError []error

ResourceSpecMultiError is an error wrapping multiple validation errors returned by ResourceSpec.ValidateAll() if the designated constraints aren't met.

func (ResourceSpecMultiError) AllErrors added in v2.8.0

func (m ResourceSpecMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ResourceSpecMultiError) Error added in v2.8.0

func (m ResourceSpecMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ResourceSpecValidationError added in v2.8.0

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

ResourceSpecValidationError is the validation error returned by ResourceSpec.Validate if the designated constraints aren't met.

func (ResourceSpecValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (ResourceSpecValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (ResourceSpecValidationError) ErrorName added in v2.8.0

func (e ResourceSpecValidationError) ErrorName() string

ErrorName returns error name.

func (ResourceSpecValidationError) Field added in v2.8.0

Field function returns field value.

func (ResourceSpecValidationError) Key added in v2.8.0

Key function returns key value.

func (ResourceSpecValidationError) Reason added in v2.8.0

Reason function returns reason value.

type RestartDatumRequest

type RestartDatumRequest struct {
	Job         *Job     `protobuf:"bytes,1,opt,name=job,proto3" json:"job,omitempty"`
	DataFilters []string `protobuf:"bytes,2,rep,name=data_filters,json=dataFilters,proto3" json:"data_filters,omitempty"`
	// contains filtered or unexported fields
}

func (*RestartDatumRequest) Descriptor deprecated

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

Deprecated: Use RestartDatumRequest.ProtoReflect.Descriptor instead.

func (*RestartDatumRequest) GetDataFilters

func (x *RestartDatumRequest) GetDataFilters() []string

func (*RestartDatumRequest) GetJob

func (x *RestartDatumRequest) GetJob() *Job

func (*RestartDatumRequest) MarshalLogObject

func (x *RestartDatumRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*RestartDatumRequest) ProtoMessage

func (*RestartDatumRequest) ProtoMessage()

func (*RestartDatumRequest) ProtoReflect added in v2.7.0

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

func (*RestartDatumRequest) Reset

func (x *RestartDatumRequest) Reset()

func (*RestartDatumRequest) String

func (x *RestartDatumRequest) String() string

func (*RestartDatumRequest) Validate added in v2.8.0

func (m *RestartDatumRequest) Validate() error

Validate checks the field values on RestartDatumRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RestartDatumRequest) ValidateAll added in v2.8.0

func (m *RestartDatumRequest) ValidateAll() error

ValidateAll checks the field values on RestartDatumRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RestartDatumRequestMultiError, or nil if none found.

type RestartDatumRequestMultiError added in v2.8.0

type RestartDatumRequestMultiError []error

RestartDatumRequestMultiError is an error wrapping multiple validation errors returned by RestartDatumRequest.ValidateAll() if the designated constraints aren't met.

func (RestartDatumRequestMultiError) AllErrors added in v2.8.0

func (m RestartDatumRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RestartDatumRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type RestartDatumRequestValidationError added in v2.8.0

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

RestartDatumRequestValidationError is the validation error returned by RestartDatumRequest.Validate if the designated constraints aren't met.

func (RestartDatumRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (RestartDatumRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (RestartDatumRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (RestartDatumRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (RestartDatumRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (RestartDatumRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type RunCronRequest

type RunCronRequest struct {
	Pipeline *Pipeline `protobuf:"bytes,1,opt,name=pipeline,proto3" json:"pipeline,omitempty"`
	// contains filtered or unexported fields
}

func (*RunCronRequest) Descriptor deprecated

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

Deprecated: Use RunCronRequest.ProtoReflect.Descriptor instead.

func (*RunCronRequest) GetPipeline

func (x *RunCronRequest) GetPipeline() *Pipeline

func (*RunCronRequest) MarshalLogObject

func (x *RunCronRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*RunCronRequest) ProtoMessage

func (*RunCronRequest) ProtoMessage()

func (*RunCronRequest) ProtoReflect added in v2.7.0

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

func (*RunCronRequest) Reset

func (x *RunCronRequest) Reset()

func (*RunCronRequest) String

func (x *RunCronRequest) String() string

func (*RunCronRequest) Validate added in v2.8.0

func (m *RunCronRequest) Validate() error

Validate checks the field values on RunCronRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RunCronRequest) ValidateAll added in v2.8.0

func (m *RunCronRequest) ValidateAll() error

ValidateAll checks the field values on RunCronRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RunCronRequestMultiError, or nil if none found.

type RunCronRequestMultiError added in v2.8.0

type RunCronRequestMultiError []error

RunCronRequestMultiError is an error wrapping multiple validation errors returned by RunCronRequest.ValidateAll() if the designated constraints aren't met.

func (RunCronRequestMultiError) AllErrors added in v2.8.0

func (m RunCronRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RunCronRequestMultiError) Error added in v2.8.0

func (m RunCronRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type RunCronRequestValidationError added in v2.8.0

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

RunCronRequestValidationError is the validation error returned by RunCronRequest.Validate if the designated constraints aren't met.

func (RunCronRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (RunCronRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (RunCronRequestValidationError) ErrorName added in v2.8.0

func (e RunCronRequestValidationError) ErrorName() string

ErrorName returns error name.

func (RunCronRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (RunCronRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (RunCronRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type RunLoadTestRequest

type RunLoadTestRequest struct {
	DagSpec     string `protobuf:"bytes,1,opt,name=dag_spec,json=dagSpec,proto3" json:"dag_spec,omitempty"`
	LoadSpec    string `protobuf:"bytes,2,opt,name=load_spec,json=loadSpec,proto3" json:"load_spec,omitempty"`
	Seed        int64  `protobuf:"varint,3,opt,name=seed,proto3" json:"seed,omitempty"`
	Parallelism int64  `protobuf:"varint,4,opt,name=parallelism,proto3" json:"parallelism,omitempty"`
	PodPatch    string `protobuf:"bytes,5,opt,name=pod_patch,json=podPatch,proto3" json:"pod_patch,omitempty"`
	StateId     string `protobuf:"bytes,6,opt,name=state_id,json=stateId,proto3" json:"state_id,omitempty"`
	// contains filtered or unexported fields
}

func (*RunLoadTestRequest) Descriptor deprecated

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

Deprecated: Use RunLoadTestRequest.ProtoReflect.Descriptor instead.

func (*RunLoadTestRequest) GetDagSpec

func (x *RunLoadTestRequest) GetDagSpec() string

func (*RunLoadTestRequest) GetLoadSpec

func (x *RunLoadTestRequest) GetLoadSpec() string

func (*RunLoadTestRequest) GetParallelism

func (x *RunLoadTestRequest) GetParallelism() int64

func (*RunLoadTestRequest) GetPodPatch

func (x *RunLoadTestRequest) GetPodPatch() string

func (*RunLoadTestRequest) GetSeed

func (x *RunLoadTestRequest) GetSeed() int64

func (*RunLoadTestRequest) GetStateId

func (x *RunLoadTestRequest) GetStateId() string

func (*RunLoadTestRequest) MarshalLogObject

func (x *RunLoadTestRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*RunLoadTestRequest) ProtoMessage

func (*RunLoadTestRequest) ProtoMessage()

func (*RunLoadTestRequest) ProtoReflect added in v2.7.0

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

func (*RunLoadTestRequest) Reset

func (x *RunLoadTestRequest) Reset()

func (*RunLoadTestRequest) String

func (x *RunLoadTestRequest) String() string

func (*RunLoadTestRequest) Validate added in v2.8.0

func (m *RunLoadTestRequest) Validate() error

Validate checks the field values on RunLoadTestRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RunLoadTestRequest) ValidateAll added in v2.8.0

func (m *RunLoadTestRequest) ValidateAll() error

ValidateAll checks the field values on RunLoadTestRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RunLoadTestRequestMultiError, or nil if none found.

type RunLoadTestRequestMultiError added in v2.8.0

type RunLoadTestRequestMultiError []error

RunLoadTestRequestMultiError is an error wrapping multiple validation errors returned by RunLoadTestRequest.ValidateAll() if the designated constraints aren't met.

func (RunLoadTestRequestMultiError) AllErrors added in v2.8.0

func (m RunLoadTestRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RunLoadTestRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type RunLoadTestRequestValidationError added in v2.8.0

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

RunLoadTestRequestValidationError is the validation error returned by RunLoadTestRequest.Validate if the designated constraints aren't met.

func (RunLoadTestRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (RunLoadTestRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (RunLoadTestRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (RunLoadTestRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (RunLoadTestRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (RunLoadTestRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type RunLoadTestResponse

type RunLoadTestResponse struct {
	Error   string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
	StateId string `protobuf:"bytes,2,opt,name=state_id,json=stateId,proto3" json:"state_id,omitempty"`
	// contains filtered or unexported fields
}

func (*RunLoadTestResponse) Descriptor deprecated

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

Deprecated: Use RunLoadTestResponse.ProtoReflect.Descriptor instead.

func (*RunLoadTestResponse) GetError

func (x *RunLoadTestResponse) GetError() string

func (*RunLoadTestResponse) GetStateId

func (x *RunLoadTestResponse) GetStateId() string

func (*RunLoadTestResponse) MarshalLogObject

func (x *RunLoadTestResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*RunLoadTestResponse) ProtoMessage

func (*RunLoadTestResponse) ProtoMessage()

func (*RunLoadTestResponse) ProtoReflect added in v2.7.0

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

func (*RunLoadTestResponse) Reset

func (x *RunLoadTestResponse) Reset()

func (*RunLoadTestResponse) String

func (x *RunLoadTestResponse) String() string

func (*RunLoadTestResponse) Validate added in v2.8.0

func (m *RunLoadTestResponse) Validate() error

Validate checks the field values on RunLoadTestResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RunLoadTestResponse) ValidateAll added in v2.8.0

func (m *RunLoadTestResponse) ValidateAll() error

ValidateAll checks the field values on RunLoadTestResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RunLoadTestResponseMultiError, or nil if none found.

type RunLoadTestResponseMultiError added in v2.8.0

type RunLoadTestResponseMultiError []error

RunLoadTestResponseMultiError is an error wrapping multiple validation errors returned by RunLoadTestResponse.ValidateAll() if the designated constraints aren't met.

func (RunLoadTestResponseMultiError) AllErrors added in v2.8.0

func (m RunLoadTestResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RunLoadTestResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type RunLoadTestResponseValidationError added in v2.8.0

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

RunLoadTestResponseValidationError is the validation error returned by RunLoadTestResponse.Validate if the designated constraints aren't met.

func (RunLoadTestResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (RunLoadTestResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (RunLoadTestResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (RunLoadTestResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (RunLoadTestResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (RunLoadTestResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type RunPipelineRequest

type RunPipelineRequest struct {
	Pipeline   *Pipeline     `protobuf:"bytes,1,opt,name=pipeline,proto3" json:"pipeline,omitempty"`
	Provenance []*pfs.Commit `protobuf:"bytes,2,rep,name=provenance,proto3" json:"provenance,omitempty"`
	JobId      string        `protobuf:"bytes,3,opt,name=job_id,json=jobId,proto3" json:"job_id,omitempty"`
	// contains filtered or unexported fields
}

func (*RunPipelineRequest) Descriptor deprecated

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

Deprecated: Use RunPipelineRequest.ProtoReflect.Descriptor instead.

func (*RunPipelineRequest) GetJobId added in v2.7.0

func (x *RunPipelineRequest) GetJobId() string

func (*RunPipelineRequest) GetPipeline

func (x *RunPipelineRequest) GetPipeline() *Pipeline

func (*RunPipelineRequest) GetProvenance

func (x *RunPipelineRequest) GetProvenance() []*pfs.Commit

func (*RunPipelineRequest) MarshalLogObject

func (x *RunPipelineRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*RunPipelineRequest) ProtoMessage

func (*RunPipelineRequest) ProtoMessage()

func (*RunPipelineRequest) ProtoReflect added in v2.7.0

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

func (*RunPipelineRequest) Reset

func (x *RunPipelineRequest) Reset()

func (*RunPipelineRequest) String

func (x *RunPipelineRequest) String() string

func (*RunPipelineRequest) Validate added in v2.8.0

func (m *RunPipelineRequest) Validate() error

Validate checks the field values on RunPipelineRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RunPipelineRequest) ValidateAll added in v2.8.0

func (m *RunPipelineRequest) ValidateAll() error

ValidateAll checks the field values on RunPipelineRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RunPipelineRequestMultiError, or nil if none found.

type RunPipelineRequestMultiError added in v2.8.0

type RunPipelineRequestMultiError []error

RunPipelineRequestMultiError is an error wrapping multiple validation errors returned by RunPipelineRequest.ValidateAll() if the designated constraints aren't met.

func (RunPipelineRequestMultiError) AllErrors added in v2.8.0

func (m RunPipelineRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RunPipelineRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type RunPipelineRequestValidationError added in v2.8.0

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

RunPipelineRequestValidationError is the validation error returned by RunPipelineRequest.Validate if the designated constraints aren't met.

func (RunPipelineRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (RunPipelineRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (RunPipelineRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (RunPipelineRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (RunPipelineRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (RunPipelineRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type SchedulingSpec

type SchedulingSpec struct {
	NodeSelector      map[string]string `` /* 185-byte string literal not displayed */
	PriorityClassName string            `protobuf:"bytes,2,opt,name=priority_class_name,json=priorityClassName,proto3" json:"priority_class_name,omitempty"`
	// contains filtered or unexported fields
}

func (*SchedulingSpec) Descriptor deprecated

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

Deprecated: Use SchedulingSpec.ProtoReflect.Descriptor instead.

func (*SchedulingSpec) GetNodeSelector

func (x *SchedulingSpec) GetNodeSelector() map[string]string

func (*SchedulingSpec) GetPriorityClassName

func (x *SchedulingSpec) GetPriorityClassName() string

func (*SchedulingSpec) MarshalLogObject

func (x *SchedulingSpec) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*SchedulingSpec) ProtoMessage

func (*SchedulingSpec) ProtoMessage()

func (*SchedulingSpec) ProtoReflect added in v2.7.0

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

func (*SchedulingSpec) Reset

func (x *SchedulingSpec) Reset()

func (*SchedulingSpec) String

func (x *SchedulingSpec) String() string

func (*SchedulingSpec) Validate added in v2.8.0

func (m *SchedulingSpec) Validate() error

Validate checks the field values on SchedulingSpec with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SchedulingSpec) ValidateAll added in v2.8.0

func (m *SchedulingSpec) ValidateAll() error

ValidateAll checks the field values on SchedulingSpec with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SchedulingSpecMultiError, or nil if none found.

type SchedulingSpecMultiError added in v2.8.0

type SchedulingSpecMultiError []error

SchedulingSpecMultiError is an error wrapping multiple validation errors returned by SchedulingSpec.ValidateAll() if the designated constraints aren't met.

func (SchedulingSpecMultiError) AllErrors added in v2.8.0

func (m SchedulingSpecMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SchedulingSpecMultiError) Error added in v2.8.0

func (m SchedulingSpecMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type SchedulingSpecValidationError added in v2.8.0

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

SchedulingSpecValidationError is the validation error returned by SchedulingSpec.Validate if the designated constraints aren't met.

func (SchedulingSpecValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (SchedulingSpecValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SchedulingSpecValidationError) ErrorName added in v2.8.0

func (e SchedulingSpecValidationError) ErrorName() string

ErrorName returns error name.

func (SchedulingSpecValidationError) Field added in v2.8.0

Field function returns field value.

func (SchedulingSpecValidationError) Key added in v2.8.0

Key function returns key value.

func (SchedulingSpecValidationError) Reason added in v2.8.0

Reason function returns reason value.

type Secret

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

func (*Secret) Descriptor deprecated

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

Deprecated: Use Secret.ProtoReflect.Descriptor instead.

func (*Secret) GetName

func (x *Secret) GetName() string

func (*Secret) MarshalLogObject

func (x *Secret) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Secret) ProtoMessage

func (*Secret) ProtoMessage()

func (*Secret) ProtoReflect added in v2.7.0

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

func (*Secret) Reset

func (x *Secret) Reset()

func (*Secret) String

func (x *Secret) String() string

func (*Secret) Validate added in v2.8.0

func (m *Secret) Validate() error

Validate checks the field values on Secret with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Secret) ValidateAll added in v2.8.0

func (m *Secret) ValidateAll() error

ValidateAll checks the field values on Secret with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SecretMultiError, or nil if none found.

type SecretInfo

type SecretInfo struct {
	Secret            *Secret                `protobuf:"bytes,1,opt,name=secret,proto3" json:"secret,omitempty"`
	Type              string                 `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	CreationTimestamp *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=creation_timestamp,json=creationTimestamp,proto3" json:"creation_timestamp,omitempty"`
	// contains filtered or unexported fields
}

func (*SecretInfo) Descriptor deprecated

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

Deprecated: Use SecretInfo.ProtoReflect.Descriptor instead.

func (*SecretInfo) GetCreationTimestamp

func (x *SecretInfo) GetCreationTimestamp() *timestamppb.Timestamp

func (*SecretInfo) GetSecret

func (x *SecretInfo) GetSecret() *Secret

func (*SecretInfo) GetType

func (x *SecretInfo) GetType() string

func (*SecretInfo) MarshalLogObject

func (x *SecretInfo) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*SecretInfo) ProtoMessage

func (*SecretInfo) ProtoMessage()

func (*SecretInfo) ProtoReflect added in v2.7.0

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

func (*SecretInfo) Reset

func (x *SecretInfo) Reset()

func (*SecretInfo) String

func (x *SecretInfo) String() string

func (*SecretInfo) Validate added in v2.8.0

func (m *SecretInfo) Validate() error

Validate checks the field values on SecretInfo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SecretInfo) ValidateAll added in v2.8.0

func (m *SecretInfo) ValidateAll() error

ValidateAll checks the field values on SecretInfo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SecretInfoMultiError, or nil if none found.

type SecretInfoMultiError added in v2.8.0

type SecretInfoMultiError []error

SecretInfoMultiError is an error wrapping multiple validation errors returned by SecretInfo.ValidateAll() if the designated constraints aren't met.

func (SecretInfoMultiError) AllErrors added in v2.8.0

func (m SecretInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SecretInfoMultiError) Error added in v2.8.0

func (m SecretInfoMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type SecretInfoValidationError added in v2.8.0

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

SecretInfoValidationError is the validation error returned by SecretInfo.Validate if the designated constraints aren't met.

func (SecretInfoValidationError) Cause added in v2.8.0

func (e SecretInfoValidationError) Cause() error

Cause function returns cause value.

func (SecretInfoValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SecretInfoValidationError) ErrorName added in v2.8.0

func (e SecretInfoValidationError) ErrorName() string

ErrorName returns error name.

func (SecretInfoValidationError) Field added in v2.8.0

Field function returns field value.

func (SecretInfoValidationError) Key added in v2.8.0

Key function returns key value.

func (SecretInfoValidationError) Reason added in v2.8.0

func (e SecretInfoValidationError) Reason() string

Reason function returns reason value.

type SecretInfos

type SecretInfos struct {
	SecretInfo []*SecretInfo `protobuf:"bytes,1,rep,name=secret_info,json=secretInfo,proto3" json:"secret_info,omitempty"`
	// contains filtered or unexported fields
}

func (*SecretInfos) Descriptor deprecated

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

Deprecated: Use SecretInfos.ProtoReflect.Descriptor instead.

func (*SecretInfos) GetSecretInfo

func (x *SecretInfos) GetSecretInfo() []*SecretInfo

func (*SecretInfos) MarshalLogObject

func (x *SecretInfos) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*SecretInfos) ProtoMessage

func (*SecretInfos) ProtoMessage()

func (*SecretInfos) ProtoReflect added in v2.7.0

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

func (*SecretInfos) Reset

func (x *SecretInfos) Reset()

func (*SecretInfos) String

func (x *SecretInfos) String() string

func (*SecretInfos) Validate added in v2.8.0

func (m *SecretInfos) Validate() error

Validate checks the field values on SecretInfos with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SecretInfos) ValidateAll added in v2.8.0

func (m *SecretInfos) ValidateAll() error

ValidateAll checks the field values on SecretInfos with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SecretInfosMultiError, or nil if none found.

type SecretInfosMultiError added in v2.8.0

type SecretInfosMultiError []error

SecretInfosMultiError is an error wrapping multiple validation errors returned by SecretInfos.ValidateAll() if the designated constraints aren't met.

func (SecretInfosMultiError) AllErrors added in v2.8.0

func (m SecretInfosMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SecretInfosMultiError) Error added in v2.8.0

func (m SecretInfosMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type SecretInfosValidationError added in v2.8.0

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

SecretInfosValidationError is the validation error returned by SecretInfos.Validate if the designated constraints aren't met.

func (SecretInfosValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (SecretInfosValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SecretInfosValidationError) ErrorName added in v2.8.0

func (e SecretInfosValidationError) ErrorName() string

ErrorName returns error name.

func (SecretInfosValidationError) Field added in v2.8.0

Field function returns field value.

func (SecretInfosValidationError) Key added in v2.8.0

Key function returns key value.

func (SecretInfosValidationError) Reason added in v2.8.0

Reason function returns reason value.

type SecretMount

type SecretMount struct {

	// Name must be the name of the secret in kubernetes.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Key of the secret to load into env_var, this field only has meaning if EnvVar != "".
	Key       string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	MountPath string `protobuf:"bytes,3,opt,name=mount_path,json=mountPath,proto3" json:"mount_path,omitempty"`
	EnvVar    string `protobuf:"bytes,4,opt,name=env_var,json=envVar,proto3" json:"env_var,omitempty"`
	// contains filtered or unexported fields
}

func (*SecretMount) Descriptor deprecated

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

Deprecated: Use SecretMount.ProtoReflect.Descriptor instead.

func (*SecretMount) GetEnvVar

func (x *SecretMount) GetEnvVar() string

func (*SecretMount) GetKey

func (x *SecretMount) GetKey() string

func (*SecretMount) GetMountPath

func (x *SecretMount) GetMountPath() string

func (*SecretMount) GetName

func (x *SecretMount) GetName() string

func (*SecretMount) MarshalLogObject

func (x *SecretMount) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*SecretMount) ProtoMessage

func (*SecretMount) ProtoMessage()

func (*SecretMount) ProtoReflect added in v2.7.0

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

func (*SecretMount) Reset

func (x *SecretMount) Reset()

func (*SecretMount) String

func (x *SecretMount) String() string

func (*SecretMount) Validate added in v2.8.0

func (m *SecretMount) Validate() error

Validate checks the field values on SecretMount with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SecretMount) ValidateAll added in v2.8.0

func (m *SecretMount) ValidateAll() error

ValidateAll checks the field values on SecretMount with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SecretMountMultiError, or nil if none found.

type SecretMountMultiError added in v2.8.0

type SecretMountMultiError []error

SecretMountMultiError is an error wrapping multiple validation errors returned by SecretMount.ValidateAll() if the designated constraints aren't met.

func (SecretMountMultiError) AllErrors added in v2.8.0

func (m SecretMountMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SecretMountMultiError) Error added in v2.8.0

func (m SecretMountMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type SecretMountValidationError added in v2.8.0

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

SecretMountValidationError is the validation error returned by SecretMount.Validate if the designated constraints aren't met.

func (SecretMountValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (SecretMountValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SecretMountValidationError) ErrorName added in v2.8.0

func (e SecretMountValidationError) ErrorName() string

ErrorName returns error name.

func (SecretMountValidationError) Field added in v2.8.0

Field function returns field value.

func (SecretMountValidationError) Key added in v2.8.0

Key function returns key value.

func (SecretMountValidationError) Reason added in v2.8.0

Reason function returns reason value.

type SecretMultiError added in v2.8.0

type SecretMultiError []error

SecretMultiError is an error wrapping multiple validation errors returned by Secret.ValidateAll() if the designated constraints aren't met.

func (SecretMultiError) AllErrors added in v2.8.0

func (m SecretMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SecretMultiError) Error added in v2.8.0

func (m SecretMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type SecretValidationError added in v2.8.0

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

SecretValidationError is the validation error returned by Secret.Validate if the designated constraints aren't met.

func (SecretValidationError) Cause added in v2.8.0

func (e SecretValidationError) Cause() error

Cause function returns cause value.

func (SecretValidationError) Error added in v2.8.0

func (e SecretValidationError) Error() string

Error satisfies the builtin error interface

func (SecretValidationError) ErrorName added in v2.8.0

func (e SecretValidationError) ErrorName() string

ErrorName returns error name.

func (SecretValidationError) Field added in v2.8.0

func (e SecretValidationError) Field() string

Field function returns field value.

func (SecretValidationError) Key added in v2.8.0

func (e SecretValidationError) Key() bool

Key function returns key value.

func (SecretValidationError) Reason added in v2.8.0

func (e SecretValidationError) Reason() string

Reason function returns reason value.

type Service

type Service struct {
	InternalPort int32  `protobuf:"varint,1,opt,name=internal_port,json=internalPort,proto3" json:"internal_port,omitempty"`
	ExternalPort int32  `protobuf:"varint,2,opt,name=external_port,json=externalPort,proto3" json:"external_port,omitempty"`
	Ip           string `protobuf:"bytes,3,opt,name=ip,proto3" json:"ip,omitempty"`
	Type         string `protobuf:"bytes,4,opt,name=type,proto3" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*Service) Descriptor deprecated

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

Deprecated: Use Service.ProtoReflect.Descriptor instead.

func (*Service) GetExternalPort

func (x *Service) GetExternalPort() int32

func (*Service) GetInternalPort

func (x *Service) GetInternalPort() int32

func (*Service) GetIp added in v2.7.0

func (x *Service) GetIp() string

func (*Service) GetType

func (x *Service) GetType() string

func (*Service) MarshalLogObject

func (x *Service) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Service) ProtoMessage

func (*Service) ProtoMessage()

func (*Service) ProtoReflect added in v2.7.0

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

func (*Service) Reset

func (x *Service) Reset()

func (*Service) String

func (x *Service) String() string

func (*Service) Validate added in v2.8.0

func (m *Service) Validate() error

Validate checks the field values on Service with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Service) ValidateAll added in v2.8.0

func (m *Service) ValidateAll() error

ValidateAll checks the field values on Service with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServiceMultiError, or nil if none found.

type ServiceMultiError added in v2.8.0

type ServiceMultiError []error

ServiceMultiError is an error wrapping multiple validation errors returned by Service.ValidateAll() if the designated constraints aren't met.

func (ServiceMultiError) AllErrors added in v2.8.0

func (m ServiceMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ServiceMultiError) Error added in v2.8.0

func (m ServiceMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ServiceValidationError added in v2.8.0

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

ServiceValidationError is the validation error returned by Service.Validate if the designated constraints aren't met.

func (ServiceValidationError) Cause added in v2.8.0

func (e ServiceValidationError) Cause() error

Cause function returns cause value.

func (ServiceValidationError) Error added in v2.8.0

func (e ServiceValidationError) Error() string

Error satisfies the builtin error interface

func (ServiceValidationError) ErrorName added in v2.8.0

func (e ServiceValidationError) ErrorName() string

ErrorName returns error name.

func (ServiceValidationError) Field added in v2.8.0

func (e ServiceValidationError) Field() string

Field function returns field value.

func (ServiceValidationError) Key added in v2.8.0

func (e ServiceValidationError) Key() bool

Key function returns key value.

func (ServiceValidationError) Reason added in v2.8.0

func (e ServiceValidationError) Reason() string

Reason function returns reason value.

type SetClusterDefaultsRequest added in v2.7.0

type SetClusterDefaultsRequest struct {
	Regenerate bool `protobuf:"varint,2,opt,name=regenerate,proto3" json:"regenerate,omitempty"`
	Reprocess  bool `protobuf:"varint,3,opt,name=reprocess,proto3" json:"reprocess,omitempty"` // must be false if regenerate is false
	DryRun     bool `protobuf:"varint,4,opt,name=dry_run,json=dryRun,proto3" json:"dry_run,omitempty"`
	// A JSON-encoded ClusterDefaults message, this will be stored verbatim.
	ClusterDefaultsJson string `protobuf:"bytes,5,opt,name=cluster_defaults_json,json=clusterDefaultsJson,proto3" json:"cluster_defaults_json,omitempty"`
	// contains filtered or unexported fields
}

func (*SetClusterDefaultsRequest) Descriptor deprecated added in v2.7.0

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

Deprecated: Use SetClusterDefaultsRequest.ProtoReflect.Descriptor instead.

func (*SetClusterDefaultsRequest) GetClusterDefaultsJson added in v2.8.0

func (x *SetClusterDefaultsRequest) GetClusterDefaultsJson() string

func (*SetClusterDefaultsRequest) GetDryRun added in v2.7.0

func (x *SetClusterDefaultsRequest) GetDryRun() bool

func (*SetClusterDefaultsRequest) GetRegenerate added in v2.7.0

func (x *SetClusterDefaultsRequest) GetRegenerate() bool

func (*SetClusterDefaultsRequest) GetReprocess added in v2.7.0

func (x *SetClusterDefaultsRequest) GetReprocess() bool

func (*SetClusterDefaultsRequest) MarshalLogObject added in v2.7.0

func (x *SetClusterDefaultsRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*SetClusterDefaultsRequest) ProtoMessage added in v2.7.0

func (*SetClusterDefaultsRequest) ProtoMessage()

func (*SetClusterDefaultsRequest) ProtoReflect added in v2.7.0

func (*SetClusterDefaultsRequest) Reset added in v2.7.0

func (x *SetClusterDefaultsRequest) Reset()

func (*SetClusterDefaultsRequest) String added in v2.7.0

func (x *SetClusterDefaultsRequest) String() string

func (*SetClusterDefaultsRequest) Validate added in v2.8.0

func (m *SetClusterDefaultsRequest) Validate() error

Validate checks the field values on SetClusterDefaultsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SetClusterDefaultsRequest) ValidateAll added in v2.8.0

func (m *SetClusterDefaultsRequest) ValidateAll() error

ValidateAll checks the field values on SetClusterDefaultsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SetClusterDefaultsRequestMultiError, or nil if none found.

type SetClusterDefaultsRequestMultiError added in v2.8.0

type SetClusterDefaultsRequestMultiError []error

SetClusterDefaultsRequestMultiError is an error wrapping multiple validation errors returned by SetClusterDefaultsRequest.ValidateAll() if the designated constraints aren't met.

func (SetClusterDefaultsRequestMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (SetClusterDefaultsRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type SetClusterDefaultsRequestValidationError added in v2.8.0

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

SetClusterDefaultsRequestValidationError is the validation error returned by SetClusterDefaultsRequest.Validate if the designated constraints aren't met.

func (SetClusterDefaultsRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (SetClusterDefaultsRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SetClusterDefaultsRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (SetClusterDefaultsRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (SetClusterDefaultsRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (SetClusterDefaultsRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type SetClusterDefaultsResponse added in v2.7.0

type SetClusterDefaultsResponse struct {
	AffectedPipelines []*Pipeline `protobuf:"bytes,2,rep,name=affected_pipelines,json=affectedPipelines,proto3" json:"affected_pipelines,omitempty"`
	// contains filtered or unexported fields
}

func (*SetClusterDefaultsResponse) Descriptor deprecated added in v2.7.0

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

Deprecated: Use SetClusterDefaultsResponse.ProtoReflect.Descriptor instead.

func (*SetClusterDefaultsResponse) GetAffectedPipelines added in v2.7.0

func (x *SetClusterDefaultsResponse) GetAffectedPipelines() []*Pipeline

func (*SetClusterDefaultsResponse) MarshalLogObject added in v2.7.0

func (x *SetClusterDefaultsResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*SetClusterDefaultsResponse) ProtoMessage added in v2.7.0

func (*SetClusterDefaultsResponse) ProtoMessage()

func (*SetClusterDefaultsResponse) ProtoReflect added in v2.7.0

func (*SetClusterDefaultsResponse) Reset added in v2.7.0

func (x *SetClusterDefaultsResponse) Reset()

func (*SetClusterDefaultsResponse) String added in v2.7.0

func (x *SetClusterDefaultsResponse) String() string

func (*SetClusterDefaultsResponse) Validate added in v2.8.0

func (m *SetClusterDefaultsResponse) Validate() error

Validate checks the field values on SetClusterDefaultsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SetClusterDefaultsResponse) ValidateAll added in v2.8.0

func (m *SetClusterDefaultsResponse) ValidateAll() error

ValidateAll checks the field values on SetClusterDefaultsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SetClusterDefaultsResponseMultiError, or nil if none found.

type SetClusterDefaultsResponseMultiError added in v2.8.0

type SetClusterDefaultsResponseMultiError []error

SetClusterDefaultsResponseMultiError is an error wrapping multiple validation errors returned by SetClusterDefaultsResponse.ValidateAll() if the designated constraints aren't met.

func (SetClusterDefaultsResponseMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (SetClusterDefaultsResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type SetClusterDefaultsResponseValidationError added in v2.8.0

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

SetClusterDefaultsResponseValidationError is the validation error returned by SetClusterDefaultsResponse.Validate if the designated constraints aren't met.

func (SetClusterDefaultsResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (SetClusterDefaultsResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SetClusterDefaultsResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (SetClusterDefaultsResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (SetClusterDefaultsResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (SetClusterDefaultsResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type SetProjectDefaultsRequest added in v2.8.0

type SetProjectDefaultsRequest struct {
	Project    *pfs.Project `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"`
	Regenerate bool         `protobuf:"varint,2,opt,name=regenerate,proto3" json:"regenerate,omitempty"`
	Reprocess  bool         `protobuf:"varint,3,opt,name=reprocess,proto3" json:"reprocess,omitempty"` // must be false if regenerate is false
	DryRun     bool         `protobuf:"varint,4,opt,name=dry_run,json=dryRun,proto3" json:"dry_run,omitempty"`
	// A JSON-encoded ProjectDefaults message, this will be stored verbatim.
	ProjectDefaultsJson string `protobuf:"bytes,5,opt,name=project_defaults_json,json=projectDefaultsJson,proto3" json:"project_defaults_json,omitempty"`
	// contains filtered or unexported fields
}

func (*SetProjectDefaultsRequest) Descriptor deprecated added in v2.8.0

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

Deprecated: Use SetProjectDefaultsRequest.ProtoReflect.Descriptor instead.

func (*SetProjectDefaultsRequest) GetDryRun added in v2.8.0

func (x *SetProjectDefaultsRequest) GetDryRun() bool

func (*SetProjectDefaultsRequest) GetProject added in v2.8.0

func (x *SetProjectDefaultsRequest) GetProject() *pfs.Project

func (*SetProjectDefaultsRequest) GetProjectDefaultsJson added in v2.8.0

func (x *SetProjectDefaultsRequest) GetProjectDefaultsJson() string

func (*SetProjectDefaultsRequest) GetRegenerate added in v2.8.0

func (x *SetProjectDefaultsRequest) GetRegenerate() bool

func (*SetProjectDefaultsRequest) GetReprocess added in v2.8.0

func (x *SetProjectDefaultsRequest) GetReprocess() bool

func (*SetProjectDefaultsRequest) MarshalLogObject added in v2.8.0

func (x *SetProjectDefaultsRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*SetProjectDefaultsRequest) ProtoMessage added in v2.8.0

func (*SetProjectDefaultsRequest) ProtoMessage()

func (*SetProjectDefaultsRequest) ProtoReflect added in v2.8.0

func (*SetProjectDefaultsRequest) Reset added in v2.8.0

func (x *SetProjectDefaultsRequest) Reset()

func (*SetProjectDefaultsRequest) String added in v2.8.0

func (x *SetProjectDefaultsRequest) String() string

func (*SetProjectDefaultsRequest) Validate added in v2.8.0

func (m *SetProjectDefaultsRequest) Validate() error

Validate checks the field values on SetProjectDefaultsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SetProjectDefaultsRequest) ValidateAll added in v2.8.0

func (m *SetProjectDefaultsRequest) ValidateAll() error

ValidateAll checks the field values on SetProjectDefaultsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SetProjectDefaultsRequestMultiError, or nil if none found.

type SetProjectDefaultsRequestMultiError added in v2.8.0

type SetProjectDefaultsRequestMultiError []error

SetProjectDefaultsRequestMultiError is an error wrapping multiple validation errors returned by SetProjectDefaultsRequest.ValidateAll() if the designated constraints aren't met.

func (SetProjectDefaultsRequestMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (SetProjectDefaultsRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type SetProjectDefaultsRequestValidationError added in v2.8.0

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

SetProjectDefaultsRequestValidationError is the validation error returned by SetProjectDefaultsRequest.Validate if the designated constraints aren't met.

func (SetProjectDefaultsRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (SetProjectDefaultsRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SetProjectDefaultsRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (SetProjectDefaultsRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (SetProjectDefaultsRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (SetProjectDefaultsRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type SetProjectDefaultsResponse added in v2.8.0

type SetProjectDefaultsResponse struct {
	AffectedPipelines []*Pipeline `protobuf:"bytes,1,rep,name=affected_pipelines,json=affectedPipelines,proto3" json:"affected_pipelines,omitempty"`
	// contains filtered or unexported fields
}

func (*SetProjectDefaultsResponse) Descriptor deprecated added in v2.8.0

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

Deprecated: Use SetProjectDefaultsResponse.ProtoReflect.Descriptor instead.

func (*SetProjectDefaultsResponse) GetAffectedPipelines added in v2.8.0

func (x *SetProjectDefaultsResponse) GetAffectedPipelines() []*Pipeline

func (*SetProjectDefaultsResponse) MarshalLogObject added in v2.8.0

func (x *SetProjectDefaultsResponse) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*SetProjectDefaultsResponse) ProtoMessage added in v2.8.0

func (*SetProjectDefaultsResponse) ProtoMessage()

func (*SetProjectDefaultsResponse) ProtoReflect added in v2.8.0

func (*SetProjectDefaultsResponse) Reset added in v2.8.0

func (x *SetProjectDefaultsResponse) Reset()

func (*SetProjectDefaultsResponse) String added in v2.8.0

func (x *SetProjectDefaultsResponse) String() string

func (*SetProjectDefaultsResponse) Validate added in v2.8.0

func (m *SetProjectDefaultsResponse) Validate() error

Validate checks the field values on SetProjectDefaultsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SetProjectDefaultsResponse) ValidateAll added in v2.8.0

func (m *SetProjectDefaultsResponse) ValidateAll() error

ValidateAll checks the field values on SetProjectDefaultsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SetProjectDefaultsResponseMultiError, or nil if none found.

type SetProjectDefaultsResponseMultiError added in v2.8.0

type SetProjectDefaultsResponseMultiError []error

SetProjectDefaultsResponseMultiError is an error wrapping multiple validation errors returned by SetProjectDefaultsResponse.ValidateAll() if the designated constraints aren't met.

func (SetProjectDefaultsResponseMultiError) AllErrors added in v2.8.0

AllErrors returns a list of validation violation errors.

func (SetProjectDefaultsResponseMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type SetProjectDefaultsResponseValidationError added in v2.8.0

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

SetProjectDefaultsResponseValidationError is the validation error returned by SetProjectDefaultsResponse.Validate if the designated constraints aren't met.

func (SetProjectDefaultsResponseValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (SetProjectDefaultsResponseValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SetProjectDefaultsResponseValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (SetProjectDefaultsResponseValidationError) Field added in v2.8.0

Field function returns field value.

func (SetProjectDefaultsResponseValidationError) Key added in v2.8.0

Key function returns key value.

func (SetProjectDefaultsResponseValidationError) Reason added in v2.8.0

Reason function returns reason value.

type Spout

type Spout struct {
	Service *Service `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
	// contains filtered or unexported fields
}

func (*Spout) Descriptor deprecated

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

Deprecated: Use Spout.ProtoReflect.Descriptor instead.

func (*Spout) GetService

func (x *Spout) GetService() *Service

func (*Spout) MarshalLogObject

func (x *Spout) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Spout) ProtoMessage

func (*Spout) ProtoMessage()

func (*Spout) ProtoReflect added in v2.7.0

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

func (*Spout) Reset

func (x *Spout) Reset()

func (*Spout) String

func (x *Spout) String() string

func (*Spout) Validate added in v2.8.0

func (m *Spout) Validate() error

Validate checks the field values on Spout with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Spout) ValidateAll added in v2.8.0

func (m *Spout) ValidateAll() error

ValidateAll checks the field values on Spout with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SpoutMultiError, or nil if none found.

type SpoutMultiError added in v2.8.0

type SpoutMultiError []error

SpoutMultiError is an error wrapping multiple validation errors returned by Spout.ValidateAll() if the designated constraints aren't met.

func (SpoutMultiError) AllErrors added in v2.8.0

func (m SpoutMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SpoutMultiError) Error added in v2.8.0

func (m SpoutMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type SpoutValidationError added in v2.8.0

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

SpoutValidationError is the validation error returned by Spout.Validate if the designated constraints aren't met.

func (SpoutValidationError) Cause added in v2.8.0

func (e SpoutValidationError) Cause() error

Cause function returns cause value.

func (SpoutValidationError) Error added in v2.8.0

func (e SpoutValidationError) Error() string

Error satisfies the builtin error interface

func (SpoutValidationError) ErrorName added in v2.8.0

func (e SpoutValidationError) ErrorName() string

ErrorName returns error name.

func (SpoutValidationError) Field added in v2.8.0

func (e SpoutValidationError) Field() string

Field function returns field value.

func (SpoutValidationError) Key added in v2.8.0

func (e SpoutValidationError) Key() bool

Key function returns key value.

func (SpoutValidationError) Reason added in v2.8.0

func (e SpoutValidationError) Reason() string

Reason function returns reason value.

type StartCreateDatumRequest added in v2.9.2

type StartCreateDatumRequest struct {

	// Input is the input to list datums from. The datums listed are the ones
	// that would be run if a pipeline was created with the provided input.
	Input *Input `protobuf:"bytes,1,opt,name=input,proto3" json:"input,omitempty"`
	// Number of datums to return in first batch. If 0, default batch size
	// is returned.
	Number int32 `protobuf:"varint,2,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*StartCreateDatumRequest) Descriptor deprecated added in v2.9.2

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

Deprecated: Use StartCreateDatumRequest.ProtoReflect.Descriptor instead.

func (*StartCreateDatumRequest) GetInput added in v2.9.2

func (x *StartCreateDatumRequest) GetInput() *Input

func (*StartCreateDatumRequest) GetNumber added in v2.9.2

func (x *StartCreateDatumRequest) GetNumber() int32

func (*StartCreateDatumRequest) MarshalLogObject added in v2.9.2

func (x *StartCreateDatumRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*StartCreateDatumRequest) ProtoMessage added in v2.9.2

func (*StartCreateDatumRequest) ProtoMessage()

func (*StartCreateDatumRequest) ProtoReflect added in v2.9.2

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

func (*StartCreateDatumRequest) Reset added in v2.9.2

func (x *StartCreateDatumRequest) Reset()

func (*StartCreateDatumRequest) String added in v2.9.2

func (x *StartCreateDatumRequest) String() string

func (*StartCreateDatumRequest) Validate added in v2.9.2

func (m *StartCreateDatumRequest) Validate() error

Validate checks the field values on StartCreateDatumRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*StartCreateDatumRequest) ValidateAll added in v2.9.2

func (m *StartCreateDatumRequest) ValidateAll() error

ValidateAll checks the field values on StartCreateDatumRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in StartCreateDatumRequestMultiError, or nil if none found.

type StartCreateDatumRequestMultiError added in v2.9.2

type StartCreateDatumRequestMultiError []error

StartCreateDatumRequestMultiError is an error wrapping multiple validation errors returned by StartCreateDatumRequest.ValidateAll() if the designated constraints aren't met.

func (StartCreateDatumRequestMultiError) AllErrors added in v2.9.2

func (m StartCreateDatumRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (StartCreateDatumRequestMultiError) Error added in v2.9.2

Error returns a concatenation of all the error messages it wraps.

type StartCreateDatumRequestValidationError added in v2.9.2

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

StartCreateDatumRequestValidationError is the validation error returned by StartCreateDatumRequest.Validate if the designated constraints aren't met.

func (StartCreateDatumRequestValidationError) Cause added in v2.9.2

Cause function returns cause value.

func (StartCreateDatumRequestValidationError) Error added in v2.9.2

Error satisfies the builtin error interface

func (StartCreateDatumRequestValidationError) ErrorName added in v2.9.2

ErrorName returns error name.

func (StartCreateDatumRequestValidationError) Field added in v2.9.2

Field function returns field value.

func (StartCreateDatumRequestValidationError) Key added in v2.9.2

Key function returns key value.

func (StartCreateDatumRequestValidationError) Reason added in v2.9.2

Reason function returns reason value.

type StartPipelineRequest

type StartPipelineRequest struct {
	Pipeline *Pipeline `protobuf:"bytes,1,opt,name=pipeline,proto3" json:"pipeline,omitempty"`
	// contains filtered or unexported fields
}

func (*StartPipelineRequest) Descriptor deprecated

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

Deprecated: Use StartPipelineRequest.ProtoReflect.Descriptor instead.

func (*StartPipelineRequest) GetPipeline

func (x *StartPipelineRequest) GetPipeline() *Pipeline

func (*StartPipelineRequest) MarshalLogObject

func (x *StartPipelineRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*StartPipelineRequest) ProtoMessage

func (*StartPipelineRequest) ProtoMessage()

func (*StartPipelineRequest) ProtoReflect added in v2.7.0

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

func (*StartPipelineRequest) Reset

func (x *StartPipelineRequest) Reset()

func (*StartPipelineRequest) String

func (x *StartPipelineRequest) String() string

func (*StartPipelineRequest) Validate added in v2.8.0

func (m *StartPipelineRequest) Validate() error

Validate checks the field values on StartPipelineRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*StartPipelineRequest) ValidateAll added in v2.8.0

func (m *StartPipelineRequest) ValidateAll() error

ValidateAll checks the field values on StartPipelineRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in StartPipelineRequestMultiError, or nil if none found.

type StartPipelineRequestMultiError added in v2.8.0

type StartPipelineRequestMultiError []error

StartPipelineRequestMultiError is an error wrapping multiple validation errors returned by StartPipelineRequest.ValidateAll() if the designated constraints aren't met.

func (StartPipelineRequestMultiError) AllErrors added in v2.8.0

func (m StartPipelineRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (StartPipelineRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type StartPipelineRequestValidationError added in v2.8.0

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

StartPipelineRequestValidationError is the validation error returned by StartPipelineRequest.Validate if the designated constraints aren't met.

func (StartPipelineRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (StartPipelineRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (StartPipelineRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (StartPipelineRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (StartPipelineRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (StartPipelineRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type StopJobRequest

type StopJobRequest struct {
	Job    *Job   `protobuf:"bytes,1,opt,name=job,proto3" json:"job,omitempty"`
	Reason string `protobuf:"bytes,3,opt,name=reason,proto3" json:"reason,omitempty"`
	// contains filtered or unexported fields
}

func (*StopJobRequest) Descriptor deprecated

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

Deprecated: Use StopJobRequest.ProtoReflect.Descriptor instead.

func (*StopJobRequest) GetJob

func (x *StopJobRequest) GetJob() *Job

func (*StopJobRequest) GetReason

func (x *StopJobRequest) GetReason() string

func (*StopJobRequest) MarshalLogObject

func (x *StopJobRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*StopJobRequest) ProtoMessage

func (*StopJobRequest) ProtoMessage()

func (*StopJobRequest) ProtoReflect added in v2.7.0

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

func (*StopJobRequest) Reset

func (x *StopJobRequest) Reset()

func (*StopJobRequest) String

func (x *StopJobRequest) String() string

func (*StopJobRequest) Validate added in v2.8.0

func (m *StopJobRequest) Validate() error

Validate checks the field values on StopJobRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*StopJobRequest) ValidateAll added in v2.8.0

func (m *StopJobRequest) ValidateAll() error

ValidateAll checks the field values on StopJobRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in StopJobRequestMultiError, or nil if none found.

type StopJobRequestMultiError added in v2.8.0

type StopJobRequestMultiError []error

StopJobRequestMultiError is an error wrapping multiple validation errors returned by StopJobRequest.ValidateAll() if the designated constraints aren't met.

func (StopJobRequestMultiError) AllErrors added in v2.8.0

func (m StopJobRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (StopJobRequestMultiError) Error added in v2.8.0

func (m StopJobRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type StopJobRequestValidationError added in v2.8.0

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

StopJobRequestValidationError is the validation error returned by StopJobRequest.Validate if the designated constraints aren't met.

func (StopJobRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (StopJobRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (StopJobRequestValidationError) ErrorName added in v2.8.0

func (e StopJobRequestValidationError) ErrorName() string

ErrorName returns error name.

func (StopJobRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (StopJobRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (StopJobRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type StopPipelineRequest

type StopPipelineRequest struct {
	Pipeline *Pipeline `protobuf:"bytes,1,opt,name=pipeline,proto3" json:"pipeline,omitempty"`
	// If true, an error will be returned if the pipeline doesn't exist.
	MustExist bool `protobuf:"varint,2,opt,name=must_exist,json=mustExist,proto3" json:"must_exist,omitempty"`
	// contains filtered or unexported fields
}

func (*StopPipelineRequest) Descriptor deprecated

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

Deprecated: Use StopPipelineRequest.ProtoReflect.Descriptor instead.

func (*StopPipelineRequest) GetMustExist added in v2.8.0

func (x *StopPipelineRequest) GetMustExist() bool

func (*StopPipelineRequest) GetPipeline

func (x *StopPipelineRequest) GetPipeline() *Pipeline

func (*StopPipelineRequest) MarshalLogObject

func (x *StopPipelineRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*StopPipelineRequest) ProtoMessage

func (*StopPipelineRequest) ProtoMessage()

func (*StopPipelineRequest) ProtoReflect added in v2.7.0

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

func (*StopPipelineRequest) Reset

func (x *StopPipelineRequest) Reset()

func (*StopPipelineRequest) String

func (x *StopPipelineRequest) String() string

func (*StopPipelineRequest) Validate added in v2.8.0

func (m *StopPipelineRequest) Validate() error

Validate checks the field values on StopPipelineRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*StopPipelineRequest) ValidateAll added in v2.8.0

func (m *StopPipelineRequest) ValidateAll() error

ValidateAll checks the field values on StopPipelineRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in StopPipelineRequestMultiError, or nil if none found.

type StopPipelineRequestMultiError added in v2.8.0

type StopPipelineRequestMultiError []error

StopPipelineRequestMultiError is an error wrapping multiple validation errors returned by StopPipelineRequest.ValidateAll() if the designated constraints aren't met.

func (StopPipelineRequestMultiError) AllErrors added in v2.8.0

func (m StopPipelineRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (StopPipelineRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type StopPipelineRequestValidationError added in v2.8.0

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

StopPipelineRequestValidationError is the validation error returned by StopPipelineRequest.Validate if the designated constraints aren't met.

func (StopPipelineRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (StopPipelineRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (StopPipelineRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (StopPipelineRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (StopPipelineRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (StopPipelineRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type SubscribeJobRequest

type SubscribeJobRequest struct {
	Pipeline *Pipeline `protobuf:"bytes,1,opt,name=pipeline,proto3" json:"pipeline,omitempty"`
	Details  bool      `protobuf:"varint,2,opt,name=details,proto3" json:"details,omitempty"` // Same as ListJobRequest.Details
	// contains filtered or unexported fields
}

Streams open jobs until canceled

func (*SubscribeJobRequest) Descriptor deprecated

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

Deprecated: Use SubscribeJobRequest.ProtoReflect.Descriptor instead.

func (*SubscribeJobRequest) GetDetails

func (x *SubscribeJobRequest) GetDetails() bool

func (*SubscribeJobRequest) GetPipeline

func (x *SubscribeJobRequest) GetPipeline() *Pipeline

func (*SubscribeJobRequest) MarshalLogObject

func (x *SubscribeJobRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*SubscribeJobRequest) ProtoMessage

func (*SubscribeJobRequest) ProtoMessage()

func (*SubscribeJobRequest) ProtoReflect added in v2.7.0

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

func (*SubscribeJobRequest) Reset

func (x *SubscribeJobRequest) Reset()

func (*SubscribeJobRequest) String

func (x *SubscribeJobRequest) String() string

func (*SubscribeJobRequest) Validate added in v2.8.0

func (m *SubscribeJobRequest) Validate() error

Validate checks the field values on SubscribeJobRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SubscribeJobRequest) ValidateAll added in v2.8.0

func (m *SubscribeJobRequest) ValidateAll() error

ValidateAll checks the field values on SubscribeJobRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SubscribeJobRequestMultiError, or nil if none found.

type SubscribeJobRequestMultiError added in v2.8.0

type SubscribeJobRequestMultiError []error

SubscribeJobRequestMultiError is an error wrapping multiple validation errors returned by SubscribeJobRequest.ValidateAll() if the designated constraints aren't met.

func (SubscribeJobRequestMultiError) AllErrors added in v2.8.0

func (m SubscribeJobRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SubscribeJobRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type SubscribeJobRequestValidationError added in v2.8.0

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

SubscribeJobRequestValidationError is the validation error returned by SubscribeJobRequest.Validate if the designated constraints aren't met.

func (SubscribeJobRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (SubscribeJobRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (SubscribeJobRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (SubscribeJobRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (SubscribeJobRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (SubscribeJobRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type TFJob

type TFJob struct {

	// tf_job  is a serialized Kubeflow TFJob spec. Pachyderm sends this directly
	// to a kubernetes cluster on which kubeflow has been installed, instead of
	// creating a pipeline ReplicationController as it normally would.
	TfJob string `protobuf:"bytes,1,opt,name=tf_job,json=tfJob,proto3" json:"tf_job,omitempty"`
	// contains filtered or unexported fields
}

func (*TFJob) Descriptor deprecated

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

Deprecated: Use TFJob.ProtoReflect.Descriptor instead.

func (*TFJob) GetTfJob added in v2.7.0

func (x *TFJob) GetTfJob() string

func (*TFJob) MarshalLogObject

func (x *TFJob) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*TFJob) ProtoMessage

func (*TFJob) ProtoMessage()

func (*TFJob) ProtoReflect added in v2.7.0

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

func (*TFJob) Reset

func (x *TFJob) Reset()

func (*TFJob) String

func (x *TFJob) String() string

func (*TFJob) Validate added in v2.8.0

func (m *TFJob) Validate() error

Validate checks the field values on TFJob with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TFJob) ValidateAll added in v2.8.0

func (m *TFJob) ValidateAll() error

ValidateAll checks the field values on TFJob with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TFJobMultiError, or nil if none found.

type TFJobMultiError added in v2.8.0

type TFJobMultiError []error

TFJobMultiError is an error wrapping multiple validation errors returned by TFJob.ValidateAll() if the designated constraints aren't met.

func (TFJobMultiError) AllErrors added in v2.8.0

func (m TFJobMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TFJobMultiError) Error added in v2.8.0

func (m TFJobMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type TFJobValidationError added in v2.8.0

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

TFJobValidationError is the validation error returned by TFJob.Validate if the designated constraints aren't met.

func (TFJobValidationError) Cause added in v2.8.0

func (e TFJobValidationError) Cause() error

Cause function returns cause value.

func (TFJobValidationError) Error added in v2.8.0

func (e TFJobValidationError) Error() string

Error satisfies the builtin error interface

func (TFJobValidationError) ErrorName added in v2.8.0

func (e TFJobValidationError) ErrorName() string

ErrorName returns error name.

func (TFJobValidationError) Field added in v2.8.0

func (e TFJobValidationError) Field() string

Field function returns field value.

func (TFJobValidationError) Key added in v2.8.0

func (e TFJobValidationError) Key() bool

Key function returns key value.

func (TFJobValidationError) Reason added in v2.8.0

func (e TFJobValidationError) Reason() string

Reason function returns reason value.

type TaintEffect

type TaintEffect int32

TaintEffect is an effect that can be matched by a toleration.

const (
	TaintEffect_ALL_EFFECTS        TaintEffect = 0 // Empty matches all effects.
	TaintEffect_NO_SCHEDULE        TaintEffect = 1 // "NoSchedule"
	TaintEffect_PREFER_NO_SCHEDULE TaintEffect = 2 // "PreferNoSchedule"
	TaintEffect_NO_EXECUTE         TaintEffect = 3 // "NoExecute"
)

func (TaintEffect) Descriptor added in v2.7.0

func (TaintEffect) Enum added in v2.7.0

func (x TaintEffect) Enum() *TaintEffect

func (TaintEffect) EnumDescriptor deprecated

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

Deprecated: Use TaintEffect.Descriptor instead.

func (TaintEffect) Number added in v2.7.0

func (x TaintEffect) Number() protoreflect.EnumNumber

func (TaintEffect) String

func (x TaintEffect) String() string

func (TaintEffect) Type added in v2.7.0

type Toleration

type Toleration struct {

	// key is the taint key that the toleration applies to.  Empty means match all taint keys.
	Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	// operator represents a key's relationship to the value.
	Operator TolerationOperator `protobuf:"varint,2,opt,name=operator,proto3,enum=pps_v2.TolerationOperator" json:"operator,omitempty"`
	// value is the taint value the toleration matches to.
	Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
	// effect indicates the taint effect to match.  Empty means match all taint effects.
	Effect TaintEffect `protobuf:"varint,4,opt,name=effect,proto3,enum=pps_v2.TaintEffect" json:"effect,omitempty"`
	// toleration_seconds represents the period of time the toleration (which must be of effect
	// NoExecute, otherwise this field is ignored) tolerates the taint.  If not set, tolerate the
	// taint forever.
	TolerationSeconds *wrapperspb.Int64Value `protobuf:"bytes,5,opt,name=toleration_seconds,json=tolerationSeconds,proto3" json:"toleration_seconds,omitempty"`
	// contains filtered or unexported fields
}

Toleration is a Kubernetes toleration.

func (*Toleration) Descriptor deprecated

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

Deprecated: Use Toleration.ProtoReflect.Descriptor instead.

func (*Toleration) GetEffect

func (x *Toleration) GetEffect() TaintEffect

func (*Toleration) GetKey

func (x *Toleration) GetKey() string

func (*Toleration) GetOperator

func (x *Toleration) GetOperator() TolerationOperator

func (*Toleration) GetTolerationSeconds

func (x *Toleration) GetTolerationSeconds() *wrapperspb.Int64Value

func (*Toleration) GetValue

func (x *Toleration) GetValue() string

func (*Toleration) MarshalLogObject

func (x *Toleration) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Toleration) ProtoMessage

func (*Toleration) ProtoMessage()

func (*Toleration) ProtoReflect added in v2.7.0

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

func (*Toleration) Reset

func (x *Toleration) Reset()

func (*Toleration) String

func (x *Toleration) String() string

func (*Toleration) Validate added in v2.8.0

func (m *Toleration) Validate() error

Validate checks the field values on Toleration with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Toleration) ValidateAll added in v2.8.0

func (m *Toleration) ValidateAll() error

ValidateAll checks the field values on Toleration with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TolerationMultiError, or nil if none found.

type TolerationMultiError added in v2.8.0

type TolerationMultiError []error

TolerationMultiError is an error wrapping multiple validation errors returned by Toleration.ValidateAll() if the designated constraints aren't met.

func (TolerationMultiError) AllErrors added in v2.8.0

func (m TolerationMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TolerationMultiError) Error added in v2.8.0

func (m TolerationMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type TolerationOperator

type TolerationOperator int32

TolerationOperator relates a Toleration's key to its value.

const (
	TolerationOperator_EMPTY  TolerationOperator = 0 // K8s doesn't have this, but it's possible to represent something similar.
	TolerationOperator_EXISTS TolerationOperator = 1 // "Exists"
	TolerationOperator_EQUAL  TolerationOperator = 2 // "Equal"
)

func (TolerationOperator) Descriptor added in v2.7.0

func (TolerationOperator) Enum added in v2.7.0

func (TolerationOperator) EnumDescriptor deprecated

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

Deprecated: Use TolerationOperator.Descriptor instead.

func (TolerationOperator) Number added in v2.7.0

func (TolerationOperator) String

func (x TolerationOperator) String() string

func (TolerationOperator) Type added in v2.7.0

type TolerationValidationError added in v2.8.0

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

TolerationValidationError is the validation error returned by Toleration.Validate if the designated constraints aren't met.

func (TolerationValidationError) Cause added in v2.8.0

func (e TolerationValidationError) Cause() error

Cause function returns cause value.

func (TolerationValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (TolerationValidationError) ErrorName added in v2.8.0

func (e TolerationValidationError) ErrorName() string

ErrorName returns error name.

func (TolerationValidationError) Field added in v2.8.0

Field function returns field value.

func (TolerationValidationError) Key added in v2.8.0

Key function returns key value.

func (TolerationValidationError) Reason added in v2.8.0

func (e TolerationValidationError) Reason() string

Reason function returns reason value.

type Transform

type Transform struct {
	Image            string            `protobuf:"bytes,1,opt,name=image,proto3" json:"image,omitempty"`
	Cmd              []string          `protobuf:"bytes,2,rep,name=cmd,proto3" json:"cmd,omitempty"`
	ErrCmd           []string          `protobuf:"bytes,3,rep,name=err_cmd,json=errCmd,proto3" json:"err_cmd,omitempty"`
	Env              map[string]string `` /* 147-byte string literal not displayed */
	Secrets          []*SecretMount    `protobuf:"bytes,5,rep,name=secrets,proto3" json:"secrets,omitempty"`
	ImagePullSecrets []string          `protobuf:"bytes,6,rep,name=image_pull_secrets,json=imagePullSecrets,proto3" json:"image_pull_secrets,omitempty"`
	Stdin            []string          `protobuf:"bytes,7,rep,name=stdin,proto3" json:"stdin,omitempty"`
	ErrStdin         []string          `protobuf:"bytes,8,rep,name=err_stdin,json=errStdin,proto3" json:"err_stdin,omitempty"`
	AcceptReturnCode []int64           `protobuf:"varint,9,rep,packed,name=accept_return_code,json=acceptReturnCode,proto3" json:"accept_return_code,omitempty"`
	Debug            bool              `protobuf:"varint,10,opt,name=debug,proto3" json:"debug,omitempty"`
	User             string            `protobuf:"bytes,11,opt,name=user,proto3" json:"user,omitempty"`
	WorkingDir       string            `protobuf:"bytes,12,opt,name=working_dir,json=workingDir,proto3" json:"working_dir,omitempty"`
	Dockerfile       string            `protobuf:"bytes,13,opt,name=dockerfile,proto3" json:"dockerfile,omitempty"`
	MemoryVolume     bool              `protobuf:"varint,14,opt,name=memory_volume,json=memoryVolume,proto3" json:"memory_volume,omitempty"`
	DatumBatching    bool              `protobuf:"varint,15,opt,name=datum_batching,json=datumBatching,proto3" json:"datum_batching,omitempty"`
	// contains filtered or unexported fields
}

func (*Transform) Descriptor deprecated

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

Deprecated: Use Transform.ProtoReflect.Descriptor instead.

func (*Transform) GetAcceptReturnCode

func (x *Transform) GetAcceptReturnCode() []int64

func (*Transform) GetCmd

func (x *Transform) GetCmd() []string

func (*Transform) GetDatumBatching

func (x *Transform) GetDatumBatching() bool

func (*Transform) GetDebug

func (x *Transform) GetDebug() bool

func (*Transform) GetDockerfile

func (x *Transform) GetDockerfile() string

func (*Transform) GetEnv

func (x *Transform) GetEnv() map[string]string

func (*Transform) GetErrCmd

func (x *Transform) GetErrCmd() []string

func (*Transform) GetErrStdin

func (x *Transform) GetErrStdin() []string

func (*Transform) GetImage

func (x *Transform) GetImage() string

func (*Transform) GetImagePullSecrets

func (x *Transform) GetImagePullSecrets() []string

func (*Transform) GetMemoryVolume

func (x *Transform) GetMemoryVolume() bool

func (*Transform) GetSecrets

func (x *Transform) GetSecrets() []*SecretMount

func (*Transform) GetStdin

func (x *Transform) GetStdin() []string

func (*Transform) GetUser

func (x *Transform) GetUser() string

func (*Transform) GetWorkingDir

func (x *Transform) GetWorkingDir() string

func (*Transform) MarshalLogObject

func (x *Transform) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Transform) ProtoMessage

func (*Transform) ProtoMessage()

func (*Transform) ProtoReflect added in v2.7.0

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

func (*Transform) Reset

func (x *Transform) Reset()

func (*Transform) String

func (x *Transform) String() string

func (*Transform) Validate added in v2.8.0

func (m *Transform) Validate() error

Validate checks the field values on Transform with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Transform) ValidateAll added in v2.8.0

func (m *Transform) ValidateAll() error

ValidateAll checks the field values on Transform with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TransformMultiError, or nil if none found.

type TransformMultiError added in v2.8.0

type TransformMultiError []error

TransformMultiError is an error wrapping multiple validation errors returned by Transform.ValidateAll() if the designated constraints aren't met.

func (TransformMultiError) AllErrors added in v2.8.0

func (m TransformMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TransformMultiError) Error added in v2.8.0

func (m TransformMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type TransformValidationError added in v2.8.0

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

TransformValidationError is the validation error returned by Transform.Validate if the designated constraints aren't met.

func (TransformValidationError) Cause added in v2.8.0

func (e TransformValidationError) Cause() error

Cause function returns cause value.

func (TransformValidationError) Error added in v2.8.0

func (e TransformValidationError) Error() string

Error satisfies the builtin error interface

func (TransformValidationError) ErrorName added in v2.8.0

func (e TransformValidationError) ErrorName() string

ErrorName returns error name.

func (TransformValidationError) Field added in v2.8.0

func (e TransformValidationError) Field() string

Field function returns field value.

func (TransformValidationError) Key added in v2.8.0

Key function returns key value.

func (TransformValidationError) Reason added in v2.8.0

func (e TransformValidationError) Reason() string

Reason function returns reason value.

type UnimplementedAPIServer

type UnimplementedAPIServer struct {
}

UnimplementedAPIServer must be embedded to have forward compatible implementations.

func (UnimplementedAPIServer) ActivateAuth

func (UnimplementedAPIServer) CheckStatus added in v2.9.0

func (UnimplementedAPIServer) CreateDatum added in v2.9.0

func (UnimplementedAPIServer) CreatePipeline

func (UnimplementedAPIServer) CreatePipelineV2 added in v2.8.0

func (UnimplementedAPIServer) CreateSecret

func (UnimplementedAPIServer) DeleteAll

func (UnimplementedAPIServer) DeleteJob

func (UnimplementedAPIServer) DeletePipeline

func (UnimplementedAPIServer) DeletePipelines

func (UnimplementedAPIServer) DeleteSecret

func (UnimplementedAPIServer) GetClusterDefaults added in v2.8.0

func (UnimplementedAPIServer) GetKubeEvents

func (UnimplementedAPIServer) GetLogs

func (UnimplementedAPIServer) GetProjectDefaults added in v2.8.0

func (UnimplementedAPIServer) InspectDatum

func (UnimplementedAPIServer) InspectJob

func (UnimplementedAPIServer) InspectJobSet

func (UnimplementedAPIServer) InspectPipeline

func (UnimplementedAPIServer) InspectSecret

func (UnimplementedAPIServer) ListDatum

func (UnimplementedAPIServer) ListJob

func (UnimplementedAPIServer) ListJobSet

func (UnimplementedAPIServer) ListPipeline

func (UnimplementedAPIServer) ListSecret

func (UnimplementedAPIServer) ListTask

func (UnimplementedAPIServer) QueryLoki

func (UnimplementedAPIServer) RenderTemplate

func (UnimplementedAPIServer) RerunPipeline added in v2.8.0

func (UnimplementedAPIServer) RestartDatum

func (UnimplementedAPIServer) RunCron

func (UnimplementedAPIServer) RunLoadTest

func (UnimplementedAPIServer) RunLoadTestDefault

func (UnimplementedAPIServer) RunPipeline

func (UnimplementedAPIServer) SetClusterDefaults added in v2.8.0

func (UnimplementedAPIServer) SetProjectDefaults added in v2.8.0

func (UnimplementedAPIServer) StartPipeline

func (UnimplementedAPIServer) StopJob

func (UnimplementedAPIServer) StopPipeline

func (UnimplementedAPIServer) SubscribeJob

func (UnimplementedAPIServer) UpdateJobState

type UnsafeAPIServer added in v2.7.0

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

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

type UpdateJobStateRequest

type UpdateJobStateRequest struct {
	Job           *Job          `protobuf:"bytes,1,opt,name=job,proto3" json:"job,omitempty"`
	State         JobState      `protobuf:"varint,2,opt,name=state,proto3,enum=pps_v2.JobState" json:"state,omitempty"`
	Reason        string        `protobuf:"bytes,3,opt,name=reason,proto3" json:"reason,omitempty"`
	Restart       uint64        `protobuf:"varint,5,opt,name=restart,proto3" json:"restart,omitempty"`
	DataProcessed int64         `protobuf:"varint,6,opt,name=data_processed,json=dataProcessed,proto3" json:"data_processed,omitempty"`
	DataSkipped   int64         `protobuf:"varint,7,opt,name=data_skipped,json=dataSkipped,proto3" json:"data_skipped,omitempty"`
	DataFailed    int64         `protobuf:"varint,8,opt,name=data_failed,json=dataFailed,proto3" json:"data_failed,omitempty"`
	DataRecovered int64         `protobuf:"varint,9,opt,name=data_recovered,json=dataRecovered,proto3" json:"data_recovered,omitempty"`
	DataTotal     int64         `protobuf:"varint,10,opt,name=data_total,json=dataTotal,proto3" json:"data_total,omitempty"`
	Stats         *ProcessStats `protobuf:"bytes,11,opt,name=stats,proto3" json:"stats,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateJobStateRequest) Descriptor deprecated

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

Deprecated: Use UpdateJobStateRequest.ProtoReflect.Descriptor instead.

func (*UpdateJobStateRequest) GetDataFailed

func (x *UpdateJobStateRequest) GetDataFailed() int64

func (*UpdateJobStateRequest) GetDataProcessed

func (x *UpdateJobStateRequest) GetDataProcessed() int64

func (*UpdateJobStateRequest) GetDataRecovered

func (x *UpdateJobStateRequest) GetDataRecovered() int64

func (*UpdateJobStateRequest) GetDataSkipped

func (x *UpdateJobStateRequest) GetDataSkipped() int64

func (*UpdateJobStateRequest) GetDataTotal

func (x *UpdateJobStateRequest) GetDataTotal() int64

func (*UpdateJobStateRequest) GetJob

func (x *UpdateJobStateRequest) GetJob() *Job

func (*UpdateJobStateRequest) GetReason

func (x *UpdateJobStateRequest) GetReason() string

func (*UpdateJobStateRequest) GetRestart

func (x *UpdateJobStateRequest) GetRestart() uint64

func (*UpdateJobStateRequest) GetState

func (x *UpdateJobStateRequest) GetState() JobState

func (*UpdateJobStateRequest) GetStats

func (x *UpdateJobStateRequest) GetStats() *ProcessStats

func (*UpdateJobStateRequest) MarshalLogObject

func (x *UpdateJobStateRequest) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*UpdateJobStateRequest) ProtoMessage

func (*UpdateJobStateRequest) ProtoMessage()

func (*UpdateJobStateRequest) ProtoReflect added in v2.7.0

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

func (*UpdateJobStateRequest) Reset

func (x *UpdateJobStateRequest) Reset()

func (*UpdateJobStateRequest) String

func (x *UpdateJobStateRequest) String() string

func (*UpdateJobStateRequest) Validate added in v2.8.0

func (m *UpdateJobStateRequest) Validate() error

Validate checks the field values on UpdateJobStateRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UpdateJobStateRequest) ValidateAll added in v2.8.0

func (m *UpdateJobStateRequest) ValidateAll() error

ValidateAll checks the field values on UpdateJobStateRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UpdateJobStateRequestMultiError, or nil if none found.

type UpdateJobStateRequestMultiError added in v2.8.0

type UpdateJobStateRequestMultiError []error

UpdateJobStateRequestMultiError is an error wrapping multiple validation errors returned by UpdateJobStateRequest.ValidateAll() if the designated constraints aren't met.

func (UpdateJobStateRequestMultiError) AllErrors added in v2.8.0

func (m UpdateJobStateRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateJobStateRequestMultiError) Error added in v2.8.0

Error returns a concatenation of all the error messages it wraps.

type UpdateJobStateRequestValidationError added in v2.8.0

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

UpdateJobStateRequestValidationError is the validation error returned by UpdateJobStateRequest.Validate if the designated constraints aren't met.

func (UpdateJobStateRequestValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (UpdateJobStateRequestValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (UpdateJobStateRequestValidationError) ErrorName added in v2.8.0

ErrorName returns error name.

func (UpdateJobStateRequestValidationError) Field added in v2.8.0

Field function returns field value.

func (UpdateJobStateRequestValidationError) Key added in v2.8.0

Key function returns key value.

func (UpdateJobStateRequestValidationError) Reason added in v2.8.0

Reason function returns reason value.

type Worker

type Worker struct {
	Name  string      `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	State WorkerState `protobuf:"varint,2,opt,name=state,proto3,enum=pps_v2.WorkerState" json:"state,omitempty"`
	// contains filtered or unexported fields
}

func (*Worker) Descriptor deprecated

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

Deprecated: Use Worker.ProtoReflect.Descriptor instead.

func (*Worker) GetName

func (x *Worker) GetName() string

func (*Worker) GetState

func (x *Worker) GetState() WorkerState

func (*Worker) MarshalLogObject

func (x *Worker) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*Worker) ProtoMessage

func (*Worker) ProtoMessage()

func (*Worker) ProtoReflect added in v2.7.0

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

func (*Worker) Reset

func (x *Worker) Reset()

func (*Worker) String

func (x *Worker) String() string

func (*Worker) Validate added in v2.8.0

func (m *Worker) Validate() error

Validate checks the field values on Worker with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Worker) ValidateAll added in v2.8.0

func (m *Worker) ValidateAll() error

ValidateAll checks the field values on Worker with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in WorkerMultiError, or nil if none found.

type WorkerMultiError added in v2.8.0

type WorkerMultiError []error

WorkerMultiError is an error wrapping multiple validation errors returned by Worker.ValidateAll() if the designated constraints aren't met.

func (WorkerMultiError) AllErrors added in v2.8.0

func (m WorkerMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (WorkerMultiError) Error added in v2.8.0

func (m WorkerMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type WorkerState

type WorkerState int32
const (
	WorkerState_WORKER_STATE_UNKNOWN WorkerState = 0
	WorkerState_POD_RUNNING          WorkerState = 1
	WorkerState_POD_SUCCESS          WorkerState = 2
	WorkerState_POD_FAILED           WorkerState = 3
)

func (WorkerState) Descriptor added in v2.7.0

func (WorkerState) Enum added in v2.7.0

func (x WorkerState) Enum() *WorkerState

func (WorkerState) EnumDescriptor deprecated

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

Deprecated: Use WorkerState.Descriptor instead.

func (WorkerState) Number added in v2.7.0

func (x WorkerState) Number() protoreflect.EnumNumber

func (WorkerState) String

func (x WorkerState) String() string

func (WorkerState) Type added in v2.7.0

type WorkerStatus

type WorkerStatus struct {
	WorkerId    string       `protobuf:"bytes,1,opt,name=worker_id,json=workerId,proto3" json:"worker_id,omitempty"`
	JobId       string       `protobuf:"bytes,2,opt,name=job_id,json=jobId,proto3" json:"job_id,omitempty"`
	DatumStatus *DatumStatus `protobuf:"bytes,3,opt,name=datum_status,json=datumStatus,proto3" json:"datum_status,omitempty"`
	// contains filtered or unexported fields
}

func (*WorkerStatus) Descriptor deprecated

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

Deprecated: Use WorkerStatus.ProtoReflect.Descriptor instead.

func (*WorkerStatus) GetDatumStatus

func (x *WorkerStatus) GetDatumStatus() *DatumStatus

func (*WorkerStatus) GetJobId added in v2.7.0

func (x *WorkerStatus) GetJobId() string

func (*WorkerStatus) GetWorkerId added in v2.7.0

func (x *WorkerStatus) GetWorkerId() string

func (*WorkerStatus) MarshalLogObject

func (x *WorkerStatus) MarshalLogObject(enc zapcore.ObjectEncoder) error

func (*WorkerStatus) ProtoMessage

func (*WorkerStatus) ProtoMessage()

func (*WorkerStatus) ProtoReflect added in v2.7.0

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

func (*WorkerStatus) Reset

func (x *WorkerStatus) Reset()

func (*WorkerStatus) String

func (x *WorkerStatus) String() string

func (*WorkerStatus) Validate added in v2.8.0

func (m *WorkerStatus) Validate() error

Validate checks the field values on WorkerStatus with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*WorkerStatus) ValidateAll added in v2.8.0

func (m *WorkerStatus) ValidateAll() error

ValidateAll checks the field values on WorkerStatus with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in WorkerStatusMultiError, or nil if none found.

type WorkerStatusMultiError added in v2.8.0

type WorkerStatusMultiError []error

WorkerStatusMultiError is an error wrapping multiple validation errors returned by WorkerStatus.ValidateAll() if the designated constraints aren't met.

func (WorkerStatusMultiError) AllErrors added in v2.8.0

func (m WorkerStatusMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (WorkerStatusMultiError) Error added in v2.8.0

func (m WorkerStatusMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type WorkerStatusValidationError added in v2.8.0

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

WorkerStatusValidationError is the validation error returned by WorkerStatus.Validate if the designated constraints aren't met.

func (WorkerStatusValidationError) Cause added in v2.8.0

Cause function returns cause value.

func (WorkerStatusValidationError) Error added in v2.8.0

Error satisfies the builtin error interface

func (WorkerStatusValidationError) ErrorName added in v2.8.0

func (e WorkerStatusValidationError) ErrorName() string

ErrorName returns error name.

func (WorkerStatusValidationError) Field added in v2.8.0

Field function returns field value.

func (WorkerStatusValidationError) Key added in v2.8.0

Key function returns key value.

func (WorkerStatusValidationError) Reason added in v2.8.0

Reason function returns reason value.

type WorkerValidationError added in v2.8.0

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

WorkerValidationError is the validation error returned by Worker.Validate if the designated constraints aren't met.

func (WorkerValidationError) Cause added in v2.8.0

func (e WorkerValidationError) Cause() error

Cause function returns cause value.

func (WorkerValidationError) Error added in v2.8.0

func (e WorkerValidationError) Error() string

Error satisfies the builtin error interface

func (WorkerValidationError) ErrorName added in v2.8.0

func (e WorkerValidationError) ErrorName() string

ErrorName returns error name.

func (WorkerValidationError) Field added in v2.8.0

func (e WorkerValidationError) Field() string

Field function returns field value.

func (WorkerValidationError) Key added in v2.8.0

func (e WorkerValidationError) Key() bool

Key function returns key value.

func (WorkerValidationError) Reason added in v2.8.0

func (e WorkerValidationError) Reason() string

Reason function returns reason value.

Jump to

Keyboard shortcuts

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