@gooddata/api-client-tiger 11.5.0-alpha.4 → 11.5.0-alpha.5
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 +543 -513
- package/esm/execution.d.ts +1 -1
- package/esm/execution.d.ts.map +1 -1
- package/esm/execution.js +1 -0
- package/esm/execution.js.map +1 -1
- package/esm/executionResult.d.ts +1 -1
- package/esm/executionResult.d.ts.map +1 -1
- package/esm/executionResult.js +1 -0
- package/esm/executionResult.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +68 -42
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +0 -23
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +102 -59
- package/esm/generated/auth-json-api/api.d.ts +0 -551
- package/esm/generated/auth-json-api/api.d.ts.map +1 -1
- package/esm/generated/auth-json-api/api.js +0 -696
- package/esm/generated/auth-json-api/api.js.map +1 -1
- package/esm/generated/auth-json-api/openapi-spec.json +0 -166
- package/esm/generated/automation-json-api/api.d.ts +1 -0
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +1 -0
- package/esm/generated/metadata-json-api/api.d.ts +412 -408
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +66 -68
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +5984 -6053
- 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/openapi-spec.json +1 -1
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -41,27 +41,6 @@ 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
|
-
}
|
|
65
44
|
export interface FeatureFlagsContext {
|
|
66
45
|
earlyAccessValues: Array<string>;
|
|
67
46
|
earlyAccess: string;
|
|
@@ -283,22 +262,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
283
262
|
* @export
|
|
284
263
|
*/
|
|
285
264
|
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>;
|
|
302
265
|
/**
|
|
303
266
|
* Returns a Profile including Organization and Current User Information.
|
|
304
267
|
* @summary Get Profile
|
|
@@ -306,52 +269,12 @@ export declare const AuthenticationApiAxiosParamCreator: (configuration?: Config
|
|
|
306
269
|
* @throws {RequiredError}
|
|
307
270
|
*/
|
|
308
271
|
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>;
|
|
333
272
|
};
|
|
334
273
|
/**
|
|
335
274
|
* AuthenticationApi - functional programming interface
|
|
336
275
|
* @export
|
|
337
276
|
*/
|
|
338
277
|
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>>;
|
|
355
278
|
/**
|
|
356
279
|
* Returns a Profile including Organization and Current User Information.
|
|
357
280
|
* @summary Get Profile
|
|
@@ -359,52 +282,12 @@ export declare const AuthenticationApiFp: (configuration?: Configuration) => {
|
|
|
359
282
|
* @throws {RequiredError}
|
|
360
283
|
*/
|
|
361
284
|
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>>;
|
|
386
285
|
};
|
|
387
286
|
/**
|
|
388
287
|
* AuthenticationApi - factory interface
|
|
389
288
|
* @export
|
|
390
289
|
*/
|
|
391
290
|
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>;
|
|
408
291
|
/**
|
|
409
292
|
* Returns a Profile including Organization and Current User Information.
|
|
410
293
|
* @summary Get Profile
|
|
@@ -412,29 +295,6 @@ export declare const AuthenticationApiFactory: (configuration?: Configuration, b
|
|
|
412
295
|
* @throws {RequiredError}
|
|
413
296
|
*/
|
|
414
297
|
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>;
|
|
438
298
|
};
|
|
439
299
|
/**
|
|
440
300
|
* AuthenticationApi - interface
|
|
@@ -442,24 +302,6 @@ export declare const AuthenticationApiFactory: (configuration?: Configuration, b
|
|
|
442
302
|
* @interface AuthenticationApi
|
|
443
303
|
*/
|
|
444
304
|
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>;
|
|
463
305
|
/**
|
|
464
306
|
* Returns a Profile including Organization and Current User Information.
|
|
465
307
|
* @summary Get Profile
|
|
@@ -468,90 +310,6 @@ export interface AuthenticationApiInterface {
|
|
|
468
310
|
* @memberof AuthenticationApiInterface
|
|
469
311
|
*/
|
|
470
312
|
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;
|
|
555
313
|
}
|
|
556
314
|
/**
|
|
557
315
|
* AuthenticationApi - object-oriented interface
|
|
@@ -560,24 +318,6 @@ export interface AuthenticationApiUpdateUserRequest {
|
|
|
560
318
|
* @extends {BaseAPI}
|
|
561
319
|
*/
|
|
562
320
|
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, {}>>;
|
|
581
321
|
/**
|
|
582
322
|
* Returns a Profile including Organization and Current User Information.
|
|
583
323
|
* @summary Get Profile
|
|
@@ -586,54 +326,12 @@ export declare class AuthenticationApi extends BaseAPI implements Authentication
|
|
|
586
326
|
* @memberof AuthenticationApi
|
|
587
327
|
*/
|
|
588
328
|
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, {}>>;
|
|
615
329
|
}
|
|
616
330
|
/**
|
|
617
331
|
* UserAuthorizationApi - axios parameter creator
|
|
618
332
|
* @export
|
|
619
333
|
*/
|
|
620
334
|
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>;
|
|
637
335
|
/**
|
|
638
336
|
* Returns a Profile including Organization and Current User Information.
|
|
639
337
|
* @summary Get Profile
|
|
@@ -641,21 +339,6 @@ export declare const UserAuthorizationApiAxiosParamCreator: (configuration?: Con
|
|
|
641
339
|
* @throws {RequiredError}
|
|
642
340
|
*/
|
|
643
341
|
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>;
|
|
659
342
|
/**
|
|
660
343
|
* Puts a new invitation requirement into the invitation generator queue. This is a GoodData Cloud specific endpoint.
|
|
661
344
|
* @summary Invite User
|
|
@@ -664,37 +347,12 @@ export declare const UserAuthorizationApiAxiosParamCreator: (configuration?: Con
|
|
|
664
347
|
* @throws {RequiredError}
|
|
665
348
|
*/
|
|
666
349
|
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>;
|
|
676
350
|
};
|
|
677
351
|
/**
|
|
678
352
|
* UserAuthorizationApi - functional programming interface
|
|
679
353
|
* @export
|
|
680
354
|
*/
|
|
681
355
|
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>>;
|
|
698
356
|
/**
|
|
699
357
|
* Returns a Profile including Organization and Current User Information.
|
|
700
358
|
* @summary Get Profile
|
|
@@ -702,21 +360,6 @@ export declare const UserAuthorizationApiFp: (configuration?: Configuration) =>
|
|
|
702
360
|
* @throws {RequiredError}
|
|
703
361
|
*/
|
|
704
362
|
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>>>;
|
|
720
363
|
/**
|
|
721
364
|
* Puts a new invitation requirement into the invitation generator queue. This is a GoodData Cloud specific endpoint.
|
|
722
365
|
* @summary Invite User
|
|
@@ -725,37 +368,12 @@ export declare const UserAuthorizationApiFp: (configuration?: Configuration) =>
|
|
|
725
368
|
* @throws {RequiredError}
|
|
726
369
|
*/
|
|
727
370
|
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>>;
|
|
737
371
|
};
|
|
738
372
|
/**
|
|
739
373
|
* UserAuthorizationApi - factory interface
|
|
740
374
|
* @export
|
|
741
375
|
*/
|
|
742
376
|
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>;
|
|
759
377
|
/**
|
|
760
378
|
* Returns a Profile including Organization and Current User Information.
|
|
761
379
|
* @summary Get Profile
|
|
@@ -763,21 +381,6 @@ export declare const UserAuthorizationApiFactory: (configuration?: Configuration
|
|
|
763
381
|
* @throws {RequiredError}
|
|
764
382
|
*/
|
|
765
383
|
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>>;
|
|
781
384
|
/**
|
|
782
385
|
* Puts a new invitation requirement into the invitation generator queue. This is a GoodData Cloud specific endpoint.
|
|
783
386
|
* @summary Invite User
|
|
@@ -786,14 +389,6 @@ export declare const UserAuthorizationApiFactory: (configuration?: Configuration
|
|
|
786
389
|
* @throws {RequiredError}
|
|
787
390
|
*/
|
|
788
391
|
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>;
|
|
797
392
|
};
|
|
798
393
|
/**
|
|
799
394
|
* UserAuthorizationApi - interface
|
|
@@ -801,24 +396,6 @@ export declare const UserAuthorizationApiFactory: (configuration?: Configuration
|
|
|
801
396
|
* @interface UserAuthorizationApi
|
|
802
397
|
*/
|
|
803
398
|
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>;
|
|
822
399
|
/**
|
|
823
400
|
* Returns a Profile including Organization and Current User Information.
|
|
824
401
|
* @summary Get Profile
|
|
@@ -827,23 +404,6 @@ export interface UserAuthorizationApiInterface {
|
|
|
827
404
|
* @memberof UserAuthorizationApiInterface
|
|
828
405
|
*/
|
|
829
406
|
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>>;
|
|
847
407
|
/**
|
|
848
408
|
* Puts a new invitation requirement into the invitation generator queue. This is a GoodData Cloud specific endpoint.
|
|
849
409
|
* @summary Invite User
|
|
@@ -853,54 +413,6 @@ export interface UserAuthorizationApiInterface {
|
|
|
853
413
|
* @memberof UserAuthorizationApiInterface
|
|
854
414
|
*/
|
|
855
415
|
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;
|
|
904
416
|
}
|
|
905
417
|
/**
|
|
906
418
|
* Request parameters for processInvitation operation in UserAuthorizationApi.
|
|
@@ -915,25 +427,6 @@ export interface UserAuthorizationApiProcessInvitationRequest {
|
|
|
915
427
|
*/
|
|
916
428
|
readonly invitation: Invitation;
|
|
917
429
|
}
|
|
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
|
-
}
|
|
937
430
|
/**
|
|
938
431
|
* UserAuthorizationApi - object-oriented interface
|
|
939
432
|
* @export
|
|
@@ -941,24 +434,6 @@ export interface UserAuthorizationApiUpdateUserRequest {
|
|
|
941
434
|
* @extends {BaseAPI}
|
|
942
435
|
*/
|
|
943
436
|
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, {}>>;
|
|
962
437
|
/**
|
|
963
438
|
* Returns a Profile including Organization and Current User Information.
|
|
964
439
|
* @summary Get Profile
|
|
@@ -967,23 +442,6 @@ export declare class UserAuthorizationApi extends BaseAPI implements UserAuthori
|
|
|
967
442
|
* @memberof UserAuthorizationApi
|
|
968
443
|
*/
|
|
969
444
|
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, {}>>;
|
|
987
445
|
/**
|
|
988
446
|
* Puts a new invitation requirement into the invitation generator queue. This is a GoodData Cloud specific endpoint.
|
|
989
447
|
* @summary Invite User
|
|
@@ -993,14 +451,5 @@ export declare class UserAuthorizationApi extends BaseAPI implements UserAuthori
|
|
|
993
451
|
* @memberof UserAuthorizationApi
|
|
994
452
|
*/
|
|
995
453
|
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, {}>>;
|
|
1005
454
|
}
|
|
1006
455
|
//# sourceMappingURL=api.d.ts.map
|