82
83
// GetSearchAttributes mocks base method.
84
>
func (m *MockManager) GetSearchAttributes(indexName string, forceRefreshCache bool) (NameTypeMap, error) {
search_attribute_mock.go
85
>
m.ctrl.T.Helper()
86
>
ret := m.ctrl.Call(m, "GetSearchAttributes", indexName, forceRefreshCache)
87
>
ret0, _ := ret[0].(NameTypeMap)
88
>
ret1, _ := ret[1].(error)
89
>
return ret0, ret1
90
>
}
91
92
// GetSearchAttributes indicates an expected call of GetSearchAttributes.
93
>
func (mr *MockManagerMockRecorder) GetSearchAttributes(indexName, forceRefreshCache any) *gomock.Call {
search_attribute_mock.go
94
>
mr.mock.ctrl.T.Helper()
95
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSearchAttributes", reflect.TypeOf((*MockManager)(nil).GetSearchAttributes), indexName, forceRefreshCache)
96
>
}
97
98
// SaveSearchAttributes mocks base method.