1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
// this file is @generated
use crate::{error::Result, models::*, Configuration};
#[derive(Default)]
pub struct MessageAttemptListByEndpointOptions {
/// Limit the number of returned items
pub limit: Option<i32>,
/// The iterator returned from a prior invocation
pub iterator: Option<String>,
/// Filter response based on the status of the attempt: Success (0), Pending
/// (1), Failed (2), Sending (3), or Canceled (4)
pub status: Option<MessageStatus>,
/// Filter response based on the HTTP status code
pub status_code_class: Option<StatusCodeClass>,
/// Filter response based on the channel
pub channel: Option<String>,
/// Filter response based on the tag
pub tag: Option<String>,
/// Only include items created before a certain date
///
/// RFC3339 date string.
pub before: Option<String>,
/// Only include items created after a certain date
///
/// RFC3339 date string.
pub after: Option<String>,
/// When `true` attempt content is included in the response
pub with_content: Option<bool>,
/// When `true`, the message information is included in the response
///
/// Note that message payloads are never included in the response,
/// regardless of this flag.
pub with_msg: Option<bool>,
/// When `true`, return the Canceled (4) status in attempts. If `false`,
/// canceled attempts are returned as Success (0)
pub expanded_statuses: Option<bool>,
/// Filter response based on the event type
pub event_types: Option<Vec<String>>,
}
#[derive(Default)]
pub struct MessageAttemptListByMsgOptions {
/// Limit the number of returned items
pub limit: Option<i32>,
/// The iterator returned from a prior invocation
pub iterator: Option<String>,
/// Filter response based on the status of the attempt: Success (0), Pending
/// (1), Failed (2), Sending (3), or Canceled (4)
pub status: Option<MessageStatus>,
/// Filter response based on the HTTP status code
pub status_code_class: Option<StatusCodeClass>,
/// Filter response based on the channel
pub channel: Option<String>,
/// Filter response based on the tag
pub tag: Option<String>,
/// Filter the attempts based on the attempted endpoint
pub endpoint_id: Option<String>,
/// Only include items created before a certain date
///
/// RFC3339 date string.
pub before: Option<String>,
/// Only include items created after a certain date
///
/// RFC3339 date string.
pub after: Option<String>,
/// When `true` attempt content is included in the response
pub with_content: Option<bool>,
/// When `true`, return the Canceled (4) status in attempts. If `false`,
/// canceled attempts are returned as Success (0)
pub expanded_statuses: Option<bool>,
/// Filter response based on the event type
pub event_types: Option<Vec<String>>,
}
#[derive(Default)]
pub struct MessageAttemptListAttemptedMessagesOptions {
/// Limit the number of returned items
pub limit: Option<i32>,
/// The iterator returned from a prior invocation
pub iterator: Option<String>,
/// Filter response based on the channel
pub channel: Option<String>,
/// Filter response based on the message tags
pub tag: Option<String>,
/// Filter response based on the status of the attempt: Success (0), Pending
/// (1), Failed (2), Sending (3), or Canceled (4)
pub status: Option<MessageStatus>,
/// Only include items created before a certain date
///
/// RFC3339 date string.
pub before: Option<String>,
/// Only include items created after a certain date
///
/// RFC3339 date string.
pub after: Option<String>,
/// When `true` message payloads are included in the response
pub with_content: Option<bool>,
/// When `true`, return the Canceled (4) status in attempts. If `false`,
/// canceled attempts are returned as Success (0)
pub expanded_statuses: Option<bool>,
/// Filter response based on the event type
pub event_types: Option<Vec<String>>,
}
#[derive(Default)]
pub struct MessageAttemptGetOptions {
/// When `true`, return the Canceled (4) status in attempts. If `false`,
/// canceled attempts are returned as Success (0)
pub expanded_statuses: Option<bool>,
}
#[derive(Default)]
pub struct MessageAttemptListAttemptedDestinationsOptions {
/// Limit the number of returned items
pub limit: Option<i32>,
/// The iterator returned from a prior invocation
pub iterator: Option<String>,
}
#[derive(Default)]
pub struct MessageAttemptResendOptions {
pub idempotency_key: Option<String>,
}
pub struct MessageAttempt<'a> {
cfg: &'a Configuration,
}
impl<'a> MessageAttempt<'a> {
pub(super) fn new(cfg: &'a Configuration) -> Self {
Self { cfg }
}
/// List attempts by endpoint id
///
/// Note that by default this endpoint is limited to retrieving 90 days'
/// worth of data relative to now or, if an iterator is provided, 90
/// days before/after the time indicated by the iterator ID. If you
/// require data beyond those time ranges, you will need to explicitly
/// set the `before` or `after` parameter as appropriate.
pub async fn list_by_endpoint(
&self,
app_id: String,
endpoint_id: String,
options: Option<MessageAttemptListByEndpointOptions>,
) -> Result<ListResponseMessageAttemptOut> {
let MessageAttemptListByEndpointOptions {
limit,
iterator,
status,
status_code_class,
channel,
tag,
before,
after,
with_content,
with_msg,
expanded_statuses,
event_types,
} = options.unwrap_or_default();
crate::request::Request::new(
http1::Method::GET,
"/api/v1/app/{app_id}/attempt/endpoint/{endpoint_id}",
)
.with_path_param("app_id", app_id)
.with_path_param("endpoint_id", endpoint_id)
.with_optional_query_param("limit", limit)
.with_optional_query_param("iterator", iterator)
.with_optional_query_param("status", status)
.with_optional_query_param("status_code_class", status_code_class)
.with_optional_query_param("channel", channel)
.with_optional_query_param("tag", tag)
.with_optional_query_param("before", before)
.with_optional_query_param("after", after)
.with_optional_query_param("with_content", with_content)
.with_optional_query_param("with_msg", with_msg)
.with_optional_query_param("expanded_statuses", expanded_statuses)
.with_optional_query_param("event_types", event_types)
.execute(self.cfg)
.await
}
/// List attempts by message ID.
///
/// Note that by default this endpoint is limited to retrieving 90 days'
/// worth of data relative to now or, if an iterator is provided, 90
/// days before/after the time indicated by the iterator ID. If you
/// require data beyond those time ranges, you will need to explicitly
/// set the `before` or `after` parameter as appropriate.
pub async fn list_by_msg(
&self,
app_id: String,
msg_id: String,
options: Option<MessageAttemptListByMsgOptions>,
) -> Result<ListResponseMessageAttemptOut> {
let MessageAttemptListByMsgOptions {
limit,
iterator,
status,
status_code_class,
channel,
tag,
endpoint_id,
before,
after,
with_content,
expanded_statuses,
event_types,
} = options.unwrap_or_default();
crate::request::Request::new(
http1::Method::GET,
"/api/v1/app/{app_id}/attempt/msg/{msg_id}",
)
.with_path_param("app_id", app_id)
.with_path_param("msg_id", msg_id)
.with_optional_query_param("limit", limit)
.with_optional_query_param("iterator", iterator)
.with_optional_query_param("status", status)
.with_optional_query_param("status_code_class", status_code_class)
.with_optional_query_param("channel", channel)
.with_optional_query_param("tag", tag)
.with_optional_query_param("endpoint_id", endpoint_id)
.with_optional_query_param("before", before)
.with_optional_query_param("after", after)
.with_optional_query_param("with_content", with_content)
.with_optional_query_param("expanded_statuses", expanded_statuses)
.with_optional_query_param("event_types", event_types)
.execute(self.cfg)
.await
}
/// List messages for a particular endpoint. Additionally includes metadata
/// about the latest message attempt.
///
/// The `before` parameter lets you filter all items created before a
/// certain date and is ignored if an iterator is passed.
///
/// Note that by default this endpoint is limited to retrieving 90 days'
/// worth of data relative to now or, if an iterator is provided, 90
/// days before/after the time indicated by the iterator ID. If you
/// require data beyond those time ranges, you will need to explicitly
/// set the `before` or `after` parameter as appropriate.
pub async fn list_attempted_messages(
&self,
app_id: String,
endpoint_id: String,
options: Option<MessageAttemptListAttemptedMessagesOptions>,
) -> Result<ListResponseEndpointMessageOut> {
let MessageAttemptListAttemptedMessagesOptions {
limit,
iterator,
channel,
tag,
status,
before,
after,
with_content,
expanded_statuses,
event_types,
} = options.unwrap_or_default();
crate::request::Request::new(
http1::Method::GET,
"/api/v1/app/{app_id}/endpoint/{endpoint_id}/msg",
)
.with_path_param("app_id", app_id)
.with_path_param("endpoint_id", endpoint_id)
.with_optional_query_param("limit", limit)
.with_optional_query_param("iterator", iterator)
.with_optional_query_param("channel", channel)
.with_optional_query_param("tag", tag)
.with_optional_query_param("status", status)
.with_optional_query_param("before", before)
.with_optional_query_param("after", after)
.with_optional_query_param("with_content", with_content)
.with_optional_query_param("expanded_statuses", expanded_statuses)
.with_optional_query_param("event_types", event_types)
.execute(self.cfg)
.await
}
#[deprecated = "Use `list_by_msg` instead, setting the `endpoint_id` in `options`."]
pub async fn list_attempts_for_endpoint(
&self,
app_id: String,
msg_id: String,
endpoint_id: String,
options: Option<MessageAttemptListByMsgOptions>,
) -> Result<ListResponseMessageAttemptEndpointOut> {
let MessageAttemptListByMsgOptions {
iterator,
limit,
event_types,
before,
after,
channel,
tag,
status,
expanded_statuses,
status_code_class: _,
endpoint_id: _,
with_content: _,
} = options.unwrap_or_default();
crate::request::Request::new(
http1::Method::GET,
"/api/v1/app/{app_id}/msg/{msg_id}/endpoint/{endpoint_id}/attempt",
)
.with_optional_query_param("limit", limit)
.with_optional_query_param("iterator", iterator)
.with_optional_query_param("channel", channel)
.with_optional_query_param("tag", tag)
.with_optional_query_param("status", status)
.with_optional_query_param("expanded_statuses", expanded_statuses)
.with_optional_query_param("before", before)
.with_optional_query_param("after", after)
.with_optional_query_param("event_types", event_types)
.with_path_param("app_id", app_id.to_string())
.with_path_param("msg_id", msg_id.to_string())
.with_path_param("endpoint_id", endpoint_id.to_string())
.execute(self.cfg)
.await
}
/// `msg_id`: Use a message id or a message `eventId`
pub async fn get(
&self,
app_id: String,
msg_id: String,
attempt_id: String,
options: Option<MessageAttemptGetOptions>,
) -> Result<MessageAttemptOut> {
let MessageAttemptGetOptions { expanded_statuses } = options.unwrap_or_default();
crate::request::Request::new(
http1::Method::GET,
"/api/v1/app/{app_id}/msg/{msg_id}/attempt/{attempt_id}",
)
.with_path_param("app_id", app_id)
.with_path_param("msg_id", msg_id)
.with_path_param("attempt_id", attempt_id)
.with_optional_query_param("expanded_statuses", expanded_statuses)
.execute(self.cfg)
.await
}
/// Deletes the given attempt's response body.
///
/// Useful when an endpoint accidentally returned sensitive content.
/// The message can't be replayed or resent once its payload has been
/// deleted or expired.
pub async fn expunge_content(
&self,
app_id: String,
msg_id: String,
attempt_id: String,
) -> Result<()> {
crate::request::Request::new(
http1::Method::DELETE,
"/api/v1/app/{app_id}/msg/{msg_id}/attempt/{attempt_id}/content",
)
.with_path_param("app_id", app_id)
.with_path_param("msg_id", msg_id)
.with_path_param("attempt_id", attempt_id)
.returns_nothing()
.execute(self.cfg)
.await
}
/// List endpoints attempted by a given message.
///
/// Additionally includes metadata about the latest message attempt.
/// By default, endpoints are listed in ascending order by ID.
pub async fn list_attempted_destinations(
&self,
app_id: String,
msg_id: String,
options: Option<MessageAttemptListAttemptedDestinationsOptions>,
) -> Result<ListResponseMessageEndpointOut> {
let MessageAttemptListAttemptedDestinationsOptions { limit, iterator } =
options.unwrap_or_default();
crate::request::Request::new(
http1::Method::GET,
"/api/v1/app/{app_id}/msg/{msg_id}/endpoint",
)
.with_path_param("app_id", app_id)
.with_path_param("msg_id", msg_id)
.with_optional_query_param("limit", limit)
.with_optional_query_param("iterator", iterator)
.execute(self.cfg)
.await
}
/// Resend a message to the specified endpoint.
pub async fn resend(
&self,
app_id: String,
msg_id: String,
endpoint_id: String,
options: Option<MessageAttemptResendOptions>,
) -> Result<EmptyResponse> {
let MessageAttemptResendOptions { idempotency_key } = options.unwrap_or_default();
crate::request::Request::new(
http1::Method::POST,
"/api/v1/app/{app_id}/msg/{msg_id}/endpoint/{endpoint_id}/resend",
)
.with_path_param("app_id", app_id)
.with_path_param("msg_id", msg_id)
.with_path_param("endpoint_id", endpoint_id)
.with_optional_header_param("idempotency-key", idempotency_key)
.execute(self.cfg)
.await
}
}