@@ -265,6 +265,7 @@ public async Task<ListResponseMessageAttemptOut> ListAttemptsByMessageAsync(stri
265
265
}
266
266
267
267
// Deprecated
268
+ [ Obsolete ( "Use ListAttemptsByMessage instead, passing the endpoint ID through options" ) ]
268
269
public ListResponseMessageAttemptEndpointOut ListAttemptsForEndpoint ( string appId , string messageId ,
269
270
string endpointId , AttemptsByEndpointListOptions options = null , string idempotencyKey = default )
270
271
{
@@ -297,6 +298,7 @@ public ListResponseMessageAttemptEndpointOut ListAttemptsForEndpoint(string appI
297
298
}
298
299
299
300
// Deprecated
301
+ [ Obsolete ( "Use ListAttemptsByMessageAsync instead, passing the endpoint ID through options" ) ]
300
302
public async Task < ListResponseMessageAttemptEndpointOut > ListAttemptsForEndpointAsync ( string appId ,
301
303
string messageId , string endpointId , AttemptsByEndpointListOptions options = null , string idempotencyKey = default ,
302
304
CancellationToken cancellationToken = default )
@@ -331,6 +333,7 @@ public async Task<ListResponseMessageAttemptEndpointOut> ListAttemptsForEndpoint
331
333
}
332
334
333
335
// Deprecated
336
+ [ Obsolete ( "Use ListAttemptsByEndpoint or ListAttemptsByMessage instead" ) ]
334
337
public ListResponseMessageAttemptOut ListAttempts ( string appId , string messageId , MessageAttemptListOptions options = null ,
335
338
string idempotencyKey = default )
336
339
{
@@ -364,6 +367,7 @@ public ListResponseMessageAttemptOut ListAttempts(string appId, string messageId
364
367
}
365
368
366
369
// Deprecated
370
+ [ Obsolete ( "Use ListAttemptsByEndpointAsync or ListAttemptsByMessageAsync instead" ) ]
367
371
public async Task < ListResponseMessageAttemptOut > ListAttemptsAsync ( string appId , string messageId , MessageAttemptListOptions options = null ,
368
372
string idempotencyKey = default , CancellationToken cancellationToken = default )
369
373
{
0 commit comments