@gooddata/api-client-tiger 10.35.0-alpha.51 → 10.35.0-alpha.53
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.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +874 -881
- package/esm/generated/afm-rest-api/api.d.ts +13 -12
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +11 -4
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/configuration.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/configuration.js +2 -14
- package/esm/generated/afm-rest-api/configuration.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +8 -5
- package/esm/generated/auth-json-api/api.d.ts +561 -0
- package/esm/generated/auth-json-api/api.d.ts.map +1 -1
- package/esm/generated/auth-json-api/api.js +696 -0
- package/esm/generated/auth-json-api/api.js.map +1 -1
- package/esm/generated/auth-json-api/configuration.d.ts.map +1 -1
- package/esm/generated/auth-json-api/configuration.js +2 -14
- package/esm/generated/auth-json-api/configuration.js.map +1 -1
- package/esm/generated/auth-json-api/openapi-spec.json +166 -0
- package/esm/generated/automation-json-api/api.d.ts +2 -6
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +2 -0
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/configuration.js +1 -1
- package/esm/generated/automation-json-api/configuration.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +3 -4
- package/esm/generated/export-json-api/api.d.ts +2 -6
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +2 -0
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/configuration.d.ts.map +1 -1
- package/esm/generated/export-json-api/configuration.js +2 -14
- package/esm/generated/export-json-api/configuration.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +3 -4
- package/esm/generated/metadata-json-api/api.d.ts +837 -836
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +32 -25
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/configuration.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/configuration.js +2 -14
- package/esm/generated/metadata-json-api/configuration.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +4152 -4148
- package/esm/generated/result-json-api/base.d.ts.map +1 -1
- package/esm/generated/result-json-api/base.js +1 -1
- package/esm/generated/result-json-api/base.js.map +1 -1
- package/esm/generated/result-json-api/configuration.d.ts.map +1 -1
- package/esm/generated/result-json-api/configuration.js +2 -14
- package/esm/generated/result-json-api/configuration.js.map +1 -1
- package/esm/generated/result-json-api/openapi-spec.json +1 -1
- package/package.json +3 -3
|
@@ -37,6 +37,37 @@ export interface ApiEntitlement {
|
|
|
37
37
|
*/
|
|
38
38
|
expiry?: string;
|
|
39
39
|
}
|
|
40
|
+
/**
|
|
41
|
+
* Entity representing user in authentication system.
|
|
42
|
+
* @export
|
|
43
|
+
* @interface AuthUser
|
|
44
|
+
*/
|
|
45
|
+
export interface AuthUser {
|
|
46
|
+
/**
|
|
47
|
+
* Email - used as lookup (must be unique). For PUT method, it must be same as in URL
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof AuthUser
|
|
50
|
+
*/
|
|
51
|
+
email: string;
|
|
52
|
+
/**
|
|
53
|
+
* User password. It is not returned by GET method.
|
|
54
|
+
* @type {string}
|
|
55
|
+
* @memberof AuthUser
|
|
56
|
+
*/
|
|
57
|
+
password?: string;
|
|
58
|
+
/**
|
|
59
|
+
* User description, which will be visible in application.
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof AuthUser
|
|
62
|
+
*/
|
|
63
|
+
displayName: string;
|
|
64
|
+
/**
|
|
65
|
+
* 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).
|
|
66
|
+
* @type {string}
|
|
67
|
+
* @memberof AuthUser
|
|
68
|
+
*/
|
|
69
|
+
authenticationId?: string;
|
|
70
|
+
}
|
|
40
71
|
/**
|
|
41
72
|
*
|
|
42
73
|
* @export
|
|
@@ -468,6 +499,22 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
468
499
|
* @export
|
|
469
500
|
*/
|
|
470
501
|
export declare const AuthenticationApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
502
|
+
/**
|
|
503
|
+
* Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
504
|
+
* @summary Create a user
|
|
505
|
+
* @param {AuthUser} authUser
|
|
506
|
+
* @param {*} [options] Override http request option.
|
|
507
|
+
* @throws {RequiredError}
|
|
508
|
+
*/
|
|
509
|
+
createUser: (authUser: AuthUser, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
510
|
+
/**
|
|
511
|
+
* Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
512
|
+
* @summary Delete a user
|
|
513
|
+
* @param {string} userEmail
|
|
514
|
+
* @param {*} [options] Override http request option.
|
|
515
|
+
* @throws {RequiredError}
|
|
516
|
+
*/
|
|
517
|
+
deleteUser: (userEmail: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
471
518
|
/**
|
|
472
519
|
* Returns a Profile including Organization and Current User Information.
|
|
473
520
|
* @summary Get Profile
|
|
@@ -475,12 +522,52 @@ export declare const AuthenticationApiAxiosParamCreator: (configuration?: Config
|
|
|
475
522
|
* @throws {RequiredError}
|
|
476
523
|
*/
|
|
477
524
|
getProfile: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
525
|
+
/**
|
|
526
|
+
* Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
527
|
+
* @summary Get a user
|
|
528
|
+
* @param {string} userEmail
|
|
529
|
+
* @param {*} [options] Override http request option.
|
|
530
|
+
* @throws {RequiredError}
|
|
531
|
+
*/
|
|
532
|
+
getUser: (userEmail: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
533
|
+
/**
|
|
534
|
+
* Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
535
|
+
* @summary Get all users
|
|
536
|
+
* @param {*} [options] Override http request option.
|
|
537
|
+
* @throws {RequiredError}
|
|
538
|
+
*/
|
|
539
|
+
getUsers: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
540
|
+
/**
|
|
541
|
+
* Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
542
|
+
* @summary Update a user
|
|
543
|
+
* @param {string} userEmail
|
|
544
|
+
* @param {AuthUser} authUser
|
|
545
|
+
* @param {*} [options] Override http request option.
|
|
546
|
+
* @throws {RequiredError}
|
|
547
|
+
*/
|
|
548
|
+
updateUser: (userEmail: string, authUser: AuthUser, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
478
549
|
};
|
|
479
550
|
/**
|
|
480
551
|
* AuthenticationApi - functional programming interface
|
|
481
552
|
* @export
|
|
482
553
|
*/
|
|
483
554
|
export declare const AuthenticationApiFp: (configuration?: Configuration) => {
|
|
555
|
+
/**
|
|
556
|
+
* Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
557
|
+
* @summary Create a user
|
|
558
|
+
* @param {AuthUser} authUser
|
|
559
|
+
* @param {*} [options] Override http request option.
|
|
560
|
+
* @throws {RequiredError}
|
|
561
|
+
*/
|
|
562
|
+
createUser(authUser: AuthUser, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthUser>>;
|
|
563
|
+
/**
|
|
564
|
+
* Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
565
|
+
* @summary Delete a user
|
|
566
|
+
* @param {string} userEmail
|
|
567
|
+
* @param {*} [options] Override http request option.
|
|
568
|
+
* @throws {RequiredError}
|
|
569
|
+
*/
|
|
570
|
+
deleteUser(userEmail: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
484
571
|
/**
|
|
485
572
|
* Returns a Profile including Organization and Current User Information.
|
|
486
573
|
* @summary Get Profile
|
|
@@ -488,12 +575,52 @@ export declare const AuthenticationApiFp: (configuration?: Configuration) => {
|
|
|
488
575
|
* @throws {RequiredError}
|
|
489
576
|
*/
|
|
490
577
|
getProfile(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Profile>>;
|
|
578
|
+
/**
|
|
579
|
+
* Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
580
|
+
* @summary Get a user
|
|
581
|
+
* @param {string} userEmail
|
|
582
|
+
* @param {*} [options] Override http request option.
|
|
583
|
+
* @throws {RequiredError}
|
|
584
|
+
*/
|
|
585
|
+
getUser(userEmail: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthUser>>;
|
|
586
|
+
/**
|
|
587
|
+
* Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
588
|
+
* @summary Get all users
|
|
589
|
+
* @param {*} [options] Override http request option.
|
|
590
|
+
* @throws {RequiredError}
|
|
591
|
+
*/
|
|
592
|
+
getUsers(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AuthUser>>>;
|
|
593
|
+
/**
|
|
594
|
+
* Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
595
|
+
* @summary Update a user
|
|
596
|
+
* @param {string} userEmail
|
|
597
|
+
* @param {AuthUser} authUser
|
|
598
|
+
* @param {*} [options] Override http request option.
|
|
599
|
+
* @throws {RequiredError}
|
|
600
|
+
*/
|
|
601
|
+
updateUser(userEmail: string, authUser: AuthUser, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthUser>>;
|
|
491
602
|
};
|
|
492
603
|
/**
|
|
493
604
|
* AuthenticationApi - factory interface
|
|
494
605
|
* @export
|
|
495
606
|
*/
|
|
496
607
|
export declare const AuthenticationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
608
|
+
/**
|
|
609
|
+
* Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
610
|
+
* @summary Create a user
|
|
611
|
+
* @param {AuthenticationApiCreateUserRequest} requestParameters Request parameters.
|
|
612
|
+
* @param {*} [options] Override http request option.
|
|
613
|
+
* @throws {RequiredError}
|
|
614
|
+
*/
|
|
615
|
+
createUser(requestParameters: AuthenticationApiCreateUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
|
|
616
|
+
/**
|
|
617
|
+
* Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
618
|
+
* @summary Delete a user
|
|
619
|
+
* @param {AuthenticationApiDeleteUserRequest} requestParameters Request parameters.
|
|
620
|
+
* @param {*} [options] Override http request option.
|
|
621
|
+
* @throws {RequiredError}
|
|
622
|
+
*/
|
|
623
|
+
deleteUser(requestParameters: AuthenticationApiDeleteUserRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
497
624
|
/**
|
|
498
625
|
* Returns a Profile including Organization and Current User Information.
|
|
499
626
|
* @summary Get Profile
|
|
@@ -501,6 +628,29 @@ export declare const AuthenticationApiFactory: (configuration?: Configuration, b
|
|
|
501
628
|
* @throws {RequiredError}
|
|
502
629
|
*/
|
|
503
630
|
getProfile(options?: AxiosRequestConfig): AxiosPromise<Profile>;
|
|
631
|
+
/**
|
|
632
|
+
* Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
633
|
+
* @summary Get a user
|
|
634
|
+
* @param {AuthenticationApiGetUserRequest} requestParameters Request parameters.
|
|
635
|
+
* @param {*} [options] Override http request option.
|
|
636
|
+
* @throws {RequiredError}
|
|
637
|
+
*/
|
|
638
|
+
getUser(requestParameters: AuthenticationApiGetUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
|
|
639
|
+
/**
|
|
640
|
+
* Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
641
|
+
* @summary Get all users
|
|
642
|
+
* @param {*} [options] Override http request option.
|
|
643
|
+
* @throws {RequiredError}
|
|
644
|
+
*/
|
|
645
|
+
getUsers(options?: AxiosRequestConfig): AxiosPromise<Array<AuthUser>>;
|
|
646
|
+
/**
|
|
647
|
+
* Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
648
|
+
* @summary Update a user
|
|
649
|
+
* @param {AuthenticationApiUpdateUserRequest} requestParameters Request parameters.
|
|
650
|
+
* @param {*} [options] Override http request option.
|
|
651
|
+
* @throws {RequiredError}
|
|
652
|
+
*/
|
|
653
|
+
updateUser(requestParameters: AuthenticationApiUpdateUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
|
|
504
654
|
};
|
|
505
655
|
/**
|
|
506
656
|
* AuthenticationApi - interface
|
|
@@ -508,6 +658,24 @@ export declare const AuthenticationApiFactory: (configuration?: Configuration, b
|
|
|
508
658
|
* @interface AuthenticationApi
|
|
509
659
|
*/
|
|
510
660
|
export interface AuthenticationApiInterface {
|
|
661
|
+
/**
|
|
662
|
+
* Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
663
|
+
* @summary Create a user
|
|
664
|
+
* @param {AuthenticationApiCreateUserRequest} requestParameters Request parameters.
|
|
665
|
+
* @param {*} [options] Override http request option.
|
|
666
|
+
* @throws {RequiredError}
|
|
667
|
+
* @memberof AuthenticationApiInterface
|
|
668
|
+
*/
|
|
669
|
+
createUser(requestParameters: AuthenticationApiCreateUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
|
|
670
|
+
/**
|
|
671
|
+
* Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
672
|
+
* @summary Delete a user
|
|
673
|
+
* @param {AuthenticationApiDeleteUserRequest} requestParameters Request parameters.
|
|
674
|
+
* @param {*} [options] Override http request option.
|
|
675
|
+
* @throws {RequiredError}
|
|
676
|
+
* @memberof AuthenticationApiInterface
|
|
677
|
+
*/
|
|
678
|
+
deleteUser(requestParameters: AuthenticationApiDeleteUserRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
511
679
|
/**
|
|
512
680
|
* Returns a Profile including Organization and Current User Information.
|
|
513
681
|
* @summary Get Profile
|
|
@@ -516,6 +684,90 @@ export interface AuthenticationApiInterface {
|
|
|
516
684
|
* @memberof AuthenticationApiInterface
|
|
517
685
|
*/
|
|
518
686
|
getProfile(options?: AxiosRequestConfig): AxiosPromise<Profile>;
|
|
687
|
+
/**
|
|
688
|
+
* Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
689
|
+
* @summary Get a user
|
|
690
|
+
* @param {AuthenticationApiGetUserRequest} requestParameters Request parameters.
|
|
691
|
+
* @param {*} [options] Override http request option.
|
|
692
|
+
* @throws {RequiredError}
|
|
693
|
+
* @memberof AuthenticationApiInterface
|
|
694
|
+
*/
|
|
695
|
+
getUser(requestParameters: AuthenticationApiGetUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
|
|
696
|
+
/**
|
|
697
|
+
* Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
698
|
+
* @summary Get all users
|
|
699
|
+
* @param {*} [options] Override http request option.
|
|
700
|
+
* @throws {RequiredError}
|
|
701
|
+
* @memberof AuthenticationApiInterface
|
|
702
|
+
*/
|
|
703
|
+
getUsers(options?: AxiosRequestConfig): AxiosPromise<Array<AuthUser>>;
|
|
704
|
+
/**
|
|
705
|
+
* Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
706
|
+
* @summary Update a user
|
|
707
|
+
* @param {AuthenticationApiUpdateUserRequest} requestParameters Request parameters.
|
|
708
|
+
* @param {*} [options] Override http request option.
|
|
709
|
+
* @throws {RequiredError}
|
|
710
|
+
* @memberof AuthenticationApiInterface
|
|
711
|
+
*/
|
|
712
|
+
updateUser(requestParameters: AuthenticationApiUpdateUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
|
|
713
|
+
}
|
|
714
|
+
/**
|
|
715
|
+
* Request parameters for createUser operation in AuthenticationApi.
|
|
716
|
+
* @export
|
|
717
|
+
* @interface AuthenticationApiCreateUserRequest
|
|
718
|
+
*/
|
|
719
|
+
export interface AuthenticationApiCreateUserRequest {
|
|
720
|
+
/**
|
|
721
|
+
*
|
|
722
|
+
* @type {AuthUser}
|
|
723
|
+
* @memberof AuthenticationApiCreateUser
|
|
724
|
+
*/
|
|
725
|
+
readonly authUser: AuthUser;
|
|
726
|
+
}
|
|
727
|
+
/**
|
|
728
|
+
* Request parameters for deleteUser operation in AuthenticationApi.
|
|
729
|
+
* @export
|
|
730
|
+
* @interface AuthenticationApiDeleteUserRequest
|
|
731
|
+
*/
|
|
732
|
+
export interface AuthenticationApiDeleteUserRequest {
|
|
733
|
+
/**
|
|
734
|
+
*
|
|
735
|
+
* @type {string}
|
|
736
|
+
* @memberof AuthenticationApiDeleteUser
|
|
737
|
+
*/
|
|
738
|
+
readonly userEmail: string;
|
|
739
|
+
}
|
|
740
|
+
/**
|
|
741
|
+
* Request parameters for getUser operation in AuthenticationApi.
|
|
742
|
+
* @export
|
|
743
|
+
* @interface AuthenticationApiGetUserRequest
|
|
744
|
+
*/
|
|
745
|
+
export interface AuthenticationApiGetUserRequest {
|
|
746
|
+
/**
|
|
747
|
+
*
|
|
748
|
+
* @type {string}
|
|
749
|
+
* @memberof AuthenticationApiGetUser
|
|
750
|
+
*/
|
|
751
|
+
readonly userEmail: string;
|
|
752
|
+
}
|
|
753
|
+
/**
|
|
754
|
+
* Request parameters for updateUser operation in AuthenticationApi.
|
|
755
|
+
* @export
|
|
756
|
+
* @interface AuthenticationApiUpdateUserRequest
|
|
757
|
+
*/
|
|
758
|
+
export interface AuthenticationApiUpdateUserRequest {
|
|
759
|
+
/**
|
|
760
|
+
*
|
|
761
|
+
* @type {string}
|
|
762
|
+
* @memberof AuthenticationApiUpdateUser
|
|
763
|
+
*/
|
|
764
|
+
readonly userEmail: string;
|
|
765
|
+
/**
|
|
766
|
+
*
|
|
767
|
+
* @type {AuthUser}
|
|
768
|
+
* @memberof AuthenticationApiUpdateUser
|
|
769
|
+
*/
|
|
770
|
+
readonly authUser: AuthUser;
|
|
519
771
|
}
|
|
520
772
|
/**
|
|
521
773
|
* AuthenticationApi - object-oriented interface
|
|
@@ -524,6 +776,24 @@ export interface AuthenticationApiInterface {
|
|
|
524
776
|
* @extends {BaseAPI}
|
|
525
777
|
*/
|
|
526
778
|
export declare class AuthenticationApi extends BaseAPI implements AuthenticationApiInterface {
|
|
779
|
+
/**
|
|
780
|
+
* Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
781
|
+
* @summary Create a user
|
|
782
|
+
* @param {AuthenticationApiCreateUserRequest} requestParameters Request parameters.
|
|
783
|
+
* @param {*} [options] Override http request option.
|
|
784
|
+
* @throws {RequiredError}
|
|
785
|
+
* @memberof AuthenticationApi
|
|
786
|
+
*/
|
|
787
|
+
createUser(requestParameters: AuthenticationApiCreateUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthUser, any>>;
|
|
788
|
+
/**
|
|
789
|
+
* Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
790
|
+
* @summary Delete a user
|
|
791
|
+
* @param {AuthenticationApiDeleteUserRequest} requestParameters Request parameters.
|
|
792
|
+
* @param {*} [options] Override http request option.
|
|
793
|
+
* @throws {RequiredError}
|
|
794
|
+
* @memberof AuthenticationApi
|
|
795
|
+
*/
|
|
796
|
+
deleteUser(requestParameters: AuthenticationApiDeleteUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
527
797
|
/**
|
|
528
798
|
* Returns a Profile including Organization and Current User Information.
|
|
529
799
|
* @summary Get Profile
|
|
@@ -532,12 +802,54 @@ export declare class AuthenticationApi extends BaseAPI implements Authentication
|
|
|
532
802
|
* @memberof AuthenticationApi
|
|
533
803
|
*/
|
|
534
804
|
getProfile(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Profile, any>>;
|
|
805
|
+
/**
|
|
806
|
+
* Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
807
|
+
* @summary Get a user
|
|
808
|
+
* @param {AuthenticationApiGetUserRequest} requestParameters Request parameters.
|
|
809
|
+
* @param {*} [options] Override http request option.
|
|
810
|
+
* @throws {RequiredError}
|
|
811
|
+
* @memberof AuthenticationApi
|
|
812
|
+
*/
|
|
813
|
+
getUser(requestParameters: AuthenticationApiGetUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthUser, any>>;
|
|
814
|
+
/**
|
|
815
|
+
* Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
816
|
+
* @summary Get all users
|
|
817
|
+
* @param {*} [options] Override http request option.
|
|
818
|
+
* @throws {RequiredError}
|
|
819
|
+
* @memberof AuthenticationApi
|
|
820
|
+
*/
|
|
821
|
+
getUsers(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthUser[], any>>;
|
|
822
|
+
/**
|
|
823
|
+
* Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
824
|
+
* @summary Update a user
|
|
825
|
+
* @param {AuthenticationApiUpdateUserRequest} requestParameters Request parameters.
|
|
826
|
+
* @param {*} [options] Override http request option.
|
|
827
|
+
* @throws {RequiredError}
|
|
828
|
+
* @memberof AuthenticationApi
|
|
829
|
+
*/
|
|
830
|
+
updateUser(requestParameters: AuthenticationApiUpdateUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthUser, any>>;
|
|
535
831
|
}
|
|
536
832
|
/**
|
|
537
833
|
* UserAuthorizationApi - axios parameter creator
|
|
538
834
|
* @export
|
|
539
835
|
*/
|
|
540
836
|
export declare const UserAuthorizationApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
837
|
+
/**
|
|
838
|
+
* Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
839
|
+
* @summary Create a user
|
|
840
|
+
* @param {AuthUser} authUser
|
|
841
|
+
* @param {*} [options] Override http request option.
|
|
842
|
+
* @throws {RequiredError}
|
|
843
|
+
*/
|
|
844
|
+
createUser: (authUser: AuthUser, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
845
|
+
/**
|
|
846
|
+
* Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
847
|
+
* @summary Delete a user
|
|
848
|
+
* @param {string} userEmail
|
|
849
|
+
* @param {*} [options] Override http request option.
|
|
850
|
+
* @throws {RequiredError}
|
|
851
|
+
*/
|
|
852
|
+
deleteUser: (userEmail: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
541
853
|
/**
|
|
542
854
|
* Returns a Profile including Organization and Current User Information.
|
|
543
855
|
* @summary Get Profile
|
|
@@ -545,6 +857,21 @@ export declare const UserAuthorizationApiAxiosParamCreator: (configuration?: Con
|
|
|
545
857
|
* @throws {RequiredError}
|
|
546
858
|
*/
|
|
547
859
|
getProfile: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
860
|
+
/**
|
|
861
|
+
* Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
862
|
+
* @summary Get a user
|
|
863
|
+
* @param {string} userEmail
|
|
864
|
+
* @param {*} [options] Override http request option.
|
|
865
|
+
* @throws {RequiredError}
|
|
866
|
+
*/
|
|
867
|
+
getUser: (userEmail: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
868
|
+
/**
|
|
869
|
+
* Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
870
|
+
* @summary Get all users
|
|
871
|
+
* @param {*} [options] Override http request option.
|
|
872
|
+
* @throws {RequiredError}
|
|
873
|
+
*/
|
|
874
|
+
getUsers: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
548
875
|
/**
|
|
549
876
|
* Puts a new invitation requirement into the invitation generator queue. This is a GoodData Cloud specific endpoint.
|
|
550
877
|
* @summary Invite User
|
|
@@ -553,12 +880,37 @@ export declare const UserAuthorizationApiAxiosParamCreator: (configuration?: Con
|
|
|
553
880
|
* @throws {RequiredError}
|
|
554
881
|
*/
|
|
555
882
|
processInvitation: (invitation: Invitation, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
883
|
+
/**
|
|
884
|
+
* Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
885
|
+
* @summary Update a user
|
|
886
|
+
* @param {string} userEmail
|
|
887
|
+
* @param {AuthUser} authUser
|
|
888
|
+
* @param {*} [options] Override http request option.
|
|
889
|
+
* @throws {RequiredError}
|
|
890
|
+
*/
|
|
891
|
+
updateUser: (userEmail: string, authUser: AuthUser, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
556
892
|
};
|
|
557
893
|
/**
|
|
558
894
|
* UserAuthorizationApi - functional programming interface
|
|
559
895
|
* @export
|
|
560
896
|
*/
|
|
561
897
|
export declare const UserAuthorizationApiFp: (configuration?: Configuration) => {
|
|
898
|
+
/**
|
|
899
|
+
* Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
900
|
+
* @summary Create a user
|
|
901
|
+
* @param {AuthUser} authUser
|
|
902
|
+
* @param {*} [options] Override http request option.
|
|
903
|
+
* @throws {RequiredError}
|
|
904
|
+
*/
|
|
905
|
+
createUser(authUser: AuthUser, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthUser>>;
|
|
906
|
+
/**
|
|
907
|
+
* Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
908
|
+
* @summary Delete a user
|
|
909
|
+
* @param {string} userEmail
|
|
910
|
+
* @param {*} [options] Override http request option.
|
|
911
|
+
* @throws {RequiredError}
|
|
912
|
+
*/
|
|
913
|
+
deleteUser(userEmail: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
562
914
|
/**
|
|
563
915
|
* Returns a Profile including Organization and Current User Information.
|
|
564
916
|
* @summary Get Profile
|
|
@@ -566,6 +918,21 @@ export declare const UserAuthorizationApiFp: (configuration?: Configuration) =>
|
|
|
566
918
|
* @throws {RequiredError}
|
|
567
919
|
*/
|
|
568
920
|
getProfile(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Profile>>;
|
|
921
|
+
/**
|
|
922
|
+
* Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
923
|
+
* @summary Get a user
|
|
924
|
+
* @param {string} userEmail
|
|
925
|
+
* @param {*} [options] Override http request option.
|
|
926
|
+
* @throws {RequiredError}
|
|
927
|
+
*/
|
|
928
|
+
getUser(userEmail: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthUser>>;
|
|
929
|
+
/**
|
|
930
|
+
* Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
931
|
+
* @summary Get all users
|
|
932
|
+
* @param {*} [options] Override http request option.
|
|
933
|
+
* @throws {RequiredError}
|
|
934
|
+
*/
|
|
935
|
+
getUsers(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AuthUser>>>;
|
|
569
936
|
/**
|
|
570
937
|
* Puts a new invitation requirement into the invitation generator queue. This is a GoodData Cloud specific endpoint.
|
|
571
938
|
* @summary Invite User
|
|
@@ -574,12 +941,37 @@ export declare const UserAuthorizationApiFp: (configuration?: Configuration) =>
|
|
|
574
941
|
* @throws {RequiredError}
|
|
575
942
|
*/
|
|
576
943
|
processInvitation(invitation: Invitation, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
944
|
+
/**
|
|
945
|
+
* Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
946
|
+
* @summary Update a user
|
|
947
|
+
* @param {string} userEmail
|
|
948
|
+
* @param {AuthUser} authUser
|
|
949
|
+
* @param {*} [options] Override http request option.
|
|
950
|
+
* @throws {RequiredError}
|
|
951
|
+
*/
|
|
952
|
+
updateUser(userEmail: string, authUser: AuthUser, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthUser>>;
|
|
577
953
|
};
|
|
578
954
|
/**
|
|
579
955
|
* UserAuthorizationApi - factory interface
|
|
580
956
|
* @export
|
|
581
957
|
*/
|
|
582
958
|
export declare const UserAuthorizationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
959
|
+
/**
|
|
960
|
+
* Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
961
|
+
* @summary Create a user
|
|
962
|
+
* @param {UserAuthorizationApiCreateUserRequest} requestParameters Request parameters.
|
|
963
|
+
* @param {*} [options] Override http request option.
|
|
964
|
+
* @throws {RequiredError}
|
|
965
|
+
*/
|
|
966
|
+
createUser(requestParameters: UserAuthorizationApiCreateUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
|
|
967
|
+
/**
|
|
968
|
+
* Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
969
|
+
* @summary Delete a user
|
|
970
|
+
* @param {UserAuthorizationApiDeleteUserRequest} requestParameters Request parameters.
|
|
971
|
+
* @param {*} [options] Override http request option.
|
|
972
|
+
* @throws {RequiredError}
|
|
973
|
+
*/
|
|
974
|
+
deleteUser(requestParameters: UserAuthorizationApiDeleteUserRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
583
975
|
/**
|
|
584
976
|
* Returns a Profile including Organization and Current User Information.
|
|
585
977
|
* @summary Get Profile
|
|
@@ -587,6 +979,21 @@ export declare const UserAuthorizationApiFactory: (configuration?: Configuration
|
|
|
587
979
|
* @throws {RequiredError}
|
|
588
980
|
*/
|
|
589
981
|
getProfile(options?: AxiosRequestConfig): AxiosPromise<Profile>;
|
|
982
|
+
/**
|
|
983
|
+
* Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
984
|
+
* @summary Get a user
|
|
985
|
+
* @param {UserAuthorizationApiGetUserRequest} requestParameters Request parameters.
|
|
986
|
+
* @param {*} [options] Override http request option.
|
|
987
|
+
* @throws {RequiredError}
|
|
988
|
+
*/
|
|
989
|
+
getUser(requestParameters: UserAuthorizationApiGetUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
|
|
990
|
+
/**
|
|
991
|
+
* Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
992
|
+
* @summary Get all users
|
|
993
|
+
* @param {*} [options] Override http request option.
|
|
994
|
+
* @throws {RequiredError}
|
|
995
|
+
*/
|
|
996
|
+
getUsers(options?: AxiosRequestConfig): AxiosPromise<Array<AuthUser>>;
|
|
590
997
|
/**
|
|
591
998
|
* Puts a new invitation requirement into the invitation generator queue. This is a GoodData Cloud specific endpoint.
|
|
592
999
|
* @summary Invite User
|
|
@@ -595,6 +1002,14 @@ export declare const UserAuthorizationApiFactory: (configuration?: Configuration
|
|
|
595
1002
|
* @throws {RequiredError}
|
|
596
1003
|
*/
|
|
597
1004
|
processInvitation(requestParameters: UserAuthorizationApiProcessInvitationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
1005
|
+
/**
|
|
1006
|
+
* Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
1007
|
+
* @summary Update a user
|
|
1008
|
+
* @param {UserAuthorizationApiUpdateUserRequest} requestParameters Request parameters.
|
|
1009
|
+
* @param {*} [options] Override http request option.
|
|
1010
|
+
* @throws {RequiredError}
|
|
1011
|
+
*/
|
|
1012
|
+
updateUser(requestParameters: UserAuthorizationApiUpdateUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
|
|
598
1013
|
};
|
|
599
1014
|
/**
|
|
600
1015
|
* UserAuthorizationApi - interface
|
|
@@ -602,6 +1017,24 @@ export declare const UserAuthorizationApiFactory: (configuration?: Configuration
|
|
|
602
1017
|
* @interface UserAuthorizationApi
|
|
603
1018
|
*/
|
|
604
1019
|
export interface UserAuthorizationApiInterface {
|
|
1020
|
+
/**
|
|
1021
|
+
* Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
1022
|
+
* @summary Create a user
|
|
1023
|
+
* @param {UserAuthorizationApiCreateUserRequest} requestParameters Request parameters.
|
|
1024
|
+
* @param {*} [options] Override http request option.
|
|
1025
|
+
* @throws {RequiredError}
|
|
1026
|
+
* @memberof UserAuthorizationApiInterface
|
|
1027
|
+
*/
|
|
1028
|
+
createUser(requestParameters: UserAuthorizationApiCreateUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
|
|
1029
|
+
/**
|
|
1030
|
+
* Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
1031
|
+
* @summary Delete a user
|
|
1032
|
+
* @param {UserAuthorizationApiDeleteUserRequest} requestParameters Request parameters.
|
|
1033
|
+
* @param {*} [options] Override http request option.
|
|
1034
|
+
* @throws {RequiredError}
|
|
1035
|
+
* @memberof UserAuthorizationApiInterface
|
|
1036
|
+
*/
|
|
1037
|
+
deleteUser(requestParameters: UserAuthorizationApiDeleteUserRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
605
1038
|
/**
|
|
606
1039
|
* Returns a Profile including Organization and Current User Information.
|
|
607
1040
|
* @summary Get Profile
|
|
@@ -610,6 +1043,23 @@ export interface UserAuthorizationApiInterface {
|
|
|
610
1043
|
* @memberof UserAuthorizationApiInterface
|
|
611
1044
|
*/
|
|
612
1045
|
getProfile(options?: AxiosRequestConfig): AxiosPromise<Profile>;
|
|
1046
|
+
/**
|
|
1047
|
+
* Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
1048
|
+
* @summary Get a user
|
|
1049
|
+
* @param {UserAuthorizationApiGetUserRequest} requestParameters Request parameters.
|
|
1050
|
+
* @param {*} [options] Override http request option.
|
|
1051
|
+
* @throws {RequiredError}
|
|
1052
|
+
* @memberof UserAuthorizationApiInterface
|
|
1053
|
+
*/
|
|
1054
|
+
getUser(requestParameters: UserAuthorizationApiGetUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
|
|
1055
|
+
/**
|
|
1056
|
+
* Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
1057
|
+
* @summary Get all users
|
|
1058
|
+
* @param {*} [options] Override http request option.
|
|
1059
|
+
* @throws {RequiredError}
|
|
1060
|
+
* @memberof UserAuthorizationApiInterface
|
|
1061
|
+
*/
|
|
1062
|
+
getUsers(options?: AxiosRequestConfig): AxiosPromise<Array<AuthUser>>;
|
|
613
1063
|
/**
|
|
614
1064
|
* Puts a new invitation requirement into the invitation generator queue. This is a GoodData Cloud specific endpoint.
|
|
615
1065
|
* @summary Invite User
|
|
@@ -619,6 +1069,54 @@ export interface UserAuthorizationApiInterface {
|
|
|
619
1069
|
* @memberof UserAuthorizationApiInterface
|
|
620
1070
|
*/
|
|
621
1071
|
processInvitation(requestParameters: UserAuthorizationApiProcessInvitationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
1072
|
+
/**
|
|
1073
|
+
* Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
1074
|
+
* @summary Update a user
|
|
1075
|
+
* @param {UserAuthorizationApiUpdateUserRequest} requestParameters Request parameters.
|
|
1076
|
+
* @param {*} [options] Override http request option.
|
|
1077
|
+
* @throws {RequiredError}
|
|
1078
|
+
* @memberof UserAuthorizationApiInterface
|
|
1079
|
+
*/
|
|
1080
|
+
updateUser(requestParameters: UserAuthorizationApiUpdateUserRequest, options?: AxiosRequestConfig): AxiosPromise<AuthUser>;
|
|
1081
|
+
}
|
|
1082
|
+
/**
|
|
1083
|
+
* Request parameters for createUser operation in UserAuthorizationApi.
|
|
1084
|
+
* @export
|
|
1085
|
+
* @interface UserAuthorizationApiCreateUserRequest
|
|
1086
|
+
*/
|
|
1087
|
+
export interface UserAuthorizationApiCreateUserRequest {
|
|
1088
|
+
/**
|
|
1089
|
+
*
|
|
1090
|
+
* @type {AuthUser}
|
|
1091
|
+
* @memberof UserAuthorizationApiCreateUser
|
|
1092
|
+
*/
|
|
1093
|
+
readonly authUser: AuthUser;
|
|
1094
|
+
}
|
|
1095
|
+
/**
|
|
1096
|
+
* Request parameters for deleteUser operation in UserAuthorizationApi.
|
|
1097
|
+
* @export
|
|
1098
|
+
* @interface UserAuthorizationApiDeleteUserRequest
|
|
1099
|
+
*/
|
|
1100
|
+
export interface UserAuthorizationApiDeleteUserRequest {
|
|
1101
|
+
/**
|
|
1102
|
+
*
|
|
1103
|
+
* @type {string}
|
|
1104
|
+
* @memberof UserAuthorizationApiDeleteUser
|
|
1105
|
+
*/
|
|
1106
|
+
readonly userEmail: string;
|
|
1107
|
+
}
|
|
1108
|
+
/**
|
|
1109
|
+
* Request parameters for getUser operation in UserAuthorizationApi.
|
|
1110
|
+
* @export
|
|
1111
|
+
* @interface UserAuthorizationApiGetUserRequest
|
|
1112
|
+
*/
|
|
1113
|
+
export interface UserAuthorizationApiGetUserRequest {
|
|
1114
|
+
/**
|
|
1115
|
+
*
|
|
1116
|
+
* @type {string}
|
|
1117
|
+
* @memberof UserAuthorizationApiGetUser
|
|
1118
|
+
*/
|
|
1119
|
+
readonly userEmail: string;
|
|
622
1120
|
}
|
|
623
1121
|
/**
|
|
624
1122
|
* Request parameters for processInvitation operation in UserAuthorizationApi.
|
|
@@ -633,6 +1131,25 @@ export interface UserAuthorizationApiProcessInvitationRequest {
|
|
|
633
1131
|
*/
|
|
634
1132
|
readonly invitation: Invitation;
|
|
635
1133
|
}
|
|
1134
|
+
/**
|
|
1135
|
+
* Request parameters for updateUser operation in UserAuthorizationApi.
|
|
1136
|
+
* @export
|
|
1137
|
+
* @interface UserAuthorizationApiUpdateUserRequest
|
|
1138
|
+
*/
|
|
1139
|
+
export interface UserAuthorizationApiUpdateUserRequest {
|
|
1140
|
+
/**
|
|
1141
|
+
*
|
|
1142
|
+
* @type {string}
|
|
1143
|
+
* @memberof UserAuthorizationApiUpdateUser
|
|
1144
|
+
*/
|
|
1145
|
+
readonly userEmail: string;
|
|
1146
|
+
/**
|
|
1147
|
+
*
|
|
1148
|
+
* @type {AuthUser}
|
|
1149
|
+
* @memberof UserAuthorizationApiUpdateUser
|
|
1150
|
+
*/
|
|
1151
|
+
readonly authUser: AuthUser;
|
|
1152
|
+
}
|
|
636
1153
|
/**
|
|
637
1154
|
* UserAuthorizationApi - object-oriented interface
|
|
638
1155
|
* @export
|
|
@@ -640,6 +1157,24 @@ export interface UserAuthorizationApiProcessInvitationRequest {
|
|
|
640
1157
|
* @extends {BaseAPI}
|
|
641
1158
|
*/
|
|
642
1159
|
export declare class UserAuthorizationApi extends BaseAPI implements UserAuthorizationApiInterface {
|
|
1160
|
+
/**
|
|
1161
|
+
* Create a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
1162
|
+
* @summary Create a user
|
|
1163
|
+
* @param {UserAuthorizationApiCreateUserRequest} requestParameters Request parameters.
|
|
1164
|
+
* @param {*} [options] Override http request option.
|
|
1165
|
+
* @throws {RequiredError}
|
|
1166
|
+
* @memberof UserAuthorizationApi
|
|
1167
|
+
*/
|
|
1168
|
+
createUser(requestParameters: UserAuthorizationApiCreateUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthUser, any>>;
|
|
1169
|
+
/**
|
|
1170
|
+
* Delete a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
1171
|
+
* @summary Delete a user
|
|
1172
|
+
* @param {UserAuthorizationApiDeleteUserRequest} requestParameters Request parameters.
|
|
1173
|
+
* @param {*} [options] Override http request option.
|
|
1174
|
+
* @throws {RequiredError}
|
|
1175
|
+
* @memberof UserAuthorizationApi
|
|
1176
|
+
*/
|
|
1177
|
+
deleteUser(requestParameters: UserAuthorizationApiDeleteUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
643
1178
|
/**
|
|
644
1179
|
* Returns a Profile including Organization and Current User Information.
|
|
645
1180
|
* @summary Get Profile
|
|
@@ -648,6 +1183,23 @@ export declare class UserAuthorizationApi extends BaseAPI implements UserAuthori
|
|
|
648
1183
|
* @memberof UserAuthorizationApi
|
|
649
1184
|
*/
|
|
650
1185
|
getProfile(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Profile, any>>;
|
|
1186
|
+
/**
|
|
1187
|
+
* Get a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
1188
|
+
* @summary Get a user
|
|
1189
|
+
* @param {UserAuthorizationApiGetUserRequest} requestParameters Request parameters.
|
|
1190
|
+
* @param {*} [options] Override http request option.
|
|
1191
|
+
* @throws {RequiredError}
|
|
1192
|
+
* @memberof UserAuthorizationApi
|
|
1193
|
+
*/
|
|
1194
|
+
getUser(requestParameters: UserAuthorizationApiGetUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthUser, any>>;
|
|
1195
|
+
/**
|
|
1196
|
+
* Get all users - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
1197
|
+
* @summary Get all users
|
|
1198
|
+
* @param {*} [options] Override http request option.
|
|
1199
|
+
* @throws {RequiredError}
|
|
1200
|
+
* @memberof UserAuthorizationApi
|
|
1201
|
+
*/
|
|
1202
|
+
getUsers(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthUser[], any>>;
|
|
651
1203
|
/**
|
|
652
1204
|
* Puts a new invitation requirement into the invitation generator queue. This is a GoodData Cloud specific endpoint.
|
|
653
1205
|
* @summary Invite User
|
|
@@ -657,5 +1209,14 @@ export declare class UserAuthorizationApi extends BaseAPI implements UserAuthori
|
|
|
657
1209
|
* @memberof UserAuthorizationApi
|
|
658
1210
|
*/
|
|
659
1211
|
processInvitation(requestParameters: UserAuthorizationApiProcessInvitationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1212
|
+
/**
|
|
1213
|
+
* Update a user - dedicated endpoint for user management in the internal OIDC provider. GoodData.CN specific
|
|
1214
|
+
* @summary Update a user
|
|
1215
|
+
* @param {UserAuthorizationApiUpdateUserRequest} requestParameters Request parameters.
|
|
1216
|
+
* @param {*} [options] Override http request option.
|
|
1217
|
+
* @throws {RequiredError}
|
|
1218
|
+
* @memberof UserAuthorizationApi
|
|
1219
|
+
*/
|
|
1220
|
+
updateUser(requestParameters: UserAuthorizationApiUpdateUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthUser, any>>;
|
|
660
1221
|
}
|
|
661
1222
|
//# sourceMappingURL=api.d.ts.map
|