client

package
v1.2.0 Latest Latest
Warning

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

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

Documentation

Overview

Package client is a generated GoMock package.

Index

Constants

This section is empty.

Variables

View Source
var (
	SchemeBuilder  runtime.SchemeBuilder
	Scheme         *runtime.Scheme
	Codecs         serializer.CodecFactory
	ParameterCodec runtime.ParameterCodec
)
View Source
var GetAAQClientFromClientConfig = func(cmdConfig clientcmd.ClientConfig) (AAQClient, error) {
	config, err := cmdConfig.ClientConfig()
	if err != nil {
		return nil, err
	}
	return GetAAQClientFromRESTConfig(config)

}

this function is defined as a closure so iut could be overwritten by unit tests

Functions

func DefaultClientConfig

func DefaultClientConfig(flags *pflag.FlagSet) clientcmd.ClientConfig

DefaultClientConfig creates a clientcmd.ClientConfig with the following hierarchy:

  1. Use the kubeconfig builder. The number of merges and overrides here gets a little crazy. Stay with me.

  2. Merge the kubeconfig itself. This is done with the following hierarchy rules:

  3. CommandLineLocation - this parsed from the command line, so it must be late bound. If you specify this, then no other kubeconfig files are merged. This file must exist.

  4. If $KUBECONFIG is set, then it is treated as a list of files that should be merged.

  5. HomeDirectoryLocation Empty filenames are ignored. Files with non-deserializable content produced errors. The first file to set a particular value or map key wins and the value or map key is never changed. This means that the first file to set CurrentContext will have its context preserved. It also means that if two files specify a "red-user", only values from the first file's red-user are used. Even non-conflicting entries from the second file's "red-user" are discarded.

  6. Determine the context to use based on the first hit in this chain

  7. command line argument - again, parsed from the command line, so it must be late bound

  8. CurrentContext from the merged kubeconfig file

  9. Empty is allowed at this stage

  10. Determine the cluster info and auth info to use. At this point, we may or may not have a context. They are built based on the first hit in this chain. (run it twice, once for auth, once for cluster)

  11. command line argument

  12. If context is present, then use the context value

  13. Empty is allowed

  14. Determine the actual cluster info to use. At this point, we may or may not have a cluster info. Build each piece of the cluster info based on the chain:

  15. command line argument

  16. If cluster info is present and a value for the attribute is present, use it.

  17. If you don't have a server location, bail.

  18. Auth info is build using the same rules as cluster info, EXCEPT that you can only have one authentication technique per auth info. The following conditions result in an error:

  19. If there are two conflicting techniques specified from the command line, fail.

  20. If the command line does not specify one, and the auth info has conflicting techniques, fail.

  21. If the command line specifies one and the auth info specifies another, honor the command line technique.

  22. Use default values and potentially prompt for auth information

    However, if it appears that we're running in a kubernetes cluster container environment, then run with the auth info kubernetes mounted for us. Specifically: The env vars KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT are set, and the file /var/run/secrets/kubernetes.io/serviceaccount/token exists and is not a directory.

Initially copied from https://github.com/kubernetes/kubernetes/blob/09f321c80bfc9bca63a5530b56d7a1a3ba80ba9b/pkg/kubectl/cmd/util/factory_client_access.go#L174

func FlagSet

func FlagSet() *flag.FlagSet

func GetAAQClientConfig

func GetAAQClientConfig() (*rest.Config, error)

func GetConfig deprecated

func GetConfig() (*restclient.Config, error)

Deprecated: Use GetKubevirtClientConfig instead

func Init

func Init()

Init adds the default `kubeconfig` and `master` flags. It is not added by default to allow integration into the different controller generators which normally add these flags too.

func RegisterRestConfigHook

func RegisterRestConfigHook(fn RestConfigHookFunc)

Types

type AAQClient

type AAQClient interface {
	RestClient() *rest.RESTClient
	kubernetes.Interface
	ApplicationAwareResourceQuotas(namespace string) ApplicationAwareResourceQuotaInterface
	ApplicationAwareClusterResourceQuotas() ApplicationAwareClusterResourceQuotaInterface
	ApplicationAwareAppliedClusterResourceQuotas(namespace string) ApplicationAwareAppliedClusterResourceQuotaInterface
	AAQJobQueueConfigs(namespace string) AAQJobQueueConfigInterface
	AAQ() AAQInterface
	GeneratedAAQClient() generatedclient.Interface
	CRQClient() crqclient.Interface
	KubevirtClient() kubevirtclient.Interface
	DiscoveryClient() discovery.DiscoveryInterface
	Config() *rest.Config
}

func GetAAQClient

func GetAAQClient() (AAQClient, error)

func GetAAQClientFromFlags

func GetAAQClientFromFlags(master string, kubeconfig string) (AAQClient, error)

func GetAAQClientFromRESTConfig

func GetAAQClientFromRESTConfig(config *rest.Config) (AAQClient, error)

type AAQInterface

type AAQInterface interface {
	Create(ctx context.Context, aAQ *v1alpha1.AAQ, opts metav1.CreateOptions) (*v1alpha1.AAQ, error)
	Update(ctx context.Context, aAQ *v1alpha1.AAQ, opts metav1.UpdateOptions) (*v1alpha1.AAQ, error)
	UpdateStatus(ctx context.Context, aAQ *v1alpha1.AAQ, opts metav1.UpdateOptions) (*v1alpha1.AAQ, error)
	Delete(ctx context.Context, name string, opts metav1.DeleteOptions) error
	DeleteCollection(ctx context.Context, opts metav1.DeleteOptions, listOpts metav1.ListOptions) error
	Get(ctx context.Context, name string, opts metav1.GetOptions) (*v1alpha1.AAQ, error)
	List(ctx context.Context, opts metav1.ListOptions) (*v1alpha1.AAQList, error)
	Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *v1alpha1.AAQ, err error)
	aaqv1alpha1.AAQExpansion
}

AAQInterface has methods to work with AAQ resources.

type AAQJobQueueConfigInterface

type AAQJobQueueConfigInterface interface {
	Create(ctx context.Context, aAQJobQueueConfig *v1alpha1.AAQJobQueueConfig, opts metav1.CreateOptions) (*v1alpha1.AAQJobQueueConfig, error)
	Update(ctx context.Context, aAQJobQueueConfig *v1alpha1.AAQJobQueueConfig, opts metav1.UpdateOptions) (*v1alpha1.AAQJobQueueConfig, error)
	UpdateStatus(ctx context.Context, aAQJobQueueConfig *v1alpha1.AAQJobQueueConfig, opts metav1.UpdateOptions) (*v1alpha1.AAQJobQueueConfig, error)
	Delete(ctx context.Context, name string, opts metav1.DeleteOptions) error
	DeleteCollection(ctx context.Context, opts metav1.DeleteOptions, listOpts metav1.ListOptions) error
	Get(ctx context.Context, name string, opts metav1.GetOptions) (*v1alpha1.AAQJobQueueConfig, error)
	List(ctx context.Context, opts metav1.ListOptions) (*v1alpha1.AAQJobQueueConfigList, error)
	Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *v1alpha1.AAQJobQueueConfig, err error)
	aaqv1alpha1.AAQJobQueueConfigExpansion
}

AAQJobQueueConfigInterface has methods to work with AAQJobQueueConfigs resources.

type ApplicationAwareAppliedClusterResourceQuotaInterface added in v1.1.5

ApplicationAwareAppliedClusterResourceQuotaInterface has methods to work with ApplicationAwareAppliedClusterResourceQuotaInterface resources.

type ApplicationAwareClusterResourceQuotaInterface

ApplicationAwareClusterResourceQuotaInterface has methods to work with ApplicationAwareClusterResourceQuota resources.

type ApplicationAwareResourceQuotaInterface

ApplicationAwareResourceQuotaInterface has methods to work with ApplicationAwareResourceQuotas resources.

type MockAAQClient

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

MockAAQClient is a mock of AAQClient interface.

func NewMockAAQClient

func NewMockAAQClient(ctrl *gomock.Controller) *MockAAQClient

NewMockAAQClient creates a new mock instance.

func (*MockAAQClient) AAQ

func (m *MockAAQClient) AAQ() AAQInterface

AAQ mocks base method.

func (*MockAAQClient) AAQJobQueueConfigs

func (m *MockAAQClient) AAQJobQueueConfigs(namespace string) AAQJobQueueConfigInterface

AAQJobQueueConfigs mocks base method.

func (*MockAAQClient) AdmissionregistrationV1

func (m *MockAAQClient) AdmissionregistrationV1() v10.AdmissionregistrationV1Interface

AdmissionregistrationV1 mocks base method.

func (*MockAAQClient) AdmissionregistrationV1alpha1

func (m *MockAAQClient) AdmissionregistrationV1alpha1() v1alpha1.AdmissionregistrationV1alpha1Interface

AdmissionregistrationV1alpha1 mocks base method.

func (*MockAAQClient) AdmissionregistrationV1beta1

func (m *MockAAQClient) AdmissionregistrationV1beta1() v1beta1.AdmissionregistrationV1beta1Interface

AdmissionregistrationV1beta1 mocks base method.

func (*MockAAQClient) ApplicationAwareAppliedClusterResourceQuotas added in v1.1.5

func (m *MockAAQClient) ApplicationAwareAppliedClusterResourceQuotas(namespace string) ApplicationAwareAppliedClusterResourceQuotaInterface

ApplicationAwareAppliedClusterResourceQuotas mocks base method.

func (*MockAAQClient) ApplicationAwareClusterResourceQuotas

func (m *MockAAQClient) ApplicationAwareClusterResourceQuotas() ApplicationAwareClusterResourceQuotaInterface

ApplicationAwareClusterResourceQuotas mocks base method.

func (*MockAAQClient) ApplicationAwareResourceQuotas

func (m *MockAAQClient) ApplicationAwareResourceQuotas(namespace string) ApplicationAwareResourceQuotaInterface

ApplicationAwareResourceQuotas mocks base method.

func (*MockAAQClient) AppsV1

func (m *MockAAQClient) AppsV1() v11.AppsV1Interface

AppsV1 mocks base method.

func (*MockAAQClient) AppsV1beta1

func (m *MockAAQClient) AppsV1beta1() v1beta10.AppsV1beta1Interface

AppsV1beta1 mocks base method.

func (*MockAAQClient) AppsV1beta2

func (m *MockAAQClient) AppsV1beta2() v1beta2.AppsV1beta2Interface

AppsV1beta2 mocks base method.

func (*MockAAQClient) AuthenticationV1

func (m *MockAAQClient) AuthenticationV1() v12.AuthenticationV1Interface

AuthenticationV1 mocks base method.

func (*MockAAQClient) AuthenticationV1alpha1

func (m *MockAAQClient) AuthenticationV1alpha1() v1alpha11.AuthenticationV1alpha1Interface

AuthenticationV1alpha1 mocks base method.

func (*MockAAQClient) AuthenticationV1beta1

func (m *MockAAQClient) AuthenticationV1beta1() v1beta11.AuthenticationV1beta1Interface

AuthenticationV1beta1 mocks base method.

func (*MockAAQClient) AuthorizationV1

func (m *MockAAQClient) AuthorizationV1() v13.AuthorizationV1Interface

AuthorizationV1 mocks base method.

func (*MockAAQClient) AuthorizationV1beta1

func (m *MockAAQClient) AuthorizationV1beta1() v1beta12.AuthorizationV1beta1Interface

AuthorizationV1beta1 mocks base method.

func (*MockAAQClient) AutoscalingV1

func (m *MockAAQClient) AutoscalingV1() v14.AutoscalingV1Interface

AutoscalingV1 mocks base method.

func (*MockAAQClient) AutoscalingV2

func (m *MockAAQClient) AutoscalingV2() v2.AutoscalingV2Interface

AutoscalingV2 mocks base method.

func (*MockAAQClient) AutoscalingV2beta1

func (m *MockAAQClient) AutoscalingV2beta1() v2beta1.AutoscalingV2beta1Interface

AutoscalingV2beta1 mocks base method.

func (*MockAAQClient) AutoscalingV2beta2

func (m *MockAAQClient) AutoscalingV2beta2() v2beta2.AutoscalingV2beta2Interface

AutoscalingV2beta2 mocks base method.

func (*MockAAQClient) BatchV1

func (m *MockAAQClient) BatchV1() v15.BatchV1Interface

BatchV1 mocks base method.

func (*MockAAQClient) BatchV1beta1

func (m *MockAAQClient) BatchV1beta1() v1beta13.BatchV1beta1Interface

BatchV1beta1 mocks base method.

func (*MockAAQClient) CRQClient

func (m *MockAAQClient) CRQClient() versioned0.Interface

CRQClient mocks base method.

func (*MockAAQClient) CertificatesV1

func (m *MockAAQClient) CertificatesV1() v16.CertificatesV1Interface

CertificatesV1 mocks base method.

func (*MockAAQClient) CertificatesV1alpha1

func (m *MockAAQClient) CertificatesV1alpha1() v1alpha12.CertificatesV1alpha1Interface

CertificatesV1alpha1 mocks base method.

func (*MockAAQClient) CertificatesV1beta1

func (m *MockAAQClient) CertificatesV1beta1() v1beta14.CertificatesV1beta1Interface

CertificatesV1beta1 mocks base method.

func (*MockAAQClient) Config

func (m *MockAAQClient) Config() *rest.Config

Config mocks base method.

func (*MockAAQClient) CoordinationV1

func (m *MockAAQClient) CoordinationV1() v17.CoordinationV1Interface

CoordinationV1 mocks base method.

func (*MockAAQClient) CoordinationV1beta1

func (m *MockAAQClient) CoordinationV1beta1() v1beta15.CoordinationV1beta1Interface

CoordinationV1beta1 mocks base method.

func (*MockAAQClient) CoreV1

func (m *MockAAQClient) CoreV1() v18.CoreV1Interface

CoreV1 mocks base method.

func (*MockAAQClient) Discovery

Discovery mocks base method.

func (*MockAAQClient) DiscoveryClient

func (m *MockAAQClient) DiscoveryClient() discovery.DiscoveryInterface

DiscoveryClient mocks base method.

func (*MockAAQClient) DiscoveryV1

func (m *MockAAQClient) DiscoveryV1() v19.DiscoveryV1Interface

DiscoveryV1 mocks base method.

func (*MockAAQClient) DiscoveryV1beta1

func (m *MockAAQClient) DiscoveryV1beta1() v1beta16.DiscoveryV1beta1Interface

DiscoveryV1beta1 mocks base method.

func (*MockAAQClient) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockAAQClient) EventsV1

func (m *MockAAQClient) EventsV1() v110.EventsV1Interface

EventsV1 mocks base method.

func (*MockAAQClient) EventsV1beta1

func (m *MockAAQClient) EventsV1beta1() v1beta17.EventsV1beta1Interface

EventsV1beta1 mocks base method.

func (*MockAAQClient) ExtensionsV1beta1

func (m *MockAAQClient) ExtensionsV1beta1() v1beta18.ExtensionsV1beta1Interface

ExtensionsV1beta1 mocks base method.

func (*MockAAQClient) FlowcontrolV1alpha1

func (m *MockAAQClient) FlowcontrolV1alpha1() v1alpha13.FlowcontrolV1alpha1Interface

FlowcontrolV1alpha1 mocks base method.

func (*MockAAQClient) FlowcontrolV1beta1

func (m *MockAAQClient) FlowcontrolV1beta1() v1beta19.FlowcontrolV1beta1Interface

FlowcontrolV1beta1 mocks base method.

func (*MockAAQClient) FlowcontrolV1beta2

func (m *MockAAQClient) FlowcontrolV1beta2() v1beta20.FlowcontrolV1beta2Interface

FlowcontrolV1beta2 mocks base method.

func (*MockAAQClient) FlowcontrolV1beta3

func (m *MockAAQClient) FlowcontrolV1beta3() v1beta3.FlowcontrolV1beta3Interface

FlowcontrolV1beta3 mocks base method.

func (*MockAAQClient) GeneratedAAQClient

func (m *MockAAQClient) GeneratedAAQClient() versioned.Interface

GeneratedAAQClient mocks base method.

func (*MockAAQClient) InternalV1alpha1

func (m *MockAAQClient) InternalV1alpha1() v1alpha10.InternalV1alpha1Interface

InternalV1alpha1 mocks base method.

func (*MockAAQClient) KubevirtClient

func (m *MockAAQClient) KubevirtClient() versioned1.Interface

KubevirtClient mocks base method.

func (*MockAAQClient) NetworkingV1

func (m *MockAAQClient) NetworkingV1() v111.NetworkingV1Interface

NetworkingV1 mocks base method.

func (*MockAAQClient) NetworkingV1alpha1

func (m *MockAAQClient) NetworkingV1alpha1() v1alpha14.NetworkingV1alpha1Interface

NetworkingV1alpha1 mocks base method.

func (*MockAAQClient) NetworkingV1beta1

func (m *MockAAQClient) NetworkingV1beta1() v1beta110.NetworkingV1beta1Interface

NetworkingV1beta1 mocks base method.

func (*MockAAQClient) NodeV1

func (m *MockAAQClient) NodeV1() v112.NodeV1Interface

NodeV1 mocks base method.

func (*MockAAQClient) NodeV1alpha1

func (m *MockAAQClient) NodeV1alpha1() v1alpha15.NodeV1alpha1Interface

NodeV1alpha1 mocks base method.

func (*MockAAQClient) NodeV1beta1

func (m *MockAAQClient) NodeV1beta1() v1beta111.NodeV1beta1Interface

NodeV1beta1 mocks base method.

func (*MockAAQClient) PolicyV1

func (m *MockAAQClient) PolicyV1() v113.PolicyV1Interface

PolicyV1 mocks base method.

func (*MockAAQClient) PolicyV1beta1

func (m *MockAAQClient) PolicyV1beta1() v1beta112.PolicyV1beta1Interface

PolicyV1beta1 mocks base method.

func (*MockAAQClient) RbacV1

func (m *MockAAQClient) RbacV1() v114.RbacV1Interface

RbacV1 mocks base method.

func (*MockAAQClient) RbacV1alpha1

func (m *MockAAQClient) RbacV1alpha1() v1alpha16.RbacV1alpha1Interface

RbacV1alpha1 mocks base method.

func (*MockAAQClient) RbacV1beta1

func (m *MockAAQClient) RbacV1beta1() v1beta113.RbacV1beta1Interface

RbacV1beta1 mocks base method.

func (*MockAAQClient) ResourceV1alpha2

func (m *MockAAQClient) ResourceV1alpha2() v1alpha2.ResourceV1alpha2Interface

ResourceV1alpha2 mocks base method.

func (*MockAAQClient) RestClient

func (m *MockAAQClient) RestClient() *rest.RESTClient

RestClient mocks base method.

func (*MockAAQClient) SchedulingV1

func (m *MockAAQClient) SchedulingV1() v115.SchedulingV1Interface

SchedulingV1 mocks base method.

func (*MockAAQClient) SchedulingV1alpha1

func (m *MockAAQClient) SchedulingV1alpha1() v1alpha17.SchedulingV1alpha1Interface

SchedulingV1alpha1 mocks base method.

func (*MockAAQClient) SchedulingV1beta1

func (m *MockAAQClient) SchedulingV1beta1() v1beta114.SchedulingV1beta1Interface

SchedulingV1beta1 mocks base method.

func (*MockAAQClient) StorageV1

func (m *MockAAQClient) StorageV1() v116.StorageV1Interface

StorageV1 mocks base method.

func (*MockAAQClient) StorageV1alpha1

func (m *MockAAQClient) StorageV1alpha1() v1alpha18.StorageV1alpha1Interface

StorageV1alpha1 mocks base method.

func (*MockAAQClient) StorageV1beta1

func (m *MockAAQClient) StorageV1beta1() v1beta115.StorageV1beta1Interface

StorageV1beta1 mocks base method.

type MockAAQClientMockRecorder

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

MockAAQClientMockRecorder is the mock recorder for MockAAQClient.

func (*MockAAQClientMockRecorder) AAQ

AAQ indicates an expected call of AAQ.

func (*MockAAQClientMockRecorder) AAQJobQueueConfigs

func (mr *MockAAQClientMockRecorder) AAQJobQueueConfigs(namespace interface{}) *gomock.Call

AAQJobQueueConfigs indicates an expected call of AAQJobQueueConfigs.

func (*MockAAQClientMockRecorder) AdmissionregistrationV1

func (mr *MockAAQClientMockRecorder) AdmissionregistrationV1() *gomock.Call

AdmissionregistrationV1 indicates an expected call of AdmissionregistrationV1.

func (*MockAAQClientMockRecorder) AdmissionregistrationV1alpha1

func (mr *MockAAQClientMockRecorder) AdmissionregistrationV1alpha1() *gomock.Call

AdmissionregistrationV1alpha1 indicates an expected call of AdmissionregistrationV1alpha1.

func (*MockAAQClientMockRecorder) AdmissionregistrationV1beta1

func (mr *MockAAQClientMockRecorder) AdmissionregistrationV1beta1() *gomock.Call

AdmissionregistrationV1beta1 indicates an expected call of AdmissionregistrationV1beta1.

func (*MockAAQClientMockRecorder) ApplicationAwareAppliedClusterResourceQuotas added in v1.1.5

func (mr *MockAAQClientMockRecorder) ApplicationAwareAppliedClusterResourceQuotas(namespace interface{}) *gomock.Call

ApplicationAwareAppliedClusterResourceQuotas indicates an expected call of ApplicationAwareAppliedClusterResourceQuotas.

func (*MockAAQClientMockRecorder) ApplicationAwareClusterResourceQuotas

func (mr *MockAAQClientMockRecorder) ApplicationAwareClusterResourceQuotas() *gomock.Call

ApplicationAwareClusterResourceQuotas indicates an expected call of ApplicationAwareClusterResourceQuotas.

func (*MockAAQClientMockRecorder) ApplicationAwareResourceQuotas

func (mr *MockAAQClientMockRecorder) ApplicationAwareResourceQuotas(namespace interface{}) *gomock.Call

ApplicationAwareResourceQuotas indicates an expected call of ApplicationAwareResourceQuotas.

func (*MockAAQClientMockRecorder) AppsV1

func (mr *MockAAQClientMockRecorder) AppsV1() *gomock.Call

AppsV1 indicates an expected call of AppsV1.

func (*MockAAQClientMockRecorder) AppsV1beta1

func (mr *MockAAQClientMockRecorder) AppsV1beta1() *gomock.Call

AppsV1beta1 indicates an expected call of AppsV1beta1.

func (*MockAAQClientMockRecorder) AppsV1beta2

func (mr *MockAAQClientMockRecorder) AppsV1beta2() *gomock.Call

AppsV1beta2 indicates an expected call of AppsV1beta2.

func (*MockAAQClientMockRecorder) AuthenticationV1

func (mr *MockAAQClientMockRecorder) AuthenticationV1() *gomock.Call

AuthenticationV1 indicates an expected call of AuthenticationV1.

func (*MockAAQClientMockRecorder) AuthenticationV1alpha1

func (mr *MockAAQClientMockRecorder) AuthenticationV1alpha1() *gomock.Call

AuthenticationV1alpha1 indicates an expected call of AuthenticationV1alpha1.

func (*MockAAQClientMockRecorder) AuthenticationV1beta1

func (mr *MockAAQClientMockRecorder) AuthenticationV1beta1() *gomock.Call

AuthenticationV1beta1 indicates an expected call of AuthenticationV1beta1.

func (*MockAAQClientMockRecorder) AuthorizationV1

func (mr *MockAAQClientMockRecorder) AuthorizationV1() *gomock.Call

AuthorizationV1 indicates an expected call of AuthorizationV1.

func (*MockAAQClientMockRecorder) AuthorizationV1beta1

func (mr *MockAAQClientMockRecorder) AuthorizationV1beta1() *gomock.Call

AuthorizationV1beta1 indicates an expected call of AuthorizationV1beta1.

func (*MockAAQClientMockRecorder) AutoscalingV1

func (mr *MockAAQClientMockRecorder) AutoscalingV1() *gomock.Call

AutoscalingV1 indicates an expected call of AutoscalingV1.

func (*MockAAQClientMockRecorder) AutoscalingV2

func (mr *MockAAQClientMockRecorder) AutoscalingV2() *gomock.Call

AutoscalingV2 indicates an expected call of AutoscalingV2.

func (*MockAAQClientMockRecorder) AutoscalingV2beta1

func (mr *MockAAQClientMockRecorder) AutoscalingV2beta1() *gomock.Call

AutoscalingV2beta1 indicates an expected call of AutoscalingV2beta1.

func (*MockAAQClientMockRecorder) AutoscalingV2beta2

func (mr *MockAAQClientMockRecorder) AutoscalingV2beta2() *gomock.Call

AutoscalingV2beta2 indicates an expected call of AutoscalingV2beta2.

func (*MockAAQClientMockRecorder) BatchV1

func (mr *MockAAQClientMockRecorder) BatchV1() *gomock.Call

BatchV1 indicates an expected call of BatchV1.

func (*MockAAQClientMockRecorder) BatchV1beta1

func (mr *MockAAQClientMockRecorder) BatchV1beta1() *gomock.Call

BatchV1beta1 indicates an expected call of BatchV1beta1.

func (*MockAAQClientMockRecorder) CRQClient

func (mr *MockAAQClientMockRecorder) CRQClient() *gomock.Call

CRQClient indicates an expected call of CRQClient.

func (*MockAAQClientMockRecorder) CertificatesV1

func (mr *MockAAQClientMockRecorder) CertificatesV1() *gomock.Call

CertificatesV1 indicates an expected call of CertificatesV1.

func (*MockAAQClientMockRecorder) CertificatesV1alpha1

func (mr *MockAAQClientMockRecorder) CertificatesV1alpha1() *gomock.Call

CertificatesV1alpha1 indicates an expected call of CertificatesV1alpha1.

func (*MockAAQClientMockRecorder) CertificatesV1beta1

func (mr *MockAAQClientMockRecorder) CertificatesV1beta1() *gomock.Call

CertificatesV1beta1 indicates an expected call of CertificatesV1beta1.

func (*MockAAQClientMockRecorder) Config

func (mr *MockAAQClientMockRecorder) Config() *gomock.Call

Config indicates an expected call of Config.

func (*MockAAQClientMockRecorder) CoordinationV1

func (mr *MockAAQClientMockRecorder) CoordinationV1() *gomock.Call

CoordinationV1 indicates an expected call of CoordinationV1.

func (*MockAAQClientMockRecorder) CoordinationV1beta1

func (mr *MockAAQClientMockRecorder) CoordinationV1beta1() *gomock.Call

CoordinationV1beta1 indicates an expected call of CoordinationV1beta1.

func (*MockAAQClientMockRecorder) CoreV1

func (mr *MockAAQClientMockRecorder) CoreV1() *gomock.Call

CoreV1 indicates an expected call of CoreV1.

func (*MockAAQClientMockRecorder) Discovery

func (mr *MockAAQClientMockRecorder) Discovery() *gomock.Call

Discovery indicates an expected call of Discovery.

func (*MockAAQClientMockRecorder) DiscoveryClient

func (mr *MockAAQClientMockRecorder) DiscoveryClient() *gomock.Call

DiscoveryClient indicates an expected call of DiscoveryClient.

func (*MockAAQClientMockRecorder) DiscoveryV1

func (mr *MockAAQClientMockRecorder) DiscoveryV1() *gomock.Call

DiscoveryV1 indicates an expected call of DiscoveryV1.

func (*MockAAQClientMockRecorder) DiscoveryV1beta1

func (mr *MockAAQClientMockRecorder) DiscoveryV1beta1() *gomock.Call

DiscoveryV1beta1 indicates an expected call of DiscoveryV1beta1.

func (*MockAAQClientMockRecorder) EventsV1

func (mr *MockAAQClientMockRecorder) EventsV1() *gomock.Call

EventsV1 indicates an expected call of EventsV1.

func (*MockAAQClientMockRecorder) EventsV1beta1

func (mr *MockAAQClientMockRecorder) EventsV1beta1() *gomock.Call

EventsV1beta1 indicates an expected call of EventsV1beta1.

func (*MockAAQClientMockRecorder) ExtensionsV1beta1

func (mr *MockAAQClientMockRecorder) ExtensionsV1beta1() *gomock.Call

ExtensionsV1beta1 indicates an expected call of ExtensionsV1beta1.

func (*MockAAQClientMockRecorder) FlowcontrolV1alpha1

func (mr *MockAAQClientMockRecorder) FlowcontrolV1alpha1() *gomock.Call

FlowcontrolV1alpha1 indicates an expected call of FlowcontrolV1alpha1.

func (*MockAAQClientMockRecorder) FlowcontrolV1beta1

func (mr *MockAAQClientMockRecorder) FlowcontrolV1beta1() *gomock.Call

FlowcontrolV1beta1 indicates an expected call of FlowcontrolV1beta1.

func (*MockAAQClientMockRecorder) FlowcontrolV1beta2

func (mr *MockAAQClientMockRecorder) FlowcontrolV1beta2() *gomock.Call

FlowcontrolV1beta2 indicates an expected call of FlowcontrolV1beta2.

func (*MockAAQClientMockRecorder) FlowcontrolV1beta3

func (mr *MockAAQClientMockRecorder) FlowcontrolV1beta3() *gomock.Call

FlowcontrolV1beta3 indicates an expected call of FlowcontrolV1beta3.

func (*MockAAQClientMockRecorder) GeneratedAAQClient

func (mr *MockAAQClientMockRecorder) GeneratedAAQClient() *gomock.Call

GeneratedAAQClient indicates an expected call of GeneratedAAQClient.

func (*MockAAQClientMockRecorder) InternalV1alpha1

func (mr *MockAAQClientMockRecorder) InternalV1alpha1() *gomock.Call

InternalV1alpha1 indicates an expected call of InternalV1alpha1.

func (*MockAAQClientMockRecorder) KubevirtClient

func (mr *MockAAQClientMockRecorder) KubevirtClient() *gomock.Call

KubevirtClient indicates an expected call of KubevirtClient.

func (*MockAAQClientMockRecorder) NetworkingV1

func (mr *MockAAQClientMockRecorder) NetworkingV1() *gomock.Call

NetworkingV1 indicates an expected call of NetworkingV1.

func (*MockAAQClientMockRecorder) NetworkingV1alpha1

func (mr *MockAAQClientMockRecorder) NetworkingV1alpha1() *gomock.Call

NetworkingV1alpha1 indicates an expected call of NetworkingV1alpha1.

func (*MockAAQClientMockRecorder) NetworkingV1beta1

func (mr *MockAAQClientMockRecorder) NetworkingV1beta1() *gomock.Call

NetworkingV1beta1 indicates an expected call of NetworkingV1beta1.

func (*MockAAQClientMockRecorder) NodeV1

func (mr *MockAAQClientMockRecorder) NodeV1() *gomock.Call

NodeV1 indicates an expected call of NodeV1.

func (*MockAAQClientMockRecorder) NodeV1alpha1

func (mr *MockAAQClientMockRecorder) NodeV1alpha1() *gomock.Call

NodeV1alpha1 indicates an expected call of NodeV1alpha1.

func (*MockAAQClientMockRecorder) NodeV1beta1

func (mr *MockAAQClientMockRecorder) NodeV1beta1() *gomock.Call

NodeV1beta1 indicates an expected call of NodeV1beta1.

func (*MockAAQClientMockRecorder) PolicyV1

func (mr *MockAAQClientMockRecorder) PolicyV1() *gomock.Call

PolicyV1 indicates an expected call of PolicyV1.

func (*MockAAQClientMockRecorder) PolicyV1beta1

func (mr *MockAAQClientMockRecorder) PolicyV1beta1() *gomock.Call

PolicyV1beta1 indicates an expected call of PolicyV1beta1.

func (*MockAAQClientMockRecorder) RbacV1

func (mr *MockAAQClientMockRecorder) RbacV1() *gomock.Call

RbacV1 indicates an expected call of RbacV1.

func (*MockAAQClientMockRecorder) RbacV1alpha1

func (mr *MockAAQClientMockRecorder) RbacV1alpha1() *gomock.Call

RbacV1alpha1 indicates an expected call of RbacV1alpha1.

func (*MockAAQClientMockRecorder) RbacV1beta1

func (mr *MockAAQClientMockRecorder) RbacV1beta1() *gomock.Call

RbacV1beta1 indicates an expected call of RbacV1beta1.

func (*MockAAQClientMockRecorder) ResourceV1alpha2

func (mr *MockAAQClientMockRecorder) ResourceV1alpha2() *gomock.Call

ResourceV1alpha2 indicates an expected call of ResourceV1alpha2.

func (*MockAAQClientMockRecorder) RestClient

func (mr *MockAAQClientMockRecorder) RestClient() *gomock.Call

RestClient indicates an expected call of RestClient.

func (*MockAAQClientMockRecorder) SchedulingV1

func (mr *MockAAQClientMockRecorder) SchedulingV1() *gomock.Call

SchedulingV1 indicates an expected call of SchedulingV1.

func (*MockAAQClientMockRecorder) SchedulingV1alpha1

func (mr *MockAAQClientMockRecorder) SchedulingV1alpha1() *gomock.Call

SchedulingV1alpha1 indicates an expected call of SchedulingV1alpha1.

func (*MockAAQClientMockRecorder) SchedulingV1beta1

func (mr *MockAAQClientMockRecorder) SchedulingV1beta1() *gomock.Call

SchedulingV1beta1 indicates an expected call of SchedulingV1beta1.

func (*MockAAQClientMockRecorder) StorageV1

func (mr *MockAAQClientMockRecorder) StorageV1() *gomock.Call

StorageV1 indicates an expected call of StorageV1.

func (*MockAAQClientMockRecorder) StorageV1alpha1

func (mr *MockAAQClientMockRecorder) StorageV1alpha1() *gomock.Call

StorageV1alpha1 indicates an expected call of StorageV1alpha1.

func (*MockAAQClientMockRecorder) StorageV1beta1

func (mr *MockAAQClientMockRecorder) StorageV1beta1() *gomock.Call

StorageV1beta1 indicates an expected call of StorageV1beta1.

type MockAAQInterface

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

MockAAQInterface is a mock of AAQInterface interface.

func NewMockAAQInterface

func NewMockAAQInterface(ctrl *gomock.Controller) *MockAAQInterface

NewMockAAQInterface creates a new mock instance.

func (*MockAAQInterface) Create

Create mocks base method.

func (*MockAAQInterface) Delete

func (m *MockAAQInterface) Delete(ctx context.Context, name string, opts v1.DeleteOptions) error

Delete mocks base method.

func (*MockAAQInterface) DeleteCollection

func (m *MockAAQInterface) DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error

DeleteCollection mocks base method.

func (*MockAAQInterface) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockAAQInterface) Get

func (m *MockAAQInterface) Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha19.AAQ, error)

Get mocks base method.

func (*MockAAQInterface) List

List mocks base method.

func (*MockAAQInterface) Patch

func (m *MockAAQInterface) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (*v1alpha19.AAQ, error)

Patch mocks base method.

func (*MockAAQInterface) Update

Update mocks base method.

func (*MockAAQInterface) UpdateStatus

func (m *MockAAQInterface) UpdateStatus(ctx context.Context, aAQ *v1alpha19.AAQ, opts v1.UpdateOptions) (*v1alpha19.AAQ, error)

UpdateStatus mocks base method.

func (*MockAAQInterface) Watch

Watch mocks base method.

type MockAAQInterfaceMockRecorder

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

MockAAQInterfaceMockRecorder is the mock recorder for MockAAQInterface.

func (*MockAAQInterfaceMockRecorder) Create

func (mr *MockAAQInterfaceMockRecorder) Create(ctx, aAQ, opts interface{}) *gomock.Call

Create indicates an expected call of Create.

func (*MockAAQInterfaceMockRecorder) Delete

func (mr *MockAAQInterfaceMockRecorder) Delete(ctx, name, opts interface{}) *gomock.Call

Delete indicates an expected call of Delete.

func (*MockAAQInterfaceMockRecorder) DeleteCollection

func (mr *MockAAQInterfaceMockRecorder) DeleteCollection(ctx, opts, listOpts interface{}) *gomock.Call

DeleteCollection indicates an expected call of DeleteCollection.

func (*MockAAQInterfaceMockRecorder) Get

func (mr *MockAAQInterfaceMockRecorder) Get(ctx, name, opts interface{}) *gomock.Call

Get indicates an expected call of Get.

func (*MockAAQInterfaceMockRecorder) List

func (mr *MockAAQInterfaceMockRecorder) List(ctx, opts interface{}) *gomock.Call

List indicates an expected call of List.

func (*MockAAQInterfaceMockRecorder) Patch

func (mr *MockAAQInterfaceMockRecorder) Patch(ctx, name, pt, data, opts interface{}, subresources ...interface{}) *gomock.Call

Patch indicates an expected call of Patch.

func (*MockAAQInterfaceMockRecorder) Update

func (mr *MockAAQInterfaceMockRecorder) Update(ctx, aAQ, opts interface{}) *gomock.Call

Update indicates an expected call of Update.

func (*MockAAQInterfaceMockRecorder) UpdateStatus

func (mr *MockAAQInterfaceMockRecorder) UpdateStatus(ctx, aAQ, opts interface{}) *gomock.Call

UpdateStatus indicates an expected call of UpdateStatus.

func (*MockAAQInterfaceMockRecorder) Watch

func (mr *MockAAQInterfaceMockRecorder) Watch(ctx, opts interface{}) *gomock.Call

Watch indicates an expected call of Watch.

type MockAAQJobQueueConfigInterface

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

MockAAQJobQueueConfigInterface is a mock of AAQJobQueueConfigInterface interface.

func NewMockAAQJobQueueConfigInterface

func NewMockAAQJobQueueConfigInterface(ctrl *gomock.Controller) *MockAAQJobQueueConfigInterface

NewMockAAQJobQueueConfigInterface creates a new mock instance.

func (*MockAAQJobQueueConfigInterface) Create

Create mocks base method.

func (*MockAAQJobQueueConfigInterface) Delete

Delete mocks base method.

func (*MockAAQJobQueueConfigInterface) DeleteCollection

func (m *MockAAQJobQueueConfigInterface) DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error

DeleteCollection mocks base method.

func (*MockAAQJobQueueConfigInterface) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockAAQJobQueueConfigInterface) Get

Get mocks base method.

func (*MockAAQJobQueueConfigInterface) List

List mocks base method.

func (*MockAAQJobQueueConfigInterface) Patch

func (m *MockAAQJobQueueConfigInterface) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (*v1alpha19.AAQJobQueueConfig, error)

Patch mocks base method.

func (*MockAAQJobQueueConfigInterface) Update

Update mocks base method.

func (*MockAAQJobQueueConfigInterface) UpdateStatus

UpdateStatus mocks base method.

func (*MockAAQJobQueueConfigInterface) Watch

Watch mocks base method.

type MockAAQJobQueueConfigInterfaceMockRecorder

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

MockAAQJobQueueConfigInterfaceMockRecorder is the mock recorder for MockAAQJobQueueConfigInterface.

func (*MockAAQJobQueueConfigInterfaceMockRecorder) Create

func (mr *MockAAQJobQueueConfigInterfaceMockRecorder) Create(ctx, aAQJobQueueConfig, opts interface{}) *gomock.Call

Create indicates an expected call of Create.

func (*MockAAQJobQueueConfigInterfaceMockRecorder) Delete

func (mr *MockAAQJobQueueConfigInterfaceMockRecorder) Delete(ctx, name, opts interface{}) *gomock.Call

Delete indicates an expected call of Delete.

func (*MockAAQJobQueueConfigInterfaceMockRecorder) DeleteCollection

func (mr *MockAAQJobQueueConfigInterfaceMockRecorder) DeleteCollection(ctx, opts, listOpts interface{}) *gomock.Call

DeleteCollection indicates an expected call of DeleteCollection.

func (*MockAAQJobQueueConfigInterfaceMockRecorder) Get

func (mr *MockAAQJobQueueConfigInterfaceMockRecorder) Get(ctx, name, opts interface{}) *gomock.Call

Get indicates an expected call of Get.

func (*MockAAQJobQueueConfigInterfaceMockRecorder) List

func (mr *MockAAQJobQueueConfigInterfaceMockRecorder) List(ctx, opts interface{}) *gomock.Call

List indicates an expected call of List.

func (*MockAAQJobQueueConfigInterfaceMockRecorder) Patch

func (mr *MockAAQJobQueueConfigInterfaceMockRecorder) Patch(ctx, name, pt, data, opts interface{}, subresources ...interface{}) *gomock.Call

Patch indicates an expected call of Patch.

func (*MockAAQJobQueueConfigInterfaceMockRecorder) Update

func (mr *MockAAQJobQueueConfigInterfaceMockRecorder) Update(ctx, aAQJobQueueConfig, opts interface{}) *gomock.Call

Update indicates an expected call of Update.

func (*MockAAQJobQueueConfigInterfaceMockRecorder) UpdateStatus

func (mr *MockAAQJobQueueConfigInterfaceMockRecorder) UpdateStatus(ctx, aAQJobQueueConfig, opts interface{}) *gomock.Call

UpdateStatus indicates an expected call of UpdateStatus.

func (*MockAAQJobQueueConfigInterfaceMockRecorder) Watch

func (mr *MockAAQJobQueueConfigInterfaceMockRecorder) Watch(ctx, opts interface{}) *gomock.Call

Watch indicates an expected call of Watch.

type MockApplicationAwareAppliedClusterResourceQuotaInterface added in v1.1.5

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

MockApplicationAwareAppliedClusterResourceQuotaInterface is a mock of ApplicationAwareAppliedClusterResourceQuotaInterface interface.

func NewMockApplicationAwareAppliedClusterResourceQuotaInterface added in v1.1.5

func NewMockApplicationAwareAppliedClusterResourceQuotaInterface(ctrl *gomock.Controller) *MockApplicationAwareAppliedClusterResourceQuotaInterface

NewMockApplicationAwareAppliedClusterResourceQuotaInterface creates a new mock instance.

func (*MockApplicationAwareAppliedClusterResourceQuotaInterface) Create added in v1.1.5

Create mocks base method.

func (*MockApplicationAwareAppliedClusterResourceQuotaInterface) Delete added in v1.1.5

Delete mocks base method.

func (*MockApplicationAwareAppliedClusterResourceQuotaInterface) DeleteCollection added in v1.1.5

DeleteCollection mocks base method.

func (*MockApplicationAwareAppliedClusterResourceQuotaInterface) EXPECT added in v1.1.5

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockApplicationAwareAppliedClusterResourceQuotaInterface) Get added in v1.1.5

Get mocks base method.

func (*MockApplicationAwareAppliedClusterResourceQuotaInterface) List added in v1.1.5

List mocks base method.

func (*MockApplicationAwareAppliedClusterResourceQuotaInterface) Patch added in v1.1.5

Patch mocks base method.

func (*MockApplicationAwareAppliedClusterResourceQuotaInterface) Update added in v1.1.5

Update mocks base method.

func (*MockApplicationAwareAppliedClusterResourceQuotaInterface) UpdateStatus added in v1.1.5

UpdateStatus mocks base method.

func (*MockApplicationAwareAppliedClusterResourceQuotaInterface) Watch added in v1.1.5

Watch mocks base method.

type MockApplicationAwareAppliedClusterResourceQuotaInterfaceMockRecorder added in v1.1.5

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

MockApplicationAwareAppliedClusterResourceQuotaInterfaceMockRecorder is the mock recorder for MockApplicationAwareAppliedClusterResourceQuotaInterface.

func (*MockApplicationAwareAppliedClusterResourceQuotaInterfaceMockRecorder) Create added in v1.1.5

func (mr *MockApplicationAwareAppliedClusterResourceQuotaInterfaceMockRecorder) Create(ctx, ApplicationAwareAppliedClusterResourceQuota, opts interface{}) *gomock.Call

Create indicates an expected call of Create.

func (*MockApplicationAwareAppliedClusterResourceQuotaInterfaceMockRecorder) Delete added in v1.1.5

func (mr *MockApplicationAwareAppliedClusterResourceQuotaInterfaceMockRecorder) Delete(ctx, name, opts interface{}) *gomock.Call

Delete indicates an expected call of Delete.

func (*MockApplicationAwareAppliedClusterResourceQuotaInterfaceMockRecorder) DeleteCollection added in v1.1.5

func (mr *MockApplicationAwareAppliedClusterResourceQuotaInterfaceMockRecorder) DeleteCollection(ctx, opts, listOpts interface{}) *gomock.Call

DeleteCollection indicates an expected call of DeleteCollection.

func (*MockApplicationAwareAppliedClusterResourceQuotaInterfaceMockRecorder) Get added in v1.1.5

Get indicates an expected call of Get.

func (*MockApplicationAwareAppliedClusterResourceQuotaInterfaceMockRecorder) List added in v1.1.5

List indicates an expected call of List.

func (*MockApplicationAwareAppliedClusterResourceQuotaInterfaceMockRecorder) Patch added in v1.1.5

func (mr *MockApplicationAwareAppliedClusterResourceQuotaInterfaceMockRecorder) Patch(ctx, name, pt, data, opts interface{}, subresources ...interface{}) *gomock.Call

Patch indicates an expected call of Patch.

func (*MockApplicationAwareAppliedClusterResourceQuotaInterfaceMockRecorder) Update added in v1.1.5

func (mr *MockApplicationAwareAppliedClusterResourceQuotaInterfaceMockRecorder) Update(ctx, ApplicationAwareAppliedClusterResourceQuota, opts interface{}) *gomock.Call

Update indicates an expected call of Update.

func (*MockApplicationAwareAppliedClusterResourceQuotaInterfaceMockRecorder) UpdateStatus added in v1.1.5

func (mr *MockApplicationAwareAppliedClusterResourceQuotaInterfaceMockRecorder) UpdateStatus(ctx, ApplicationAwareAppliedClusterResourceQuota, opts interface{}) *gomock.Call

UpdateStatus indicates an expected call of UpdateStatus.

func (*MockApplicationAwareAppliedClusterResourceQuotaInterfaceMockRecorder) Watch added in v1.1.5

Watch indicates an expected call of Watch.

type MockApplicationAwareClusterResourceQuotaInterface

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

MockApplicationAwareClusterResourceQuotaInterface is a mock of ApplicationAwareClusterResourceQuotaInterface interface.

func NewMockApplicationAwareClusterResourceQuotaInterface

func NewMockApplicationAwareClusterResourceQuotaInterface(ctrl *gomock.Controller) *MockApplicationAwareClusterResourceQuotaInterface

NewMockApplicationAwareClusterResourceQuotaInterface creates a new mock instance.

func (*MockApplicationAwareClusterResourceQuotaInterface) Create

Create mocks base method.

func (*MockApplicationAwareClusterResourceQuotaInterface) Delete

Delete mocks base method.

func (*MockApplicationAwareClusterResourceQuotaInterface) DeleteCollection

DeleteCollection mocks base method.

func (*MockApplicationAwareClusterResourceQuotaInterface) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockApplicationAwareClusterResourceQuotaInterface) Get

Get mocks base method.

func (*MockApplicationAwareClusterResourceQuotaInterface) List

List mocks base method.

func (*MockApplicationAwareClusterResourceQuotaInterface) Patch

Patch mocks base method.

func (*MockApplicationAwareClusterResourceQuotaInterface) Update

Update mocks base method.

func (*MockApplicationAwareClusterResourceQuotaInterface) UpdateStatus

UpdateStatus mocks base method.

func (*MockApplicationAwareClusterResourceQuotaInterface) Watch

Watch mocks base method.

type MockApplicationAwareClusterResourceQuotaInterfaceMockRecorder

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

MockApplicationAwareClusterResourceQuotaInterfaceMockRecorder is the mock recorder for MockApplicationAwareClusterResourceQuotaInterface.

func (*MockApplicationAwareClusterResourceQuotaInterfaceMockRecorder) Create

func (mr *MockApplicationAwareClusterResourceQuotaInterfaceMockRecorder) Create(ctx, applicationAwareResourceQuota, opts interface{}) *gomock.Call

Create indicates an expected call of Create.

func (*MockApplicationAwareClusterResourceQuotaInterfaceMockRecorder) Delete

func (mr *MockApplicationAwareClusterResourceQuotaInterfaceMockRecorder) Delete(ctx, name, opts interface{}) *gomock.Call

Delete indicates an expected call of Delete.

func (*MockApplicationAwareClusterResourceQuotaInterfaceMockRecorder) DeleteCollection

func (mr *MockApplicationAwareClusterResourceQuotaInterfaceMockRecorder) DeleteCollection(ctx, opts, listOpts interface{}) *gomock.Call

DeleteCollection indicates an expected call of DeleteCollection.

func (*MockApplicationAwareClusterResourceQuotaInterfaceMockRecorder) Get

func (mr *MockApplicationAwareClusterResourceQuotaInterfaceMockRecorder) Get(ctx, name, opts interface{}) *gomock.Call

Get indicates an expected call of Get.

func (*MockApplicationAwareClusterResourceQuotaInterfaceMockRecorder) List

List indicates an expected call of List.

func (*MockApplicationAwareClusterResourceQuotaInterfaceMockRecorder) Patch

func (mr *MockApplicationAwareClusterResourceQuotaInterfaceMockRecorder) Patch(ctx, name, pt, data, opts interface{}, subresources ...interface{}) *gomock.Call

Patch indicates an expected call of Patch.

func (*MockApplicationAwareClusterResourceQuotaInterfaceMockRecorder) Update

func (mr *MockApplicationAwareClusterResourceQuotaInterfaceMockRecorder) Update(ctx, applicationAwareResourceQuota, opts interface{}) *gomock.Call

Update indicates an expected call of Update.

func (*MockApplicationAwareClusterResourceQuotaInterfaceMockRecorder) UpdateStatus

func (mr *MockApplicationAwareClusterResourceQuotaInterfaceMockRecorder) UpdateStatus(ctx, applicationAwareResourceQuota, opts interface{}) *gomock.Call

UpdateStatus indicates an expected call of UpdateStatus.

func (*MockApplicationAwareClusterResourceQuotaInterfaceMockRecorder) Watch

Watch indicates an expected call of Watch.

type MockApplicationAwareResourceQuotaInterface

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

MockApplicationAwareResourceQuotaInterface is a mock of ApplicationAwareResourceQuotaInterface interface.

func NewMockApplicationAwareResourceQuotaInterface

func NewMockApplicationAwareResourceQuotaInterface(ctrl *gomock.Controller) *MockApplicationAwareResourceQuotaInterface

NewMockApplicationAwareResourceQuotaInterface creates a new mock instance.

func (*MockApplicationAwareResourceQuotaInterface) Create

Create mocks base method.

func (*MockApplicationAwareResourceQuotaInterface) Delete

Delete mocks base method.

func (*MockApplicationAwareResourceQuotaInterface) DeleteCollection

DeleteCollection mocks base method.

func (*MockApplicationAwareResourceQuotaInterface) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockApplicationAwareResourceQuotaInterface) Get

Get mocks base method.

func (*MockApplicationAwareResourceQuotaInterface) List

List mocks base method.

func (*MockApplicationAwareResourceQuotaInterface) Patch

Patch mocks base method.

func (*MockApplicationAwareResourceQuotaInterface) Update

Update mocks base method.

func (*MockApplicationAwareResourceQuotaInterface) UpdateStatus

UpdateStatus mocks base method.

func (*MockApplicationAwareResourceQuotaInterface) Watch

Watch mocks base method.

type MockApplicationAwareResourceQuotaInterfaceMockRecorder

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

MockApplicationAwareResourceQuotaInterfaceMockRecorder is the mock recorder for MockApplicationAwareResourceQuotaInterface.

func (*MockApplicationAwareResourceQuotaInterfaceMockRecorder) Create

func (mr *MockApplicationAwareResourceQuotaInterfaceMockRecorder) Create(ctx, applicationAwareResourceQuota, opts interface{}) *gomock.Call

Create indicates an expected call of Create.

func (*MockApplicationAwareResourceQuotaInterfaceMockRecorder) Delete

func (mr *MockApplicationAwareResourceQuotaInterfaceMockRecorder) Delete(ctx, name, opts interface{}) *gomock.Call

Delete indicates an expected call of Delete.

func (*MockApplicationAwareResourceQuotaInterfaceMockRecorder) DeleteCollection

func (mr *MockApplicationAwareResourceQuotaInterfaceMockRecorder) DeleteCollection(ctx, opts, listOpts interface{}) *gomock.Call

DeleteCollection indicates an expected call of DeleteCollection.

func (*MockApplicationAwareResourceQuotaInterfaceMockRecorder) Get

func (mr *MockApplicationAwareResourceQuotaInterfaceMockRecorder) Get(ctx, name, opts interface{}) *gomock.Call

Get indicates an expected call of Get.

func (*MockApplicationAwareResourceQuotaInterfaceMockRecorder) List

func (mr *MockApplicationAwareResourceQuotaInterfaceMockRecorder) List(ctx, opts interface{}) *gomock.Call

List indicates an expected call of List.

func (*MockApplicationAwareResourceQuotaInterfaceMockRecorder) Patch

func (mr *MockApplicationAwareResourceQuotaInterfaceMockRecorder) Patch(ctx, name, pt, data, opts interface{}, subresources ...interface{}) *gomock.Call

Patch indicates an expected call of Patch.

func (*MockApplicationAwareResourceQuotaInterfaceMockRecorder) Update

func (mr *MockApplicationAwareResourceQuotaInterfaceMockRecorder) Update(ctx, applicationAwareResourceQuota, opts interface{}) *gomock.Call

Update indicates an expected call of Update.

func (*MockApplicationAwareResourceQuotaInterfaceMockRecorder) UpdateStatus

func (mr *MockApplicationAwareResourceQuotaInterfaceMockRecorder) UpdateStatus(ctx, applicationAwareResourceQuota, opts interface{}) *gomock.Call

UpdateStatus indicates an expected call of UpdateStatus.

func (*MockApplicationAwareResourceQuotaInterfaceMockRecorder) Watch

func (mr *MockApplicationAwareResourceQuotaInterfaceMockRecorder) Watch(ctx, opts interface{}) *gomock.Call

Watch indicates an expected call of Watch.

type RestConfigHookFunc

type RestConfigHookFunc func(*rest.Config)

Jump to

Keyboard shortcuts

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