forked from orbcorp/orb-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackfills.ts
408 lines (341 loc) · 12.4 KB
/
backfills.ts
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
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../resource';
import { isRequestOptions } from '../../core';
import * as Core from '../../core';
import { Page, type PageParams } from '../../pagination';
export class Backfills extends APIResource {
/**
* Creating the backfill enables adding or replacing past events, even those that
* are older than the ingestion grace period. Performing a backfill in Orb involves
* 3 steps:
*
* 1. Create the backfill, specifying its parameters.
* 2. [Ingest](ingest) usage events, referencing the backfill (query parameter
* `backfill_id`).
* 3. [Close](close-backfill) the backfill, propagating the update in past usage
* throughout Orb.
*
* Changes from a backfill are not reflected until the backfill is closed, so you
* won’t need to worry about your customers seeing partially updated usage data.
* Backfills are also reversible, so you’ll be able to revert a backfill if you’ve
* made a mistake.
*
* This endpoint will return a backfill object, which contains an `id`. That `id`
* can then be used as the `backfill_id` query parameter to the event ingestion
* endpoint to associate ingested events with this backfill. The effects (e.g.
* updated usage graphs) of this backfill will not take place until the backfill is
* closed.
*
* If the `replace_existing_events` is `true`, existing events in the backfill's
* timeframe will be replaced with the newly ingested events associated with the
* backfill. If `false`, newly ingested events will be added to the existing
* events.
*
* If a `customer_id` or `external_customer_id` is specified, the backfill will
* only affect events for that customer. If neither is specified, the backfill will
* affect all customers.
*
* When `replace_existing_events` is `true`, this indicates that existing events in
* the timeframe should no longer be counted towards invoiced usage. In this
* scenario, the parameter `filter` can be optionally added which enables filtering
* using
* [computed properties](../guides/extensibility/advanced-metrics#computed-properties).
* The expressiveness of computed properties allows you to deprecate existing
* events based on both a period of time and specific property values.
*/
create(body: BackfillCreateParams, options?: Core.RequestOptions): Core.APIPromise<BackfillCreateResponse> {
return this._client.post('/events/backfills', { body, ...options });
}
/**
* This endpoint returns a list of all backfills in a list format.
*
* The list of backfills is ordered starting from the most recently created
* backfill. The response also includes
* [`pagination_metadata`](../reference/pagination), which lets the caller retrieve
* the next page of results if they exist. More information about pagination can be
* found in the [Pagination-metadata schema](pagination).
*/
list(
query?: BackfillListParams,
options?: Core.RequestOptions,
): Core.PagePromise<BackfillListResponsesPage, BackfillListResponse>;
list(options?: Core.RequestOptions): Core.PagePromise<BackfillListResponsesPage, BackfillListResponse>;
list(
query: BackfillListParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.PagePromise<BackfillListResponsesPage, BackfillListResponse> {
if (isRequestOptions(query)) {
return this.list({}, query);
}
return this._client.getAPIList('/events/backfills', BackfillListResponsesPage, { query, ...options });
}
/**
* Closing a backfill makes the updated usage visible in Orb. Upon closing a
* backfill, Orb will asynchronously reflect the updated usage in invoice amounts
* and usage graphs. Once all of the updates are complete, the backfill's status
* will transition to `reflected`.
*/
close(backfillId: string, options?: Core.RequestOptions): Core.APIPromise<BackfillCloseResponse> {
return this._client.post(`/events/backfills/${backfillId}/close`, options);
}
/**
* This endpoint is used to fetch a backfill given an identifier.
*/
fetch(backfillId: string, options?: Core.RequestOptions): Core.APIPromise<BackfillFetchResponse> {
return this._client.get(`/events/backfills/${backfillId}`, options);
}
/**
* Reverting a backfill undoes all the effects of closing the backfill. If the
* backfill is reflected, the status will transition to `pending_revert` while the
* effects of the backfill are undone. Once all effects are undone, the backfill
* will transition to `reverted`.
*
* If a backfill is reverted before its closed, no usage will be updated as a
* result of the backfill and it will immediately transition to `reverted`.
*/
revert(backfillId: string, options?: Core.RequestOptions): Core.APIPromise<BackfillRevertResponse> {
return this._client.post(`/events/backfills/${backfillId}/revert`, options);
}
}
export class BackfillListResponsesPage extends Page<BackfillListResponse> {}
/**
* A backfill represents an update to historical usage data, adding or replacing
* events in a timeframe.
*/
export interface BackfillCreateResponse {
id: string;
/**
* If in the future, the time at which the backfill will automatically close. If in
* the past, the time at which the backfill was closed.
*/
close_time: string | null;
created_at: string;
/**
* The Orb-generated ID of the customer to which this backfill is scoped. If
* `null`, this backfill is scoped to all customers.
*/
customer_id: string | null;
/**
* The number of events ingested in this backfill.
*/
events_ingested: number;
/**
* The time at which this backfill was reverted.
*/
reverted_at: string | null;
/**
* The status of the backfill.
*/
status: 'pending' | 'reflected' | 'pending_revert' | 'reverted';
timeframe_end: string;
timeframe_start: string;
/**
* A boolean
* [computed property](../guides/extensibility/advanced-metrics#computed-properties)
* used to filter the set of events to deprecate
*/
deprecation_filter?: string | null;
}
/**
* A backfill represents an update to historical usage data, adding or replacing
* events in a timeframe.
*/
export interface BackfillListResponse {
id: string;
/**
* If in the future, the time at which the backfill will automatically close. If in
* the past, the time at which the backfill was closed.
*/
close_time: string | null;
created_at: string;
/**
* The Orb-generated ID of the customer to which this backfill is scoped. If
* `null`, this backfill is scoped to all customers.
*/
customer_id: string | null;
/**
* The number of events ingested in this backfill.
*/
events_ingested: number;
/**
* The time at which this backfill was reverted.
*/
reverted_at: string | null;
/**
* The status of the backfill.
*/
status: 'pending' | 'reflected' | 'pending_revert' | 'reverted';
timeframe_end: string;
timeframe_start: string;
/**
* A boolean
* [computed property](../guides/extensibility/advanced-metrics#computed-properties)
* used to filter the set of events to deprecate
*/
deprecation_filter?: string | null;
}
/**
* A backfill represents an update to historical usage data, adding or replacing
* events in a timeframe.
*/
export interface BackfillCloseResponse {
id: string;
/**
* If in the future, the time at which the backfill will automatically close. If in
* the past, the time at which the backfill was closed.
*/
close_time: string | null;
created_at: string;
/**
* The Orb-generated ID of the customer to which this backfill is scoped. If
* `null`, this backfill is scoped to all customers.
*/
customer_id: string | null;
/**
* The number of events ingested in this backfill.
*/
events_ingested: number;
/**
* The time at which this backfill was reverted.
*/
reverted_at: string | null;
/**
* The status of the backfill.
*/
status: 'pending' | 'reflected' | 'pending_revert' | 'reverted';
timeframe_end: string;
timeframe_start: string;
/**
* A boolean
* [computed property](../guides/extensibility/advanced-metrics#computed-properties)
* used to filter the set of events to deprecate
*/
deprecation_filter?: string | null;
}
/**
* A backfill represents an update to historical usage data, adding or replacing
* events in a timeframe.
*/
export interface BackfillFetchResponse {
id: string;
/**
* If in the future, the time at which the backfill will automatically close. If in
* the past, the time at which the backfill was closed.
*/
close_time: string | null;
created_at: string;
/**
* The Orb-generated ID of the customer to which this backfill is scoped. If
* `null`, this backfill is scoped to all customers.
*/
customer_id: string | null;
/**
* The number of events ingested in this backfill.
*/
events_ingested: number;
/**
* The time at which this backfill was reverted.
*/
reverted_at: string | null;
/**
* The status of the backfill.
*/
status: 'pending' | 'reflected' | 'pending_revert' | 'reverted';
timeframe_end: string;
timeframe_start: string;
/**
* A boolean
* [computed property](../guides/extensibility/advanced-metrics#computed-properties)
* used to filter the set of events to deprecate
*/
deprecation_filter?: string | null;
}
/**
* A backfill represents an update to historical usage data, adding or replacing
* events in a timeframe.
*/
export interface BackfillRevertResponse {
id: string;
/**
* If in the future, the time at which the backfill will automatically close. If in
* the past, the time at which the backfill was closed.
*/
close_time: string | null;
created_at: string;
/**
* The Orb-generated ID of the customer to which this backfill is scoped. If
* `null`, this backfill is scoped to all customers.
*/
customer_id: string | null;
/**
* The number of events ingested in this backfill.
*/
events_ingested: number;
/**
* The time at which this backfill was reverted.
*/
reverted_at: string | null;
/**
* The status of the backfill.
*/
status: 'pending' | 'reflected' | 'pending_revert' | 'reverted';
timeframe_end: string;
timeframe_start: string;
/**
* A boolean
* [computed property](../guides/extensibility/advanced-metrics#computed-properties)
* used to filter the set of events to deprecate
*/
deprecation_filter?: string | null;
}
export interface BackfillCreateParams {
/**
* The (exclusive) end of the usage timeframe affected by this backfill.
*/
timeframe_end: string;
/**
* The (inclusive) start of the usage timeframe affected by this backfill.
*/
timeframe_start: string;
/**
* The time at which no more events will be accepted for this backfill. The
* backfill will automatically begin reflecting throughout Orb at the close time.
* If not specified, it will default to 1 day after the creation of the backfill.
*/
close_time?: string | null;
/**
* The Orb-generated ID of the customer to which this backfill is scoped. Omitting
* this field will scope the backfill to all customers.
*/
customer_id?: string | null;
/**
* A boolean
* [computed property](../guides/extensibility/advanced-metrics#computed-properties)
* used to filter the set of events to deprecate
*/
deprecation_filter?: string | null;
/**
* The external customer ID of the customer to which this backfill is scoped.
* Omitting this field will scope the backfill to all customers.
*/
external_customer_id?: string | null;
/**
* If true, replaces all existing events in the timeframe with the newly ingested
* events. If false, adds the newly ingested events to the existing events.
*/
replace_existing_events?: boolean;
}
export interface BackfillListParams extends PageParams {}
Backfills.BackfillListResponsesPage = BackfillListResponsesPage;
export declare namespace Backfills {
export {
type BackfillCreateResponse as BackfillCreateResponse,
type BackfillListResponse as BackfillListResponse,
type BackfillCloseResponse as BackfillCloseResponse,
type BackfillFetchResponse as BackfillFetchResponse,
type BackfillRevertResponse as BackfillRevertResponse,
BackfillListResponsesPage as BackfillListResponsesPage,
type BackfillCreateParams as BackfillCreateParams,
type BackfillListParams as BackfillListParams,
};
}