// Code generated by MockGen. DO NOT EDIT. // Source: ./internal/pkg/aws/identity/identity.go // Package mocks is a generated GoMock package. package mocks import ( reflect "reflect" sts "github.com/aws/aws-sdk-go/service/sts" gomock "github.com/golang/mock/gomock" ) // Mockapi is a mock of api interface. type Mockapi struct { ctrl *gomock.Controller recorder *MockapiMockRecorder } // MockapiMockRecorder is the mock recorder for Mockapi. type MockapiMockRecorder struct { mock *Mockapi } // NewMockapi creates a new mock instance. func NewMockapi(ctrl *gomock.Controller) *Mockapi { mock := &Mockapi{ctrl: ctrl} mock.recorder = &MockapiMockRecorder{mock} return mock } // EXPECT returns an object that allows the caller to indicate expected use. func (m *Mockapi) EXPECT() *MockapiMockRecorder { return m.recorder } // GetCallerIdentity mocks base method. func (m *Mockapi) GetCallerIdentity(input *sts.GetCallerIdentityInput) (*sts.GetCallerIdentityOutput, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetCallerIdentity", input) ret0, _ := ret[0].(*sts.GetCallerIdentityOutput) ret1, _ := ret[1].(error) return ret0, ret1 } // GetCallerIdentity indicates an expected call of GetCallerIdentity. func (mr *MockapiMockRecorder) GetCallerIdentity(input interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetCallerIdentity", reflect.TypeOf((*Mockapi)(nil).GetCallerIdentity), input) }