v1

package
v0.2.7 Latest Latest
Warning

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

Go to latest
Published: Mar 5, 2024 License: Apache-2.0 Imports: 8 Imported by: 17

Documentation

Overview

Definitions for the Kubernetes types

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewConfigMapClient

func NewConfigMapClient(client client.Client) *configMapClient

func NewEndpointsClient added in v0.1.2

func NewEndpointsClient(client client.Client) *endpointsClient

func NewNamespaceClient

func NewNamespaceClient(client client.Client) *namespaceClient

func NewNodeClient

func NewNodeClient(client client.Client) *nodeClient

func NewPodClient

func NewPodClient(client client.Client) *podClient

func NewSecretClient

func NewSecretClient(client client.Client) *secretClient

func NewServiceAccountClient

func NewServiceAccountClient(client client.Client) *serviceAccountClient

func NewServiceClient

func NewServiceClient(client client.Client) *serviceClient

Types

type Clientset

type Clientset interface {
	// clienset for the v1/v1 APIs
	Secrets() SecretClient
	// clienset for the v1/v1 APIs
	ServiceAccounts() ServiceAccountClient
	// clienset for the v1/v1 APIs
	ConfigMaps() ConfigMapClient
	// clienset for the v1/v1 APIs
	Services() ServiceClient
	// clienset for the v1/v1 APIs
	Pods() PodClient
	// clienset for the v1/v1 APIs
	Endpoints() EndpointsClient
	// clienset for the v1/v1 APIs
	Namespaces() NamespaceClient
	// clienset for the v1/v1 APIs
	Nodes() NodeClient
}

clienset for the /v1 APIs

func NewClientset

func NewClientset(client client.Client) Clientset

func NewClientsetFromConfig

func NewClientsetFromConfig(cfg *rest.Config) (Clientset, error)

type ConfigMapClient

type ConfigMapClient interface {
	ConfigMapReader
	ConfigMapWriter
	ConfigMapStatusWriter
}

Client knows how to perform CRUD operations on ConfigMaps.

type ConfigMapReader

type ConfigMapReader interface {
	// Get retrieves a ConfigMap for the given object key
	GetConfigMap(ctx context.Context, key client.ObjectKey) (*v1.ConfigMap, error)

	// List retrieves list of ConfigMaps for a given namespace and list options.
	ListConfigMap(ctx context.Context, opts ...client.ListOption) (*v1.ConfigMapList, error)
}

Reader knows how to read and list ConfigMaps.

type ConfigMapSlice

type ConfigMapSlice []*ConfigMap

ConfigMapSlice represents a slice of *ConfigMap

type ConfigMapStatusWriter

type ConfigMapStatusWriter interface {
	// Update updates the fields corresponding to the status subresource for the
	// given ConfigMap object.
	UpdateConfigMapStatus(ctx context.Context, obj *v1.ConfigMap, opts ...client.SubResourceUpdateOption) error

	// Patch patches the given ConfigMap object's subresource.
	PatchConfigMapStatus(ctx context.Context, obj *v1.ConfigMap, patch client.Patch, opts ...client.SubResourcePatchOption) error
}

StatusWriter knows how to update status subresource of a ConfigMap object.

type ConfigMapTransitionFunction

type ConfigMapTransitionFunction func(existing, desired *v1.ConfigMap) error

ConfigMapTransitionFunction instructs the ConfigMapWriter how to transition between an existing ConfigMap object and a desired on an Upsert

type ConfigMapWriter

type ConfigMapWriter interface {
	// Create saves the ConfigMap object.
	CreateConfigMap(ctx context.Context, obj *v1.ConfigMap, opts ...client.CreateOption) error

	// Delete deletes the ConfigMap object.
	DeleteConfigMap(ctx context.Context, key client.ObjectKey, opts ...client.DeleteOption) error

	// Update updates the given ConfigMap object.
	UpdateConfigMap(ctx context.Context, obj *v1.ConfigMap, opts ...client.UpdateOption) error

	// Patch patches the given ConfigMap object.
	PatchConfigMap(ctx context.Context, obj *v1.ConfigMap, patch client.Patch, opts ...client.PatchOption) error

	// DeleteAllOf deletes all ConfigMap objects matching the given options.
	DeleteAllOfConfigMap(ctx context.Context, opts ...client.DeleteAllOfOption) error

	// Create or Update the ConfigMap object.
	UpsertConfigMap(ctx context.Context, obj *v1.ConfigMap, transitionFuncs ...ConfigMapTransitionFunction) error
}

Writer knows how to create, delete, and update ConfigMaps.

type EndpointsClient added in v0.1.2

type EndpointsClient interface {
	EndpointsReader
	EndpointsWriter
	EndpointsStatusWriter
}

Client knows how to perform CRUD operations on Endpointss.

type EndpointsReader added in v0.1.2

type EndpointsReader interface {
	// Get retrieves a Endpoints for the given object key
	GetEndpoints(ctx context.Context, key client.ObjectKey) (*v1.Endpoints, error)

	// List retrieves list of Endpointss for a given namespace and list options.
	ListEndpoints(ctx context.Context, opts ...client.ListOption) (*v1.EndpointsList, error)
}

Reader knows how to read and list Endpointss.

type EndpointsSlice added in v0.1.2

type EndpointsSlice []*Endpoints

EndpointsSlice represents a slice of *Endpoints

type EndpointsStatusWriter added in v0.1.2

type EndpointsStatusWriter interface {
	// Update updates the fields corresponding to the status subresource for the
	// given Endpoints object.
	UpdateEndpointsStatus(ctx context.Context, obj *v1.Endpoints, opts ...client.SubResourceUpdateOption) error

	// Patch patches the given Endpoints object's subresource.
	PatchEndpointsStatus(ctx context.Context, obj *v1.Endpoints, patch client.Patch, opts ...client.SubResourcePatchOption) error
}

StatusWriter knows how to update status subresource of a Endpoints object.

type EndpointsTransitionFunction added in v0.1.2

type EndpointsTransitionFunction func(existing, desired *v1.Endpoints) error

EndpointsTransitionFunction instructs the EndpointsWriter how to transition between an existing Endpoints object and a desired on an Upsert

type EndpointsWriter added in v0.1.2

type EndpointsWriter interface {
	// Create saves the Endpoints object.
	CreateEndpoints(ctx context.Context, obj *v1.Endpoints, opts ...client.CreateOption) error

	// Delete deletes the Endpoints object.
	DeleteEndpoints(ctx context.Context, key client.ObjectKey, opts ...client.DeleteOption) error

	// Update updates the given Endpoints object.
	UpdateEndpoints(ctx context.Context, obj *v1.Endpoints, opts ...client.UpdateOption) error

	// Patch patches the given Endpoints object.
	PatchEndpoints(ctx context.Context, obj *v1.Endpoints, patch client.Patch, opts ...client.PatchOption) error

	// DeleteAllOf deletes all Endpoints objects matching the given options.
	DeleteAllOfEndpoints(ctx context.Context, opts ...client.DeleteAllOfOption) error

	// Create or Update the Endpoints object.
	UpsertEndpoints(ctx context.Context, obj *v1.Endpoints, transitionFuncs ...EndpointsTransitionFunction) error
}

Writer knows how to create, delete, and update Endpointss.

type MulticlusterClientset

type MulticlusterClientset interface {
	// Cluster returns a Clientset for the given cluster
	Cluster(cluster string) (Clientset, error)
}

MulticlusterClientset for the /v1 APIs

func NewMulticlusterClientset

func NewMulticlusterClientset(client multicluster.Client) MulticlusterClientset

type MulticlusterConfigMapClient

type MulticlusterConfigMapClient interface {
	// Cluster returns a ConfigMapClient for the given cluster
	Cluster(cluster string) (ConfigMapClient, error)
}

Provides ConfigMapClients for multiple clusters.

func NewMulticlusterConfigMapClient

func NewMulticlusterConfigMapClient(client multicluster.Client) MulticlusterConfigMapClient

type MulticlusterEndpointsClient added in v0.1.2

type MulticlusterEndpointsClient interface {
	// Cluster returns a EndpointsClient for the given cluster
	Cluster(cluster string) (EndpointsClient, error)
}

Provides EndpointsClients for multiple clusters.

func NewMulticlusterEndpointsClient added in v0.1.2

func NewMulticlusterEndpointsClient(client multicluster.Client) MulticlusterEndpointsClient

type MulticlusterNamespaceClient

type MulticlusterNamespaceClient interface {
	// Cluster returns a NamespaceClient for the given cluster
	Cluster(cluster string) (NamespaceClient, error)
}

Provides NamespaceClients for multiple clusters.

func NewMulticlusterNamespaceClient

func NewMulticlusterNamespaceClient(client multicluster.Client) MulticlusterNamespaceClient

type MulticlusterNodeClient

type MulticlusterNodeClient interface {
	// Cluster returns a NodeClient for the given cluster
	Cluster(cluster string) (NodeClient, error)
}

Provides NodeClients for multiple clusters.

func NewMulticlusterNodeClient

func NewMulticlusterNodeClient(client multicluster.Client) MulticlusterNodeClient

type MulticlusterPodClient

type MulticlusterPodClient interface {
	// Cluster returns a PodClient for the given cluster
	Cluster(cluster string) (PodClient, error)
}

Provides PodClients for multiple clusters.

func NewMulticlusterPodClient

func NewMulticlusterPodClient(client multicluster.Client) MulticlusterPodClient

type MulticlusterSecretClient

type MulticlusterSecretClient interface {
	// Cluster returns a SecretClient for the given cluster
	Cluster(cluster string) (SecretClient, error)
}

Provides SecretClients for multiple clusters.

func NewMulticlusterSecretClient

func NewMulticlusterSecretClient(client multicluster.Client) MulticlusterSecretClient

type MulticlusterServiceAccountClient

type MulticlusterServiceAccountClient interface {
	// Cluster returns a ServiceAccountClient for the given cluster
	Cluster(cluster string) (ServiceAccountClient, error)
}

Provides ServiceAccountClients for multiple clusters.

func NewMulticlusterServiceAccountClient

func NewMulticlusterServiceAccountClient(client multicluster.Client) MulticlusterServiceAccountClient

type MulticlusterServiceClient

type MulticlusterServiceClient interface {
	// Cluster returns a ServiceClient for the given cluster
	Cluster(cluster string) (ServiceClient, error)
}

Provides ServiceClients for multiple clusters.

func NewMulticlusterServiceClient

func NewMulticlusterServiceClient(client multicluster.Client) MulticlusterServiceClient

type NamespaceClient

type NamespaceClient interface {
	NamespaceReader
	NamespaceWriter
	NamespaceStatusWriter
}

Client knows how to perform CRUD operations on Namespaces.

type NamespaceReader

type NamespaceReader interface {
	// Get retrieves a Namespace for the given object key
	GetNamespace(ctx context.Context, name string) (*v1.Namespace, error)

	// List retrieves list of Namespaces for a given namespace and list options.
	ListNamespace(ctx context.Context, opts ...client.ListOption) (*v1.NamespaceList, error)
}

Reader knows how to read and list Namespaces.

type NamespaceSlice

type NamespaceSlice []*Namespace

NamespaceSlice represents a slice of *Namespace

type NamespaceStatusWriter

type NamespaceStatusWriter interface {
	// Update updates the fields corresponding to the status subresource for the
	// given Namespace object.
	UpdateNamespaceStatus(ctx context.Context, obj *v1.Namespace, opts ...client.SubResourceUpdateOption) error

	// Patch patches the given Namespace object's subresource.
	PatchNamespaceStatus(ctx context.Context, obj *v1.Namespace, patch client.Patch, opts ...client.SubResourcePatchOption) error
}

StatusWriter knows how to update status subresource of a Namespace object.

type NamespaceTransitionFunction

type NamespaceTransitionFunction func(existing, desired *v1.Namespace) error

NamespaceTransitionFunction instructs the NamespaceWriter how to transition between an existing Namespace object and a desired on an Upsert

type NamespaceWriter

type NamespaceWriter interface {
	// Create saves the Namespace object.
	CreateNamespace(ctx context.Context, obj *v1.Namespace, opts ...client.CreateOption) error

	// Delete deletes the Namespace object.
	DeleteNamespace(ctx context.Context, name string, opts ...client.DeleteOption) error

	// Update updates the given Namespace object.
	UpdateNamespace(ctx context.Context, obj *v1.Namespace, opts ...client.UpdateOption) error

	// Patch patches the given Namespace object.
	PatchNamespace(ctx context.Context, obj *v1.Namespace, patch client.Patch, opts ...client.PatchOption) error

	// DeleteAllOf deletes all Namespace objects matching the given options.
	DeleteAllOfNamespace(ctx context.Context, opts ...client.DeleteAllOfOption) error

	// Create or Update the Namespace object.
	UpsertNamespace(ctx context.Context, obj *v1.Namespace, transitionFuncs ...NamespaceTransitionFunction) error
}

Writer knows how to create, delete, and update Namespaces.

type NodeClient

type NodeClient interface {
	NodeReader
	NodeWriter
	NodeStatusWriter
}

Client knows how to perform CRUD operations on Nodes.

type NodeReader

type NodeReader interface {
	// Get retrieves a Node for the given object key
	GetNode(ctx context.Context, name string) (*v1.Node, error)

	// List retrieves list of Nodes for a given namespace and list options.
	ListNode(ctx context.Context, opts ...client.ListOption) (*v1.NodeList, error)
}

Reader knows how to read and list Nodes.

type NodeSlice

type NodeSlice []*Node

NodeSlice represents a slice of *Node

type NodeStatusWriter

type NodeStatusWriter interface {
	// Update updates the fields corresponding to the status subresource for the
	// given Node object.
	UpdateNodeStatus(ctx context.Context, obj *v1.Node, opts ...client.SubResourceUpdateOption) error

	// Patch patches the given Node object's subresource.
	PatchNodeStatus(ctx context.Context, obj *v1.Node, patch client.Patch, opts ...client.SubResourcePatchOption) error
}

StatusWriter knows how to update status subresource of a Node object.

type NodeTransitionFunction

type NodeTransitionFunction func(existing, desired *v1.Node) error

NodeTransitionFunction instructs the NodeWriter how to transition between an existing Node object and a desired on an Upsert

type NodeWriter

type NodeWriter interface {
	// Create saves the Node object.
	CreateNode(ctx context.Context, obj *v1.Node, opts ...client.CreateOption) error

	// Delete deletes the Node object.
	DeleteNode(ctx context.Context, name string, opts ...client.DeleteOption) error

	// Update updates the given Node object.
	UpdateNode(ctx context.Context, obj *v1.Node, opts ...client.UpdateOption) error

	// Patch patches the given Node object.
	PatchNode(ctx context.Context, obj *v1.Node, patch client.Patch, opts ...client.PatchOption) error

	// DeleteAllOf deletes all Node objects matching the given options.
	DeleteAllOfNode(ctx context.Context, opts ...client.DeleteAllOfOption) error

	// Create or Update the Node object.
	UpsertNode(ctx context.Context, obj *v1.Node, transitionFuncs ...NodeTransitionFunction) error
}

Writer knows how to create, delete, and update Nodes.

type PodClient

type PodClient interface {
	PodReader
	PodWriter
	PodStatusWriter
}

Client knows how to perform CRUD operations on Pods.

type PodReader

type PodReader interface {
	// Get retrieves a Pod for the given object key
	GetPod(ctx context.Context, key client.ObjectKey) (*v1.Pod, error)

	// List retrieves list of Pods for a given namespace and list options.
	ListPod(ctx context.Context, opts ...client.ListOption) (*v1.PodList, error)
}

Reader knows how to read and list Pods.

type PodSlice

type PodSlice []*Pod

PodSlice represents a slice of *Pod

type PodStatusWriter

type PodStatusWriter interface {
	// Update updates the fields corresponding to the status subresource for the
	// given Pod object.
	UpdatePodStatus(ctx context.Context, obj *v1.Pod, opts ...client.SubResourceUpdateOption) error

	// Patch patches the given Pod object's subresource.
	PatchPodStatus(ctx context.Context, obj *v1.Pod, patch client.Patch, opts ...client.SubResourcePatchOption) error
}

StatusWriter knows how to update status subresource of a Pod object.

type PodTransitionFunction

type PodTransitionFunction func(existing, desired *v1.Pod) error

PodTransitionFunction instructs the PodWriter how to transition between an existing Pod object and a desired on an Upsert

type PodWriter

type PodWriter interface {
	// Create saves the Pod object.
	CreatePod(ctx context.Context, obj *v1.Pod, opts ...client.CreateOption) error

	// Delete deletes the Pod object.
	DeletePod(ctx context.Context, key client.ObjectKey, opts ...client.DeleteOption) error

	// Update updates the given Pod object.
	UpdatePod(ctx context.Context, obj *v1.Pod, opts ...client.UpdateOption) error

	// Patch patches the given Pod object.
	PatchPod(ctx context.Context, obj *v1.Pod, patch client.Patch, opts ...client.PatchOption) error

	// DeleteAllOf deletes all Pod objects matching the given options.
	DeleteAllOfPod(ctx context.Context, opts ...client.DeleteAllOfOption) error

	// Create or Update the Pod object.
	UpsertPod(ctx context.Context, obj *v1.Pod, transitionFuncs ...PodTransitionFunction) error
}

Writer knows how to create, delete, and update Pods.

type SecretClient

type SecretClient interface {
	SecretReader
	SecretWriter
	SecretStatusWriter
}

Client knows how to perform CRUD operations on Secrets.

type SecretReader

type SecretReader interface {
	// Get retrieves a Secret for the given object key
	GetSecret(ctx context.Context, key client.ObjectKey) (*v1.Secret, error)

	// List retrieves list of Secrets for a given namespace and list options.
	ListSecret(ctx context.Context, opts ...client.ListOption) (*v1.SecretList, error)
}

Reader knows how to read and list Secrets.

type SecretSlice

type SecretSlice []*Secret

SecretSlice represents a slice of *Secret

type SecretStatusWriter

type SecretStatusWriter interface {
	// Update updates the fields corresponding to the status subresource for the
	// given Secret object.
	UpdateSecretStatus(ctx context.Context, obj *v1.Secret, opts ...client.SubResourceUpdateOption) error

	// Patch patches the given Secret object's subresource.
	PatchSecretStatus(ctx context.Context, obj *v1.Secret, patch client.Patch, opts ...client.SubResourcePatchOption) error
}

StatusWriter knows how to update status subresource of a Secret object.

type SecretTransitionFunction

type SecretTransitionFunction func(existing, desired *v1.Secret) error

SecretTransitionFunction instructs the SecretWriter how to transition between an existing Secret object and a desired on an Upsert

type SecretWriter

type SecretWriter interface {
	// Create saves the Secret object.
	CreateSecret(ctx context.Context, obj *v1.Secret, opts ...client.CreateOption) error

	// Delete deletes the Secret object.
	DeleteSecret(ctx context.Context, key client.ObjectKey, opts ...client.DeleteOption) error

	// Update updates the given Secret object.
	UpdateSecret(ctx context.Context, obj *v1.Secret, opts ...client.UpdateOption) error

	// Patch patches the given Secret object.
	PatchSecret(ctx context.Context, obj *v1.Secret, patch client.Patch, opts ...client.PatchOption) error

	// DeleteAllOf deletes all Secret objects matching the given options.
	DeleteAllOfSecret(ctx context.Context, opts ...client.DeleteAllOfOption) error

	// Create or Update the Secret object.
	UpsertSecret(ctx context.Context, obj *v1.Secret, transitionFuncs ...SecretTransitionFunction) error
}

Writer knows how to create, delete, and update Secrets.

type ServiceAccountClient

type ServiceAccountClient interface {
	ServiceAccountReader
	ServiceAccountWriter
	ServiceAccountStatusWriter
}

Client knows how to perform CRUD operations on ServiceAccounts.

type ServiceAccountReader

type ServiceAccountReader interface {
	// Get retrieves a ServiceAccount for the given object key
	GetServiceAccount(ctx context.Context, key client.ObjectKey) (*v1.ServiceAccount, error)

	// List retrieves list of ServiceAccounts for a given namespace and list options.
	ListServiceAccount(ctx context.Context, opts ...client.ListOption) (*v1.ServiceAccountList, error)
}

Reader knows how to read and list ServiceAccounts.

type ServiceAccountSlice

type ServiceAccountSlice []*ServiceAccount

ServiceAccountSlice represents a slice of *ServiceAccount

type ServiceAccountStatusWriter

type ServiceAccountStatusWriter interface {
	// Update updates the fields corresponding to the status subresource for the
	// given ServiceAccount object.
	UpdateServiceAccountStatus(ctx context.Context, obj *v1.ServiceAccount, opts ...client.SubResourceUpdateOption) error

	// Patch patches the given ServiceAccount object's subresource.
	PatchServiceAccountStatus(ctx context.Context, obj *v1.ServiceAccount, patch client.Patch, opts ...client.SubResourcePatchOption) error
}

StatusWriter knows how to update status subresource of a ServiceAccount object.

type ServiceAccountTransitionFunction

type ServiceAccountTransitionFunction func(existing, desired *v1.ServiceAccount) error

ServiceAccountTransitionFunction instructs the ServiceAccountWriter how to transition between an existing ServiceAccount object and a desired on an Upsert

type ServiceAccountWriter

type ServiceAccountWriter interface {
	// Create saves the ServiceAccount object.
	CreateServiceAccount(ctx context.Context, obj *v1.ServiceAccount, opts ...client.CreateOption) error

	// Delete deletes the ServiceAccount object.
	DeleteServiceAccount(ctx context.Context, key client.ObjectKey, opts ...client.DeleteOption) error

	// Update updates the given ServiceAccount object.
	UpdateServiceAccount(ctx context.Context, obj *v1.ServiceAccount, opts ...client.UpdateOption) error

	// Patch patches the given ServiceAccount object.
	PatchServiceAccount(ctx context.Context, obj *v1.ServiceAccount, patch client.Patch, opts ...client.PatchOption) error

	// DeleteAllOf deletes all ServiceAccount objects matching the given options.
	DeleteAllOfServiceAccount(ctx context.Context, opts ...client.DeleteAllOfOption) error

	// Create or Update the ServiceAccount object.
	UpsertServiceAccount(ctx context.Context, obj *v1.ServiceAccount, transitionFuncs ...ServiceAccountTransitionFunction) error
}

Writer knows how to create, delete, and update ServiceAccounts.

type ServiceClient

type ServiceClient interface {
	ServiceReader
	ServiceWriter
	ServiceStatusWriter
}

Client knows how to perform CRUD operations on Services.

type ServiceReader

type ServiceReader interface {
	// Get retrieves a Service for the given object key
	GetService(ctx context.Context, key client.ObjectKey) (*v1.Service, error)

	// List retrieves list of Services for a given namespace and list options.
	ListService(ctx context.Context, opts ...client.ListOption) (*v1.ServiceList, error)
}

Reader knows how to read and list Services.

type ServiceSlice

type ServiceSlice []*Service

ServiceSlice represents a slice of *Service

type ServiceStatusWriter

type ServiceStatusWriter interface {
	// Update updates the fields corresponding to the status subresource for the
	// given Service object.
	UpdateServiceStatus(ctx context.Context, obj *v1.Service, opts ...client.SubResourceUpdateOption) error

	// Patch patches the given Service object's subresource.
	PatchServiceStatus(ctx context.Context, obj *v1.Service, patch client.Patch, opts ...client.SubResourcePatchOption) error
}

StatusWriter knows how to update status subresource of a Service object.

type ServiceTransitionFunction

type ServiceTransitionFunction func(existing, desired *v1.Service) error

ServiceTransitionFunction instructs the ServiceWriter how to transition between an existing Service object and a desired on an Upsert

type ServiceWriter

type ServiceWriter interface {
	// Create saves the Service object.
	CreateService(ctx context.Context, obj *v1.Service, opts ...client.CreateOption) error

	// Delete deletes the Service object.
	DeleteService(ctx context.Context, key client.ObjectKey, opts ...client.DeleteOption) error

	// Update updates the given Service object.
	UpdateService(ctx context.Context, obj *v1.Service, opts ...client.UpdateOption) error

	// Patch patches the given Service object.
	PatchService(ctx context.Context, obj *v1.Service, patch client.Patch, opts ...client.PatchOption) error

	// DeleteAllOf deletes all Service objects matching the given options.
	DeleteAllOfService(ctx context.Context, opts ...client.DeleteAllOfOption) error

	// Create or Update the Service object.
	UpsertService(ctx context.Context, obj *v1.Service, transitionFuncs ...ServiceTransitionFunction) error
}

Writer knows how to create, delete, and update Services.

Directories

Path Synopsis
Definitions for the Kubernetes Controllers
Definitions for the Kubernetes Controllers
mocks
Package mock_controller is a generated GoMock package.
Package mock_controller is a generated GoMock package.
Package mock_v1 is a generated GoMock package.
Package mock_v1 is a generated GoMock package.
mocks
Package mock_v1sets is a generated GoMock package.
Package mock_v1sets is a generated GoMock package.

Jump to

Keyboard shortcuts

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