results

package
v0.9.2 Latest Latest
Warning

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

Go to latest
Published: Mar 18, 2024 License: Apache-2.0 Imports: 23 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

type Client struct {
	pb.ResultsClient
	pb.LogsClient
}

Client is a wrapper around a Results client that provides helpful utilities for performing result operations that require multiple RPCs or data specific operations.

func NewClient

func NewClient(resultsClient pb.ResultsClient, logsClient pb.LogsClient) *Client

NewClient returns a new results client for the particular kind.

func (*Client) GetLogRecord added in v0.5.0

func (c *Client) GetLogRecord(ctx context.Context, o Object) (*pb.Record, error)

GetLogRecord returns log record using gRPC clients.

func (*Client) Put

func (c *Client) Put(ctx context.Context, o Object, opts ...grpc.CallOption) (*pb.Result, *pb.Record, error)

Put adds the given Object to the Results API. If the parent result is missing or the object is not yet associated with a result, one is created automatically. If the Object is already associated with a Record, the existing Record is updated - otherwise a new Record is created.

func (*Client) PutLog added in v0.5.0

func (c *Client) PutLog(ctx context.Context, o Object, opts ...grpc.CallOption) (*pb.Record, error)

PutLog adds the given Object to the Results API. If the parent result is missing or the object is not yet associated with a result, one is created automatically.

type Object added in v0.3.0

type Object interface {
	metav1.Object
	runtime.Object
	StatusConditionGetter
}

Object is a union type of different base k8s Object interfaces. This is similar in spirit to https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.9.4/pkg/client#Object, but is defined as its own type to avoid an extra dependency.

type StatusConditionGetter added in v0.5.0

type StatusConditionGetter interface {
	GetStatusCondition() apis.ConditionAccessor
}

StatusConditionGetter defines status for Object interface

Jump to

Keyboard shortcuts

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