sigs.k8s.io/cluster-api-provider-aws@v1.5.5/pkg/cloud/services/instancestate/mock_sqsiface/sqsiface_mock.go (about) 1 /* 2 Copyright The Kubernetes Authors. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 */ 16 17 // Code generated by MockGen. DO NOT EDIT. 18 // Source: github.com/aws/aws-sdk-go/service/sqs/sqsiface (interfaces: SQSAPI) 19 20 // Package mock_sqsiface is a generated GoMock package. 21 package mock_sqsiface 22 23 import ( 24 context "context" 25 reflect "reflect" 26 27 request "github.com/aws/aws-sdk-go/aws/request" 28 sqs "github.com/aws/aws-sdk-go/service/sqs" 29 gomock "github.com/golang/mock/gomock" 30 ) 31 32 // MockSQSAPI is a mock of SQSAPI interface. 33 type MockSQSAPI struct { 34 ctrl *gomock.Controller 35 recorder *MockSQSAPIMockRecorder 36 } 37 38 // MockSQSAPIMockRecorder is the mock recorder for MockSQSAPI. 39 type MockSQSAPIMockRecorder struct { 40 mock *MockSQSAPI 41 } 42 43 // NewMockSQSAPI creates a new mock instance. 44 func NewMockSQSAPI(ctrl *gomock.Controller) *MockSQSAPI { 45 mock := &MockSQSAPI{ctrl: ctrl} 46 mock.recorder = &MockSQSAPIMockRecorder{mock} 47 return mock 48 } 49 50 // EXPECT returns an object that allows the caller to indicate expected use. 51 func (m *MockSQSAPI) EXPECT() *MockSQSAPIMockRecorder { 52 return m.recorder 53 } 54 55 // AddPermission mocks base method. 56 func (m *MockSQSAPI) AddPermission(arg0 *sqs.AddPermissionInput) (*sqs.AddPermissionOutput, error) { 57 m.ctrl.T.Helper() 58 ret := m.ctrl.Call(m, "AddPermission", arg0) 59 ret0, _ := ret[0].(*sqs.AddPermissionOutput) 60 ret1, _ := ret[1].(error) 61 return ret0, ret1 62 } 63 64 // AddPermission indicates an expected call of AddPermission. 65 func (mr *MockSQSAPIMockRecorder) AddPermission(arg0 interface{}) *gomock.Call { 66 mr.mock.ctrl.T.Helper() 67 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AddPermission", reflect.TypeOf((*MockSQSAPI)(nil).AddPermission), arg0) 68 } 69 70 // AddPermissionRequest mocks base method. 71 func (m *MockSQSAPI) AddPermissionRequest(arg0 *sqs.AddPermissionInput) (*request.Request, *sqs.AddPermissionOutput) { 72 m.ctrl.T.Helper() 73 ret := m.ctrl.Call(m, "AddPermissionRequest", arg0) 74 ret0, _ := ret[0].(*request.Request) 75 ret1, _ := ret[1].(*sqs.AddPermissionOutput) 76 return ret0, ret1 77 } 78 79 // AddPermissionRequest indicates an expected call of AddPermissionRequest. 80 func (mr *MockSQSAPIMockRecorder) AddPermissionRequest(arg0 interface{}) *gomock.Call { 81 mr.mock.ctrl.T.Helper() 82 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AddPermissionRequest", reflect.TypeOf((*MockSQSAPI)(nil).AddPermissionRequest), arg0) 83 } 84 85 // AddPermissionWithContext mocks base method. 86 func (m *MockSQSAPI) AddPermissionWithContext(arg0 context.Context, arg1 *sqs.AddPermissionInput, arg2 ...request.Option) (*sqs.AddPermissionOutput, error) { 87 m.ctrl.T.Helper() 88 varargs := []interface{}{arg0, arg1} 89 for _, a := range arg2 { 90 varargs = append(varargs, a) 91 } 92 ret := m.ctrl.Call(m, "AddPermissionWithContext", varargs...) 93 ret0, _ := ret[0].(*sqs.AddPermissionOutput) 94 ret1, _ := ret[1].(error) 95 return ret0, ret1 96 } 97 98 // AddPermissionWithContext indicates an expected call of AddPermissionWithContext. 99 func (mr *MockSQSAPIMockRecorder) AddPermissionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 100 mr.mock.ctrl.T.Helper() 101 varargs := append([]interface{}{arg0, arg1}, arg2...) 102 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AddPermissionWithContext", reflect.TypeOf((*MockSQSAPI)(nil).AddPermissionWithContext), varargs...) 103 } 104 105 // ChangeMessageVisibility mocks base method. 106 func (m *MockSQSAPI) ChangeMessageVisibility(arg0 *sqs.ChangeMessageVisibilityInput) (*sqs.ChangeMessageVisibilityOutput, error) { 107 m.ctrl.T.Helper() 108 ret := m.ctrl.Call(m, "ChangeMessageVisibility", arg0) 109 ret0, _ := ret[0].(*sqs.ChangeMessageVisibilityOutput) 110 ret1, _ := ret[1].(error) 111 return ret0, ret1 112 } 113 114 // ChangeMessageVisibility indicates an expected call of ChangeMessageVisibility. 115 func (mr *MockSQSAPIMockRecorder) ChangeMessageVisibility(arg0 interface{}) *gomock.Call { 116 mr.mock.ctrl.T.Helper() 117 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ChangeMessageVisibility", reflect.TypeOf((*MockSQSAPI)(nil).ChangeMessageVisibility), arg0) 118 } 119 120 // ChangeMessageVisibilityBatch mocks base method. 121 func (m *MockSQSAPI) ChangeMessageVisibilityBatch(arg0 *sqs.ChangeMessageVisibilityBatchInput) (*sqs.ChangeMessageVisibilityBatchOutput, error) { 122 m.ctrl.T.Helper() 123 ret := m.ctrl.Call(m, "ChangeMessageVisibilityBatch", arg0) 124 ret0, _ := ret[0].(*sqs.ChangeMessageVisibilityBatchOutput) 125 ret1, _ := ret[1].(error) 126 return ret0, ret1 127 } 128 129 // ChangeMessageVisibilityBatch indicates an expected call of ChangeMessageVisibilityBatch. 130 func (mr *MockSQSAPIMockRecorder) ChangeMessageVisibilityBatch(arg0 interface{}) *gomock.Call { 131 mr.mock.ctrl.T.Helper() 132 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ChangeMessageVisibilityBatch", reflect.TypeOf((*MockSQSAPI)(nil).ChangeMessageVisibilityBatch), arg0) 133 } 134 135 // ChangeMessageVisibilityBatchRequest mocks base method. 136 func (m *MockSQSAPI) ChangeMessageVisibilityBatchRequest(arg0 *sqs.ChangeMessageVisibilityBatchInput) (*request.Request, *sqs.ChangeMessageVisibilityBatchOutput) { 137 m.ctrl.T.Helper() 138 ret := m.ctrl.Call(m, "ChangeMessageVisibilityBatchRequest", arg0) 139 ret0, _ := ret[0].(*request.Request) 140 ret1, _ := ret[1].(*sqs.ChangeMessageVisibilityBatchOutput) 141 return ret0, ret1 142 } 143 144 // ChangeMessageVisibilityBatchRequest indicates an expected call of ChangeMessageVisibilityBatchRequest. 145 func (mr *MockSQSAPIMockRecorder) ChangeMessageVisibilityBatchRequest(arg0 interface{}) *gomock.Call { 146 mr.mock.ctrl.T.Helper() 147 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ChangeMessageVisibilityBatchRequest", reflect.TypeOf((*MockSQSAPI)(nil).ChangeMessageVisibilityBatchRequest), arg0) 148 } 149 150 // ChangeMessageVisibilityBatchWithContext mocks base method. 151 func (m *MockSQSAPI) ChangeMessageVisibilityBatchWithContext(arg0 context.Context, arg1 *sqs.ChangeMessageVisibilityBatchInput, arg2 ...request.Option) (*sqs.ChangeMessageVisibilityBatchOutput, error) { 152 m.ctrl.T.Helper() 153 varargs := []interface{}{arg0, arg1} 154 for _, a := range arg2 { 155 varargs = append(varargs, a) 156 } 157 ret := m.ctrl.Call(m, "ChangeMessageVisibilityBatchWithContext", varargs...) 158 ret0, _ := ret[0].(*sqs.ChangeMessageVisibilityBatchOutput) 159 ret1, _ := ret[1].(error) 160 return ret0, ret1 161 } 162 163 // ChangeMessageVisibilityBatchWithContext indicates an expected call of ChangeMessageVisibilityBatchWithContext. 164 func (mr *MockSQSAPIMockRecorder) ChangeMessageVisibilityBatchWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 165 mr.mock.ctrl.T.Helper() 166 varargs := append([]interface{}{arg0, arg1}, arg2...) 167 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ChangeMessageVisibilityBatchWithContext", reflect.TypeOf((*MockSQSAPI)(nil).ChangeMessageVisibilityBatchWithContext), varargs...) 168 } 169 170 // ChangeMessageVisibilityRequest mocks base method. 171 func (m *MockSQSAPI) ChangeMessageVisibilityRequest(arg0 *sqs.ChangeMessageVisibilityInput) (*request.Request, *sqs.ChangeMessageVisibilityOutput) { 172 m.ctrl.T.Helper() 173 ret := m.ctrl.Call(m, "ChangeMessageVisibilityRequest", arg0) 174 ret0, _ := ret[0].(*request.Request) 175 ret1, _ := ret[1].(*sqs.ChangeMessageVisibilityOutput) 176 return ret0, ret1 177 } 178 179 // ChangeMessageVisibilityRequest indicates an expected call of ChangeMessageVisibilityRequest. 180 func (mr *MockSQSAPIMockRecorder) ChangeMessageVisibilityRequest(arg0 interface{}) *gomock.Call { 181 mr.mock.ctrl.T.Helper() 182 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ChangeMessageVisibilityRequest", reflect.TypeOf((*MockSQSAPI)(nil).ChangeMessageVisibilityRequest), arg0) 183 } 184 185 // ChangeMessageVisibilityWithContext mocks base method. 186 func (m *MockSQSAPI) ChangeMessageVisibilityWithContext(arg0 context.Context, arg1 *sqs.ChangeMessageVisibilityInput, arg2 ...request.Option) (*sqs.ChangeMessageVisibilityOutput, error) { 187 m.ctrl.T.Helper() 188 varargs := []interface{}{arg0, arg1} 189 for _, a := range arg2 { 190 varargs = append(varargs, a) 191 } 192 ret := m.ctrl.Call(m, "ChangeMessageVisibilityWithContext", varargs...) 193 ret0, _ := ret[0].(*sqs.ChangeMessageVisibilityOutput) 194 ret1, _ := ret[1].(error) 195 return ret0, ret1 196 } 197 198 // ChangeMessageVisibilityWithContext indicates an expected call of ChangeMessageVisibilityWithContext. 199 func (mr *MockSQSAPIMockRecorder) ChangeMessageVisibilityWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 200 mr.mock.ctrl.T.Helper() 201 varargs := append([]interface{}{arg0, arg1}, arg2...) 202 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ChangeMessageVisibilityWithContext", reflect.TypeOf((*MockSQSAPI)(nil).ChangeMessageVisibilityWithContext), varargs...) 203 } 204 205 // CreateQueue mocks base method. 206 func (m *MockSQSAPI) CreateQueue(arg0 *sqs.CreateQueueInput) (*sqs.CreateQueueOutput, error) { 207 m.ctrl.T.Helper() 208 ret := m.ctrl.Call(m, "CreateQueue", arg0) 209 ret0, _ := ret[0].(*sqs.CreateQueueOutput) 210 ret1, _ := ret[1].(error) 211 return ret0, ret1 212 } 213 214 // CreateQueue indicates an expected call of CreateQueue. 215 func (mr *MockSQSAPIMockRecorder) CreateQueue(arg0 interface{}) *gomock.Call { 216 mr.mock.ctrl.T.Helper() 217 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateQueue", reflect.TypeOf((*MockSQSAPI)(nil).CreateQueue), arg0) 218 } 219 220 // CreateQueueRequest mocks base method. 221 func (m *MockSQSAPI) CreateQueueRequest(arg0 *sqs.CreateQueueInput) (*request.Request, *sqs.CreateQueueOutput) { 222 m.ctrl.T.Helper() 223 ret := m.ctrl.Call(m, "CreateQueueRequest", arg0) 224 ret0, _ := ret[0].(*request.Request) 225 ret1, _ := ret[1].(*sqs.CreateQueueOutput) 226 return ret0, ret1 227 } 228 229 // CreateQueueRequest indicates an expected call of CreateQueueRequest. 230 func (mr *MockSQSAPIMockRecorder) CreateQueueRequest(arg0 interface{}) *gomock.Call { 231 mr.mock.ctrl.T.Helper() 232 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateQueueRequest", reflect.TypeOf((*MockSQSAPI)(nil).CreateQueueRequest), arg0) 233 } 234 235 // CreateQueueWithContext mocks base method. 236 func (m *MockSQSAPI) CreateQueueWithContext(arg0 context.Context, arg1 *sqs.CreateQueueInput, arg2 ...request.Option) (*sqs.CreateQueueOutput, error) { 237 m.ctrl.T.Helper() 238 varargs := []interface{}{arg0, arg1} 239 for _, a := range arg2 { 240 varargs = append(varargs, a) 241 } 242 ret := m.ctrl.Call(m, "CreateQueueWithContext", varargs...) 243 ret0, _ := ret[0].(*sqs.CreateQueueOutput) 244 ret1, _ := ret[1].(error) 245 return ret0, ret1 246 } 247 248 // CreateQueueWithContext indicates an expected call of CreateQueueWithContext. 249 func (mr *MockSQSAPIMockRecorder) CreateQueueWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 250 mr.mock.ctrl.T.Helper() 251 varargs := append([]interface{}{arg0, arg1}, arg2...) 252 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateQueueWithContext", reflect.TypeOf((*MockSQSAPI)(nil).CreateQueueWithContext), varargs...) 253 } 254 255 // DeleteMessage mocks base method. 256 func (m *MockSQSAPI) DeleteMessage(arg0 *sqs.DeleteMessageInput) (*sqs.DeleteMessageOutput, error) { 257 m.ctrl.T.Helper() 258 ret := m.ctrl.Call(m, "DeleteMessage", arg0) 259 ret0, _ := ret[0].(*sqs.DeleteMessageOutput) 260 ret1, _ := ret[1].(error) 261 return ret0, ret1 262 } 263 264 // DeleteMessage indicates an expected call of DeleteMessage. 265 func (mr *MockSQSAPIMockRecorder) DeleteMessage(arg0 interface{}) *gomock.Call { 266 mr.mock.ctrl.T.Helper() 267 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteMessage", reflect.TypeOf((*MockSQSAPI)(nil).DeleteMessage), arg0) 268 } 269 270 // DeleteMessageBatch mocks base method. 271 func (m *MockSQSAPI) DeleteMessageBatch(arg0 *sqs.DeleteMessageBatchInput) (*sqs.DeleteMessageBatchOutput, error) { 272 m.ctrl.T.Helper() 273 ret := m.ctrl.Call(m, "DeleteMessageBatch", arg0) 274 ret0, _ := ret[0].(*sqs.DeleteMessageBatchOutput) 275 ret1, _ := ret[1].(error) 276 return ret0, ret1 277 } 278 279 // DeleteMessageBatch indicates an expected call of DeleteMessageBatch. 280 func (mr *MockSQSAPIMockRecorder) DeleteMessageBatch(arg0 interface{}) *gomock.Call { 281 mr.mock.ctrl.T.Helper() 282 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteMessageBatch", reflect.TypeOf((*MockSQSAPI)(nil).DeleteMessageBatch), arg0) 283 } 284 285 // DeleteMessageBatchRequest mocks base method. 286 func (m *MockSQSAPI) DeleteMessageBatchRequest(arg0 *sqs.DeleteMessageBatchInput) (*request.Request, *sqs.DeleteMessageBatchOutput) { 287 m.ctrl.T.Helper() 288 ret := m.ctrl.Call(m, "DeleteMessageBatchRequest", arg0) 289 ret0, _ := ret[0].(*request.Request) 290 ret1, _ := ret[1].(*sqs.DeleteMessageBatchOutput) 291 return ret0, ret1 292 } 293 294 // DeleteMessageBatchRequest indicates an expected call of DeleteMessageBatchRequest. 295 func (mr *MockSQSAPIMockRecorder) DeleteMessageBatchRequest(arg0 interface{}) *gomock.Call { 296 mr.mock.ctrl.T.Helper() 297 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteMessageBatchRequest", reflect.TypeOf((*MockSQSAPI)(nil).DeleteMessageBatchRequest), arg0) 298 } 299 300 // DeleteMessageBatchWithContext mocks base method. 301 func (m *MockSQSAPI) DeleteMessageBatchWithContext(arg0 context.Context, arg1 *sqs.DeleteMessageBatchInput, arg2 ...request.Option) (*sqs.DeleteMessageBatchOutput, error) { 302 m.ctrl.T.Helper() 303 varargs := []interface{}{arg0, arg1} 304 for _, a := range arg2 { 305 varargs = append(varargs, a) 306 } 307 ret := m.ctrl.Call(m, "DeleteMessageBatchWithContext", varargs...) 308 ret0, _ := ret[0].(*sqs.DeleteMessageBatchOutput) 309 ret1, _ := ret[1].(error) 310 return ret0, ret1 311 } 312 313 // DeleteMessageBatchWithContext indicates an expected call of DeleteMessageBatchWithContext. 314 func (mr *MockSQSAPIMockRecorder) DeleteMessageBatchWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 315 mr.mock.ctrl.T.Helper() 316 varargs := append([]interface{}{arg0, arg1}, arg2...) 317 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteMessageBatchWithContext", reflect.TypeOf((*MockSQSAPI)(nil).DeleteMessageBatchWithContext), varargs...) 318 } 319 320 // DeleteMessageRequest mocks base method. 321 func (m *MockSQSAPI) DeleteMessageRequest(arg0 *sqs.DeleteMessageInput) (*request.Request, *sqs.DeleteMessageOutput) { 322 m.ctrl.T.Helper() 323 ret := m.ctrl.Call(m, "DeleteMessageRequest", arg0) 324 ret0, _ := ret[0].(*request.Request) 325 ret1, _ := ret[1].(*sqs.DeleteMessageOutput) 326 return ret0, ret1 327 } 328 329 // DeleteMessageRequest indicates an expected call of DeleteMessageRequest. 330 func (mr *MockSQSAPIMockRecorder) DeleteMessageRequest(arg0 interface{}) *gomock.Call { 331 mr.mock.ctrl.T.Helper() 332 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteMessageRequest", reflect.TypeOf((*MockSQSAPI)(nil).DeleteMessageRequest), arg0) 333 } 334 335 // DeleteMessageWithContext mocks base method. 336 func (m *MockSQSAPI) DeleteMessageWithContext(arg0 context.Context, arg1 *sqs.DeleteMessageInput, arg2 ...request.Option) (*sqs.DeleteMessageOutput, error) { 337 m.ctrl.T.Helper() 338 varargs := []interface{}{arg0, arg1} 339 for _, a := range arg2 { 340 varargs = append(varargs, a) 341 } 342 ret := m.ctrl.Call(m, "DeleteMessageWithContext", varargs...) 343 ret0, _ := ret[0].(*sqs.DeleteMessageOutput) 344 ret1, _ := ret[1].(error) 345 return ret0, ret1 346 } 347 348 // DeleteMessageWithContext indicates an expected call of DeleteMessageWithContext. 349 func (mr *MockSQSAPIMockRecorder) DeleteMessageWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 350 mr.mock.ctrl.T.Helper() 351 varargs := append([]interface{}{arg0, arg1}, arg2...) 352 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteMessageWithContext", reflect.TypeOf((*MockSQSAPI)(nil).DeleteMessageWithContext), varargs...) 353 } 354 355 // DeleteQueue mocks base method. 356 func (m *MockSQSAPI) DeleteQueue(arg0 *sqs.DeleteQueueInput) (*sqs.DeleteQueueOutput, error) { 357 m.ctrl.T.Helper() 358 ret := m.ctrl.Call(m, "DeleteQueue", arg0) 359 ret0, _ := ret[0].(*sqs.DeleteQueueOutput) 360 ret1, _ := ret[1].(error) 361 return ret0, ret1 362 } 363 364 // DeleteQueue indicates an expected call of DeleteQueue. 365 func (mr *MockSQSAPIMockRecorder) DeleteQueue(arg0 interface{}) *gomock.Call { 366 mr.mock.ctrl.T.Helper() 367 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteQueue", reflect.TypeOf((*MockSQSAPI)(nil).DeleteQueue), arg0) 368 } 369 370 // DeleteQueueRequest mocks base method. 371 func (m *MockSQSAPI) DeleteQueueRequest(arg0 *sqs.DeleteQueueInput) (*request.Request, *sqs.DeleteQueueOutput) { 372 m.ctrl.T.Helper() 373 ret := m.ctrl.Call(m, "DeleteQueueRequest", arg0) 374 ret0, _ := ret[0].(*request.Request) 375 ret1, _ := ret[1].(*sqs.DeleteQueueOutput) 376 return ret0, ret1 377 } 378 379 // DeleteQueueRequest indicates an expected call of DeleteQueueRequest. 380 func (mr *MockSQSAPIMockRecorder) DeleteQueueRequest(arg0 interface{}) *gomock.Call { 381 mr.mock.ctrl.T.Helper() 382 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteQueueRequest", reflect.TypeOf((*MockSQSAPI)(nil).DeleteQueueRequest), arg0) 383 } 384 385 // DeleteQueueWithContext mocks base method. 386 func (m *MockSQSAPI) DeleteQueueWithContext(arg0 context.Context, arg1 *sqs.DeleteQueueInput, arg2 ...request.Option) (*sqs.DeleteQueueOutput, error) { 387 m.ctrl.T.Helper() 388 varargs := []interface{}{arg0, arg1} 389 for _, a := range arg2 { 390 varargs = append(varargs, a) 391 } 392 ret := m.ctrl.Call(m, "DeleteQueueWithContext", varargs...) 393 ret0, _ := ret[0].(*sqs.DeleteQueueOutput) 394 ret1, _ := ret[1].(error) 395 return ret0, ret1 396 } 397 398 // DeleteQueueWithContext indicates an expected call of DeleteQueueWithContext. 399 func (mr *MockSQSAPIMockRecorder) DeleteQueueWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 400 mr.mock.ctrl.T.Helper() 401 varargs := append([]interface{}{arg0, arg1}, arg2...) 402 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteQueueWithContext", reflect.TypeOf((*MockSQSAPI)(nil).DeleteQueueWithContext), varargs...) 403 } 404 405 // GetQueueAttributes mocks base method. 406 func (m *MockSQSAPI) GetQueueAttributes(arg0 *sqs.GetQueueAttributesInput) (*sqs.GetQueueAttributesOutput, error) { 407 m.ctrl.T.Helper() 408 ret := m.ctrl.Call(m, "GetQueueAttributes", arg0) 409 ret0, _ := ret[0].(*sqs.GetQueueAttributesOutput) 410 ret1, _ := ret[1].(error) 411 return ret0, ret1 412 } 413 414 // GetQueueAttributes indicates an expected call of GetQueueAttributes. 415 func (mr *MockSQSAPIMockRecorder) GetQueueAttributes(arg0 interface{}) *gomock.Call { 416 mr.mock.ctrl.T.Helper() 417 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetQueueAttributes", reflect.TypeOf((*MockSQSAPI)(nil).GetQueueAttributes), arg0) 418 } 419 420 // GetQueueAttributesRequest mocks base method. 421 func (m *MockSQSAPI) GetQueueAttributesRequest(arg0 *sqs.GetQueueAttributesInput) (*request.Request, *sqs.GetQueueAttributesOutput) { 422 m.ctrl.T.Helper() 423 ret := m.ctrl.Call(m, "GetQueueAttributesRequest", arg0) 424 ret0, _ := ret[0].(*request.Request) 425 ret1, _ := ret[1].(*sqs.GetQueueAttributesOutput) 426 return ret0, ret1 427 } 428 429 // GetQueueAttributesRequest indicates an expected call of GetQueueAttributesRequest. 430 func (mr *MockSQSAPIMockRecorder) GetQueueAttributesRequest(arg0 interface{}) *gomock.Call { 431 mr.mock.ctrl.T.Helper() 432 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetQueueAttributesRequest", reflect.TypeOf((*MockSQSAPI)(nil).GetQueueAttributesRequest), arg0) 433 } 434 435 // GetQueueAttributesWithContext mocks base method. 436 func (m *MockSQSAPI) GetQueueAttributesWithContext(arg0 context.Context, arg1 *sqs.GetQueueAttributesInput, arg2 ...request.Option) (*sqs.GetQueueAttributesOutput, error) { 437 m.ctrl.T.Helper() 438 varargs := []interface{}{arg0, arg1} 439 for _, a := range arg2 { 440 varargs = append(varargs, a) 441 } 442 ret := m.ctrl.Call(m, "GetQueueAttributesWithContext", varargs...) 443 ret0, _ := ret[0].(*sqs.GetQueueAttributesOutput) 444 ret1, _ := ret[1].(error) 445 return ret0, ret1 446 } 447 448 // GetQueueAttributesWithContext indicates an expected call of GetQueueAttributesWithContext. 449 func (mr *MockSQSAPIMockRecorder) GetQueueAttributesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 450 mr.mock.ctrl.T.Helper() 451 varargs := append([]interface{}{arg0, arg1}, arg2...) 452 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetQueueAttributesWithContext", reflect.TypeOf((*MockSQSAPI)(nil).GetQueueAttributesWithContext), varargs...) 453 } 454 455 // GetQueueUrl mocks base method. 456 func (m *MockSQSAPI) GetQueueUrl(arg0 *sqs.GetQueueUrlInput) (*sqs.GetQueueUrlOutput, error) { 457 m.ctrl.T.Helper() 458 ret := m.ctrl.Call(m, "GetQueueUrl", arg0) 459 ret0, _ := ret[0].(*sqs.GetQueueUrlOutput) 460 ret1, _ := ret[1].(error) 461 return ret0, ret1 462 } 463 464 // GetQueueUrl indicates an expected call of GetQueueUrl. 465 func (mr *MockSQSAPIMockRecorder) GetQueueUrl(arg0 interface{}) *gomock.Call { 466 mr.mock.ctrl.T.Helper() 467 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetQueueUrl", reflect.TypeOf((*MockSQSAPI)(nil).GetQueueUrl), arg0) 468 } 469 470 // GetQueueUrlRequest mocks base method. 471 func (m *MockSQSAPI) GetQueueUrlRequest(arg0 *sqs.GetQueueUrlInput) (*request.Request, *sqs.GetQueueUrlOutput) { 472 m.ctrl.T.Helper() 473 ret := m.ctrl.Call(m, "GetQueueUrlRequest", arg0) 474 ret0, _ := ret[0].(*request.Request) 475 ret1, _ := ret[1].(*sqs.GetQueueUrlOutput) 476 return ret0, ret1 477 } 478 479 // GetQueueUrlRequest indicates an expected call of GetQueueUrlRequest. 480 func (mr *MockSQSAPIMockRecorder) GetQueueUrlRequest(arg0 interface{}) *gomock.Call { 481 mr.mock.ctrl.T.Helper() 482 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetQueueUrlRequest", reflect.TypeOf((*MockSQSAPI)(nil).GetQueueUrlRequest), arg0) 483 } 484 485 // GetQueueUrlWithContext mocks base method. 486 func (m *MockSQSAPI) GetQueueUrlWithContext(arg0 context.Context, arg1 *sqs.GetQueueUrlInput, arg2 ...request.Option) (*sqs.GetQueueUrlOutput, error) { 487 m.ctrl.T.Helper() 488 varargs := []interface{}{arg0, arg1} 489 for _, a := range arg2 { 490 varargs = append(varargs, a) 491 } 492 ret := m.ctrl.Call(m, "GetQueueUrlWithContext", varargs...) 493 ret0, _ := ret[0].(*sqs.GetQueueUrlOutput) 494 ret1, _ := ret[1].(error) 495 return ret0, ret1 496 } 497 498 // GetQueueUrlWithContext indicates an expected call of GetQueueUrlWithContext. 499 func (mr *MockSQSAPIMockRecorder) GetQueueUrlWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 500 mr.mock.ctrl.T.Helper() 501 varargs := append([]interface{}{arg0, arg1}, arg2...) 502 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetQueueUrlWithContext", reflect.TypeOf((*MockSQSAPI)(nil).GetQueueUrlWithContext), varargs...) 503 } 504 505 // ListDeadLetterSourceQueues mocks base method. 506 func (m *MockSQSAPI) ListDeadLetterSourceQueues(arg0 *sqs.ListDeadLetterSourceQueuesInput) (*sqs.ListDeadLetterSourceQueuesOutput, error) { 507 m.ctrl.T.Helper() 508 ret := m.ctrl.Call(m, "ListDeadLetterSourceQueues", arg0) 509 ret0, _ := ret[0].(*sqs.ListDeadLetterSourceQueuesOutput) 510 ret1, _ := ret[1].(error) 511 return ret0, ret1 512 } 513 514 // ListDeadLetterSourceQueues indicates an expected call of ListDeadLetterSourceQueues. 515 func (mr *MockSQSAPIMockRecorder) ListDeadLetterSourceQueues(arg0 interface{}) *gomock.Call { 516 mr.mock.ctrl.T.Helper() 517 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListDeadLetterSourceQueues", reflect.TypeOf((*MockSQSAPI)(nil).ListDeadLetterSourceQueues), arg0) 518 } 519 520 // ListDeadLetterSourceQueuesPages mocks base method. 521 func (m *MockSQSAPI) ListDeadLetterSourceQueuesPages(arg0 *sqs.ListDeadLetterSourceQueuesInput, arg1 func(*sqs.ListDeadLetterSourceQueuesOutput, bool) bool) error { 522 m.ctrl.T.Helper() 523 ret := m.ctrl.Call(m, "ListDeadLetterSourceQueuesPages", arg0, arg1) 524 ret0, _ := ret[0].(error) 525 return ret0 526 } 527 528 // ListDeadLetterSourceQueuesPages indicates an expected call of ListDeadLetterSourceQueuesPages. 529 func (mr *MockSQSAPIMockRecorder) ListDeadLetterSourceQueuesPages(arg0, arg1 interface{}) *gomock.Call { 530 mr.mock.ctrl.T.Helper() 531 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListDeadLetterSourceQueuesPages", reflect.TypeOf((*MockSQSAPI)(nil).ListDeadLetterSourceQueuesPages), arg0, arg1) 532 } 533 534 // ListDeadLetterSourceQueuesPagesWithContext mocks base method. 535 func (m *MockSQSAPI) ListDeadLetterSourceQueuesPagesWithContext(arg0 context.Context, arg1 *sqs.ListDeadLetterSourceQueuesInput, arg2 func(*sqs.ListDeadLetterSourceQueuesOutput, bool) bool, arg3 ...request.Option) error { 536 m.ctrl.T.Helper() 537 varargs := []interface{}{arg0, arg1, arg2} 538 for _, a := range arg3 { 539 varargs = append(varargs, a) 540 } 541 ret := m.ctrl.Call(m, "ListDeadLetterSourceQueuesPagesWithContext", varargs...) 542 ret0, _ := ret[0].(error) 543 return ret0 544 } 545 546 // ListDeadLetterSourceQueuesPagesWithContext indicates an expected call of ListDeadLetterSourceQueuesPagesWithContext. 547 func (mr *MockSQSAPIMockRecorder) ListDeadLetterSourceQueuesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call { 548 mr.mock.ctrl.T.Helper() 549 varargs := append([]interface{}{arg0, arg1, arg2}, arg3...) 550 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListDeadLetterSourceQueuesPagesWithContext", reflect.TypeOf((*MockSQSAPI)(nil).ListDeadLetterSourceQueuesPagesWithContext), varargs...) 551 } 552 553 // ListDeadLetterSourceQueuesRequest mocks base method. 554 func (m *MockSQSAPI) ListDeadLetterSourceQueuesRequest(arg0 *sqs.ListDeadLetterSourceQueuesInput) (*request.Request, *sqs.ListDeadLetterSourceQueuesOutput) { 555 m.ctrl.T.Helper() 556 ret := m.ctrl.Call(m, "ListDeadLetterSourceQueuesRequest", arg0) 557 ret0, _ := ret[0].(*request.Request) 558 ret1, _ := ret[1].(*sqs.ListDeadLetterSourceQueuesOutput) 559 return ret0, ret1 560 } 561 562 // ListDeadLetterSourceQueuesRequest indicates an expected call of ListDeadLetterSourceQueuesRequest. 563 func (mr *MockSQSAPIMockRecorder) ListDeadLetterSourceQueuesRequest(arg0 interface{}) *gomock.Call { 564 mr.mock.ctrl.T.Helper() 565 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListDeadLetterSourceQueuesRequest", reflect.TypeOf((*MockSQSAPI)(nil).ListDeadLetterSourceQueuesRequest), arg0) 566 } 567 568 // ListDeadLetterSourceQueuesWithContext mocks base method. 569 func (m *MockSQSAPI) ListDeadLetterSourceQueuesWithContext(arg0 context.Context, arg1 *sqs.ListDeadLetterSourceQueuesInput, arg2 ...request.Option) (*sqs.ListDeadLetterSourceQueuesOutput, error) { 570 m.ctrl.T.Helper() 571 varargs := []interface{}{arg0, arg1} 572 for _, a := range arg2 { 573 varargs = append(varargs, a) 574 } 575 ret := m.ctrl.Call(m, "ListDeadLetterSourceQueuesWithContext", varargs...) 576 ret0, _ := ret[0].(*sqs.ListDeadLetterSourceQueuesOutput) 577 ret1, _ := ret[1].(error) 578 return ret0, ret1 579 } 580 581 // ListDeadLetterSourceQueuesWithContext indicates an expected call of ListDeadLetterSourceQueuesWithContext. 582 func (mr *MockSQSAPIMockRecorder) ListDeadLetterSourceQueuesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 583 mr.mock.ctrl.T.Helper() 584 varargs := append([]interface{}{arg0, arg1}, arg2...) 585 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListDeadLetterSourceQueuesWithContext", reflect.TypeOf((*MockSQSAPI)(nil).ListDeadLetterSourceQueuesWithContext), varargs...) 586 } 587 588 // ListQueueTags mocks base method. 589 func (m *MockSQSAPI) ListQueueTags(arg0 *sqs.ListQueueTagsInput) (*sqs.ListQueueTagsOutput, error) { 590 m.ctrl.T.Helper() 591 ret := m.ctrl.Call(m, "ListQueueTags", arg0) 592 ret0, _ := ret[0].(*sqs.ListQueueTagsOutput) 593 ret1, _ := ret[1].(error) 594 return ret0, ret1 595 } 596 597 // ListQueueTags indicates an expected call of ListQueueTags. 598 func (mr *MockSQSAPIMockRecorder) ListQueueTags(arg0 interface{}) *gomock.Call { 599 mr.mock.ctrl.T.Helper() 600 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListQueueTags", reflect.TypeOf((*MockSQSAPI)(nil).ListQueueTags), arg0) 601 } 602 603 // ListQueueTagsRequest mocks base method. 604 func (m *MockSQSAPI) ListQueueTagsRequest(arg0 *sqs.ListQueueTagsInput) (*request.Request, *sqs.ListQueueTagsOutput) { 605 m.ctrl.T.Helper() 606 ret := m.ctrl.Call(m, "ListQueueTagsRequest", arg0) 607 ret0, _ := ret[0].(*request.Request) 608 ret1, _ := ret[1].(*sqs.ListQueueTagsOutput) 609 return ret0, ret1 610 } 611 612 // ListQueueTagsRequest indicates an expected call of ListQueueTagsRequest. 613 func (mr *MockSQSAPIMockRecorder) ListQueueTagsRequest(arg0 interface{}) *gomock.Call { 614 mr.mock.ctrl.T.Helper() 615 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListQueueTagsRequest", reflect.TypeOf((*MockSQSAPI)(nil).ListQueueTagsRequest), arg0) 616 } 617 618 // ListQueueTagsWithContext mocks base method. 619 func (m *MockSQSAPI) ListQueueTagsWithContext(arg0 context.Context, arg1 *sqs.ListQueueTagsInput, arg2 ...request.Option) (*sqs.ListQueueTagsOutput, error) { 620 m.ctrl.T.Helper() 621 varargs := []interface{}{arg0, arg1} 622 for _, a := range arg2 { 623 varargs = append(varargs, a) 624 } 625 ret := m.ctrl.Call(m, "ListQueueTagsWithContext", varargs...) 626 ret0, _ := ret[0].(*sqs.ListQueueTagsOutput) 627 ret1, _ := ret[1].(error) 628 return ret0, ret1 629 } 630 631 // ListQueueTagsWithContext indicates an expected call of ListQueueTagsWithContext. 632 func (mr *MockSQSAPIMockRecorder) ListQueueTagsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 633 mr.mock.ctrl.T.Helper() 634 varargs := append([]interface{}{arg0, arg1}, arg2...) 635 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListQueueTagsWithContext", reflect.TypeOf((*MockSQSAPI)(nil).ListQueueTagsWithContext), varargs...) 636 } 637 638 // ListQueues mocks base method. 639 func (m *MockSQSAPI) ListQueues(arg0 *sqs.ListQueuesInput) (*sqs.ListQueuesOutput, error) { 640 m.ctrl.T.Helper() 641 ret := m.ctrl.Call(m, "ListQueues", arg0) 642 ret0, _ := ret[0].(*sqs.ListQueuesOutput) 643 ret1, _ := ret[1].(error) 644 return ret0, ret1 645 } 646 647 // ListQueues indicates an expected call of ListQueues. 648 func (mr *MockSQSAPIMockRecorder) ListQueues(arg0 interface{}) *gomock.Call { 649 mr.mock.ctrl.T.Helper() 650 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListQueues", reflect.TypeOf((*MockSQSAPI)(nil).ListQueues), arg0) 651 } 652 653 // ListQueuesPages mocks base method. 654 func (m *MockSQSAPI) ListQueuesPages(arg0 *sqs.ListQueuesInput, arg1 func(*sqs.ListQueuesOutput, bool) bool) error { 655 m.ctrl.T.Helper() 656 ret := m.ctrl.Call(m, "ListQueuesPages", arg0, arg1) 657 ret0, _ := ret[0].(error) 658 return ret0 659 } 660 661 // ListQueuesPages indicates an expected call of ListQueuesPages. 662 func (mr *MockSQSAPIMockRecorder) ListQueuesPages(arg0, arg1 interface{}) *gomock.Call { 663 mr.mock.ctrl.T.Helper() 664 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListQueuesPages", reflect.TypeOf((*MockSQSAPI)(nil).ListQueuesPages), arg0, arg1) 665 } 666 667 // ListQueuesPagesWithContext mocks base method. 668 func (m *MockSQSAPI) ListQueuesPagesWithContext(arg0 context.Context, arg1 *sqs.ListQueuesInput, arg2 func(*sqs.ListQueuesOutput, bool) bool, arg3 ...request.Option) error { 669 m.ctrl.T.Helper() 670 varargs := []interface{}{arg0, arg1, arg2} 671 for _, a := range arg3 { 672 varargs = append(varargs, a) 673 } 674 ret := m.ctrl.Call(m, "ListQueuesPagesWithContext", varargs...) 675 ret0, _ := ret[0].(error) 676 return ret0 677 } 678 679 // ListQueuesPagesWithContext indicates an expected call of ListQueuesPagesWithContext. 680 func (mr *MockSQSAPIMockRecorder) ListQueuesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call { 681 mr.mock.ctrl.T.Helper() 682 varargs := append([]interface{}{arg0, arg1, arg2}, arg3...) 683 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListQueuesPagesWithContext", reflect.TypeOf((*MockSQSAPI)(nil).ListQueuesPagesWithContext), varargs...) 684 } 685 686 // ListQueuesRequest mocks base method. 687 func (m *MockSQSAPI) ListQueuesRequest(arg0 *sqs.ListQueuesInput) (*request.Request, *sqs.ListQueuesOutput) { 688 m.ctrl.T.Helper() 689 ret := m.ctrl.Call(m, "ListQueuesRequest", arg0) 690 ret0, _ := ret[0].(*request.Request) 691 ret1, _ := ret[1].(*sqs.ListQueuesOutput) 692 return ret0, ret1 693 } 694 695 // ListQueuesRequest indicates an expected call of ListQueuesRequest. 696 func (mr *MockSQSAPIMockRecorder) ListQueuesRequest(arg0 interface{}) *gomock.Call { 697 mr.mock.ctrl.T.Helper() 698 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListQueuesRequest", reflect.TypeOf((*MockSQSAPI)(nil).ListQueuesRequest), arg0) 699 } 700 701 // ListQueuesWithContext mocks base method. 702 func (m *MockSQSAPI) ListQueuesWithContext(arg0 context.Context, arg1 *sqs.ListQueuesInput, arg2 ...request.Option) (*sqs.ListQueuesOutput, error) { 703 m.ctrl.T.Helper() 704 varargs := []interface{}{arg0, arg1} 705 for _, a := range arg2 { 706 varargs = append(varargs, a) 707 } 708 ret := m.ctrl.Call(m, "ListQueuesWithContext", varargs...) 709 ret0, _ := ret[0].(*sqs.ListQueuesOutput) 710 ret1, _ := ret[1].(error) 711 return ret0, ret1 712 } 713 714 // ListQueuesWithContext indicates an expected call of ListQueuesWithContext. 715 func (mr *MockSQSAPIMockRecorder) ListQueuesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 716 mr.mock.ctrl.T.Helper() 717 varargs := append([]interface{}{arg0, arg1}, arg2...) 718 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListQueuesWithContext", reflect.TypeOf((*MockSQSAPI)(nil).ListQueuesWithContext), varargs...) 719 } 720 721 // PurgeQueue mocks base method. 722 func (m *MockSQSAPI) PurgeQueue(arg0 *sqs.PurgeQueueInput) (*sqs.PurgeQueueOutput, error) { 723 m.ctrl.T.Helper() 724 ret := m.ctrl.Call(m, "PurgeQueue", arg0) 725 ret0, _ := ret[0].(*sqs.PurgeQueueOutput) 726 ret1, _ := ret[1].(error) 727 return ret0, ret1 728 } 729 730 // PurgeQueue indicates an expected call of PurgeQueue. 731 func (mr *MockSQSAPIMockRecorder) PurgeQueue(arg0 interface{}) *gomock.Call { 732 mr.mock.ctrl.T.Helper() 733 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "PurgeQueue", reflect.TypeOf((*MockSQSAPI)(nil).PurgeQueue), arg0) 734 } 735 736 // PurgeQueueRequest mocks base method. 737 func (m *MockSQSAPI) PurgeQueueRequest(arg0 *sqs.PurgeQueueInput) (*request.Request, *sqs.PurgeQueueOutput) { 738 m.ctrl.T.Helper() 739 ret := m.ctrl.Call(m, "PurgeQueueRequest", arg0) 740 ret0, _ := ret[0].(*request.Request) 741 ret1, _ := ret[1].(*sqs.PurgeQueueOutput) 742 return ret0, ret1 743 } 744 745 // PurgeQueueRequest indicates an expected call of PurgeQueueRequest. 746 func (mr *MockSQSAPIMockRecorder) PurgeQueueRequest(arg0 interface{}) *gomock.Call { 747 mr.mock.ctrl.T.Helper() 748 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "PurgeQueueRequest", reflect.TypeOf((*MockSQSAPI)(nil).PurgeQueueRequest), arg0) 749 } 750 751 // PurgeQueueWithContext mocks base method. 752 func (m *MockSQSAPI) PurgeQueueWithContext(arg0 context.Context, arg1 *sqs.PurgeQueueInput, arg2 ...request.Option) (*sqs.PurgeQueueOutput, error) { 753 m.ctrl.T.Helper() 754 varargs := []interface{}{arg0, arg1} 755 for _, a := range arg2 { 756 varargs = append(varargs, a) 757 } 758 ret := m.ctrl.Call(m, "PurgeQueueWithContext", varargs...) 759 ret0, _ := ret[0].(*sqs.PurgeQueueOutput) 760 ret1, _ := ret[1].(error) 761 return ret0, ret1 762 } 763 764 // PurgeQueueWithContext indicates an expected call of PurgeQueueWithContext. 765 func (mr *MockSQSAPIMockRecorder) PurgeQueueWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 766 mr.mock.ctrl.T.Helper() 767 varargs := append([]interface{}{arg0, arg1}, arg2...) 768 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "PurgeQueueWithContext", reflect.TypeOf((*MockSQSAPI)(nil).PurgeQueueWithContext), varargs...) 769 } 770 771 // ReceiveMessage mocks base method. 772 func (m *MockSQSAPI) ReceiveMessage(arg0 *sqs.ReceiveMessageInput) (*sqs.ReceiveMessageOutput, error) { 773 m.ctrl.T.Helper() 774 ret := m.ctrl.Call(m, "ReceiveMessage", arg0) 775 ret0, _ := ret[0].(*sqs.ReceiveMessageOutput) 776 ret1, _ := ret[1].(error) 777 return ret0, ret1 778 } 779 780 // ReceiveMessage indicates an expected call of ReceiveMessage. 781 func (mr *MockSQSAPIMockRecorder) ReceiveMessage(arg0 interface{}) *gomock.Call { 782 mr.mock.ctrl.T.Helper() 783 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ReceiveMessage", reflect.TypeOf((*MockSQSAPI)(nil).ReceiveMessage), arg0) 784 } 785 786 // ReceiveMessageRequest mocks base method. 787 func (m *MockSQSAPI) ReceiveMessageRequest(arg0 *sqs.ReceiveMessageInput) (*request.Request, *sqs.ReceiveMessageOutput) { 788 m.ctrl.T.Helper() 789 ret := m.ctrl.Call(m, "ReceiveMessageRequest", arg0) 790 ret0, _ := ret[0].(*request.Request) 791 ret1, _ := ret[1].(*sqs.ReceiveMessageOutput) 792 return ret0, ret1 793 } 794 795 // ReceiveMessageRequest indicates an expected call of ReceiveMessageRequest. 796 func (mr *MockSQSAPIMockRecorder) ReceiveMessageRequest(arg0 interface{}) *gomock.Call { 797 mr.mock.ctrl.T.Helper() 798 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ReceiveMessageRequest", reflect.TypeOf((*MockSQSAPI)(nil).ReceiveMessageRequest), arg0) 799 } 800 801 // ReceiveMessageWithContext mocks base method. 802 func (m *MockSQSAPI) ReceiveMessageWithContext(arg0 context.Context, arg1 *sqs.ReceiveMessageInput, arg2 ...request.Option) (*sqs.ReceiveMessageOutput, error) { 803 m.ctrl.T.Helper() 804 varargs := []interface{}{arg0, arg1} 805 for _, a := range arg2 { 806 varargs = append(varargs, a) 807 } 808 ret := m.ctrl.Call(m, "ReceiveMessageWithContext", varargs...) 809 ret0, _ := ret[0].(*sqs.ReceiveMessageOutput) 810 ret1, _ := ret[1].(error) 811 return ret0, ret1 812 } 813 814 // ReceiveMessageWithContext indicates an expected call of ReceiveMessageWithContext. 815 func (mr *MockSQSAPIMockRecorder) ReceiveMessageWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 816 mr.mock.ctrl.T.Helper() 817 varargs := append([]interface{}{arg0, arg1}, arg2...) 818 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ReceiveMessageWithContext", reflect.TypeOf((*MockSQSAPI)(nil).ReceiveMessageWithContext), varargs...) 819 } 820 821 // RemovePermission mocks base method. 822 func (m *MockSQSAPI) RemovePermission(arg0 *sqs.RemovePermissionInput) (*sqs.RemovePermissionOutput, error) { 823 m.ctrl.T.Helper() 824 ret := m.ctrl.Call(m, "RemovePermission", arg0) 825 ret0, _ := ret[0].(*sqs.RemovePermissionOutput) 826 ret1, _ := ret[1].(error) 827 return ret0, ret1 828 } 829 830 // RemovePermission indicates an expected call of RemovePermission. 831 func (mr *MockSQSAPIMockRecorder) RemovePermission(arg0 interface{}) *gomock.Call { 832 mr.mock.ctrl.T.Helper() 833 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RemovePermission", reflect.TypeOf((*MockSQSAPI)(nil).RemovePermission), arg0) 834 } 835 836 // RemovePermissionRequest mocks base method. 837 func (m *MockSQSAPI) RemovePermissionRequest(arg0 *sqs.RemovePermissionInput) (*request.Request, *sqs.RemovePermissionOutput) { 838 m.ctrl.T.Helper() 839 ret := m.ctrl.Call(m, "RemovePermissionRequest", arg0) 840 ret0, _ := ret[0].(*request.Request) 841 ret1, _ := ret[1].(*sqs.RemovePermissionOutput) 842 return ret0, ret1 843 } 844 845 // RemovePermissionRequest indicates an expected call of RemovePermissionRequest. 846 func (mr *MockSQSAPIMockRecorder) RemovePermissionRequest(arg0 interface{}) *gomock.Call { 847 mr.mock.ctrl.T.Helper() 848 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RemovePermissionRequest", reflect.TypeOf((*MockSQSAPI)(nil).RemovePermissionRequest), arg0) 849 } 850 851 // RemovePermissionWithContext mocks base method. 852 func (m *MockSQSAPI) RemovePermissionWithContext(arg0 context.Context, arg1 *sqs.RemovePermissionInput, arg2 ...request.Option) (*sqs.RemovePermissionOutput, error) { 853 m.ctrl.T.Helper() 854 varargs := []interface{}{arg0, arg1} 855 for _, a := range arg2 { 856 varargs = append(varargs, a) 857 } 858 ret := m.ctrl.Call(m, "RemovePermissionWithContext", varargs...) 859 ret0, _ := ret[0].(*sqs.RemovePermissionOutput) 860 ret1, _ := ret[1].(error) 861 return ret0, ret1 862 } 863 864 // RemovePermissionWithContext indicates an expected call of RemovePermissionWithContext. 865 func (mr *MockSQSAPIMockRecorder) RemovePermissionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 866 mr.mock.ctrl.T.Helper() 867 varargs := append([]interface{}{arg0, arg1}, arg2...) 868 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RemovePermissionWithContext", reflect.TypeOf((*MockSQSAPI)(nil).RemovePermissionWithContext), varargs...) 869 } 870 871 // SendMessage mocks base method. 872 func (m *MockSQSAPI) SendMessage(arg0 *sqs.SendMessageInput) (*sqs.SendMessageOutput, error) { 873 m.ctrl.T.Helper() 874 ret := m.ctrl.Call(m, "SendMessage", arg0) 875 ret0, _ := ret[0].(*sqs.SendMessageOutput) 876 ret1, _ := ret[1].(error) 877 return ret0, ret1 878 } 879 880 // SendMessage indicates an expected call of SendMessage. 881 func (mr *MockSQSAPIMockRecorder) SendMessage(arg0 interface{}) *gomock.Call { 882 mr.mock.ctrl.T.Helper() 883 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SendMessage", reflect.TypeOf((*MockSQSAPI)(nil).SendMessage), arg0) 884 } 885 886 // SendMessageBatch mocks base method. 887 func (m *MockSQSAPI) SendMessageBatch(arg0 *sqs.SendMessageBatchInput) (*sqs.SendMessageBatchOutput, error) { 888 m.ctrl.T.Helper() 889 ret := m.ctrl.Call(m, "SendMessageBatch", arg0) 890 ret0, _ := ret[0].(*sqs.SendMessageBatchOutput) 891 ret1, _ := ret[1].(error) 892 return ret0, ret1 893 } 894 895 // SendMessageBatch indicates an expected call of SendMessageBatch. 896 func (mr *MockSQSAPIMockRecorder) SendMessageBatch(arg0 interface{}) *gomock.Call { 897 mr.mock.ctrl.T.Helper() 898 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SendMessageBatch", reflect.TypeOf((*MockSQSAPI)(nil).SendMessageBatch), arg0) 899 } 900 901 // SendMessageBatchRequest mocks base method. 902 func (m *MockSQSAPI) SendMessageBatchRequest(arg0 *sqs.SendMessageBatchInput) (*request.Request, *sqs.SendMessageBatchOutput) { 903 m.ctrl.T.Helper() 904 ret := m.ctrl.Call(m, "SendMessageBatchRequest", arg0) 905 ret0, _ := ret[0].(*request.Request) 906 ret1, _ := ret[1].(*sqs.SendMessageBatchOutput) 907 return ret0, ret1 908 } 909 910 // SendMessageBatchRequest indicates an expected call of SendMessageBatchRequest. 911 func (mr *MockSQSAPIMockRecorder) SendMessageBatchRequest(arg0 interface{}) *gomock.Call { 912 mr.mock.ctrl.T.Helper() 913 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SendMessageBatchRequest", reflect.TypeOf((*MockSQSAPI)(nil).SendMessageBatchRequest), arg0) 914 } 915 916 // SendMessageBatchWithContext mocks base method. 917 func (m *MockSQSAPI) SendMessageBatchWithContext(arg0 context.Context, arg1 *sqs.SendMessageBatchInput, arg2 ...request.Option) (*sqs.SendMessageBatchOutput, error) { 918 m.ctrl.T.Helper() 919 varargs := []interface{}{arg0, arg1} 920 for _, a := range arg2 { 921 varargs = append(varargs, a) 922 } 923 ret := m.ctrl.Call(m, "SendMessageBatchWithContext", varargs...) 924 ret0, _ := ret[0].(*sqs.SendMessageBatchOutput) 925 ret1, _ := ret[1].(error) 926 return ret0, ret1 927 } 928 929 // SendMessageBatchWithContext indicates an expected call of SendMessageBatchWithContext. 930 func (mr *MockSQSAPIMockRecorder) SendMessageBatchWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 931 mr.mock.ctrl.T.Helper() 932 varargs := append([]interface{}{arg0, arg1}, arg2...) 933 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SendMessageBatchWithContext", reflect.TypeOf((*MockSQSAPI)(nil).SendMessageBatchWithContext), varargs...) 934 } 935 936 // SendMessageRequest mocks base method. 937 func (m *MockSQSAPI) SendMessageRequest(arg0 *sqs.SendMessageInput) (*request.Request, *sqs.SendMessageOutput) { 938 m.ctrl.T.Helper() 939 ret := m.ctrl.Call(m, "SendMessageRequest", arg0) 940 ret0, _ := ret[0].(*request.Request) 941 ret1, _ := ret[1].(*sqs.SendMessageOutput) 942 return ret0, ret1 943 } 944 945 // SendMessageRequest indicates an expected call of SendMessageRequest. 946 func (mr *MockSQSAPIMockRecorder) SendMessageRequest(arg0 interface{}) *gomock.Call { 947 mr.mock.ctrl.T.Helper() 948 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SendMessageRequest", reflect.TypeOf((*MockSQSAPI)(nil).SendMessageRequest), arg0) 949 } 950 951 // SendMessageWithContext mocks base method. 952 func (m *MockSQSAPI) SendMessageWithContext(arg0 context.Context, arg1 *sqs.SendMessageInput, arg2 ...request.Option) (*sqs.SendMessageOutput, error) { 953 m.ctrl.T.Helper() 954 varargs := []interface{}{arg0, arg1} 955 for _, a := range arg2 { 956 varargs = append(varargs, a) 957 } 958 ret := m.ctrl.Call(m, "SendMessageWithContext", varargs...) 959 ret0, _ := ret[0].(*sqs.SendMessageOutput) 960 ret1, _ := ret[1].(error) 961 return ret0, ret1 962 } 963 964 // SendMessageWithContext indicates an expected call of SendMessageWithContext. 965 func (mr *MockSQSAPIMockRecorder) SendMessageWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 966 mr.mock.ctrl.T.Helper() 967 varargs := append([]interface{}{arg0, arg1}, arg2...) 968 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SendMessageWithContext", reflect.TypeOf((*MockSQSAPI)(nil).SendMessageWithContext), varargs...) 969 } 970 971 // SetQueueAttributes mocks base method. 972 func (m *MockSQSAPI) SetQueueAttributes(arg0 *sqs.SetQueueAttributesInput) (*sqs.SetQueueAttributesOutput, error) { 973 m.ctrl.T.Helper() 974 ret := m.ctrl.Call(m, "SetQueueAttributes", arg0) 975 ret0, _ := ret[0].(*sqs.SetQueueAttributesOutput) 976 ret1, _ := ret[1].(error) 977 return ret0, ret1 978 } 979 980 // SetQueueAttributes indicates an expected call of SetQueueAttributes. 981 func (mr *MockSQSAPIMockRecorder) SetQueueAttributes(arg0 interface{}) *gomock.Call { 982 mr.mock.ctrl.T.Helper() 983 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetQueueAttributes", reflect.TypeOf((*MockSQSAPI)(nil).SetQueueAttributes), arg0) 984 } 985 986 // SetQueueAttributesRequest mocks base method. 987 func (m *MockSQSAPI) SetQueueAttributesRequest(arg0 *sqs.SetQueueAttributesInput) (*request.Request, *sqs.SetQueueAttributesOutput) { 988 m.ctrl.T.Helper() 989 ret := m.ctrl.Call(m, "SetQueueAttributesRequest", arg0) 990 ret0, _ := ret[0].(*request.Request) 991 ret1, _ := ret[1].(*sqs.SetQueueAttributesOutput) 992 return ret0, ret1 993 } 994 995 // SetQueueAttributesRequest indicates an expected call of SetQueueAttributesRequest. 996 func (mr *MockSQSAPIMockRecorder) SetQueueAttributesRequest(arg0 interface{}) *gomock.Call { 997 mr.mock.ctrl.T.Helper() 998 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetQueueAttributesRequest", reflect.TypeOf((*MockSQSAPI)(nil).SetQueueAttributesRequest), arg0) 999 } 1000 1001 // SetQueueAttributesWithContext mocks base method. 1002 func (m *MockSQSAPI) SetQueueAttributesWithContext(arg0 context.Context, arg1 *sqs.SetQueueAttributesInput, arg2 ...request.Option) (*sqs.SetQueueAttributesOutput, error) { 1003 m.ctrl.T.Helper() 1004 varargs := []interface{}{arg0, arg1} 1005 for _, a := range arg2 { 1006 varargs = append(varargs, a) 1007 } 1008 ret := m.ctrl.Call(m, "SetQueueAttributesWithContext", varargs...) 1009 ret0, _ := ret[0].(*sqs.SetQueueAttributesOutput) 1010 ret1, _ := ret[1].(error) 1011 return ret0, ret1 1012 } 1013 1014 // SetQueueAttributesWithContext indicates an expected call of SetQueueAttributesWithContext. 1015 func (mr *MockSQSAPIMockRecorder) SetQueueAttributesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 1016 mr.mock.ctrl.T.Helper() 1017 varargs := append([]interface{}{arg0, arg1}, arg2...) 1018 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetQueueAttributesWithContext", reflect.TypeOf((*MockSQSAPI)(nil).SetQueueAttributesWithContext), varargs...) 1019 } 1020 1021 // TagQueue mocks base method. 1022 func (m *MockSQSAPI) TagQueue(arg0 *sqs.TagQueueInput) (*sqs.TagQueueOutput, error) { 1023 m.ctrl.T.Helper() 1024 ret := m.ctrl.Call(m, "TagQueue", arg0) 1025 ret0, _ := ret[0].(*sqs.TagQueueOutput) 1026 ret1, _ := ret[1].(error) 1027 return ret0, ret1 1028 } 1029 1030 // TagQueue indicates an expected call of TagQueue. 1031 func (mr *MockSQSAPIMockRecorder) TagQueue(arg0 interface{}) *gomock.Call { 1032 mr.mock.ctrl.T.Helper() 1033 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "TagQueue", reflect.TypeOf((*MockSQSAPI)(nil).TagQueue), arg0) 1034 } 1035 1036 // TagQueueRequest mocks base method. 1037 func (m *MockSQSAPI) TagQueueRequest(arg0 *sqs.TagQueueInput) (*request.Request, *sqs.TagQueueOutput) { 1038 m.ctrl.T.Helper() 1039 ret := m.ctrl.Call(m, "TagQueueRequest", arg0) 1040 ret0, _ := ret[0].(*request.Request) 1041 ret1, _ := ret[1].(*sqs.TagQueueOutput) 1042 return ret0, ret1 1043 } 1044 1045 // TagQueueRequest indicates an expected call of TagQueueRequest. 1046 func (mr *MockSQSAPIMockRecorder) TagQueueRequest(arg0 interface{}) *gomock.Call { 1047 mr.mock.ctrl.T.Helper() 1048 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "TagQueueRequest", reflect.TypeOf((*MockSQSAPI)(nil).TagQueueRequest), arg0) 1049 } 1050 1051 // TagQueueWithContext mocks base method. 1052 func (m *MockSQSAPI) TagQueueWithContext(arg0 context.Context, arg1 *sqs.TagQueueInput, arg2 ...request.Option) (*sqs.TagQueueOutput, error) { 1053 m.ctrl.T.Helper() 1054 varargs := []interface{}{arg0, arg1} 1055 for _, a := range arg2 { 1056 varargs = append(varargs, a) 1057 } 1058 ret := m.ctrl.Call(m, "TagQueueWithContext", varargs...) 1059 ret0, _ := ret[0].(*sqs.TagQueueOutput) 1060 ret1, _ := ret[1].(error) 1061 return ret0, ret1 1062 } 1063 1064 // TagQueueWithContext indicates an expected call of TagQueueWithContext. 1065 func (mr *MockSQSAPIMockRecorder) TagQueueWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 1066 mr.mock.ctrl.T.Helper() 1067 varargs := append([]interface{}{arg0, arg1}, arg2...) 1068 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "TagQueueWithContext", reflect.TypeOf((*MockSQSAPI)(nil).TagQueueWithContext), varargs...) 1069 } 1070 1071 // UntagQueue mocks base method. 1072 func (m *MockSQSAPI) UntagQueue(arg0 *sqs.UntagQueueInput) (*sqs.UntagQueueOutput, error) { 1073 m.ctrl.T.Helper() 1074 ret := m.ctrl.Call(m, "UntagQueue", arg0) 1075 ret0, _ := ret[0].(*sqs.UntagQueueOutput) 1076 ret1, _ := ret[1].(error) 1077 return ret0, ret1 1078 } 1079 1080 // UntagQueue indicates an expected call of UntagQueue. 1081 func (mr *MockSQSAPIMockRecorder) UntagQueue(arg0 interface{}) *gomock.Call { 1082 mr.mock.ctrl.T.Helper() 1083 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UntagQueue", reflect.TypeOf((*MockSQSAPI)(nil).UntagQueue), arg0) 1084 } 1085 1086 // UntagQueueRequest mocks base method. 1087 func (m *MockSQSAPI) UntagQueueRequest(arg0 *sqs.UntagQueueInput) (*request.Request, *sqs.UntagQueueOutput) { 1088 m.ctrl.T.Helper() 1089 ret := m.ctrl.Call(m, "UntagQueueRequest", arg0) 1090 ret0, _ := ret[0].(*request.Request) 1091 ret1, _ := ret[1].(*sqs.UntagQueueOutput) 1092 return ret0, ret1 1093 } 1094 1095 // UntagQueueRequest indicates an expected call of UntagQueueRequest. 1096 func (mr *MockSQSAPIMockRecorder) UntagQueueRequest(arg0 interface{}) *gomock.Call { 1097 mr.mock.ctrl.T.Helper() 1098 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UntagQueueRequest", reflect.TypeOf((*MockSQSAPI)(nil).UntagQueueRequest), arg0) 1099 } 1100 1101 // UntagQueueWithContext mocks base method. 1102 func (m *MockSQSAPI) UntagQueueWithContext(arg0 context.Context, arg1 *sqs.UntagQueueInput, arg2 ...request.Option) (*sqs.UntagQueueOutput, error) { 1103 m.ctrl.T.Helper() 1104 varargs := []interface{}{arg0, arg1} 1105 for _, a := range arg2 { 1106 varargs = append(varargs, a) 1107 } 1108 ret := m.ctrl.Call(m, "UntagQueueWithContext", varargs...) 1109 ret0, _ := ret[0].(*sqs.UntagQueueOutput) 1110 ret1, _ := ret[1].(error) 1111 return ret0, ret1 1112 } 1113 1114 // UntagQueueWithContext indicates an expected call of UntagQueueWithContext. 1115 func (mr *MockSQSAPIMockRecorder) UntagQueueWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call { 1116 mr.mock.ctrl.T.Helper() 1117 varargs := append([]interface{}{arg0, arg1}, arg2...) 1118 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UntagQueueWithContext", reflect.TypeOf((*MockSQSAPI)(nil).UntagQueueWithContext), varargs...) 1119 }