// Code generated by MockGen. DO NOT EDIT. // Source: edge-infra.dev/pkg/edge/api/services (interfaces: GcpClientService) // Package mocks is a generated GoMock package. package mocks import ( context "context" reflect "reflect" types "edge-infra.dev/pkg/edge/api/types" gomock "github.com/golang/mock/gomock" ) // MockGcpClientService is a mock of GcpClientService interface. type MockGcpClientService struct { ctrl *gomock.Controller recorder *MockGcpClientServiceMockRecorder } // MockGcpClientServiceMockRecorder is the mock recorder for MockGcpClientService. type MockGcpClientServiceMockRecorder struct { mock *MockGcpClientService } // NewMockGcpClientService creates a new mock instance. func NewMockGcpClientService(ctrl *gomock.Controller) *MockGcpClientService { mock := &MockGcpClientService{ctrl: ctrl} mock.recorder = &MockGcpClientServiceMockRecorder{mock} return mock } // EXPECT returns an object that allows the caller to indicate expected use. func (m *MockGcpClientService) EXPECT() *MockGcpClientServiceMockRecorder { return m.recorder } // GetComputeClient mocks base method. func (m *MockGcpClientService) GetComputeClient(arg0 context.Context, arg1 string) (types.ComputeService, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetComputeClient", arg0, arg1) ret0, _ := ret[0].(types.ComputeService) ret1, _ := ret[1].(error) return ret0, ret1 } // GetComputeClient indicates an expected call of GetComputeClient. func (mr *MockGcpClientServiceMockRecorder) GetComputeClient(arg0, arg1 interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetComputeClient", reflect.TypeOf((*MockGcpClientService)(nil).GetComputeClient), arg0, arg1) } // GetContainerClient mocks base method. func (m *MockGcpClientService) GetContainerClient(arg0 context.Context, arg1 string) (types.ContainerService, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetContainerClient", arg0, arg1) ret0, _ := ret[0].(types.ContainerService) ret1, _ := ret[1].(error) return ret0, ret1 } // GetContainerClient indicates an expected call of GetContainerClient. func (mr *MockGcpClientServiceMockRecorder) GetContainerClient(arg0, arg1 interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetContainerClient", reflect.TypeOf((*MockGcpClientService)(nil).GetContainerClient), arg0, arg1) } // GetPubSubClient mocks base method. func (m *MockGcpClientService) GetPubSubClient(arg0 context.Context, arg1 string) (types.PubSubService, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetPubSubClient", arg0, arg1) ret0, _ := ret[0].(types.PubSubService) ret1, _ := ret[1].(error) return ret0, ret1 } // GetPubSubClient indicates an expected call of GetPubSubClient. func (mr *MockGcpClientServiceMockRecorder) GetPubSubClient(arg0, arg1 interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetPubSubClient", reflect.TypeOf((*MockGcpClientService)(nil).GetPubSubClient), arg0, arg1) } // GetSecretClient mocks base method. func (m *MockGcpClientService) GetSecretClient(arg0 context.Context, arg1 string) (types.SecretManagerService, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSecretClient", arg0, arg1) ret0, _ := ret[0].(types.SecretManagerService) ret1, _ := ret[1].(error) return ret0, ret1 } // GetSecretClient indicates an expected call of GetSecretClient. func (mr *MockGcpClientServiceMockRecorder) GetSecretClient(arg0, arg1 interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSecretClient", reflect.TypeOf((*MockGcpClientService)(nil).GetSecretClient), arg0, arg1) }