@gooddata/api-client-tiger 11.5.0-alpha.5 → 11.5.0-alpha.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -41,6 +41,27 @@ export interface ApiEntitlement {
41
41
  value?: string;
42
42
  expiry?: string;
43
43
  }
44
+ /**
45
+ * Entity representing user in authentication system.
46
+ */
47
+ export interface AuthUser {
48
+ /**
49
+ * Email - used as lookup (must be unique). For PUT method, it must be same as in URL
50
+ */
51
+ email: string;
52
+ /**
53
+ * User password. It is not returned by GET method.
54
+ */
55
+ password?: string;
56
+ /**
57
+ * User description, which will be visible in application.
58
+ */
59
+ displayName: string;
60
+ /**
61
+ * Field, which should be stored in metadata in authenticationId field. In PUT and POST method it must be not present, or equal to value calculated by backend (e.g. returned from previous GET).
62
+ */
63
+ authenticationId?: string;
64
+ }
44
65
  export interface FeatureFlagsContext {
45
66
  earlyAccessValues: Array<string>;
46
67
  earlyAccess: string;
@@ -262,6 +283,22 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
262
283
  * @export
263
284
  */
264
285
  export declare const AuthenticationApiAxiosParamCreator: (configuration?: Configuration) => {
286
+ /**
287
+ * Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
288
+ * @summary Create a user
289
+ * @param {AuthUser} authUser
290
+ * @param {*} [options] Override http request option.
291
+ * @throws {RequiredError}
292
+ */
293
+ createUser: (authUser: AuthUser, options?: AxiosRequestConfig) => Promise<RequestArgs>;
294
+ /**
295
+ * Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
296
+ * @summary Delete a user
297
+ * @param {string} userEmail
298
+ * @param {*} [options] Override http request option.
299
+ * @throws {RequiredError}
300
+ */
301
+ deleteUser: (userEmail: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
265
302
  /**
266
303
  * Returns a Profile including Organization and Current User Information.
267
304
  * @summary Get Profile
@@ -269,12 +306,52 @@ export declare const AuthenticationApiAxiosParamCreator: (configuration?: Config
269
306
  * @throws {RequiredError}
270
307
  */
271
308
  getProfile: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
309
+ /**
310
+ * Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
311
+ * @summary Get a user
312
+ * @param {string} userEmail
313
+ * @param {*} [options] Override http request option.
314
+ * @throws {RequiredError}
315
+ */
316
+ getUser: (userEmail: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
317
+ /**
318
+ * Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
319
+ * @summary Get all users
320
+ * @param {*} [options] Override http request option.
321
+ * @throws {RequiredError}
322
+ */
323
+ getUsers: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
324
+ /**
325
+ * Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
326
+ * @summary Update a user
327
+ * @param {string} userEmail
328
+ * @param {AuthUser} authUser
329
+ * @param {*} [options] Override http request option.
330
+ * @throws {RequiredError}
331
+ */
332
+ updateUser: (userEmail: string, authUser: AuthUser, options?: AxiosRequestConfig) => Promise<RequestArgs>;
272
333
  };
273
334
  /**
274
335
  * AuthenticationApi - functional programming interface
275
336
  * @export
276
337
  */
277
338
  export declare const AuthenticationApiFp: (configuration?: Configuration) => {
339
+ /**
340
+ * Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
341
+ * @summary Create a user
342
+ * @param {AuthUser} authUser
343
+ * @param {*} [options] Override http request option.
344
+ * @throws {RequiredError}
345
+ */
346
+ createUser(authUser: AuthUser, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthUser>>;
347
+ /**
348
+ * Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
349
+ * @summary Delete a user
350
+ * @param {string} userEmail
351
+ * @param {*} [options] Override http request option.
352
+ * @throws {RequiredError}
353
+ */
354
+ deleteUser(userEmail: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
278
355
  /**
279
356
  * Returns a Profile including Organization and Current User Information.
280
357
  * @summary Get Profile
@@ -282,12 +359,52 @@ export declare const AuthenticationApiFp: (configuration?: Configuration) => {
282
359
  * @throws {RequiredError}
283
360
  */
284
361
  getProfile(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Profile>>;
362
+ /**
363
+ * Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
364
+ * @summary Get a user
365
+ * @param {string} userEmail
366
+ * @param {*} [options] Override http request option.
367
+ * @throws {RequiredError}
368
+ */
369
+ getUser(userEmail: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthUser>>;
370
+ /**
371
+ * Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
372
+ * @summary Get all users
373
+ * @param {*} [options] Override http request option.
374
+ * @throws {RequiredError}
375
+ */
376
+ getUsers(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AuthUser>>>;
377
+ /**
378
+ * Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
379
+ * @summary Update a user
380
+ * @param {string} userEmail
381
+ * @param {AuthUser} authUser
382
+ * @param {*} [options] Override http request option.
383
+ * @throws {RequiredError}
384
+ */
385
+ updateUser(userEmail: string, authUser: AuthUser, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthUser>>;
285
386
  };
286
387
  /**
287
388
  * AuthenticationApi - factory interface
288
389
  * @export
289
390
  */
290
391
  export declare const AuthenticationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
392
+ /**
393
+ * Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
394
+ * @summary Create a user
395
+ * @param {AuthenticationApiCreateUserRequest} requestParameters Request parameters.
396
+ * @param {*} [options] Override http request option.
397
+ * @throws {RequiredError}
398
+ */
399
+ createUser(requestParameters: AuthenticationApiCreateUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
400
+ /**
401
+ * Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
402
+ * @summary Delete a user
403
+ * @param {AuthenticationApiDeleteUserRequest} requestParameters Request parameters.
404
+ * @param {*} [options] Override http request option.
405
+ * @throws {RequiredError}
406
+ */
407
+ deleteUser(requestParameters: AuthenticationApiDeleteUserRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
291
408
  /**
292
409
  * Returns a Profile including Organization and Current User Information.
293
410
  * @summary Get Profile
@@ -295,6 +412,29 @@ export declare const AuthenticationApiFactory: (configuration?: Configuration, b
295
412
  * @throws {RequiredError}
296
413
  */
297
414
  getProfile(options?: AxiosRequestConfig): AxiosPromise<Profile>;
415
+ /**
416
+ * Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
417
+ * @summary Get a user
418
+ * @param {AuthenticationApiGetUserRequest} requestParameters Request parameters.
419
+ * @param {*} [options] Override http request option.
420
+ * @throws {RequiredError}
421
+ */
422
+ getUser(requestParameters: AuthenticationApiGetUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
423
+ /**
424
+ * Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
425
+ * @summary Get all users
426
+ * @param {*} [options] Override http request option.
427
+ * @throws {RequiredError}
428
+ */
429
+ getUsers(options?: AxiosRequestConfig): AxiosPromise<Array<AuthUser>>;
430
+ /**
431
+ * Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
432
+ * @summary Update a user
433
+ * @param {AuthenticationApiUpdateUserRequest} requestParameters Request parameters.
434
+ * @param {*} [options] Override http request option.
435
+ * @throws {RequiredError}
436
+ */
437
+ updateUser(requestParameters: AuthenticationApiUpdateUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
298
438
  };
299
439
  /**
300
440
  * AuthenticationApi - interface
@@ -302,6 +442,24 @@ export declare const AuthenticationApiFactory: (configuration?: Configuration, b
302
442
  * @interface AuthenticationApi
303
443
  */
304
444
  export interface AuthenticationApiInterface {
445
+ /**
446
+ * Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
447
+ * @summary Create a user
448
+ * @param {AuthenticationApiCreateUserRequest} requestParameters Request parameters.
449
+ * @param {*} [options] Override http request option.
450
+ * @throws {RequiredError}
451
+ * @memberof AuthenticationApiInterface
452
+ */
453
+ createUser(requestParameters: AuthenticationApiCreateUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
454
+ /**
455
+ * Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
456
+ * @summary Delete a user
457
+ * @param {AuthenticationApiDeleteUserRequest} requestParameters Request parameters.
458
+ * @param {*} [options] Override http request option.
459
+ * @throws {RequiredError}
460
+ * @memberof AuthenticationApiInterface
461
+ */
462
+ deleteUser(requestParameters: AuthenticationApiDeleteUserRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
305
463
  /**
306
464
  * Returns a Profile including Organization and Current User Information.
307
465
  * @summary Get Profile
@@ -310,6 +468,90 @@ export interface AuthenticationApiInterface {
310
468
  * @memberof AuthenticationApiInterface
311
469
  */
312
470
  getProfile(options?: AxiosRequestConfig): AxiosPromise<Profile>;
471
+ /**
472
+ * Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
473
+ * @summary Get a user
474
+ * @param {AuthenticationApiGetUserRequest} requestParameters Request parameters.
475
+ * @param {*} [options] Override http request option.
476
+ * @throws {RequiredError}
477
+ * @memberof AuthenticationApiInterface
478
+ */
479
+ getUser(requestParameters: AuthenticationApiGetUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
480
+ /**
481
+ * Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
482
+ * @summary Get all users
483
+ * @param {*} [options] Override http request option.
484
+ * @throws {RequiredError}
485
+ * @memberof AuthenticationApiInterface
486
+ */
487
+ getUsers(options?: AxiosRequestConfig): AxiosPromise<Array<AuthUser>>;
488
+ /**
489
+ * Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
490
+ * @summary Update a user
491
+ * @param {AuthenticationApiUpdateUserRequest} requestParameters Request parameters.
492
+ * @param {*} [options] Override http request option.
493
+ * @throws {RequiredError}
494
+ * @memberof AuthenticationApiInterface
495
+ */
496
+ updateUser(requestParameters: AuthenticationApiUpdateUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
497
+ }
498
+ /**
499
+ * Request parameters for createUser operation in AuthenticationApi.
500
+ * @export
501
+ * @interface AuthenticationApiCreateUserRequest
502
+ */
503
+ export interface AuthenticationApiCreateUserRequest {
504
+ /**
505
+ *
506
+ * @type {AuthUser}
507
+ * @memberof AuthenticationApiCreateUser
508
+ */
509
+ readonly authUser: AuthUser;
510
+ }
511
+ /**
512
+ * Request parameters for deleteUser operation in AuthenticationApi.
513
+ * @export
514
+ * @interface AuthenticationApiDeleteUserRequest
515
+ */
516
+ export interface AuthenticationApiDeleteUserRequest {
517
+ /**
518
+ *
519
+ * @type {string}
520
+ * @memberof AuthenticationApiDeleteUser
521
+ */
522
+ readonly userEmail: string;
523
+ }
524
+ /**
525
+ * Request parameters for getUser operation in AuthenticationApi.
526
+ * @export
527
+ * @interface AuthenticationApiGetUserRequest
528
+ */
529
+ export interface AuthenticationApiGetUserRequest {
530
+ /**
531
+ *
532
+ * @type {string}
533
+ * @memberof AuthenticationApiGetUser
534
+ */
535
+ readonly userEmail: string;
536
+ }
537
+ /**
538
+ * Request parameters for updateUser operation in AuthenticationApi.
539
+ * @export
540
+ * @interface AuthenticationApiUpdateUserRequest
541
+ */
542
+ export interface AuthenticationApiUpdateUserRequest {
543
+ /**
544
+ *
545
+ * @type {string}
546
+ * @memberof AuthenticationApiUpdateUser
547
+ */
548
+ readonly userEmail: string;
549
+ /**
550
+ *
551
+ * @type {AuthUser}
552
+ * @memberof AuthenticationApiUpdateUser
553
+ */
554
+ readonly authUser: AuthUser;
313
555
  }
314
556
  /**
315
557
  * AuthenticationApi - object-oriented interface
@@ -318,6 +560,24 @@ export interface AuthenticationApiInterface {
318
560
  * @extends {BaseAPI}
319
561
  */
320
562
  export declare class AuthenticationApi extends BaseAPI implements AuthenticationApiInterface {
563
+ /**
564
+ * Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
565
+ * @summary Create a user
566
+ * @param {AuthenticationApiCreateUserRequest} requestParameters Request parameters.
567
+ * @param {*} [options] Override http request option.
568
+ * @throws {RequiredError}
569
+ * @memberof AuthenticationApi
570
+ */
571
+ createUser(requestParameters: AuthenticationApiCreateUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthUser, any, {}>>;
572
+ /**
573
+ * Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
574
+ * @summary Delete a user
575
+ * @param {AuthenticationApiDeleteUserRequest} requestParameters Request parameters.
576
+ * @param {*} [options] Override http request option.
577
+ * @throws {RequiredError}
578
+ * @memberof AuthenticationApi
579
+ */
580
+ deleteUser(requestParameters: AuthenticationApiDeleteUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
321
581
  /**
322
582
  * Returns a Profile including Organization and Current User Information.
323
583
  * @summary Get Profile
@@ -326,12 +586,54 @@ export declare class AuthenticationApi extends BaseAPI implements Authentication
326
586
  * @memberof AuthenticationApi
327
587
  */
328
588
  getProfile(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Profile, any, {}>>;
589
+ /**
590
+ * Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
591
+ * @summary Get a user
592
+ * @param {AuthenticationApiGetUserRequest} requestParameters Request parameters.
593
+ * @param {*} [options] Override http request option.
594
+ * @throws {RequiredError}
595
+ * @memberof AuthenticationApi
596
+ */
597
+ getUser(requestParameters: AuthenticationApiGetUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthUser, any, {}>>;
598
+ /**
599
+ * Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
600
+ * @summary Get all users
601
+ * @param {*} [options] Override http request option.
602
+ * @throws {RequiredError}
603
+ * @memberof AuthenticationApi
604
+ */
605
+ getUsers(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthUser[], any, {}>>;
606
+ /**
607
+ * Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
608
+ * @summary Update a user
609
+ * @param {AuthenticationApiUpdateUserRequest} requestParameters Request parameters.
610
+ * @param {*} [options] Override http request option.
611
+ * @throws {RequiredError}
612
+ * @memberof AuthenticationApi
613
+ */
614
+ updateUser(requestParameters: AuthenticationApiUpdateUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthUser, any, {}>>;
329
615
  }
330
616
  /**
331
617
  * UserAuthorizationApi - axios parameter creator
332
618
  * @export
333
619
  */
334
620
  export declare const UserAuthorizationApiAxiosParamCreator: (configuration?: Configuration) => {
621
+ /**
622
+ * Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
623
+ * @summary Create a user
624
+ * @param {AuthUser} authUser
625
+ * @param {*} [options] Override http request option.
626
+ * @throws {RequiredError}
627
+ */
628
+ createUser: (authUser: AuthUser, options?: AxiosRequestConfig) => Promise<RequestArgs>;
629
+ /**
630
+ * Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
631
+ * @summary Delete a user
632
+ * @param {string} userEmail
633
+ * @param {*} [options] Override http request option.
634
+ * @throws {RequiredError}
635
+ */
636
+ deleteUser: (userEmail: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
335
637
  /**
336
638
  * Returns a Profile including Organization and Current User Information.
337
639
  * @summary Get Profile
@@ -339,6 +641,21 @@ export declare const UserAuthorizationApiAxiosParamCreator: (configuration?: Con
339
641
  * @throws {RequiredError}
340
642
  */
341
643
  getProfile: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
644
+ /**
645
+ * Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
646
+ * @summary Get a user
647
+ * @param {string} userEmail
648
+ * @param {*} [options] Override http request option.
649
+ * @throws {RequiredError}
650
+ */
651
+ getUser: (userEmail: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
652
+ /**
653
+ * Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
654
+ * @summary Get all users
655
+ * @param {*} [options] Override http request option.
656
+ * @throws {RequiredError}
657
+ */
658
+ getUsers: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
342
659
  /**
343
660
  * Puts a new invitation requirement into the invitation generator queue. This is a GoodData Cloud specific endpoint.
344
661
  * @summary Invite User
@@ -347,12 +664,37 @@ export declare const UserAuthorizationApiAxiosParamCreator: (configuration?: Con
347
664
  * @throws {RequiredError}
348
665
  */
349
666
  processInvitation: (invitation: Invitation, options?: AxiosRequestConfig) => Promise<RequestArgs>;
667
+ /**
668
+ * Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
669
+ * @summary Update a user
670
+ * @param {string} userEmail
671
+ * @param {AuthUser} authUser
672
+ * @param {*} [options] Override http request option.
673
+ * @throws {RequiredError}
674
+ */
675
+ updateUser: (userEmail: string, authUser: AuthUser, options?: AxiosRequestConfig) => Promise<RequestArgs>;
350
676
  };
351
677
  /**
352
678
  * UserAuthorizationApi - functional programming interface
353
679
  * @export
354
680
  */
355
681
  export declare const UserAuthorizationApiFp: (configuration?: Configuration) => {
682
+ /**
683
+ * Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
684
+ * @summary Create a user
685
+ * @param {AuthUser} authUser
686
+ * @param {*} [options] Override http request option.
687
+ * @throws {RequiredError}
688
+ */
689
+ createUser(authUser: AuthUser, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthUser>>;
690
+ /**
691
+ * Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
692
+ * @summary Delete a user
693
+ * @param {string} userEmail
694
+ * @param {*} [options] Override http request option.
695
+ * @throws {RequiredError}
696
+ */
697
+ deleteUser(userEmail: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
356
698
  /**
357
699
  * Returns a Profile including Organization and Current User Information.
358
700
  * @summary Get Profile
@@ -360,6 +702,21 @@ export declare const UserAuthorizationApiFp: (configuration?: Configuration) =>
360
702
  * @throws {RequiredError}
361
703
  */
362
704
  getProfile(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Profile>>;
705
+ /**
706
+ * Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
707
+ * @summary Get a user
708
+ * @param {string} userEmail
709
+ * @param {*} [options] Override http request option.
710
+ * @throws {RequiredError}
711
+ */
712
+ getUser(userEmail: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthUser>>;
713
+ /**
714
+ * Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
715
+ * @summary Get all users
716
+ * @param {*} [options] Override http request option.
717
+ * @throws {RequiredError}
718
+ */
719
+ getUsers(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AuthUser>>>;
363
720
  /**
364
721
  * Puts a new invitation requirement into the invitation generator queue. This is a GoodData Cloud specific endpoint.
365
722
  * @summary Invite User
@@ -368,12 +725,37 @@ export declare const UserAuthorizationApiFp: (configuration?: Configuration) =>
368
725
  * @throws {RequiredError}
369
726
  */
370
727
  processInvitation(invitation: Invitation, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
728
+ /**
729
+ * Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
730
+ * @summary Update a user
731
+ * @param {string} userEmail
732
+ * @param {AuthUser} authUser
733
+ * @param {*} [options] Override http request option.
734
+ * @throws {RequiredError}
735
+ */
736
+ updateUser(userEmail: string, authUser: AuthUser, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthUser>>;
371
737
  };
372
738
  /**
373
739
  * UserAuthorizationApi - factory interface
374
740
  * @export
375
741
  */
376
742
  export declare const UserAuthorizationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
743
+ /**
744
+ * Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
745
+ * @summary Create a user
746
+ * @param {UserAuthorizationApiCreateUserRequest} requestParameters Request parameters.
747
+ * @param {*} [options] Override http request option.
748
+ * @throws {RequiredError}
749
+ */
750
+ createUser(requestParameters: UserAuthorizationApiCreateUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
751
+ /**
752
+ * Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
753
+ * @summary Delete a user
754
+ * @param {UserAuthorizationApiDeleteUserRequest} requestParameters Request parameters.
755
+ * @param {*} [options] Override http request option.
756
+ * @throws {RequiredError}
757
+ */
758
+ deleteUser(requestParameters: UserAuthorizationApiDeleteUserRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
377
759
  /**
378
760
  * Returns a Profile including Organization and Current User Information.
379
761
  * @summary Get Profile
@@ -381,6 +763,21 @@ export declare const UserAuthorizationApiFactory: (configuration?: Configuration
381
763
  * @throws {RequiredError}
382
764
  */
383
765
  getProfile(options?: AxiosRequestConfig): AxiosPromise<Profile>;
766
+ /**
767
+ * Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
768
+ * @summary Get a user
769
+ * @param {UserAuthorizationApiGetUserRequest} requestParameters Request parameters.
770
+ * @param {*} [options] Override http request option.
771
+ * @throws {RequiredError}
772
+ */
773
+ getUser(requestParameters: UserAuthorizationApiGetUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
774
+ /**
775
+ * Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
776
+ * @summary Get all users
777
+ * @param {*} [options] Override http request option.
778
+ * @throws {RequiredError}
779
+ */
780
+ getUsers(options?: AxiosRequestConfig): AxiosPromise<Array<AuthUser>>;
384
781
  /**
385
782
  * Puts a new invitation requirement into the invitation generator queue. This is a GoodData Cloud specific endpoint.
386
783
  * @summary Invite User
@@ -389,6 +786,14 @@ export declare const UserAuthorizationApiFactory: (configuration?: Configuration
389
786
  * @throws {RequiredError}
390
787
  */
391
788
  processInvitation(requestParameters: UserAuthorizationApiProcessInvitationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
789
+ /**
790
+ * Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
791
+ * @summary Update a user
792
+ * @param {UserAuthorizationApiUpdateUserRequest} requestParameters Request parameters.
793
+ * @param {*} [options] Override http request option.
794
+ * @throws {RequiredError}
795
+ */
796
+ updateUser(requestParameters: UserAuthorizationApiUpdateUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
392
797
  };
393
798
  /**
394
799
  * UserAuthorizationApi - interface
@@ -396,6 +801,24 @@ export declare const UserAuthorizationApiFactory: (configuration?: Configuration
396
801
  * @interface UserAuthorizationApi
397
802
  */
398
803
  export interface UserAuthorizationApiInterface {
804
+ /**
805
+ * Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
806
+ * @summary Create a user
807
+ * @param {UserAuthorizationApiCreateUserRequest} requestParameters Request parameters.
808
+ * @param {*} [options] Override http request option.
809
+ * @throws {RequiredError}
810
+ * @memberof UserAuthorizationApiInterface
811
+ */
812
+ createUser(requestParameters: UserAuthorizationApiCreateUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
813
+ /**
814
+ * Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
815
+ * @summary Delete a user
816
+ * @param {UserAuthorizationApiDeleteUserRequest} requestParameters Request parameters.
817
+ * @param {*} [options] Override http request option.
818
+ * @throws {RequiredError}
819
+ * @memberof UserAuthorizationApiInterface
820
+ */
821
+ deleteUser(requestParameters: UserAuthorizationApiDeleteUserRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
399
822
  /**
400
823
  * Returns a Profile including Organization and Current User Information.
401
824
  * @summary Get Profile
@@ -404,6 +827,23 @@ export interface UserAuthorizationApiInterface {
404
827
  * @memberof UserAuthorizationApiInterface
405
828
  */
406
829
  getProfile(options?: AxiosRequestConfig): AxiosPromise<Profile>;
830
+ /**
831
+ * Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
832
+ * @summary Get a user
833
+ * @param {UserAuthorizationApiGetUserRequest} requestParameters Request parameters.
834
+ * @param {*} [options] Override http request option.
835
+ * @throws {RequiredError}
836
+ * @memberof UserAuthorizationApiInterface
837
+ */
838
+ getUser(requestParameters: UserAuthorizationApiGetUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
839
+ /**
840
+ * Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
841
+ * @summary Get all users
842
+ * @param {*} [options] Override http request option.
843
+ * @throws {RequiredError}
844
+ * @memberof UserAuthorizationApiInterface
845
+ */
846
+ getUsers(options?: AxiosRequestConfig): AxiosPromise<Array<AuthUser>>;
407
847
  /**
408
848
  * Puts a new invitation requirement into the invitation generator queue. This is a GoodData Cloud specific endpoint.
409
849
  * @summary Invite User
@@ -413,6 +853,54 @@ export interface UserAuthorizationApiInterface {
413
853
  * @memberof UserAuthorizationApiInterface
414
854
  */
415
855
  processInvitation(requestParameters: UserAuthorizationApiProcessInvitationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
856
+ /**
857
+ * Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
858
+ * @summary Update a user
859
+ * @param {UserAuthorizationApiUpdateUserRequest} requestParameters Request parameters.
860
+ * @param {*} [options] Override http request option.
861
+ * @throws {RequiredError}
862
+ * @memberof UserAuthorizationApiInterface
863
+ */
864
+ updateUser(requestParameters: UserAuthorizationApiUpdateUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
865
+ }
866
+ /**
867
+ * Request parameters for createUser operation in UserAuthorizationApi.
868
+ * @export
869
+ * @interface UserAuthorizationApiCreateUserRequest
870
+ */
871
+ export interface UserAuthorizationApiCreateUserRequest {
872
+ /**
873
+ *
874
+ * @type {AuthUser}
875
+ * @memberof UserAuthorizationApiCreateUser
876
+ */
877
+ readonly authUser: AuthUser;
878
+ }
879
+ /**
880
+ * Request parameters for deleteUser operation in UserAuthorizationApi.
881
+ * @export
882
+ * @interface UserAuthorizationApiDeleteUserRequest
883
+ */
884
+ export interface UserAuthorizationApiDeleteUserRequest {
885
+ /**
886
+ *
887
+ * @type {string}
888
+ * @memberof UserAuthorizationApiDeleteUser
889
+ */
890
+ readonly userEmail: string;
891
+ }
892
+ /**
893
+ * Request parameters for getUser operation in UserAuthorizationApi.
894
+ * @export
895
+ * @interface UserAuthorizationApiGetUserRequest
896
+ */
897
+ export interface UserAuthorizationApiGetUserRequest {
898
+ /**
899
+ *
900
+ * @type {string}
901
+ * @memberof UserAuthorizationApiGetUser
902
+ */
903
+ readonly userEmail: string;
416
904
  }
417
905
  /**
418
906
  * Request parameters for processInvitation operation in UserAuthorizationApi.
@@ -427,6 +915,25 @@ export interface UserAuthorizationApiProcessInvitationRequest {
427
915
  */
428
916
  readonly invitation: Invitation;
429
917
  }
918
+ /**
919
+ * Request parameters for updateUser operation in UserAuthorizationApi.
920
+ * @export
921
+ * @interface UserAuthorizationApiUpdateUserRequest
922
+ */
923
+ export interface UserAuthorizationApiUpdateUserRequest {
924
+ /**
925
+ *
926
+ * @type {string}
927
+ * @memberof UserAuthorizationApiUpdateUser
928
+ */
929
+ readonly userEmail: string;
930
+ /**
931
+ *
932
+ * @type {AuthUser}
933
+ * @memberof UserAuthorizationApiUpdateUser
934
+ */
935
+ readonly authUser: AuthUser;
936
+ }
430
937
  /**
431
938
  * UserAuthorizationApi - object-oriented interface
432
939
  * @export
@@ -434,6 +941,24 @@ export interface UserAuthorizationApiProcessInvitationRequest {
434
941
  * @extends {BaseAPI}
435
942
  */
436
943
  export declare class UserAuthorizationApi extends BaseAPI implements UserAuthorizationApiInterface {
944
+ /**
945
+ * Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
946
+ * @summary Create a user
947
+ * @param {UserAuthorizationApiCreateUserRequest} requestParameters Request parameters.
948
+ * @param {*} [options] Override http request option.
949
+ * @throws {RequiredError}
950
+ * @memberof UserAuthorizationApi
951
+ */
952
+ createUser(requestParameters: UserAuthorizationApiCreateUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthUser, any, {}>>;
953
+ /**
954
+ * Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
955
+ * @summary Delete a user
956
+ * @param {UserAuthorizationApiDeleteUserRequest} requestParameters Request parameters.
957
+ * @param {*} [options] Override http request option.
958
+ * @throws {RequiredError}
959
+ * @memberof UserAuthorizationApi
960
+ */
961
+ deleteUser(requestParameters: UserAuthorizationApiDeleteUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
437
962
  /**
438
963
  * Returns a Profile including Organization and Current User Information.
439
964
  * @summary Get Profile
@@ -442,6 +967,23 @@ export declare class UserAuthorizationApi extends BaseAPI implements UserAuthori
442
967
  * @memberof UserAuthorizationApi
443
968
  */
444
969
  getProfile(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Profile, any, {}>>;
970
+ /**
971
+ * Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
972
+ * @summary Get a user
973
+ * @param {UserAuthorizationApiGetUserRequest} requestParameters Request parameters.
974
+ * @param {*} [options] Override http request option.
975
+ * @throws {RequiredError}
976
+ * @memberof UserAuthorizationApi
977
+ */
978
+ getUser(requestParameters: UserAuthorizationApiGetUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthUser, any, {}>>;
979
+ /**
980
+ * Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
981
+ * @summary Get all users
982
+ * @param {*} [options] Override http request option.
983
+ * @throws {RequiredError}
984
+ * @memberof UserAuthorizationApi
985
+ */
986
+ getUsers(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthUser[], any, {}>>;
445
987
  /**
446
988
  * Puts a new invitation requirement into the invitation generator queue. This is a GoodData Cloud specific endpoint.
447
989
  * @summary Invite User
@@ -451,5 +993,14 @@ export declare class UserAuthorizationApi extends BaseAPI implements UserAuthori
451
993
  * @memberof UserAuthorizationApi
452
994
  */
453
995
  processInvitation(requestParameters: UserAuthorizationApiProcessInvitationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
996
+ /**
997
+ * Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
998
+ * @summary Update a user
999
+ * @param {UserAuthorizationApiUpdateUserRequest} requestParameters Request parameters.
1000
+ * @param {*} [options] Override http request option.
1001
+ * @throws {RequiredError}
1002
+ * @memberof UserAuthorizationApi
1003
+ */
1004
+ updateUser(requestParameters: UserAuthorizationApiUpdateUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthUser, any, {}>>;
454
1005
  }
455
1006
  //# sourceMappingURL=api.d.ts.map