-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathcertificates.ts
More file actions
458 lines (404 loc) · 12 KB
/
Copy pathcertificates.ts
File metadata and controls
458 lines (404 loc) · 12 KB
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
451
452
453
454
455
456
457
458
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../../core/resource';
import { APIPromise } from '../../../core/api-promise';
import {
ConversationCursorPage,
type ConversationCursorPageParams,
Page,
PagePromise,
} from '../../../core/pagination';
import { RequestOptions } from '../../../internal/request-options';
import { path } from '../../../internal/utils/path';
export class Certificates extends APIResource {
/**
* Upload a certificate to the organization. This does **not** automatically
* activate the certificate.
*
* Organizations can upload up to 50 certificates.
*
* @example
* ```ts
* const certificate =
* await client.admin.organization.certificates.create({
* certificate: 'certificate',
* });
* ```
*/
create(body: CertificateCreateParams, options?: RequestOptions): APIPromise<Certificate> {
return this._client.post('/organization/certificates', {
body,
...options,
__security: { adminAPIKeyAuth: true },
});
}
/**
* Get a certificate that has been uploaded to the organization.
*
* You can get a certificate regardless of whether it is active or not.
*
* @example
* ```ts
* const certificate =
* await client.admin.organization.certificates.retrieve(
* 'certificate_id',
* );
* ```
*/
retrieve(
certificateID: string,
query: CertificateRetrieveParams | null | undefined = {},
options?: RequestOptions,
): APIPromise<Certificate> {
return this._client.get(path`/organization/certificates/${certificateID}`, {
query,
...options,
__security: { adminAPIKeyAuth: true },
});
}
/**
* Modify a certificate. Note that only the name can be modified.
*
* @example
* ```ts
* const certificate =
* await client.admin.organization.certificates.update(
* 'certificate_id',
* );
* ```
*/
update(
certificateID: string,
body: CertificateUpdateParams,
options?: RequestOptions,
): APIPromise<Certificate> {
return this._client.post(path`/organization/certificates/${certificateID}`, {
body,
...options,
__security: { adminAPIKeyAuth: true },
});
}
/**
* List uploaded certificates for this organization.
*
* @example
* ```ts
* // Automatically fetches more pages as needed.
* for await (const certificateListResponse of client.admin.organization.certificates.list()) {
* // ...
* }
* ```
*/
list(
query: CertificateListParams | null | undefined = {},
options?: RequestOptions,
): PagePromise<CertificateListResponsesPage, CertificateListResponse> {
return this._client.getAPIList(
'/organization/certificates',
ConversationCursorPage<CertificateListResponse>,
{ query, ...options, __security: { adminAPIKeyAuth: true } },
);
}
/**
* Delete a certificate from the organization.
*
* The certificate must be inactive for the organization and all projects.
*
* @example
* ```ts
* const certificate =
* await client.admin.organization.certificates.delete(
* 'certificate_id',
* );
* ```
*/
delete(certificateID: string, options?: RequestOptions): APIPromise<CertificateDeleteResponse> {
return this._client.delete(path`/organization/certificates/${certificateID}`, {
...options,
__security: { adminAPIKeyAuth: true },
});
}
/**
* Activate certificates at the organization level.
*
* You can atomically and idempotently activate up to 10 certificates at a time.
*
* @example
* ```ts
* // Automatically fetches more pages as needed.
* for await (const certificateActivateResponse of client.admin.organization.certificates.activate(
* { certificate_ids: ['cert_abc'] },
* )) {
* // ...
* }
* ```
*/
activate(
body: CertificateActivateParams,
options?: RequestOptions,
): PagePromise<CertificateActivateResponsesPage, CertificateActivateResponse> {
return this._client.getAPIList('/organization/certificates/activate', Page<CertificateActivateResponse>, {
body,
method: 'post',
...options,
__security: { adminAPIKeyAuth: true },
});
}
/**
* Deactivate certificates at the organization level.
*
* You can atomically and idempotently deactivate up to 10 certificates at a time.
*
* @example
* ```ts
* // Automatically fetches more pages as needed.
* for await (const certificateDeactivateResponse of client.admin.organization.certificates.deactivate(
* { certificate_ids: ['cert_abc'] },
* )) {
* // ...
* }
* ```
*/
deactivate(
body: CertificateDeactivateParams,
options?: RequestOptions,
): PagePromise<CertificateDeactivateResponsesPage, CertificateDeactivateResponse> {
return this._client.getAPIList(
'/organization/certificates/deactivate',
Page<CertificateDeactivateResponse>,
{ body, method: 'post', ...options, __security: { adminAPIKeyAuth: true } },
);
}
}
export type CertificateListResponsesPage = ConversationCursorPage<CertificateListResponse>;
// Note: no pagination actually occurs yet, this is for forwards-compatibility.
export type CertificateActivateResponsesPage = Page<CertificateActivateResponse>;
// Note: no pagination actually occurs yet, this is for forwards-compatibility.
export type CertificateDeactivateResponsesPage = Page<CertificateDeactivateResponse>;
/**
* Represents an individual `certificate` uploaded to the organization.
*/
export interface Certificate {
/**
* The identifier, which can be referenced in API endpoints
*/
id: string;
certificate_details: Certificate.CertificateDetails;
/**
* The Unix timestamp (in seconds) of when the certificate was uploaded.
*/
created_at: number;
/**
* The name of the certificate.
*/
name: string | null;
/**
* The object type.
*
* - If creating, updating, or getting a specific certificate, the object type is
* `certificate`.
* - If listing, activating, or deactivating certificates for the organization, the
* object type is `organization.certificate`.
* - If listing, activating, or deactivating certificates for a project, the object
* type is `organization.project.certificate`.
*/
object: 'certificate' | 'organization.certificate' | 'organization.project.certificate';
/**
* Whether the certificate is currently active at the specified scope. Not returned
* when getting details for a specific certificate.
*/
active?: boolean;
}
export namespace Certificate {
export interface CertificateDetails {
/**
* The content of the certificate in PEM format.
*/
content?: string;
/**
* The Unix timestamp (in seconds) of when the certificate expires.
*/
expires_at?: number;
/**
* The Unix timestamp (in seconds) of when the certificate becomes valid.
*/
valid_at?: number;
}
}
/**
* Represents an individual certificate configured at the organization level.
*/
export interface CertificateListResponse {
/**
* The identifier, which can be referenced in API endpoints
*/
id: string;
/**
* Whether the certificate is currently active at the organization level.
*/
active: boolean;
certificate_details: CertificateListResponse.CertificateDetails;
/**
* The Unix timestamp (in seconds) of when the certificate was uploaded.
*/
created_at: number;
/**
* The name of the certificate.
*/
name: string | null;
/**
* The object type, which is always `organization.certificate`.
*/
object: 'organization.certificate';
}
export namespace CertificateListResponse {
export interface CertificateDetails {
/**
* The Unix timestamp (in seconds) of when the certificate expires.
*/
expires_at?: number;
/**
* The Unix timestamp (in seconds) of when the certificate becomes valid.
*/
valid_at?: number;
}
}
export interface CertificateDeleteResponse {
/**
* The ID of the certificate that was deleted.
*/
id: string;
/**
* The object type, must be `certificate.deleted`.
*/
object: 'certificate.deleted';
}
/**
* Represents an individual certificate configured at the organization level.
*/
export interface CertificateActivateResponse {
/**
* The identifier, which can be referenced in API endpoints
*/
id: string;
/**
* Whether the certificate is currently active at the organization level.
*/
active: boolean;
certificate_details: CertificateActivateResponse.CertificateDetails;
/**
* The Unix timestamp (in seconds) of when the certificate was uploaded.
*/
created_at: number;
/**
* The name of the certificate.
*/
name: string | null;
/**
* The object type, which is always `organization.certificate`.
*/
object: 'organization.certificate';
}
export namespace CertificateActivateResponse {
export interface CertificateDetails {
/**
* The Unix timestamp (in seconds) of when the certificate expires.
*/
expires_at?: number;
/**
* The Unix timestamp (in seconds) of when the certificate becomes valid.
*/
valid_at?: number;
}
}
/**
* Represents an individual certificate configured at the organization level.
*/
export interface CertificateDeactivateResponse {
/**
* The identifier, which can be referenced in API endpoints
*/
id: string;
/**
* Whether the certificate is currently active at the organization level.
*/
active: boolean;
certificate_details: CertificateDeactivateResponse.CertificateDetails;
/**
* The Unix timestamp (in seconds) of when the certificate was uploaded.
*/
created_at: number;
/**
* The name of the certificate.
*/
name: string | null;
/**
* The object type, which is always `organization.certificate`.
*/
object: 'organization.certificate';
}
export namespace CertificateDeactivateResponse {
export interface CertificateDetails {
/**
* The Unix timestamp (in seconds) of when the certificate expires.
*/
expires_at?: number;
/**
* The Unix timestamp (in seconds) of when the certificate becomes valid.
*/
valid_at?: number;
}
}
export interface CertificateCreateParams {
/**
* The certificate content in PEM format
*/
certificate: string;
/**
* An optional name for the certificate
*/
name?: string;
}
export interface CertificateRetrieveParams {
/**
* A list of additional fields to include in the response. Currently the only
* supported value is `content` to fetch the PEM content of the certificate.
*/
include?: Array<'content'>;
}
export interface CertificateUpdateParams {
/**
* The updated name for the certificate
*/
name?: string;
}
export interface CertificateListParams extends ConversationCursorPageParams {
/**
* Sort order by the `created_at` timestamp of the objects. `asc` for ascending
* order and `desc` for descending order.
*/
order?: 'asc' | 'desc';
}
export interface CertificateActivateParams {
certificate_ids: Array<string>;
}
export interface CertificateDeactivateParams {
certificate_ids: Array<string>;
}
export declare namespace Certificates {
export {
type Certificate as Certificate,
type CertificateListResponse as CertificateListResponse,
type CertificateDeleteResponse as CertificateDeleteResponse,
type CertificateActivateResponse as CertificateActivateResponse,
type CertificateDeactivateResponse as CertificateDeactivateResponse,
type CertificateListResponsesPage as CertificateListResponsesPage,
type CertificateActivateResponsesPage as CertificateActivateResponsesPage,
type CertificateDeactivateResponsesPage as CertificateDeactivateResponsesPage,
type CertificateCreateParams as CertificateCreateParams,
type CertificateRetrieveParams as CertificateRetrieveParams,
type CertificateUpdateParams as CertificateUpdateParams,
type CertificateListParams as CertificateListParams,
type CertificateActivateParams as CertificateActivateParams,
type CertificateDeactivateParams as CertificateDeactivateParams,
};
}