@@ -240,26 +240,59 @@ export namespace InferencePipelineCreateResponse {
240
240
}
241
241
242
242
export interface Workspace {
243
+ /**
244
+ * The workspace id.
245
+ */
243
246
id : string ;
244
247
248
+ /**
249
+ * The workspace creator id.
250
+ */
245
251
creatorId : string | null ;
246
252
253
+ /**
254
+ * The workspace creation date.
255
+ */
247
256
dateCreated : string ;
248
257
258
+ /**
259
+ * The workspace last updated date.
260
+ */
249
261
dateUpdated : string ;
250
262
263
+ /**
264
+ * The number of invites in the workspace.
265
+ */
251
266
inviteCount : number ;
252
267
268
+ /**
269
+ * The number of members in the workspace.
270
+ */
253
271
memberCount : number ;
254
272
273
+ /**
274
+ * The workspace name.
275
+ */
255
276
name : string ;
256
277
278
+ /**
279
+ * The end date of the current billing period.
280
+ */
257
281
periodEndDate : string | null ;
258
282
283
+ /**
284
+ * The start date of the current billing period.
285
+ */
259
286
periodStartDate : string | null ;
260
287
288
+ /**
289
+ * The number of projects in the workspace.
290
+ */
261
291
projectCount : number ;
262
292
293
+ /**
294
+ * The workspace slug.
295
+ */
263
296
slug : string ;
264
297
265
298
status :
@@ -274,6 +307,9 @@ export namespace InferencePipelineCreateResponse {
274
307
275
308
monthlyUsage ?: Array < Workspace . MonthlyUsage > ;
276
309
310
+ /**
311
+ * Whether the workspace only allows SAML authentication.
312
+ */
277
313
samlOnlyAccess ?: boolean ;
278
314
279
315
wildcardDomains ?: Array < string > ;
@@ -498,26 +534,59 @@ export namespace InferencePipelineListResponse {
498
534
}
499
535
500
536
export interface Workspace {
537
+ /**
538
+ * The workspace id.
539
+ */
501
540
id : string ;
502
541
542
+ /**
543
+ * The workspace creator id.
544
+ */
503
545
creatorId : string | null ;
504
546
547
+ /**
548
+ * The workspace creation date.
549
+ */
505
550
dateCreated : string ;
506
551
552
+ /**
553
+ * The workspace last updated date.
554
+ */
507
555
dateUpdated : string ;
508
556
557
+ /**
558
+ * The number of invites in the workspace.
559
+ */
509
560
inviteCount : number ;
510
561
562
+ /**
563
+ * The number of members in the workspace.
564
+ */
511
565
memberCount : number ;
512
566
567
+ /**
568
+ * The workspace name.
569
+ */
513
570
name : string ;
514
571
572
+ /**
573
+ * The end date of the current billing period.
574
+ */
515
575
periodEndDate : string | null ;
516
576
577
+ /**
578
+ * The start date of the current billing period.
579
+ */
517
580
periodStartDate : string | null ;
518
581
582
+ /**
583
+ * The number of projects in the workspace.
584
+ */
519
585
projectCount : number ;
520
586
587
+ /**
588
+ * The workspace slug.
589
+ */
521
590
slug : string ;
522
591
523
592
status :
@@ -532,6 +601,9 @@ export namespace InferencePipelineListResponse {
532
601
533
602
monthlyUsage ?: Array < Workspace . MonthlyUsage > ;
534
603
604
+ /**
605
+ * Whether the workspace only allows SAML authentication.
606
+ */
535
607
samlOnlyAccess ?: boolean ;
536
608
537
609
wildcardDomains ?: Array < string > ;
@@ -584,12 +656,24 @@ export namespace InferencePipelineCreateParams {
584
656
}
585
657
586
658
export interface Workspace {
659
+ /**
660
+ * The workspace name.
661
+ */
587
662
name : string ;
588
663
664
+ /**
665
+ * The workspace slug.
666
+ */
589
667
slug : string ;
590
668
669
+ /**
670
+ * The workspace invite code.
671
+ */
591
672
inviteCode ?: string ;
592
673
674
+ /**
675
+ * Whether the workspace only allows SAML authentication.
676
+ */
593
677
samlOnlyAccess ?: boolean ;
594
678
595
679
wildcardDomains ?: Array < string > ;
0 commit comments