sailpoint-api-client 1.6.7 → 1.6.9
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/beta/README.md +2 -2
- package/beta/api.ts +87 -577
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +81 -452
- package/dist/beta/api.js +30 -300
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/generic/api.d.ts +386 -0
- package/dist/generic/api.js +689 -0
- package/dist/generic/api.js.map +1 -0
- package/dist/generic/base.d.ts +66 -0
- package/dist/generic/base.js +89 -0
- package/dist/generic/base.js.map +1 -0
- package/dist/generic/common.d.ts +65 -0
- package/dist/generic/common.js +260 -0
- package/dist/generic/common.js.map +1 -0
- package/dist/generic/configuration.d.ts +91 -0
- package/dist/generic/configuration.js +46 -0
- package/dist/generic/configuration.js.map +1 -0
- package/dist/generic/index.d.ts +13 -0
- package/dist/generic/index.js +32 -0
- package/dist/generic/index.js.map +1 -0
- package/dist/index.d.ts +5 -4
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/paginator.d.ts +3 -1
- package/dist/paginator.js +146 -0
- package/dist/paginator.js.map +1 -1
- package/dist/v2024/api.d.ts +1838 -575
- package/dist/v2024/api.js +1894 -593
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2025/api.d.ts +4368 -679
- package/dist/v2025/api.js +3866 -904
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +1 -1
- package/dist/v3/api.d.ts +45 -83
- package/dist/v3/api.js +31 -30
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/generic/.openapi-generator/FILES +11 -0
- package/generic/.openapi-generator/VERSION +1 -0
- package/generic/.openapi-generator-ignore +23 -0
- package/generic/README.md +46 -0
- package/generic/api.ts +681 -0
- package/generic/base.ts +86 -0
- package/generic/common.ts +159 -0
- package/generic/configuration.ts +110 -0
- package/generic/git_push.sh +57 -0
- package/generic/index.ts +18 -0
- package/generic/package.json +34 -0
- package/generic/tsconfig.json +21 -0
- package/index.ts +9 -7
- package/package.json +1 -1
- package/paginator.ts +137 -11
- package/v2024/README.md +2 -2
- package/v2024/api.ts +3049 -1208
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +7717 -2573
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +61 -97
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/v2024/api.d.ts
CHANGED
|
@@ -14648,35 +14648,6 @@ export declare const EntitlementOwnerV2024TypeV2024: {
|
|
|
14648
14648
|
readonly Identity: "IDENTITY";
|
|
14649
14649
|
};
|
|
14650
14650
|
export type EntitlementOwnerV2024TypeV2024 = typeof EntitlementOwnerV2024TypeV2024[keyof typeof EntitlementOwnerV2024TypeV2024];
|
|
14651
|
-
/**
|
|
14652
|
-
* Entitlement including a specific set of access.
|
|
14653
|
-
* @export
|
|
14654
|
-
* @interface EntitlementRef1V2024
|
|
14655
|
-
*/
|
|
14656
|
-
export interface EntitlementRef1V2024 {
|
|
14657
|
-
/**
|
|
14658
|
-
* Entitlement\'s DTO type.
|
|
14659
|
-
* @type {string}
|
|
14660
|
-
* @memberof EntitlementRef1V2024
|
|
14661
|
-
*/
|
|
14662
|
-
'type'?: EntitlementRef1V2024TypeV2024;
|
|
14663
|
-
/**
|
|
14664
|
-
* Entitlement\'s ID.
|
|
14665
|
-
* @type {string}
|
|
14666
|
-
* @memberof EntitlementRef1V2024
|
|
14667
|
-
*/
|
|
14668
|
-
'id'?: string;
|
|
14669
|
-
/**
|
|
14670
|
-
* Entitlement\'s display name.
|
|
14671
|
-
* @type {string}
|
|
14672
|
-
* @memberof EntitlementRef1V2024
|
|
14673
|
-
*/
|
|
14674
|
-
'name'?: string;
|
|
14675
|
-
}
|
|
14676
|
-
export declare const EntitlementRef1V2024TypeV2024: {
|
|
14677
|
-
readonly Entitlement: "ENTITLEMENT";
|
|
14678
|
-
};
|
|
14679
|
-
export type EntitlementRef1V2024TypeV2024 = typeof EntitlementRef1V2024TypeV2024[keyof typeof EntitlementRef1V2024TypeV2024];
|
|
14680
14651
|
/**
|
|
14681
14652
|
* Entitlement including a specific set of access.
|
|
14682
14653
|
* @export
|
|
@@ -16871,17 +16842,11 @@ export type FormInstanceRecipientV2024TypeV2024 = typeof FormInstanceRecipientV2
|
|
|
16871
16842
|
*/
|
|
16872
16843
|
export interface FormInstanceResponseV2024 {
|
|
16873
16844
|
/**
|
|
16874
|
-
*
|
|
16845
|
+
* Unique guid identifying this form instance
|
|
16875
16846
|
* @type {string}
|
|
16876
16847
|
* @memberof FormInstanceResponseV2024
|
|
16877
16848
|
*/
|
|
16878
|
-
'
|
|
16879
|
-
/**
|
|
16880
|
-
*
|
|
16881
|
-
* @type {FormInstanceCreatedByV2024}
|
|
16882
|
-
* @memberof FormInstanceResponseV2024
|
|
16883
|
-
*/
|
|
16884
|
-
'createdBy'?: FormInstanceCreatedByV2024;
|
|
16849
|
+
'id'?: string;
|
|
16885
16850
|
/**
|
|
16886
16851
|
* Expire is the maximum amount of time that a form can be in progress. After this time is reached then the form will be moved to a CANCELED state automatically. The user will no longer be able to complete the submission. When a form instance is expires an audit log will be generated for that record
|
|
16887
16852
|
* @type {string}
|
|
@@ -16889,37 +16854,35 @@ export interface FormInstanceResponseV2024 {
|
|
|
16889
16854
|
*/
|
|
16890
16855
|
'expire'?: string;
|
|
16891
16856
|
/**
|
|
16892
|
-
*
|
|
16893
|
-
* @type {
|
|
16857
|
+
* State the state of the form instance ASSIGNED FormInstanceStateAssigned IN_PROGRESS FormInstanceStateInProgress SUBMITTED FormInstanceStateSubmitted COMPLETED FormInstanceStateCompleted CANCELLED FormInstanceStateCancelled
|
|
16858
|
+
* @type {string}
|
|
16894
16859
|
* @memberof FormInstanceResponseV2024
|
|
16895
16860
|
*/
|
|
16896
|
-
'
|
|
16861
|
+
'state'?: FormInstanceResponseV2024StateV2024;
|
|
16897
16862
|
/**
|
|
16898
|
-
*
|
|
16899
|
-
* @type {
|
|
16863
|
+
* StandAloneForm is a boolean flag to indicate if this form should be available for users to complete via the standalone form UI or should this only be available to be completed by as an embedded form
|
|
16864
|
+
* @type {boolean}
|
|
16900
16865
|
* @memberof FormInstanceResponseV2024
|
|
16901
16866
|
*/
|
|
16902
|
-
'
|
|
16903
|
-
[key: string]: any;
|
|
16904
|
-
} | null;
|
|
16867
|
+
'standAloneForm'?: boolean;
|
|
16905
16868
|
/**
|
|
16906
|
-
*
|
|
16869
|
+
* StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI
|
|
16907
16870
|
* @type {string}
|
|
16908
16871
|
* @memberof FormInstanceResponseV2024
|
|
16909
16872
|
*/
|
|
16910
|
-
'
|
|
16873
|
+
'standAloneFormUrl'?: string;
|
|
16911
16874
|
/**
|
|
16912
|
-
*
|
|
16913
|
-
* @type {
|
|
16875
|
+
*
|
|
16876
|
+
* @type {FormInstanceCreatedByV2024}
|
|
16914
16877
|
* @memberof FormInstanceResponseV2024
|
|
16915
16878
|
*/
|
|
16916
|
-
'
|
|
16879
|
+
'createdBy'?: FormInstanceCreatedByV2024;
|
|
16917
16880
|
/**
|
|
16918
|
-
*
|
|
16919
|
-
* @type {
|
|
16881
|
+
* FormDefinitionID is the id of the form definition that created this form
|
|
16882
|
+
* @type {string}
|
|
16920
16883
|
* @memberof FormInstanceResponseV2024
|
|
16921
16884
|
*/
|
|
16922
|
-
'
|
|
16885
|
+
'formDefinitionId'?: string;
|
|
16923
16886
|
/**
|
|
16924
16887
|
* FormInput is an object of form input labels to value
|
|
16925
16888
|
* @type {{ [key: string]: object; }}
|
|
@@ -16929,41 +16892,49 @@ export interface FormInstanceResponseV2024 {
|
|
|
16929
16892
|
[key: string]: object;
|
|
16930
16893
|
} | null;
|
|
16931
16894
|
/**
|
|
16932
|
-
*
|
|
16933
|
-
* @type {
|
|
16895
|
+
* FormElements is the configuration of the form, this would be a repeat of the fields from the form-config
|
|
16896
|
+
* @type {Array<FormElementV2024>}
|
|
16934
16897
|
* @memberof FormInstanceResponseV2024
|
|
16935
16898
|
*/
|
|
16936
|
-
'
|
|
16899
|
+
'formElements'?: Array<FormElementV2024>;
|
|
16937
16900
|
/**
|
|
16938
|
-
*
|
|
16939
|
-
* @type {string}
|
|
16901
|
+
* FormData is the data provided by the form on submit. The data is in a key -> value map
|
|
16902
|
+
* @type {{ [key: string]: any; }}
|
|
16940
16903
|
* @memberof FormInstanceResponseV2024
|
|
16941
16904
|
*/
|
|
16942
|
-
'
|
|
16905
|
+
'formData'?: {
|
|
16906
|
+
[key: string]: any;
|
|
16907
|
+
} | null;
|
|
16943
16908
|
/**
|
|
16944
|
-
*
|
|
16945
|
-
* @type {Array<
|
|
16909
|
+
* FormErrors is an array of form validation errors from the last time the form instance was transitioned to the SUBMITTED state. If the form instance had validation errors then it would be moved to the IN PROGRESS state where the client can retrieve these errors
|
|
16910
|
+
* @type {Array<FormErrorV2024>}
|
|
16946
16911
|
* @memberof FormInstanceResponseV2024
|
|
16947
16912
|
*/
|
|
16948
|
-
'
|
|
16913
|
+
'formErrors'?: Array<FormErrorV2024>;
|
|
16949
16914
|
/**
|
|
16950
|
-
*
|
|
16951
|
-
* @type {
|
|
16915
|
+
* FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form
|
|
16916
|
+
* @type {Array<FormConditionV2024>}
|
|
16952
16917
|
* @memberof FormInstanceResponseV2024
|
|
16953
16918
|
*/
|
|
16954
|
-
'
|
|
16919
|
+
'formConditions'?: Array<FormConditionV2024>;
|
|
16955
16920
|
/**
|
|
16956
|
-
*
|
|
16921
|
+
* Created is the date the form instance was assigned
|
|
16957
16922
|
* @type {string}
|
|
16958
16923
|
* @memberof FormInstanceResponseV2024
|
|
16959
16924
|
*/
|
|
16960
|
-
'
|
|
16925
|
+
'created'?: string;
|
|
16961
16926
|
/**
|
|
16962
|
-
*
|
|
16927
|
+
* Modified is the last date the form instance was modified
|
|
16963
16928
|
* @type {string}
|
|
16964
16929
|
* @memberof FormInstanceResponseV2024
|
|
16965
16930
|
*/
|
|
16966
|
-
'
|
|
16931
|
+
'modified'?: string;
|
|
16932
|
+
/**
|
|
16933
|
+
* Recipients references to the recipient of a form. The recipients are those who are responsible for filling out a form and completing it
|
|
16934
|
+
* @type {Array<FormInstanceRecipientV2024>}
|
|
16935
|
+
* @memberof FormInstanceResponseV2024
|
|
16936
|
+
*/
|
|
16937
|
+
'recipients'?: Array<FormInstanceRecipientV2024>;
|
|
16967
16938
|
}
|
|
16968
16939
|
export declare const FormInstanceResponseV2024StateV2024: {
|
|
16969
16940
|
readonly Assigned: "ASSIGNED";
|
|
@@ -17637,6 +17608,25 @@ export declare const GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemT
|
|
|
17637
17608
|
readonly AccessProfile: "accessProfile";
|
|
17638
17609
|
};
|
|
17639
17610
|
export type GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024 = typeof GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024[keyof typeof GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024];
|
|
17611
|
+
/**
|
|
17612
|
+
*
|
|
17613
|
+
* @export
|
|
17614
|
+
* @interface GetLaunchers200ResponseV2024
|
|
17615
|
+
*/
|
|
17616
|
+
export interface GetLaunchers200ResponseV2024 {
|
|
17617
|
+
/**
|
|
17618
|
+
* Pagination marker
|
|
17619
|
+
* @type {string}
|
|
17620
|
+
* @memberof GetLaunchers200ResponseV2024
|
|
17621
|
+
*/
|
|
17622
|
+
'next'?: string;
|
|
17623
|
+
/**
|
|
17624
|
+
*
|
|
17625
|
+
* @type {Array<LauncherV2024>}
|
|
17626
|
+
* @memberof GetLaunchers200ResponseV2024
|
|
17627
|
+
*/
|
|
17628
|
+
'items'?: Array<LauncherV2024>;
|
|
17629
|
+
}
|
|
17640
17630
|
/**
|
|
17641
17631
|
*
|
|
17642
17632
|
* @export
|
|
@@ -19428,6 +19418,184 @@ export interface IdentityEntitiesV2024 {
|
|
|
19428
19418
|
*/
|
|
19429
19419
|
'identityEntity'?: IdentityEntitiesIdentityEntityV2024;
|
|
19430
19420
|
}
|
|
19421
|
+
/**
|
|
19422
|
+
*
|
|
19423
|
+
* @export
|
|
19424
|
+
* @interface IdentityEntitlementDetailsAccountTargetV2024
|
|
19425
|
+
*/
|
|
19426
|
+
export interface IdentityEntitlementDetailsAccountTargetV2024 {
|
|
19427
|
+
/**
|
|
19428
|
+
* The id of account
|
|
19429
|
+
* @type {string}
|
|
19430
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
19431
|
+
*/
|
|
19432
|
+
'accountId'?: string;
|
|
19433
|
+
/**
|
|
19434
|
+
* The name of account
|
|
19435
|
+
* @type {string}
|
|
19436
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
19437
|
+
*/
|
|
19438
|
+
'accountName'?: string;
|
|
19439
|
+
/**
|
|
19440
|
+
* The UUID representation of the account if available
|
|
19441
|
+
* @type {string}
|
|
19442
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
19443
|
+
*/
|
|
19444
|
+
'accountUUID'?: string | null;
|
|
19445
|
+
/**
|
|
19446
|
+
* The id of Source
|
|
19447
|
+
* @type {string}
|
|
19448
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
19449
|
+
*/
|
|
19450
|
+
'sourceId'?: string;
|
|
19451
|
+
/**
|
|
19452
|
+
* The name of Source
|
|
19453
|
+
* @type {string}
|
|
19454
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
19455
|
+
*/
|
|
19456
|
+
'sourceName'?: string;
|
|
19457
|
+
/**
|
|
19458
|
+
* The removal date scheduled for the entitlement on the Identity
|
|
19459
|
+
* @type {string}
|
|
19460
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
19461
|
+
*/
|
|
19462
|
+
'removeDate'?: string | null;
|
|
19463
|
+
/**
|
|
19464
|
+
* The assignmentId of the entitlement on the Identity
|
|
19465
|
+
* @type {string}
|
|
19466
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
19467
|
+
*/
|
|
19468
|
+
'assignmentId'?: string | null;
|
|
19469
|
+
/**
|
|
19470
|
+
* If the entitlement can be revoked
|
|
19471
|
+
* @type {boolean}
|
|
19472
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
19473
|
+
*/
|
|
19474
|
+
'revocable'?: boolean;
|
|
19475
|
+
}
|
|
19476
|
+
/**
|
|
19477
|
+
*
|
|
19478
|
+
* @export
|
|
19479
|
+
* @interface IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19480
|
+
*/
|
|
19481
|
+
export interface IdentityEntitlementDetailsEntitlementDtoV2024 {
|
|
19482
|
+
/**
|
|
19483
|
+
* The entitlement id
|
|
19484
|
+
* @type {string}
|
|
19485
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19486
|
+
*/
|
|
19487
|
+
'id'?: string;
|
|
19488
|
+
/**
|
|
19489
|
+
* The entitlement name
|
|
19490
|
+
* @type {string}
|
|
19491
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19492
|
+
*/
|
|
19493
|
+
'name'?: string;
|
|
19494
|
+
/**
|
|
19495
|
+
* Time when the entitlement was last modified
|
|
19496
|
+
* @type {string}
|
|
19497
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19498
|
+
*/
|
|
19499
|
+
'created'?: string;
|
|
19500
|
+
/**
|
|
19501
|
+
* Time when the entitlement was last modified
|
|
19502
|
+
* @type {string}
|
|
19503
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19504
|
+
*/
|
|
19505
|
+
'modified'?: string;
|
|
19506
|
+
/**
|
|
19507
|
+
* The description of the entitlement
|
|
19508
|
+
* @type {string}
|
|
19509
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19510
|
+
*/
|
|
19511
|
+
'description'?: string | null;
|
|
19512
|
+
/**
|
|
19513
|
+
* The type of the object, will always be \"ENTITLEMENT\"
|
|
19514
|
+
* @type {string}
|
|
19515
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19516
|
+
*/
|
|
19517
|
+
'type'?: string;
|
|
19518
|
+
/**
|
|
19519
|
+
* The source ID
|
|
19520
|
+
* @type {string}
|
|
19521
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19522
|
+
*/
|
|
19523
|
+
'sourceId'?: string;
|
|
19524
|
+
/**
|
|
19525
|
+
* The source name
|
|
19526
|
+
* @type {string}
|
|
19527
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19528
|
+
*/
|
|
19529
|
+
'sourceName'?: string;
|
|
19530
|
+
/**
|
|
19531
|
+
*
|
|
19532
|
+
* @type {OwnerDtoV2024}
|
|
19533
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19534
|
+
*/
|
|
19535
|
+
'owner'?: OwnerDtoV2024;
|
|
19536
|
+
/**
|
|
19537
|
+
* The value of the entitlement
|
|
19538
|
+
* @type {string}
|
|
19539
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19540
|
+
*/
|
|
19541
|
+
'value'?: string;
|
|
19542
|
+
/**
|
|
19543
|
+
* a list of properties informing the viewer about the entitlement
|
|
19544
|
+
* @type {Array<string>}
|
|
19545
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19546
|
+
*/
|
|
19547
|
+
'flags'?: Array<string>;
|
|
19548
|
+
}
|
|
19549
|
+
/**
|
|
19550
|
+
*
|
|
19551
|
+
* @export
|
|
19552
|
+
* @interface IdentityEntitlementDetailsV2024
|
|
19553
|
+
*/
|
|
19554
|
+
export interface IdentityEntitlementDetailsV2024 {
|
|
19555
|
+
/**
|
|
19556
|
+
* Id of Identity
|
|
19557
|
+
* @type {string}
|
|
19558
|
+
* @memberof IdentityEntitlementDetailsV2024
|
|
19559
|
+
*/
|
|
19560
|
+
'identityId'?: string;
|
|
19561
|
+
/**
|
|
19562
|
+
*
|
|
19563
|
+
* @type {IdentityEntitlementDetailsEntitlementDtoV2024}
|
|
19564
|
+
* @memberof IdentityEntitlementDetailsV2024
|
|
19565
|
+
*/
|
|
19566
|
+
'entitlement'?: IdentityEntitlementDetailsEntitlementDtoV2024;
|
|
19567
|
+
/**
|
|
19568
|
+
* Id of Source
|
|
19569
|
+
* @type {string}
|
|
19570
|
+
* @memberof IdentityEntitlementDetailsV2024
|
|
19571
|
+
*/
|
|
19572
|
+
'sourceId'?: string;
|
|
19573
|
+
/**
|
|
19574
|
+
* A list of account targets on the identity provisioned with the requested entitlement.
|
|
19575
|
+
* @type {Array<IdentityEntitlementDetailsAccountTargetV2024>}
|
|
19576
|
+
* @memberof IdentityEntitlementDetailsV2024
|
|
19577
|
+
*/
|
|
19578
|
+
'accountTargets'?: Array<IdentityEntitlementDetailsAccountTargetV2024>;
|
|
19579
|
+
}
|
|
19580
|
+
/**
|
|
19581
|
+
*
|
|
19582
|
+
* @export
|
|
19583
|
+
* @interface IdentityEntitlementsV2024
|
|
19584
|
+
*/
|
|
19585
|
+
export interface IdentityEntitlementsV2024 {
|
|
19586
|
+
/**
|
|
19587
|
+
*
|
|
19588
|
+
* @type {TaggedObjectDtoV2024}
|
|
19589
|
+
* @memberof IdentityEntitlementsV2024
|
|
19590
|
+
*/
|
|
19591
|
+
'objectRef'?: TaggedObjectDtoV2024;
|
|
19592
|
+
/**
|
|
19593
|
+
* Labels to be applied to object.
|
|
19594
|
+
* @type {Array<string>}
|
|
19595
|
+
* @memberof IdentityEntitlementsV2024
|
|
19596
|
+
*/
|
|
19597
|
+
'tags'?: Array<string>;
|
|
19598
|
+
}
|
|
19431
19599
|
/**
|
|
19432
19600
|
*
|
|
19433
19601
|
* @export
|
|
@@ -20196,33 +20364,6 @@ export declare const IdentityV2024IdentityStatusV2024: {
|
|
|
20196
20364
|
readonly Locked: "LOCKED";
|
|
20197
20365
|
};
|
|
20198
20366
|
export type IdentityV2024IdentityStatusV2024 = typeof IdentityV2024IdentityStatusV2024[keyof typeof IdentityV2024IdentityStatusV2024];
|
|
20199
|
-
/**
|
|
20200
|
-
* An identity with a set of access to be added
|
|
20201
|
-
* @export
|
|
20202
|
-
* @interface IdentityWithNewAccess1V2024
|
|
20203
|
-
*/
|
|
20204
|
-
export interface IdentityWithNewAccess1V2024 {
|
|
20205
|
-
/**
|
|
20206
|
-
* Set of identity IDs to be checked.
|
|
20207
|
-
* @type {string}
|
|
20208
|
-
* @memberof IdentityWithNewAccess1V2024
|
|
20209
|
-
*/
|
|
20210
|
-
'identityId': string;
|
|
20211
|
-
/**
|
|
20212
|
-
* The bundle of access profiles to be added to the identities specified. All references must be ENTITLEMENT type.
|
|
20213
|
-
* @type {Array<EntitlementRef1V2024>}
|
|
20214
|
-
* @memberof IdentityWithNewAccess1V2024
|
|
20215
|
-
*/
|
|
20216
|
-
'accessRefs': Array<EntitlementRef1V2024>;
|
|
20217
|
-
/**
|
|
20218
|
-
* Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on completion of the violation check.
|
|
20219
|
-
* @type {{ [key: string]: string; }}
|
|
20220
|
-
* @memberof IdentityWithNewAccess1V2024
|
|
20221
|
-
*/
|
|
20222
|
-
'clientMetadata'?: {
|
|
20223
|
-
[key: string]: string;
|
|
20224
|
-
};
|
|
20225
|
-
}
|
|
20226
20367
|
/**
|
|
20227
20368
|
* Entitlement including a specific set of access.
|
|
20228
20369
|
* @export
|
|
@@ -20241,12 +20382,6 @@ export interface IdentityWithNewAccessAccessRefsInnerV2024 {
|
|
|
20241
20382
|
* @memberof IdentityWithNewAccessAccessRefsInnerV2024
|
|
20242
20383
|
*/
|
|
20243
20384
|
'id'?: string;
|
|
20244
|
-
/**
|
|
20245
|
-
* Entitlement\'s display name.
|
|
20246
|
-
* @type {string}
|
|
20247
|
-
* @memberof IdentityWithNewAccessAccessRefsInnerV2024
|
|
20248
|
-
*/
|
|
20249
|
-
'name'?: string;
|
|
20250
20385
|
}
|
|
20251
20386
|
export declare const IdentityWithNewAccessAccessRefsInnerV2024TypeV2024: {
|
|
20252
20387
|
readonly Entitlement: "ENTITLEMENT";
|
|
@@ -21004,6 +21139,189 @@ export declare const LatestOutlierSummaryV2024TypeV2024: {
|
|
|
21004
21139
|
readonly Structural: "STRUCTURAL";
|
|
21005
21140
|
};
|
|
21006
21141
|
export type LatestOutlierSummaryV2024TypeV2024 = typeof LatestOutlierSummaryV2024TypeV2024[keyof typeof LatestOutlierSummaryV2024TypeV2024];
|
|
21142
|
+
/**
|
|
21143
|
+
* Owner of the Launcher
|
|
21144
|
+
* @export
|
|
21145
|
+
* @interface LauncherOwnerV2024
|
|
21146
|
+
*/
|
|
21147
|
+
export interface LauncherOwnerV2024 {
|
|
21148
|
+
/**
|
|
21149
|
+
* Owner type
|
|
21150
|
+
* @type {string}
|
|
21151
|
+
* @memberof LauncherOwnerV2024
|
|
21152
|
+
*/
|
|
21153
|
+
'type': string;
|
|
21154
|
+
/**
|
|
21155
|
+
* Owner ID
|
|
21156
|
+
* @type {string}
|
|
21157
|
+
* @memberof LauncherOwnerV2024
|
|
21158
|
+
*/
|
|
21159
|
+
'id': string;
|
|
21160
|
+
}
|
|
21161
|
+
/**
|
|
21162
|
+
*
|
|
21163
|
+
* @export
|
|
21164
|
+
* @interface LauncherReferenceV2024
|
|
21165
|
+
*/
|
|
21166
|
+
export interface LauncherReferenceV2024 {
|
|
21167
|
+
/**
|
|
21168
|
+
* Type of Launcher reference
|
|
21169
|
+
* @type {string}
|
|
21170
|
+
* @memberof LauncherReferenceV2024
|
|
21171
|
+
*/
|
|
21172
|
+
'type'?: LauncherReferenceV2024TypeV2024;
|
|
21173
|
+
/**
|
|
21174
|
+
* ID of Launcher reference
|
|
21175
|
+
* @type {string}
|
|
21176
|
+
* @memberof LauncherReferenceV2024
|
|
21177
|
+
*/
|
|
21178
|
+
'id'?: string;
|
|
21179
|
+
}
|
|
21180
|
+
export declare const LauncherReferenceV2024TypeV2024: {
|
|
21181
|
+
readonly Workflow: "WORKFLOW";
|
|
21182
|
+
};
|
|
21183
|
+
export type LauncherReferenceV2024TypeV2024 = typeof LauncherReferenceV2024TypeV2024[keyof typeof LauncherReferenceV2024TypeV2024];
|
|
21184
|
+
/**
|
|
21185
|
+
*
|
|
21186
|
+
* @export
|
|
21187
|
+
* @interface LauncherRequestReferenceV2024
|
|
21188
|
+
*/
|
|
21189
|
+
export interface LauncherRequestReferenceV2024 {
|
|
21190
|
+
/**
|
|
21191
|
+
* Type of Launcher reference
|
|
21192
|
+
* @type {string}
|
|
21193
|
+
* @memberof LauncherRequestReferenceV2024
|
|
21194
|
+
*/
|
|
21195
|
+
'type': LauncherRequestReferenceV2024TypeV2024;
|
|
21196
|
+
/**
|
|
21197
|
+
* ID of Launcher reference
|
|
21198
|
+
* @type {string}
|
|
21199
|
+
* @memberof LauncherRequestReferenceV2024
|
|
21200
|
+
*/
|
|
21201
|
+
'id': string;
|
|
21202
|
+
}
|
|
21203
|
+
export declare const LauncherRequestReferenceV2024TypeV2024: {
|
|
21204
|
+
readonly Workflow: "WORKFLOW";
|
|
21205
|
+
};
|
|
21206
|
+
export type LauncherRequestReferenceV2024TypeV2024 = typeof LauncherRequestReferenceV2024TypeV2024[keyof typeof LauncherRequestReferenceV2024TypeV2024];
|
|
21207
|
+
/**
|
|
21208
|
+
*
|
|
21209
|
+
* @export
|
|
21210
|
+
* @interface LauncherRequestV2024
|
|
21211
|
+
*/
|
|
21212
|
+
export interface LauncherRequestV2024 {
|
|
21213
|
+
/**
|
|
21214
|
+
* Name of the Launcher, limited to 255 characters
|
|
21215
|
+
* @type {string}
|
|
21216
|
+
* @memberof LauncherRequestV2024
|
|
21217
|
+
*/
|
|
21218
|
+
'name': string;
|
|
21219
|
+
/**
|
|
21220
|
+
* Description of the Launcher, limited to 2000 characters
|
|
21221
|
+
* @type {string}
|
|
21222
|
+
* @memberof LauncherRequestV2024
|
|
21223
|
+
*/
|
|
21224
|
+
'description': string;
|
|
21225
|
+
/**
|
|
21226
|
+
* Launcher type
|
|
21227
|
+
* @type {string}
|
|
21228
|
+
* @memberof LauncherRequestV2024
|
|
21229
|
+
*/
|
|
21230
|
+
'type': LauncherRequestV2024TypeV2024;
|
|
21231
|
+
/**
|
|
21232
|
+
* State of the Launcher
|
|
21233
|
+
* @type {boolean}
|
|
21234
|
+
* @memberof LauncherRequestV2024
|
|
21235
|
+
*/
|
|
21236
|
+
'disabled': boolean;
|
|
21237
|
+
/**
|
|
21238
|
+
*
|
|
21239
|
+
* @type {LauncherRequestReferenceV2024}
|
|
21240
|
+
* @memberof LauncherRequestV2024
|
|
21241
|
+
*/
|
|
21242
|
+
'reference'?: LauncherRequestReferenceV2024;
|
|
21243
|
+
/**
|
|
21244
|
+
* JSON configuration associated with this Launcher, restricted to a max size of 4KB
|
|
21245
|
+
* @type {string}
|
|
21246
|
+
* @memberof LauncherRequestV2024
|
|
21247
|
+
*/
|
|
21248
|
+
'config': string;
|
|
21249
|
+
}
|
|
21250
|
+
export declare const LauncherRequestV2024TypeV2024: {
|
|
21251
|
+
readonly InteractiveProcess: "INTERACTIVE_PROCESS";
|
|
21252
|
+
};
|
|
21253
|
+
export type LauncherRequestV2024TypeV2024 = typeof LauncherRequestV2024TypeV2024[keyof typeof LauncherRequestV2024TypeV2024];
|
|
21254
|
+
/**
|
|
21255
|
+
*
|
|
21256
|
+
* @export
|
|
21257
|
+
* @interface LauncherV2024
|
|
21258
|
+
*/
|
|
21259
|
+
export interface LauncherV2024 {
|
|
21260
|
+
/**
|
|
21261
|
+
* ID of the Launcher
|
|
21262
|
+
* @type {string}
|
|
21263
|
+
* @memberof LauncherV2024
|
|
21264
|
+
*/
|
|
21265
|
+
'id': string;
|
|
21266
|
+
/**
|
|
21267
|
+
* Date the Launcher was created
|
|
21268
|
+
* @type {string}
|
|
21269
|
+
* @memberof LauncherV2024
|
|
21270
|
+
*/
|
|
21271
|
+
'created': string;
|
|
21272
|
+
/**
|
|
21273
|
+
* Date the Launcher was last modified
|
|
21274
|
+
* @type {string}
|
|
21275
|
+
* @memberof LauncherV2024
|
|
21276
|
+
*/
|
|
21277
|
+
'modified': string;
|
|
21278
|
+
/**
|
|
21279
|
+
*
|
|
21280
|
+
* @type {LauncherOwnerV2024}
|
|
21281
|
+
* @memberof LauncherV2024
|
|
21282
|
+
*/
|
|
21283
|
+
'owner': LauncherOwnerV2024;
|
|
21284
|
+
/**
|
|
21285
|
+
* Name of the Launcher, limited to 255 characters
|
|
21286
|
+
* @type {string}
|
|
21287
|
+
* @memberof LauncherV2024
|
|
21288
|
+
*/
|
|
21289
|
+
'name': string;
|
|
21290
|
+
/**
|
|
21291
|
+
* Description of the Launcher, limited to 2000 characters
|
|
21292
|
+
* @type {string}
|
|
21293
|
+
* @memberof LauncherV2024
|
|
21294
|
+
*/
|
|
21295
|
+
'description': string;
|
|
21296
|
+
/**
|
|
21297
|
+
* Launcher type
|
|
21298
|
+
* @type {string}
|
|
21299
|
+
* @memberof LauncherV2024
|
|
21300
|
+
*/
|
|
21301
|
+
'type': LauncherV2024TypeV2024;
|
|
21302
|
+
/**
|
|
21303
|
+
* State of the Launcher
|
|
21304
|
+
* @type {boolean}
|
|
21305
|
+
* @memberof LauncherV2024
|
|
21306
|
+
*/
|
|
21307
|
+
'disabled': boolean;
|
|
21308
|
+
/**
|
|
21309
|
+
*
|
|
21310
|
+
* @type {LauncherReferenceV2024}
|
|
21311
|
+
* @memberof LauncherV2024
|
|
21312
|
+
*/
|
|
21313
|
+
'reference'?: LauncherReferenceV2024;
|
|
21314
|
+
/**
|
|
21315
|
+
* JSON configuration associated with this Launcher, restricted to a max size of 4KB
|
|
21316
|
+
* @type {string}
|
|
21317
|
+
* @memberof LauncherV2024
|
|
21318
|
+
*/
|
|
21319
|
+
'config': string;
|
|
21320
|
+
}
|
|
21321
|
+
export declare const LauncherV2024TypeV2024: {
|
|
21322
|
+
readonly InteractiveProcess: "INTERACTIVE_PROCESS";
|
|
21323
|
+
};
|
|
21324
|
+
export type LauncherV2024TypeV2024 = typeof LauncherV2024TypeV2024[keyof typeof LauncherV2024TypeV2024];
|
|
21007
21325
|
/**
|
|
21008
21326
|
*
|
|
21009
21327
|
* @export
|
|
@@ -21360,24 +21678,114 @@ export interface ListFormElementDataByElementIDResponseV2024 {
|
|
|
21360
21678
|
'results'?: Array<FormElementDataSourceConfigOptionsV2024>;
|
|
21361
21679
|
}
|
|
21362
21680
|
/**
|
|
21363
|
-
*
|
|
21681
|
+
* List of FormInstanceResponse items
|
|
21364
21682
|
* @export
|
|
21365
21683
|
* @interface ListFormInstancesByTenantResponseV2024
|
|
21366
21684
|
*/
|
|
21367
21685
|
export interface ListFormInstancesByTenantResponseV2024 {
|
|
21368
21686
|
/**
|
|
21369
|
-
*
|
|
21370
|
-
* @type {
|
|
21687
|
+
* Unique guid identifying this form instance
|
|
21688
|
+
* @type {string}
|
|
21371
21689
|
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21372
21690
|
*/
|
|
21373
|
-
'
|
|
21691
|
+
'id'?: string;
|
|
21374
21692
|
/**
|
|
21375
|
-
*
|
|
21376
|
-
* @type {
|
|
21693
|
+
* Expire is the maximum amount of time that a form can be in progress. After this time is reached then the form will be moved to a CANCELED state automatically. The user will no longer be able to complete the submission. When a form instance is expires an audit log will be generated for that record
|
|
21694
|
+
* @type {string}
|
|
21377
21695
|
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21378
21696
|
*/
|
|
21379
|
-
'
|
|
21697
|
+
'expire'?: string;
|
|
21698
|
+
/**
|
|
21699
|
+
* State the state of the form instance ASSIGNED FormInstanceStateAssigned IN_PROGRESS FormInstanceStateInProgress SUBMITTED FormInstanceStateSubmitted COMPLETED FormInstanceStateCompleted CANCELLED FormInstanceStateCancelled
|
|
21700
|
+
* @type {string}
|
|
21701
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21702
|
+
*/
|
|
21703
|
+
'state'?: ListFormInstancesByTenantResponseV2024StateV2024;
|
|
21704
|
+
/**
|
|
21705
|
+
* StandAloneForm is a boolean flag to indicate if this form should be available for users to complete via the standalone form UI or should this only be available to be completed by as an embedded form
|
|
21706
|
+
* @type {boolean}
|
|
21707
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21708
|
+
*/
|
|
21709
|
+
'standAloneForm'?: boolean;
|
|
21710
|
+
/**
|
|
21711
|
+
* StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI
|
|
21712
|
+
* @type {string}
|
|
21713
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21714
|
+
*/
|
|
21715
|
+
'standAloneFormUrl'?: string;
|
|
21716
|
+
/**
|
|
21717
|
+
*
|
|
21718
|
+
* @type {FormInstanceCreatedByV2024}
|
|
21719
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21720
|
+
*/
|
|
21721
|
+
'createdBy'?: FormInstanceCreatedByV2024;
|
|
21722
|
+
/**
|
|
21723
|
+
* FormDefinitionID is the id of the form definition that created this form
|
|
21724
|
+
* @type {string}
|
|
21725
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21726
|
+
*/
|
|
21727
|
+
'formDefinitionId'?: string;
|
|
21728
|
+
/**
|
|
21729
|
+
* FormInput is an object of form input labels to value
|
|
21730
|
+
* @type {{ [key: string]: object; }}
|
|
21731
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21732
|
+
*/
|
|
21733
|
+
'formInput'?: {
|
|
21734
|
+
[key: string]: object;
|
|
21735
|
+
} | null;
|
|
21736
|
+
/**
|
|
21737
|
+
* FormElements is the configuration of the form, this would be a repeat of the fields from the form-config
|
|
21738
|
+
* @type {Array<FormElementV2024>}
|
|
21739
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21740
|
+
*/
|
|
21741
|
+
'formElements'?: Array<FormElementV2024>;
|
|
21742
|
+
/**
|
|
21743
|
+
* FormData is the data provided by the form on submit. The data is in a key -> value map
|
|
21744
|
+
* @type {{ [key: string]: any; }}
|
|
21745
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21746
|
+
*/
|
|
21747
|
+
'formData'?: {
|
|
21748
|
+
[key: string]: any;
|
|
21749
|
+
} | null;
|
|
21750
|
+
/**
|
|
21751
|
+
* FormErrors is an array of form validation errors from the last time the form instance was transitioned to the SUBMITTED state. If the form instance had validation errors then it would be moved to the IN PROGRESS state where the client can retrieve these errors
|
|
21752
|
+
* @type {Array<FormErrorV2024>}
|
|
21753
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21754
|
+
*/
|
|
21755
|
+
'formErrors'?: Array<FormErrorV2024>;
|
|
21756
|
+
/**
|
|
21757
|
+
* FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form
|
|
21758
|
+
* @type {Array<FormConditionV2024>}
|
|
21759
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21760
|
+
*/
|
|
21761
|
+
'formConditions'?: Array<FormConditionV2024>;
|
|
21762
|
+
/**
|
|
21763
|
+
* Created is the date the form instance was assigned
|
|
21764
|
+
* @type {string}
|
|
21765
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21766
|
+
*/
|
|
21767
|
+
'created'?: string;
|
|
21768
|
+
/**
|
|
21769
|
+
* Modified is the last date the form instance was modified
|
|
21770
|
+
* @type {string}
|
|
21771
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21772
|
+
*/
|
|
21773
|
+
'modified'?: string;
|
|
21774
|
+
/**
|
|
21775
|
+
* Recipients references to the recipient of a form. The recipients are those who are responsible for filling out a form and completing it
|
|
21776
|
+
* @type {Array<FormInstanceRecipientV2024>}
|
|
21777
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21778
|
+
*/
|
|
21779
|
+
'recipients'?: Array<FormInstanceRecipientV2024>;
|
|
21380
21780
|
}
|
|
21781
|
+
export declare const ListFormInstancesByTenantResponseV2024StateV2024: {
|
|
21782
|
+
readonly Assigned: "ASSIGNED";
|
|
21783
|
+
readonly InProgress: "IN_PROGRESS";
|
|
21784
|
+
readonly Submitted: "SUBMITTED";
|
|
21785
|
+
readonly Completed: "COMPLETED";
|
|
21786
|
+
readonly Cancelled: "CANCELLED";
|
|
21787
|
+
};
|
|
21788
|
+
export type ListFormInstancesByTenantResponseV2024StateV2024 = typeof ListFormInstancesByTenantResponseV2024StateV2024[keyof typeof ListFormInstancesByTenantResponseV2024StateV2024];
|
|
21381
21789
|
/**
|
|
21382
21790
|
*
|
|
21383
21791
|
* @export
|
|
@@ -22842,6 +23250,24 @@ export interface ManagedClusterAttributesV2024 {
|
|
|
22842
23250
|
*/
|
|
22843
23251
|
'keystore'?: string | null;
|
|
22844
23252
|
}
|
|
23253
|
+
/**
|
|
23254
|
+
* Defines the encryption settings for a managed cluster, including the format used for storing and processing encrypted data.
|
|
23255
|
+
* @export
|
|
23256
|
+
* @interface ManagedClusterEncryptionConfigV2024
|
|
23257
|
+
*/
|
|
23258
|
+
export interface ManagedClusterEncryptionConfigV2024 {
|
|
23259
|
+
/**
|
|
23260
|
+
* Specifies the format used for encrypted data, such as secrets. The format determines how the encrypted data is structured and processed.
|
|
23261
|
+
* @type {string}
|
|
23262
|
+
* @memberof ManagedClusterEncryptionConfigV2024
|
|
23263
|
+
*/
|
|
23264
|
+
'format'?: ManagedClusterEncryptionConfigV2024FormatV2024;
|
|
23265
|
+
}
|
|
23266
|
+
export declare const ManagedClusterEncryptionConfigV2024FormatV2024: {
|
|
23267
|
+
readonly V2: "V2";
|
|
23268
|
+
readonly V3: "V3";
|
|
23269
|
+
};
|
|
23270
|
+
export type ManagedClusterEncryptionConfigV2024FormatV2024 = typeof ManagedClusterEncryptionConfigV2024FormatV2024[keyof typeof ManagedClusterEncryptionConfigV2024FormatV2024];
|
|
22845
23271
|
/**
|
|
22846
23272
|
* Managed Cluster key pair for Cluster
|
|
22847
23273
|
* @export
|
|
@@ -23096,7 +23522,7 @@ export interface ManagedClusterV2024 {
|
|
|
23096
23522
|
*/
|
|
23097
23523
|
'ccgVersion': string;
|
|
23098
23524
|
/**
|
|
23099
|
-
* boolean flag
|
|
23525
|
+
* boolean flag indicating whether or not the cluster configuration is pinned
|
|
23100
23526
|
* @type {boolean}
|
|
23101
23527
|
* @memberof ManagedClusterV2024
|
|
23102
23528
|
*/
|
|
@@ -23137,6 +23563,12 @@ export interface ManagedClusterV2024 {
|
|
|
23137
23563
|
* @memberof ManagedClusterV2024
|
|
23138
23564
|
*/
|
|
23139
23565
|
'publicKey'?: string | null;
|
|
23566
|
+
/**
|
|
23567
|
+
*
|
|
23568
|
+
* @type {ManagedClusterEncryptionConfigV2024}
|
|
23569
|
+
* @memberof ManagedClusterV2024
|
|
23570
|
+
*/
|
|
23571
|
+
'encryptionConfiguration'?: ManagedClusterEncryptionConfigV2024;
|
|
23140
23572
|
/**
|
|
23141
23573
|
* Key describing any immediate cluster alerts
|
|
23142
23574
|
* @type {string}
|
|
@@ -23924,10 +24356,10 @@ export interface MultiHostIntegrationsCreateV2024 {
|
|
|
23924
24356
|
'description': string;
|
|
23925
24357
|
/**
|
|
23926
24358
|
*
|
|
23927
|
-
* @type {
|
|
24359
|
+
* @type {MultiHostIntegrationsOwnerV2024}
|
|
23928
24360
|
* @memberof MultiHostIntegrationsCreateV2024
|
|
23929
24361
|
*/
|
|
23930
|
-
'owner':
|
|
24362
|
+
'owner': MultiHostIntegrationsOwnerV2024;
|
|
23931
24363
|
/**
|
|
23932
24364
|
*
|
|
23933
24365
|
* @type {SourceClusterV2024}
|
|
@@ -23967,6 +24399,35 @@ export interface MultiHostIntegrationsCreateV2024 {
|
|
|
23967
24399
|
*/
|
|
23968
24400
|
'modified'?: string;
|
|
23969
24401
|
}
|
|
24402
|
+
/**
|
|
24403
|
+
* Reference to identity object who owns the source.
|
|
24404
|
+
* @export
|
|
24405
|
+
* @interface MultiHostIntegrationsOwnerV2024
|
|
24406
|
+
*/
|
|
24407
|
+
export interface MultiHostIntegrationsOwnerV2024 {
|
|
24408
|
+
/**
|
|
24409
|
+
* Type of object being referenced.
|
|
24410
|
+
* @type {string}
|
|
24411
|
+
* @memberof MultiHostIntegrationsOwnerV2024
|
|
24412
|
+
*/
|
|
24413
|
+
'type'?: MultiHostIntegrationsOwnerV2024TypeV2024;
|
|
24414
|
+
/**
|
|
24415
|
+
* Owner identity\'s ID.
|
|
24416
|
+
* @type {string}
|
|
24417
|
+
* @memberof MultiHostIntegrationsOwnerV2024
|
|
24418
|
+
*/
|
|
24419
|
+
'id'?: string;
|
|
24420
|
+
/**
|
|
24421
|
+
* Owner identity\'s human-readable display name.
|
|
24422
|
+
* @type {string}
|
|
24423
|
+
* @memberof MultiHostIntegrationsOwnerV2024
|
|
24424
|
+
*/
|
|
24425
|
+
'name'?: string;
|
|
24426
|
+
}
|
|
24427
|
+
export declare const MultiHostIntegrationsOwnerV2024TypeV2024: {
|
|
24428
|
+
readonly Identity: "IDENTITY";
|
|
24429
|
+
};
|
|
24430
|
+
export type MultiHostIntegrationsOwnerV2024TypeV2024 = typeof MultiHostIntegrationsOwnerV2024TypeV2024[keyof typeof MultiHostIntegrationsOwnerV2024TypeV2024];
|
|
23970
24431
|
/**
|
|
23971
24432
|
*
|
|
23972
24433
|
* @export
|
|
@@ -23993,10 +24454,10 @@ export interface MultiHostIntegrationsV2024 {
|
|
|
23993
24454
|
'description': string;
|
|
23994
24455
|
/**
|
|
23995
24456
|
*
|
|
23996
|
-
* @type {
|
|
24457
|
+
* @type {MultiHostIntegrationsOwnerV2024}
|
|
23997
24458
|
* @memberof MultiHostIntegrationsV2024
|
|
23998
24459
|
*/
|
|
23999
|
-
'owner':
|
|
24460
|
+
'owner': MultiHostIntegrationsOwnerV2024;
|
|
24000
24461
|
/**
|
|
24001
24462
|
*
|
|
24002
24463
|
* @type {SourceClusterV2024}
|
|
@@ -24246,10 +24707,10 @@ export interface MultiHostSourcesV2024 {
|
|
|
24246
24707
|
'description'?: string;
|
|
24247
24708
|
/**
|
|
24248
24709
|
*
|
|
24249
|
-
* @type {
|
|
24710
|
+
* @type {MultiHostIntegrationsOwnerV2024}
|
|
24250
24711
|
* @memberof MultiHostSourcesV2024
|
|
24251
24712
|
*/
|
|
24252
|
-
'owner':
|
|
24713
|
+
'owner': MultiHostIntegrationsOwnerV2024;
|
|
24253
24714
|
/**
|
|
24254
24715
|
*
|
|
24255
24716
|
* @type {SourceClusterV2024}
|
|
@@ -38651,7 +39112,7 @@ export interface SourceV2024 {
|
|
|
38651
39112
|
* @type {SourceOwnerV2024}
|
|
38652
39113
|
* @memberof SourceV2024
|
|
38653
39114
|
*/
|
|
38654
|
-
'owner': SourceOwnerV2024;
|
|
39115
|
+
'owner': SourceOwnerV2024 | null;
|
|
38655
39116
|
/**
|
|
38656
39117
|
*
|
|
38657
39118
|
* @type {SourceClusterV2024}
|
|
@@ -39475,6 +39936,19 @@ export interface StartInvocationInputV2024 {
|
|
|
39475
39936
|
*/
|
|
39476
39937
|
'contentJson'?: object;
|
|
39477
39938
|
}
|
|
39939
|
+
/**
|
|
39940
|
+
*
|
|
39941
|
+
* @export
|
|
39942
|
+
* @interface StartLauncher200ResponseV2024
|
|
39943
|
+
*/
|
|
39944
|
+
export interface StartLauncher200ResponseV2024 {
|
|
39945
|
+
/**
|
|
39946
|
+
* ID of the Interactive Process that was launched
|
|
39947
|
+
* @type {string}
|
|
39948
|
+
* @memberof StartLauncher200ResponseV2024
|
|
39949
|
+
*/
|
|
39950
|
+
'interactiveProcessId': string;
|
|
39951
|
+
}
|
|
39478
39952
|
/**
|
|
39479
39953
|
*
|
|
39480
39954
|
* @export
|
|
@@ -39867,6 +40341,79 @@ export interface SubstringV2024 {
|
|
|
39867
40341
|
[key: string]: any;
|
|
39868
40342
|
};
|
|
39869
40343
|
}
|
|
40344
|
+
/**
|
|
40345
|
+
* Tagged object\'s category.
|
|
40346
|
+
* @export
|
|
40347
|
+
* @interface TagTagCategoryRefsInnerV2024
|
|
40348
|
+
*/
|
|
40349
|
+
export interface TagTagCategoryRefsInnerV2024 {
|
|
40350
|
+
/**
|
|
40351
|
+
* DTO type of the tagged object\'s category.
|
|
40352
|
+
* @type {string}
|
|
40353
|
+
* @memberof TagTagCategoryRefsInnerV2024
|
|
40354
|
+
*/
|
|
40355
|
+
'type'?: TagTagCategoryRefsInnerV2024TypeV2024;
|
|
40356
|
+
/**
|
|
40357
|
+
* Tagged object\'s ID.
|
|
40358
|
+
* @type {string}
|
|
40359
|
+
* @memberof TagTagCategoryRefsInnerV2024
|
|
40360
|
+
*/
|
|
40361
|
+
'id'?: string;
|
|
40362
|
+
/**
|
|
40363
|
+
* Tagged object\'s display name.
|
|
40364
|
+
* @type {string}
|
|
40365
|
+
* @memberof TagTagCategoryRefsInnerV2024
|
|
40366
|
+
*/
|
|
40367
|
+
'name'?: string;
|
|
40368
|
+
}
|
|
40369
|
+
export declare const TagTagCategoryRefsInnerV2024TypeV2024: {
|
|
40370
|
+
readonly AccessProfile: "ACCESS_PROFILE";
|
|
40371
|
+
readonly Application: "APPLICATION";
|
|
40372
|
+
readonly Campaign: "CAMPAIGN";
|
|
40373
|
+
readonly Entitlement: "ENTITLEMENT";
|
|
40374
|
+
readonly Identity: "IDENTITY";
|
|
40375
|
+
readonly Role: "ROLE";
|
|
40376
|
+
readonly SodPolicy: "SOD_POLICY";
|
|
40377
|
+
readonly Source: "SOURCE";
|
|
40378
|
+
};
|
|
40379
|
+
export type TagTagCategoryRefsInnerV2024TypeV2024 = typeof TagTagCategoryRefsInnerV2024TypeV2024[keyof typeof TagTagCategoryRefsInnerV2024TypeV2024];
|
|
40380
|
+
/**
|
|
40381
|
+
*
|
|
40382
|
+
* @export
|
|
40383
|
+
* @interface TagV2024
|
|
40384
|
+
*/
|
|
40385
|
+
export interface TagV2024 {
|
|
40386
|
+
/**
|
|
40387
|
+
* Tag id
|
|
40388
|
+
* @type {string}
|
|
40389
|
+
* @memberof TagV2024
|
|
40390
|
+
*/
|
|
40391
|
+
'id': string;
|
|
40392
|
+
/**
|
|
40393
|
+
* Name of the tag.
|
|
40394
|
+
* @type {string}
|
|
40395
|
+
* @memberof TagV2024
|
|
40396
|
+
*/
|
|
40397
|
+
'name': string;
|
|
40398
|
+
/**
|
|
40399
|
+
* Date the tag was created.
|
|
40400
|
+
* @type {string}
|
|
40401
|
+
* @memberof TagV2024
|
|
40402
|
+
*/
|
|
40403
|
+
'created': string;
|
|
40404
|
+
/**
|
|
40405
|
+
* Date the tag was last modified.
|
|
40406
|
+
* @type {string}
|
|
40407
|
+
* @memberof TagV2024
|
|
40408
|
+
*/
|
|
40409
|
+
'modified': string;
|
|
40410
|
+
/**
|
|
40411
|
+
*
|
|
40412
|
+
* @type {Array<TagTagCategoryRefsInnerV2024>}
|
|
40413
|
+
* @memberof TagV2024
|
|
40414
|
+
*/
|
|
40415
|
+
'tagCategoryRefs': Array<TagTagCategoryRefsInnerV2024>;
|
|
40416
|
+
}
|
|
39870
40417
|
/**
|
|
39871
40418
|
*
|
|
39872
40419
|
* @export
|
|
@@ -45218,6 +45765,16 @@ export declare const AccessRequestsV2024ApiAxiosParamCreator: (configuration?: C
|
|
|
45218
45765
|
* @throws {RequiredError}
|
|
45219
45766
|
*/
|
|
45220
45767
|
getAccessRequestConfig: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45768
|
+
/**
|
|
45769
|
+
* Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
|
|
45770
|
+
* @summary Identity entitlement details
|
|
45771
|
+
* @param {string} identityId The identity ID.
|
|
45772
|
+
* @param {string} entitlementId The entitlement ID
|
|
45773
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
45774
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
45775
|
+
* @throws {RequiredError}
|
|
45776
|
+
*/
|
|
45777
|
+
getEntitlementDetailsForIdentity: (identityId: string, entitlementId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45221
45778
|
/**
|
|
45222
45779
|
* Use this API to return a list of access request statuses based on the specified query parameters. If an access request was made for access that an identity already has, the API ignores the access request. These ignored requests do not display in the list of access request statuses. Any user with any user level can get the status of their own access requests. A user with ORG_ADMIN is required to call this API to get a list of statuses for other users.
|
|
45223
45780
|
* @summary Access request status
|
|
@@ -45238,6 +45795,7 @@ export declare const AccessRequestsV2024ApiAxiosParamCreator: (configuration?: C
|
|
|
45238
45795
|
/**
|
|
45239
45796
|
* Use this API to get access request statuses of all the access requests in the org based on the specified query parameters. Any user with user level ORG_ADMIN or scope idn:access-request-administration:read can access this endpoint to get the access request statuses
|
|
45240
45797
|
* @summary Access request status for administrators
|
|
45798
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
45241
45799
|
* @param {string} [requestedFor] Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
45242
45800
|
* @param {string} [requestedBy] Filter the results by the identity who made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
45243
45801
|
* @param {string} [regardingIdentity] Filter the results by the specified identity who is either the requester or target of the requests. *me* indicates the current user. Mutually exclusive with *requested-for* and *requested-by*.
|
|
@@ -45251,15 +45809,16 @@ export declare const AccessRequestsV2024ApiAxiosParamCreator: (configuration?: C
|
|
|
45251
45809
|
* @param {*} [axiosOptions] Override http request option.
|
|
45252
45810
|
* @throws {RequiredError}
|
|
45253
45811
|
*/
|
|
45254
|
-
listAdministratorsAccessRequestStatus: (requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45812
|
+
listAdministratorsAccessRequestStatus: (xSailPointExperimental: string, requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45255
45813
|
/**
|
|
45256
45814
|
* Use this API to fetch account information for an identity against the items in an access request. Used to fetch accountSelection for the AccessRequest prior to submitting for async processing.
|
|
45257
45815
|
* @summary Get accounts selections for identity
|
|
45258
45816
|
* @param {AccountsSelectionRequestV2024} accountsSelectionRequestV2024
|
|
45817
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
45259
45818
|
* @param {*} [axiosOptions] Override http request option.
|
|
45260
45819
|
* @throws {RequiredError}
|
|
45261
45820
|
*/
|
|
45262
|
-
loadAccountSelections: (accountsSelectionRequestV2024: AccountsSelectionRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45821
|
+
loadAccountSelections: (accountsSelectionRequestV2024: AccountsSelectionRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45263
45822
|
/**
|
|
45264
45823
|
* This endpoint replaces the current access-request configuration.
|
|
45265
45824
|
* @summary Update access request configuration
|
|
@@ -45321,6 +45880,16 @@ export declare const AccessRequestsV2024ApiFp: (configuration?: Configuration) =
|
|
|
45321
45880
|
* @throws {RequiredError}
|
|
45322
45881
|
*/
|
|
45323
45882
|
getAccessRequestConfig(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessRequestConfigV2024>>;
|
|
45883
|
+
/**
|
|
45884
|
+
* Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
|
|
45885
|
+
* @summary Identity entitlement details
|
|
45886
|
+
* @param {string} identityId The identity ID.
|
|
45887
|
+
* @param {string} entitlementId The entitlement ID
|
|
45888
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
45889
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
45890
|
+
* @throws {RequiredError}
|
|
45891
|
+
*/
|
|
45892
|
+
getEntitlementDetailsForIdentity(identityId: string, entitlementId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityEntitlementDetailsV2024>>;
|
|
45324
45893
|
/**
|
|
45325
45894
|
* Use this API to return a list of access request statuses based on the specified query parameters. If an access request was made for access that an identity already has, the API ignores the access request. These ignored requests do not display in the list of access request statuses. Any user with any user level can get the status of their own access requests. A user with ORG_ADMIN is required to call this API to get a list of statuses for other users.
|
|
45326
45895
|
* @summary Access request status
|
|
@@ -45341,6 +45910,7 @@ export declare const AccessRequestsV2024ApiFp: (configuration?: Configuration) =
|
|
|
45341
45910
|
/**
|
|
45342
45911
|
* Use this API to get access request statuses of all the access requests in the org based on the specified query parameters. Any user with user level ORG_ADMIN or scope idn:access-request-administration:read can access this endpoint to get the access request statuses
|
|
45343
45912
|
* @summary Access request status for administrators
|
|
45913
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
45344
45914
|
* @param {string} [requestedFor] Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
45345
45915
|
* @param {string} [requestedBy] Filter the results by the identity who made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
45346
45916
|
* @param {string} [regardingIdentity] Filter the results by the specified identity who is either the requester or target of the requests. *me* indicates the current user. Mutually exclusive with *requested-for* and *requested-by*.
|
|
@@ -45354,15 +45924,16 @@ export declare const AccessRequestsV2024ApiFp: (configuration?: Configuration) =
|
|
|
45354
45924
|
* @param {*} [axiosOptions] Override http request option.
|
|
45355
45925
|
* @throws {RequiredError}
|
|
45356
45926
|
*/
|
|
45357
|
-
listAdministratorsAccessRequestStatus(requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestAdminItemStatusV2024>>>;
|
|
45927
|
+
listAdministratorsAccessRequestStatus(xSailPointExperimental: string, requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestAdminItemStatusV2024>>>;
|
|
45358
45928
|
/**
|
|
45359
45929
|
* Use this API to fetch account information for an identity against the items in an access request. Used to fetch accountSelection for the AccessRequest prior to submitting for async processing.
|
|
45360
45930
|
* @summary Get accounts selections for identity
|
|
45361
45931
|
* @param {AccountsSelectionRequestV2024} accountsSelectionRequestV2024
|
|
45932
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
45362
45933
|
* @param {*} [axiosOptions] Override http request option.
|
|
45363
45934
|
* @throws {RequiredError}
|
|
45364
45935
|
*/
|
|
45365
|
-
loadAccountSelections(accountsSelectionRequestV2024: AccountsSelectionRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountsSelectionResponseV2024>>;
|
|
45936
|
+
loadAccountSelections(accountsSelectionRequestV2024: AccountsSelectionRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountsSelectionResponseV2024>>;
|
|
45366
45937
|
/**
|
|
45367
45938
|
* This endpoint replaces the current access-request configuration.
|
|
45368
45939
|
* @summary Update access request configuration
|
|
@@ -45424,6 +45995,14 @@ export declare const AccessRequestsV2024ApiFactory: (configuration?: Configurati
|
|
|
45424
45995
|
* @throws {RequiredError}
|
|
45425
45996
|
*/
|
|
45426
45997
|
getAccessRequestConfig(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessRequestConfigV2024>;
|
|
45998
|
+
/**
|
|
45999
|
+
* Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
|
|
46000
|
+
* @summary Identity entitlement details
|
|
46001
|
+
* @param {AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest} requestParameters Request parameters.
|
|
46002
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
46003
|
+
* @throws {RequiredError}
|
|
46004
|
+
*/
|
|
46005
|
+
getEntitlementDetailsForIdentity(requestParameters: AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityEntitlementDetailsV2024>;
|
|
45427
46006
|
/**
|
|
45428
46007
|
* Use this API to return a list of access request statuses based on the specified query parameters. If an access request was made for access that an identity already has, the API ignores the access request. These ignored requests do not display in the list of access request statuses. Any user with any user level can get the status of their own access requests. A user with ORG_ADMIN is required to call this API to get a list of statuses for other users.
|
|
45429
46008
|
* @summary Access request status
|
|
@@ -45439,7 +46018,7 @@ export declare const AccessRequestsV2024ApiFactory: (configuration?: Configurati
|
|
|
45439
46018
|
* @param {*} [axiosOptions] Override http request option.
|
|
45440
46019
|
* @throws {RequiredError}
|
|
45441
46020
|
*/
|
|
45442
|
-
listAdministratorsAccessRequestStatus(requestParameters
|
|
46021
|
+
listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestAdminItemStatusV2024>>;
|
|
45443
46022
|
/**
|
|
45444
46023
|
* Use this API to fetch account information for an identity against the items in an access request. Used to fetch accountSelection for the AccessRequest prior to submitting for async processing.
|
|
45445
46024
|
* @summary Get accounts selections for identity
|
|
@@ -45522,6 +46101,31 @@ export interface AccessRequestsV2024ApiCreateAccessRequestRequest {
|
|
|
45522
46101
|
*/
|
|
45523
46102
|
readonly accessRequestV2024: AccessRequestV2024;
|
|
45524
46103
|
}
|
|
46104
|
+
/**
|
|
46105
|
+
* Request parameters for getEntitlementDetailsForIdentity operation in AccessRequestsV2024Api.
|
|
46106
|
+
* @export
|
|
46107
|
+
* @interface AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest
|
|
46108
|
+
*/
|
|
46109
|
+
export interface AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest {
|
|
46110
|
+
/**
|
|
46111
|
+
* The identity ID.
|
|
46112
|
+
* @type {string}
|
|
46113
|
+
* @memberof AccessRequestsV2024ApiGetEntitlementDetailsForIdentity
|
|
46114
|
+
*/
|
|
46115
|
+
readonly identityId: string;
|
|
46116
|
+
/**
|
|
46117
|
+
* The entitlement ID
|
|
46118
|
+
* @type {string}
|
|
46119
|
+
* @memberof AccessRequestsV2024ApiGetEntitlementDetailsForIdentity
|
|
46120
|
+
*/
|
|
46121
|
+
readonly entitlementId: string;
|
|
46122
|
+
/**
|
|
46123
|
+
* Use this header to enable this experimental API.
|
|
46124
|
+
* @type {string}
|
|
46125
|
+
* @memberof AccessRequestsV2024ApiGetEntitlementDetailsForIdentity
|
|
46126
|
+
*/
|
|
46127
|
+
readonly xSailPointExperimental?: string;
|
|
46128
|
+
}
|
|
45525
46129
|
/**
|
|
45526
46130
|
* Request parameters for listAccessRequestStatus operation in AccessRequestsV2024Api.
|
|
45527
46131
|
* @export
|
|
@@ -45595,6 +46199,12 @@ export interface AccessRequestsV2024ApiListAccessRequestStatusRequest {
|
|
|
45595
46199
|
* @interface AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest
|
|
45596
46200
|
*/
|
|
45597
46201
|
export interface AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest {
|
|
46202
|
+
/**
|
|
46203
|
+
* Use this header to enable this experimental API.
|
|
46204
|
+
* @type {string}
|
|
46205
|
+
* @memberof AccessRequestsV2024ApiListAdministratorsAccessRequestStatus
|
|
46206
|
+
*/
|
|
46207
|
+
readonly xSailPointExperimental: string;
|
|
45598
46208
|
/**
|
|
45599
46209
|
* Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
45600
46210
|
* @type {string}
|
|
@@ -45668,6 +46278,12 @@ export interface AccessRequestsV2024ApiLoadAccountSelectionsRequest {
|
|
|
45668
46278
|
* @memberof AccessRequestsV2024ApiLoadAccountSelections
|
|
45669
46279
|
*/
|
|
45670
46280
|
readonly accountsSelectionRequestV2024: AccountsSelectionRequestV2024;
|
|
46281
|
+
/**
|
|
46282
|
+
* Use this header to enable this experimental API.
|
|
46283
|
+
* @type {string}
|
|
46284
|
+
* @memberof AccessRequestsV2024ApiLoadAccountSelections
|
|
46285
|
+
*/
|
|
46286
|
+
readonly xSailPointExperimental?: string;
|
|
45671
46287
|
}
|
|
45672
46288
|
/**
|
|
45673
46289
|
* Request parameters for setAccessRequestConfig operation in AccessRequestsV2024Api.
|
|
@@ -45742,6 +46358,15 @@ export declare class AccessRequestsV2024Api extends BaseAPI {
|
|
|
45742
46358
|
* @memberof AccessRequestsV2024Api
|
|
45743
46359
|
*/
|
|
45744
46360
|
getAccessRequestConfig(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestConfigV2024, any>>;
|
|
46361
|
+
/**
|
|
46362
|
+
* Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
|
|
46363
|
+
* @summary Identity entitlement details
|
|
46364
|
+
* @param {AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest} requestParameters Request parameters.
|
|
46365
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
46366
|
+
* @throws {RequiredError}
|
|
46367
|
+
* @memberof AccessRequestsV2024Api
|
|
46368
|
+
*/
|
|
46369
|
+
getEntitlementDetailsForIdentity(requestParameters: AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityEntitlementDetailsV2024, any>>;
|
|
45745
46370
|
/**
|
|
45746
46371
|
* Use this API to return a list of access request statuses based on the specified query parameters. If an access request was made for access that an identity already has, the API ignores the access request. These ignored requests do not display in the list of access request statuses. Any user with any user level can get the status of their own access requests. A user with ORG_ADMIN is required to call this API to get a list of statuses for other users.
|
|
45747
46372
|
* @summary Access request status
|
|
@@ -45759,7 +46384,7 @@ export declare class AccessRequestsV2024Api extends BaseAPI {
|
|
|
45759
46384
|
* @throws {RequiredError}
|
|
45760
46385
|
* @memberof AccessRequestsV2024Api
|
|
45761
46386
|
*/
|
|
45762
|
-
listAdministratorsAccessRequestStatus(requestParameters
|
|
46387
|
+
listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestAdminItemStatusV2024[], any>>;
|
|
45763
46388
|
/**
|
|
45764
46389
|
* Use this API to fetch account information for an identity against the items in an access request. Used to fetch accountSelection for the AccessRequest prior to submitting for async processing.
|
|
45765
46390
|
* @summary Get accounts selections for identity
|
|
@@ -47348,12 +47973,12 @@ export declare const AppsV2024ApiAxiosParamCreator: (configuration?: Configurati
|
|
|
47348
47973
|
/**
|
|
47349
47974
|
* This endpoint creates a source app using the given source app payload
|
|
47350
47975
|
* @summary Create source app
|
|
47351
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
47352
47976
|
* @param {SourceAppCreateDtoV2024} sourceAppCreateDtoV2024
|
|
47977
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
47353
47978
|
* @param {*} [axiosOptions] Override http request option.
|
|
47354
47979
|
* @throws {RequiredError}
|
|
47355
47980
|
*/
|
|
47356
|
-
createSourceApp: (
|
|
47981
|
+
createSourceApp: (sourceAppCreateDtoV2024: SourceAppCreateDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
47357
47982
|
/**
|
|
47358
47983
|
* This API returns the final list of access profiles for the specified source app after removing
|
|
47359
47984
|
* @summary Bulk remove access profiles from the specified source app
|
|
@@ -47369,11 +47994,11 @@ export declare const AppsV2024ApiAxiosParamCreator: (configuration?: Configurati
|
|
|
47369
47994
|
* Use this API to delete a specific source app
|
|
47370
47995
|
* @summary Delete source app by id
|
|
47371
47996
|
* @param {string} id source app ID.
|
|
47372
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
47997
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
47373
47998
|
* @param {*} [axiosOptions] Override http request option.
|
|
47374
47999
|
* @throws {RequiredError}
|
|
47375
48000
|
*/
|
|
47376
|
-
deleteSourceApp: (id: string, xSailPointExperimental
|
|
48001
|
+
deleteSourceApp: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
47377
48002
|
/**
|
|
47378
48003
|
* This API returns a source app by its ID.
|
|
47379
48004
|
* @summary Get source app by id
|
|
@@ -47473,12 +48098,12 @@ export declare const AppsV2024ApiAxiosParamCreator: (configuration?: Configurati
|
|
|
47473
48098
|
* This API updates an existing source app using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **name**, **description**, **enabled**, **owner**, **provisionRequestEnabled**, **appCenterEnabled**, **accountSource**, **matchAllAccounts** and **accessProfiles**. Name, description and owner can\'t be empty or null.
|
|
47474
48099
|
* @summary Patch source app by id
|
|
47475
48100
|
* @param {string} id ID of the source app to patch
|
|
47476
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
48101
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
47477
48102
|
* @param {Array<JsonPatchOperationV2024>} [jsonPatchOperationV2024]
|
|
47478
48103
|
* @param {*} [axiosOptions] Override http request option.
|
|
47479
48104
|
* @throws {RequiredError}
|
|
47480
48105
|
*/
|
|
47481
|
-
patchSourceApp: (id: string, xSailPointExperimental
|
|
48106
|
+
patchSourceApp: (id: string, xSailPointExperimental?: string, jsonPatchOperationV2024?: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
47482
48107
|
/**
|
|
47483
48108
|
* This API updates an existing user app using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **account**
|
|
47484
48109
|
* @summary Patch user app by id
|
|
@@ -47507,12 +48132,12 @@ export declare const AppsV2024ApiFp: (configuration?: Configuration) => {
|
|
|
47507
48132
|
/**
|
|
47508
48133
|
* This endpoint creates a source app using the given source app payload
|
|
47509
48134
|
* @summary Create source app
|
|
47510
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
47511
48135
|
* @param {SourceAppCreateDtoV2024} sourceAppCreateDtoV2024
|
|
48136
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
47512
48137
|
* @param {*} [axiosOptions] Override http request option.
|
|
47513
48138
|
* @throws {RequiredError}
|
|
47514
48139
|
*/
|
|
47515
|
-
createSourceApp(
|
|
48140
|
+
createSourceApp(sourceAppCreateDtoV2024: SourceAppCreateDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceAppV2024>>;
|
|
47516
48141
|
/**
|
|
47517
48142
|
* This API returns the final list of access profiles for the specified source app after removing
|
|
47518
48143
|
* @summary Bulk remove access profiles from the specified source app
|
|
@@ -47528,11 +48153,11 @@ export declare const AppsV2024ApiFp: (configuration?: Configuration) => {
|
|
|
47528
48153
|
* Use this API to delete a specific source app
|
|
47529
48154
|
* @summary Delete source app by id
|
|
47530
48155
|
* @param {string} id source app ID.
|
|
47531
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
48156
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
47532
48157
|
* @param {*} [axiosOptions] Override http request option.
|
|
47533
48158
|
* @throws {RequiredError}
|
|
47534
48159
|
*/
|
|
47535
|
-
deleteSourceApp(id: string, xSailPointExperimental
|
|
48160
|
+
deleteSourceApp(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceAppV2024>>;
|
|
47536
48161
|
/**
|
|
47537
48162
|
* This API returns a source app by its ID.
|
|
47538
48163
|
* @summary Get source app by id
|
|
@@ -47632,12 +48257,12 @@ export declare const AppsV2024ApiFp: (configuration?: Configuration) => {
|
|
|
47632
48257
|
* This API updates an existing source app using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **name**, **description**, **enabled**, **owner**, **provisionRequestEnabled**, **appCenterEnabled**, **accountSource**, **matchAllAccounts** and **accessProfiles**. Name, description and owner can\'t be empty or null.
|
|
47633
48258
|
* @summary Patch source app by id
|
|
47634
48259
|
* @param {string} id ID of the source app to patch
|
|
47635
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
48260
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
47636
48261
|
* @param {Array<JsonPatchOperationV2024>} [jsonPatchOperationV2024]
|
|
47637
48262
|
* @param {*} [axiosOptions] Override http request option.
|
|
47638
48263
|
* @throws {RequiredError}
|
|
47639
48264
|
*/
|
|
47640
|
-
patchSourceApp(id: string, xSailPointExperimental
|
|
48265
|
+
patchSourceApp(id: string, xSailPointExperimental?: string, jsonPatchOperationV2024?: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceAppPatchDtoV2024>>;
|
|
47641
48266
|
/**
|
|
47642
48267
|
* This API updates an existing user app using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **account**
|
|
47643
48268
|
* @summary Patch user app by id
|
|
@@ -47782,18 +48407,18 @@ export declare const AppsV2024ApiFactory: (configuration?: Configuration, basePa
|
|
|
47782
48407
|
* @interface AppsV2024ApiCreateSourceAppRequest
|
|
47783
48408
|
*/
|
|
47784
48409
|
export interface AppsV2024ApiCreateSourceAppRequest {
|
|
47785
|
-
/**
|
|
47786
|
-
* Use this header to enable this experimental API.
|
|
47787
|
-
* @type {string}
|
|
47788
|
-
* @memberof AppsV2024ApiCreateSourceApp
|
|
47789
|
-
*/
|
|
47790
|
-
readonly xSailPointExperimental: string;
|
|
47791
48410
|
/**
|
|
47792
48411
|
*
|
|
47793
48412
|
* @type {SourceAppCreateDtoV2024}
|
|
47794
48413
|
* @memberof AppsV2024ApiCreateSourceApp
|
|
47795
48414
|
*/
|
|
47796
48415
|
readonly sourceAppCreateDtoV2024: SourceAppCreateDtoV2024;
|
|
48416
|
+
/**
|
|
48417
|
+
* Use this header to enable this experimental API.
|
|
48418
|
+
* @type {string}
|
|
48419
|
+
* @memberof AppsV2024ApiCreateSourceApp
|
|
48420
|
+
*/
|
|
48421
|
+
readonly xSailPointExperimental?: string;
|
|
47797
48422
|
}
|
|
47798
48423
|
/**
|
|
47799
48424
|
* Request parameters for deleteAccessProfilesFromSourceAppByBulk operation in AppsV2024Api.
|
|
@@ -47843,7 +48468,7 @@ export interface AppsV2024ApiDeleteSourceAppRequest {
|
|
|
47843
48468
|
* @type {string}
|
|
47844
48469
|
* @memberof AppsV2024ApiDeleteSourceApp
|
|
47845
48470
|
*/
|
|
47846
|
-
readonly xSailPointExperimental
|
|
48471
|
+
readonly xSailPointExperimental?: string;
|
|
47847
48472
|
}
|
|
47848
48473
|
/**
|
|
47849
48474
|
* Request parameters for getSourceApp operation in AppsV2024Api.
|
|
@@ -48152,7 +48777,7 @@ export interface AppsV2024ApiPatchSourceAppRequest {
|
|
|
48152
48777
|
* @type {string}
|
|
48153
48778
|
* @memberof AppsV2024ApiPatchSourceApp
|
|
48154
48779
|
*/
|
|
48155
|
-
readonly xSailPointExperimental
|
|
48780
|
+
readonly xSailPointExperimental?: string;
|
|
48156
48781
|
/**
|
|
48157
48782
|
*
|
|
48158
48783
|
* @type {Array<JsonPatchOperationV2024>}
|
|
@@ -48364,12 +48989,12 @@ export declare const AuthProfileV2024ApiAxiosParamCreator: (configuration?: Conf
|
|
|
48364
48989
|
* This API updates an existing Auth Profile. The following fields are patchable: **offNetwork**, **untrustedGeography**, **applicationId**, **applicationName**, **type**
|
|
48365
48990
|
* @summary Patch a specified auth profile
|
|
48366
48991
|
* @param {string} id ID of the Auth Profile to patch.
|
|
48367
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
48368
48992
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
48993
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
48369
48994
|
* @param {*} [axiosOptions] Override http request option.
|
|
48370
48995
|
* @throws {RequiredError}
|
|
48371
48996
|
*/
|
|
48372
|
-
patchProfileConfig: (id: string,
|
|
48997
|
+
patchProfileConfig: (id: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
48373
48998
|
};
|
|
48374
48999
|
/**
|
|
48375
49000
|
* AuthProfileV2024Api - functional programming interface
|
|
@@ -48397,12 +49022,12 @@ export declare const AuthProfileV2024ApiFp: (configuration?: Configuration) => {
|
|
|
48397
49022
|
* This API updates an existing Auth Profile. The following fields are patchable: **offNetwork**, **untrustedGeography**, **applicationId**, **applicationName**, **type**
|
|
48398
49023
|
* @summary Patch a specified auth profile
|
|
48399
49024
|
* @param {string} id ID of the Auth Profile to patch.
|
|
48400
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
48401
49025
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
49026
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
48402
49027
|
* @param {*} [axiosOptions] Override http request option.
|
|
48403
49028
|
* @throws {RequiredError}
|
|
48404
49029
|
*/
|
|
48405
|
-
patchProfileConfig(id: string,
|
|
49030
|
+
patchProfileConfig(id: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthProfileV2024>>;
|
|
48406
49031
|
};
|
|
48407
49032
|
/**
|
|
48408
49033
|
* AuthProfileV2024Api - factory interface
|
|
@@ -48478,18 +49103,18 @@ export interface AuthProfileV2024ApiPatchProfileConfigRequest {
|
|
|
48478
49103
|
* @memberof AuthProfileV2024ApiPatchProfileConfig
|
|
48479
49104
|
*/
|
|
48480
49105
|
readonly id: string;
|
|
48481
|
-
/**
|
|
48482
|
-
* Use this header to enable this experimental API.
|
|
48483
|
-
* @type {string}
|
|
48484
|
-
* @memberof AuthProfileV2024ApiPatchProfileConfig
|
|
48485
|
-
*/
|
|
48486
|
-
readonly xSailPointExperimental: string;
|
|
48487
49106
|
/**
|
|
48488
49107
|
*
|
|
48489
49108
|
* @type {Array<JsonPatchOperationV2024>}
|
|
48490
49109
|
* @memberof AuthProfileV2024ApiPatchProfileConfig
|
|
48491
49110
|
*/
|
|
48492
49111
|
readonly jsonPatchOperationV2024: Array<JsonPatchOperationV2024>;
|
|
49112
|
+
/**
|
|
49113
|
+
* Use this header to enable this experimental API.
|
|
49114
|
+
* @type {string}
|
|
49115
|
+
* @memberof AuthProfileV2024ApiPatchProfileConfig
|
|
49116
|
+
*/
|
|
49117
|
+
readonly xSailPointExperimental?: string;
|
|
48493
49118
|
}
|
|
48494
49119
|
/**
|
|
48495
49120
|
* AuthProfileV2024Api - object-oriented interface
|
|
@@ -54977,12 +55602,12 @@ export declare const CustomPasswordInstructionsV2024ApiAxiosParamCreator: (confi
|
|
|
54977
55602
|
* This API delete the custom password instructions for the specified page ID.
|
|
54978
55603
|
* @summary Delete custom password instructions by page id
|
|
54979
55604
|
* @param {DeleteCustomPasswordInstructionsPageIdV2024} pageId The page ID of custom password instructions to delete.
|
|
54980
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
54981
55605
|
* @param {string} [locale] The locale for the custom instructions, a BCP47 language tag. The default value is \\\"default\\\".
|
|
55606
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
54982
55607
|
* @param {*} [axiosOptions] Override http request option.
|
|
54983
55608
|
* @throws {RequiredError}
|
|
54984
55609
|
*/
|
|
54985
|
-
deleteCustomPasswordInstructions: (pageId: DeleteCustomPasswordInstructionsPageIdV2024,
|
|
55610
|
+
deleteCustomPasswordInstructions: (pageId: DeleteCustomPasswordInstructionsPageIdV2024, locale?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
54986
55611
|
/**
|
|
54987
55612
|
* This API returns the custom password instructions for the specified page ID.
|
|
54988
55613
|
* @summary Get custom password instructions by page id
|
|
@@ -55012,12 +55637,12 @@ export declare const CustomPasswordInstructionsV2024ApiFp: (configuration?: Conf
|
|
|
55012
55637
|
* This API delete the custom password instructions for the specified page ID.
|
|
55013
55638
|
* @summary Delete custom password instructions by page id
|
|
55014
55639
|
* @param {DeleteCustomPasswordInstructionsPageIdV2024} pageId The page ID of custom password instructions to delete.
|
|
55015
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55016
55640
|
* @param {string} [locale] The locale for the custom instructions, a BCP47 language tag. The default value is \\\"default\\\".
|
|
55641
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55017
55642
|
* @param {*} [axiosOptions] Override http request option.
|
|
55018
55643
|
* @throws {RequiredError}
|
|
55019
55644
|
*/
|
|
55020
|
-
deleteCustomPasswordInstructions(pageId: DeleteCustomPasswordInstructionsPageIdV2024,
|
|
55645
|
+
deleteCustomPasswordInstructions(pageId: DeleteCustomPasswordInstructionsPageIdV2024, locale?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
55021
55646
|
/**
|
|
55022
55647
|
* This API returns the custom password instructions for the specified page ID.
|
|
55023
55648
|
* @summary Get custom password instructions by page id
|
|
@@ -55091,17 +55716,17 @@ export interface CustomPasswordInstructionsV2024ApiDeleteCustomPasswordInstructi
|
|
|
55091
55716
|
*/
|
|
55092
55717
|
readonly pageId: DeleteCustomPasswordInstructionsPageIdV2024;
|
|
55093
55718
|
/**
|
|
55094
|
-
*
|
|
55719
|
+
* The locale for the custom instructions, a BCP47 language tag. The default value is \\\"default\\\".
|
|
55095
55720
|
* @type {string}
|
|
55096
55721
|
* @memberof CustomPasswordInstructionsV2024ApiDeleteCustomPasswordInstructions
|
|
55097
55722
|
*/
|
|
55098
|
-
readonly
|
|
55723
|
+
readonly locale?: string;
|
|
55099
55724
|
/**
|
|
55100
|
-
*
|
|
55725
|
+
* Use this header to enable this experimental API.
|
|
55101
55726
|
* @type {string}
|
|
55102
55727
|
* @memberof CustomPasswordInstructionsV2024ApiDeleteCustomPasswordInstructions
|
|
55103
55728
|
*/
|
|
55104
|
-
readonly
|
|
55729
|
+
readonly xSailPointExperimental?: string;
|
|
55105
55730
|
}
|
|
55106
55731
|
/**
|
|
55107
55732
|
* Request parameters for getCustomPasswordInstructions operation in CustomPasswordInstructionsV2024Api.
|
|
@@ -55216,12 +55841,12 @@ export declare const DataSegmentationV2024ApiAxiosParamCreator: (configuration?:
|
|
|
55216
55841
|
* This API deletes the segment specified by the given ID.
|
|
55217
55842
|
* @summary Delete segment by id
|
|
55218
55843
|
* @param {string} id The segment ID to delete.
|
|
55219
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55220
55844
|
* @param {boolean} [published] This determines which version of the segment to delete
|
|
55845
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55221
55846
|
* @param {*} [axiosOptions] Override http request option.
|
|
55222
55847
|
* @throws {RequiredError}
|
|
55223
55848
|
*/
|
|
55224
|
-
deleteDataSegment: (id: string,
|
|
55849
|
+
deleteDataSegment: (id: string, published?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55225
55850
|
/**
|
|
55226
55851
|
* This API returns the segment specified by the given ID.
|
|
55227
55852
|
* @summary Get segment by id
|
|
@@ -55268,22 +55893,22 @@ export declare const DataSegmentationV2024ApiAxiosParamCreator: (configuration?:
|
|
|
55268
55893
|
* Use this API to update segment fields by using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
55269
55894
|
* @summary Update segment
|
|
55270
55895
|
* @param {string} id The segment ID to modify.
|
|
55271
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55272
55896
|
* @param {Array<object>} requestBody A list of segment update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * name * description * membership * memberFilter * memberSelection * scopes * enabled
|
|
55897
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55273
55898
|
* @param {*} [axiosOptions] Override http request option.
|
|
55274
55899
|
* @throws {RequiredError}
|
|
55275
55900
|
*/
|
|
55276
|
-
patchDataSegment: (id: string,
|
|
55901
|
+
patchDataSegment: (id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55277
55902
|
/**
|
|
55278
55903
|
* This will publish the segment so that it starts applying the segmentation to the desired users if enabled
|
|
55279
55904
|
* @summary Publish segment by id
|
|
55280
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55281
55905
|
* @param {Array<string>} requestBody A list of segment ids that you wish to publish
|
|
55282
55906
|
* @param {boolean} [publishAll] This flag decides whether you want to publish all unpublished or a list of specific segment ids
|
|
55907
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55283
55908
|
* @param {*} [axiosOptions] Override http request option.
|
|
55284
55909
|
* @throws {RequiredError}
|
|
55285
55910
|
*/
|
|
55286
|
-
publishDataSegment: (
|
|
55911
|
+
publishDataSegment: (requestBody: Array<string>, publishAll?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55287
55912
|
};
|
|
55288
55913
|
/**
|
|
55289
55914
|
* DataSegmentationV2024Api - functional programming interface
|
|
@@ -55302,12 +55927,12 @@ export declare const DataSegmentationV2024ApiFp: (configuration?: Configuration)
|
|
|
55302
55927
|
* This API deletes the segment specified by the given ID.
|
|
55303
55928
|
* @summary Delete segment by id
|
|
55304
55929
|
* @param {string} id The segment ID to delete.
|
|
55305
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55306
55930
|
* @param {boolean} [published] This determines which version of the segment to delete
|
|
55931
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55307
55932
|
* @param {*} [axiosOptions] Override http request option.
|
|
55308
55933
|
* @throws {RequiredError}
|
|
55309
55934
|
*/
|
|
55310
|
-
deleteDataSegment(id: string,
|
|
55935
|
+
deleteDataSegment(id: string, published?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
55311
55936
|
/**
|
|
55312
55937
|
* This API returns the segment specified by the given ID.
|
|
55313
55938
|
* @summary Get segment by id
|
|
@@ -55354,22 +55979,22 @@ export declare const DataSegmentationV2024ApiFp: (configuration?: Configuration)
|
|
|
55354
55979
|
* Use this API to update segment fields by using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
55355
55980
|
* @summary Update segment
|
|
55356
55981
|
* @param {string} id The segment ID to modify.
|
|
55357
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55358
55982
|
* @param {Array<object>} requestBody A list of segment update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * name * description * membership * memberFilter * memberSelection * scopes * enabled
|
|
55983
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55359
55984
|
* @param {*} [axiosOptions] Override http request option.
|
|
55360
55985
|
* @throws {RequiredError}
|
|
55361
55986
|
*/
|
|
55362
|
-
patchDataSegment(id: string,
|
|
55987
|
+
patchDataSegment(id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataSegmentV2024>>;
|
|
55363
55988
|
/**
|
|
55364
55989
|
* This will publish the segment so that it starts applying the segmentation to the desired users if enabled
|
|
55365
55990
|
* @summary Publish segment by id
|
|
55366
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55367
55991
|
* @param {Array<string>} requestBody A list of segment ids that you wish to publish
|
|
55368
55992
|
* @param {boolean} [publishAll] This flag decides whether you want to publish all unpublished or a list of specific segment ids
|
|
55993
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55369
55994
|
* @param {*} [axiosOptions] Override http request option.
|
|
55370
55995
|
* @throws {RequiredError}
|
|
55371
55996
|
*/
|
|
55372
|
-
publishDataSegment(
|
|
55997
|
+
publishDataSegment(requestBody: Array<string>, publishAll?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
55373
55998
|
};
|
|
55374
55999
|
/**
|
|
55375
56000
|
* DataSegmentationV2024Api - factory interface
|
|
@@ -55466,18 +56091,18 @@ export interface DataSegmentationV2024ApiDeleteDataSegmentRequest {
|
|
|
55466
56091
|
* @memberof DataSegmentationV2024ApiDeleteDataSegment
|
|
55467
56092
|
*/
|
|
55468
56093
|
readonly id: string;
|
|
55469
|
-
/**
|
|
55470
|
-
* Use this header to enable this experimental API.
|
|
55471
|
-
* @type {string}
|
|
55472
|
-
* @memberof DataSegmentationV2024ApiDeleteDataSegment
|
|
55473
|
-
*/
|
|
55474
|
-
readonly xSailPointExperimental: string;
|
|
55475
56094
|
/**
|
|
55476
56095
|
* This determines which version of the segment to delete
|
|
55477
56096
|
* @type {boolean}
|
|
55478
56097
|
* @memberof DataSegmentationV2024ApiDeleteDataSegment
|
|
55479
56098
|
*/
|
|
55480
56099
|
readonly published?: boolean;
|
|
56100
|
+
/**
|
|
56101
|
+
* Use this header to enable this experimental API.
|
|
56102
|
+
* @type {string}
|
|
56103
|
+
* @memberof DataSegmentationV2024ApiDeleteDataSegment
|
|
56104
|
+
*/
|
|
56105
|
+
readonly xSailPointExperimental?: string;
|
|
55481
56106
|
}
|
|
55482
56107
|
/**
|
|
55483
56108
|
* Request parameters for getDataSegment operation in DataSegmentationV2024Api.
|
|
@@ -55603,18 +56228,18 @@ export interface DataSegmentationV2024ApiPatchDataSegmentRequest {
|
|
|
55603
56228
|
* @memberof DataSegmentationV2024ApiPatchDataSegment
|
|
55604
56229
|
*/
|
|
55605
56230
|
readonly id: string;
|
|
55606
|
-
/**
|
|
55607
|
-
* Use this header to enable this experimental API.
|
|
55608
|
-
* @type {string}
|
|
55609
|
-
* @memberof DataSegmentationV2024ApiPatchDataSegment
|
|
55610
|
-
*/
|
|
55611
|
-
readonly xSailPointExperimental: string;
|
|
55612
56231
|
/**
|
|
55613
56232
|
* A list of segment update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * name * description * membership * memberFilter * memberSelection * scopes * enabled
|
|
55614
56233
|
* @type {Array<object>}
|
|
55615
56234
|
* @memberof DataSegmentationV2024ApiPatchDataSegment
|
|
55616
56235
|
*/
|
|
55617
56236
|
readonly requestBody: Array<object>;
|
|
56237
|
+
/**
|
|
56238
|
+
* Use this header to enable this experimental API.
|
|
56239
|
+
* @type {string}
|
|
56240
|
+
* @memberof DataSegmentationV2024ApiPatchDataSegment
|
|
56241
|
+
*/
|
|
56242
|
+
readonly xSailPointExperimental?: string;
|
|
55618
56243
|
}
|
|
55619
56244
|
/**
|
|
55620
56245
|
* Request parameters for publishDataSegment operation in DataSegmentationV2024Api.
|
|
@@ -55622,12 +56247,6 @@ export interface DataSegmentationV2024ApiPatchDataSegmentRequest {
|
|
|
55622
56247
|
* @interface DataSegmentationV2024ApiPublishDataSegmentRequest
|
|
55623
56248
|
*/
|
|
55624
56249
|
export interface DataSegmentationV2024ApiPublishDataSegmentRequest {
|
|
55625
|
-
/**
|
|
55626
|
-
* Use this header to enable this experimental API.
|
|
55627
|
-
* @type {string}
|
|
55628
|
-
* @memberof DataSegmentationV2024ApiPublishDataSegment
|
|
55629
|
-
*/
|
|
55630
|
-
readonly xSailPointExperimental: string;
|
|
55631
56250
|
/**
|
|
55632
56251
|
* A list of segment ids that you wish to publish
|
|
55633
56252
|
* @type {Array<string>}
|
|
@@ -55640,6 +56259,12 @@ export interface DataSegmentationV2024ApiPublishDataSegmentRequest {
|
|
|
55640
56259
|
* @memberof DataSegmentationV2024ApiPublishDataSegment
|
|
55641
56260
|
*/
|
|
55642
56261
|
readonly publishAll?: boolean;
|
|
56262
|
+
/**
|
|
56263
|
+
* Use this header to enable this experimental API.
|
|
56264
|
+
* @type {string}
|
|
56265
|
+
* @memberof DataSegmentationV2024ApiPublishDataSegment
|
|
56266
|
+
*/
|
|
56267
|
+
readonly xSailPointExperimental?: string;
|
|
55643
56268
|
}
|
|
55644
56269
|
/**
|
|
55645
56270
|
* DataSegmentationV2024Api - object-oriented interface
|
|
@@ -57469,21 +58094,21 @@ export declare const GovernanceGroupsV2024ApiAxiosParamCreator: (configuration?:
|
|
|
57469
58094
|
/**
|
|
57470
58095
|
* This API creates a new Governance Group.
|
|
57471
58096
|
* @summary Create a new governance group.
|
|
57472
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
57473
58097
|
* @param {WorkgroupDtoV2024} workgroupDtoV2024
|
|
58098
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
57474
58099
|
* @param {*} [axiosOptions] Override http request option.
|
|
57475
58100
|
* @throws {RequiredError}
|
|
57476
58101
|
*/
|
|
57477
|
-
createWorkgroup: (
|
|
58102
|
+
createWorkgroup: (workgroupDtoV2024: WorkgroupDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57478
58103
|
/**
|
|
57479
58104
|
* This API deletes a Governance Group by its ID.
|
|
57480
58105
|
* @summary Delete a governance group
|
|
57481
58106
|
* @param {string} id ID of the Governance Group
|
|
57482
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58107
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
57483
58108
|
* @param {*} [axiosOptions] Override http request option.
|
|
57484
58109
|
* @throws {RequiredError}
|
|
57485
58110
|
*/
|
|
57486
|
-
deleteWorkgroup: (id: string, xSailPointExperimental
|
|
58111
|
+
deleteWorkgroup: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57487
58112
|
/**
|
|
57488
58113
|
* This API removes one or more members from a Governance Group. A > **Following field of Identity is an optional field in the request.** > **name**
|
|
57489
58114
|
* @summary Remove members from governance group
|
|
@@ -57555,12 +58180,12 @@ export declare const GovernanceGroupsV2024ApiAxiosParamCreator: (configuration?:
|
|
|
57555
58180
|
* This API updates an existing governance group by ID. The following fields and objects are patchable: * name * description * owner
|
|
57556
58181
|
* @summary Patch a governance group
|
|
57557
58182
|
* @param {string} id ID of the Governance Group
|
|
57558
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58183
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
57559
58184
|
* @param {Array<JsonPatchOperationV2024>} [jsonPatchOperationV2024]
|
|
57560
58185
|
* @param {*} [axiosOptions] Override http request option.
|
|
57561
58186
|
* @throws {RequiredError}
|
|
57562
58187
|
*/
|
|
57563
|
-
patchWorkgroup: (id: string, xSailPointExperimental
|
|
58188
|
+
patchWorkgroup: (id: string, xSailPointExperimental?: string, jsonPatchOperationV2024?: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57564
58189
|
/**
|
|
57565
58190
|
* This API adds one or more members to a Governance Group. A token with API, ORG_ADMIN authority is required to call this API. > **Following field of Identity is an optional field in the request.** > **name**
|
|
57566
58191
|
* @summary Add members to governance group
|
|
@@ -57580,21 +58205,21 @@ export declare const GovernanceGroupsV2024ApiFp: (configuration?: Configuration)
|
|
|
57580
58205
|
/**
|
|
57581
58206
|
* This API creates a new Governance Group.
|
|
57582
58207
|
* @summary Create a new governance group.
|
|
57583
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
57584
58208
|
* @param {WorkgroupDtoV2024} workgroupDtoV2024
|
|
58209
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
57585
58210
|
* @param {*} [axiosOptions] Override http request option.
|
|
57586
58211
|
* @throws {RequiredError}
|
|
57587
58212
|
*/
|
|
57588
|
-
createWorkgroup(
|
|
58213
|
+
createWorkgroup(workgroupDtoV2024: WorkgroupDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkgroupDtoV2024>>;
|
|
57589
58214
|
/**
|
|
57590
58215
|
* This API deletes a Governance Group by its ID.
|
|
57591
58216
|
* @summary Delete a governance group
|
|
57592
58217
|
* @param {string} id ID of the Governance Group
|
|
57593
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58218
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
57594
58219
|
* @param {*} [axiosOptions] Override http request option.
|
|
57595
58220
|
* @throws {RequiredError}
|
|
57596
58221
|
*/
|
|
57597
|
-
deleteWorkgroup(id: string, xSailPointExperimental
|
|
58222
|
+
deleteWorkgroup(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
57598
58223
|
/**
|
|
57599
58224
|
* This API removes one or more members from a Governance Group. A > **Following field of Identity is an optional field in the request.** > **name**
|
|
57600
58225
|
* @summary Remove members from governance group
|
|
@@ -57666,12 +58291,12 @@ export declare const GovernanceGroupsV2024ApiFp: (configuration?: Configuration)
|
|
|
57666
58291
|
* This API updates an existing governance group by ID. The following fields and objects are patchable: * name * description * owner
|
|
57667
58292
|
* @summary Patch a governance group
|
|
57668
58293
|
* @param {string} id ID of the Governance Group
|
|
57669
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58294
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
57670
58295
|
* @param {Array<JsonPatchOperationV2024>} [jsonPatchOperationV2024]
|
|
57671
58296
|
* @param {*} [axiosOptions] Override http request option.
|
|
57672
58297
|
* @throws {RequiredError}
|
|
57673
58298
|
*/
|
|
57674
|
-
patchWorkgroup(id: string, xSailPointExperimental
|
|
58299
|
+
patchWorkgroup(id: string, xSailPointExperimental?: string, jsonPatchOperationV2024?: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkgroupDtoV2024>>;
|
|
57675
58300
|
/**
|
|
57676
58301
|
* This API adds one or more members to a Governance Group. A token with API, ORG_ADMIN authority is required to call this API. > **Following field of Identity is an optional field in the request.** > **name**
|
|
57677
58302
|
* @summary Add members to governance group
|
|
@@ -57775,18 +58400,18 @@ export declare const GovernanceGroupsV2024ApiFactory: (configuration?: Configura
|
|
|
57775
58400
|
* @interface GovernanceGroupsV2024ApiCreateWorkgroupRequest
|
|
57776
58401
|
*/
|
|
57777
58402
|
export interface GovernanceGroupsV2024ApiCreateWorkgroupRequest {
|
|
57778
|
-
/**
|
|
57779
|
-
* Use this header to enable this experimental API.
|
|
57780
|
-
* @type {string}
|
|
57781
|
-
* @memberof GovernanceGroupsV2024ApiCreateWorkgroup
|
|
57782
|
-
*/
|
|
57783
|
-
readonly xSailPointExperimental: string;
|
|
57784
58403
|
/**
|
|
57785
58404
|
*
|
|
57786
58405
|
* @type {WorkgroupDtoV2024}
|
|
57787
58406
|
* @memberof GovernanceGroupsV2024ApiCreateWorkgroup
|
|
57788
58407
|
*/
|
|
57789
58408
|
readonly workgroupDtoV2024: WorkgroupDtoV2024;
|
|
58409
|
+
/**
|
|
58410
|
+
* Use this header to enable this experimental API.
|
|
58411
|
+
* @type {string}
|
|
58412
|
+
* @memberof GovernanceGroupsV2024ApiCreateWorkgroup
|
|
58413
|
+
*/
|
|
58414
|
+
readonly xSailPointExperimental?: string;
|
|
57790
58415
|
}
|
|
57791
58416
|
/**
|
|
57792
58417
|
* Request parameters for deleteWorkgroup operation in GovernanceGroupsV2024Api.
|
|
@@ -57805,7 +58430,7 @@ export interface GovernanceGroupsV2024ApiDeleteWorkgroupRequest {
|
|
|
57805
58430
|
* @type {string}
|
|
57806
58431
|
* @memberof GovernanceGroupsV2024ApiDeleteWorkgroup
|
|
57807
58432
|
*/
|
|
57808
|
-
readonly xSailPointExperimental
|
|
58433
|
+
readonly xSailPointExperimental?: string;
|
|
57809
58434
|
}
|
|
57810
58435
|
/**
|
|
57811
58436
|
* Request parameters for deleteWorkgroupMembers operation in GovernanceGroupsV2024Api.
|
|
@@ -58016,7 +58641,7 @@ export interface GovernanceGroupsV2024ApiPatchWorkgroupRequest {
|
|
|
58016
58641
|
* @type {string}
|
|
58017
58642
|
* @memberof GovernanceGroupsV2024ApiPatchWorkgroup
|
|
58018
58643
|
*/
|
|
58019
|
-
readonly xSailPointExperimental
|
|
58644
|
+
readonly xSailPointExperimental?: string;
|
|
58020
58645
|
/**
|
|
58021
58646
|
*
|
|
58022
58647
|
* @type {Array<JsonPatchOperationV2024>}
|
|
@@ -58214,51 +58839,51 @@ export declare const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator: (
|
|
|
58214
58839
|
/**
|
|
58215
58840
|
* This API returns the list of ignored access request recommendations.
|
|
58216
58841
|
* @summary List ignored access request recommendations
|
|
58217
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58218
58842
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58219
58843
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58220
58844
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58221
58845
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **access.id**: *eq, in* **access.type**: *eq, in* **identityId**: *eq, in*
|
|
58222
58846
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **access.id, access.type, identityId, timestamp**
|
|
58847
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58223
58848
|
* @param {*} [axiosOptions] Override http request option.
|
|
58224
58849
|
* @throws {RequiredError}
|
|
58225
58850
|
*/
|
|
58226
|
-
getAccessRequestRecommendationsIgnoredItems: (
|
|
58851
|
+
getAccessRequestRecommendationsIgnoredItems: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
58227
58852
|
/**
|
|
58228
58853
|
* This API returns a list of requested access request recommendations.
|
|
58229
58854
|
* @summary List accepted access request recommendations
|
|
58230
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58231
58855
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58232
58856
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58233
58857
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58234
58858
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **access.id**: *eq, in* **access.type**: *eq, in* **identityId**: *eq, in*
|
|
58235
58859
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **access.id, access.type, identityId, timestamp**
|
|
58860
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58236
58861
|
* @param {*} [axiosOptions] Override http request option.
|
|
58237
58862
|
* @throws {RequiredError}
|
|
58238
58863
|
*/
|
|
58239
|
-
getAccessRequestRecommendationsRequestedItems: (
|
|
58864
|
+
getAccessRequestRecommendationsRequestedItems: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
58240
58865
|
/**
|
|
58241
58866
|
* This API returns the list of viewed access request recommendations.
|
|
58242
58867
|
* @summary List viewed access request recommendations
|
|
58243
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58244
58868
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58245
58869
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58246
58870
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58247
58871
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **access.id**: *eq, in* **access.type**: *eq, in* **identityId**: *eq, in*
|
|
58248
58872
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **access.id, access.type, identityId, timestamp**
|
|
58873
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58249
58874
|
* @param {*} [axiosOptions] Override http request option.
|
|
58250
58875
|
* @throws {RequiredError}
|
|
58251
58876
|
*/
|
|
58252
|
-
getAccessRequestRecommendationsViewedItems: (
|
|
58877
|
+
getAccessRequestRecommendationsViewedItems: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
58253
58878
|
/**
|
|
58254
58879
|
* This API updates the configurations for Access Request Recommender for the tenant.
|
|
58255
58880
|
* @summary Update access request recommendations config
|
|
58256
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58257
58881
|
* @param {AccessRequestRecommendationConfigDtoV2024} accessRequestRecommendationConfigDtoV2024 The desired configurations for Access Request Recommender for the tenant.
|
|
58882
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58258
58883
|
* @param {*} [axiosOptions] Override http request option.
|
|
58259
58884
|
* @throws {RequiredError}
|
|
58260
58885
|
*/
|
|
58261
|
-
setAccessRequestRecommendationsConfig: (
|
|
58886
|
+
setAccessRequestRecommendationsConfig: (accessRequestRecommendationConfigDtoV2024: AccessRequestRecommendationConfigDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
58262
58887
|
};
|
|
58263
58888
|
/**
|
|
58264
58889
|
* IAIAccessRequestRecommendationsV2024Api - functional programming interface
|
|
@@ -58327,51 +58952,51 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFp: (configuration?:
|
|
|
58327
58952
|
/**
|
|
58328
58953
|
* This API returns the list of ignored access request recommendations.
|
|
58329
58954
|
* @summary List ignored access request recommendations
|
|
58330
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58331
58955
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58332
58956
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58333
58957
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58334
58958
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **access.id**: *eq, in* **access.type**: *eq, in* **identityId**: *eq, in*
|
|
58335
58959
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **access.id, access.type, identityId, timestamp**
|
|
58960
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58336
58961
|
* @param {*} [axiosOptions] Override http request option.
|
|
58337
58962
|
* @throws {RequiredError}
|
|
58338
58963
|
*/
|
|
58339
|
-
getAccessRequestRecommendationsIgnoredItems(
|
|
58964
|
+
getAccessRequestRecommendationsIgnoredItems(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>>>;
|
|
58340
58965
|
/**
|
|
58341
58966
|
* This API returns a list of requested access request recommendations.
|
|
58342
58967
|
* @summary List accepted access request recommendations
|
|
58343
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58344
58968
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58345
58969
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58346
58970
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58347
58971
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **access.id**: *eq, in* **access.type**: *eq, in* **identityId**: *eq, in*
|
|
58348
58972
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **access.id, access.type, identityId, timestamp**
|
|
58973
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58349
58974
|
* @param {*} [axiosOptions] Override http request option.
|
|
58350
58975
|
* @throws {RequiredError}
|
|
58351
58976
|
*/
|
|
58352
|
-
getAccessRequestRecommendationsRequestedItems(
|
|
58977
|
+
getAccessRequestRecommendationsRequestedItems(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>>>;
|
|
58353
58978
|
/**
|
|
58354
58979
|
* This API returns the list of viewed access request recommendations.
|
|
58355
58980
|
* @summary List viewed access request recommendations
|
|
58356
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58357
58981
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58358
58982
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58359
58983
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58360
58984
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **access.id**: *eq, in* **access.type**: *eq, in* **identityId**: *eq, in*
|
|
58361
58985
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **access.id, access.type, identityId, timestamp**
|
|
58986
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58362
58987
|
* @param {*} [axiosOptions] Override http request option.
|
|
58363
58988
|
* @throws {RequiredError}
|
|
58364
58989
|
*/
|
|
58365
|
-
getAccessRequestRecommendationsViewedItems(
|
|
58990
|
+
getAccessRequestRecommendationsViewedItems(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>>>;
|
|
58366
58991
|
/**
|
|
58367
58992
|
* This API updates the configurations for Access Request Recommender for the tenant.
|
|
58368
58993
|
* @summary Update access request recommendations config
|
|
58369
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58370
58994
|
* @param {AccessRequestRecommendationConfigDtoV2024} accessRequestRecommendationConfigDtoV2024 The desired configurations for Access Request Recommender for the tenant.
|
|
58995
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58371
58996
|
* @param {*} [axiosOptions] Override http request option.
|
|
58372
58997
|
* @throws {RequiredError}
|
|
58373
58998
|
*/
|
|
58374
|
-
setAccessRequestRecommendationsConfig(
|
|
58999
|
+
setAccessRequestRecommendationsConfig(accessRequestRecommendationConfigDtoV2024: AccessRequestRecommendationConfigDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessRequestRecommendationConfigDtoV2024>>;
|
|
58375
59000
|
};
|
|
58376
59001
|
/**
|
|
58377
59002
|
* IAIAccessRequestRecommendationsV2024Api - factory interface
|
|
@@ -58433,7 +59058,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFactory: (configurat
|
|
|
58433
59058
|
* @param {*} [axiosOptions] Override http request option.
|
|
58434
59059
|
* @throws {RequiredError}
|
|
58435
59060
|
*/
|
|
58436
|
-
getAccessRequestRecommendationsIgnoredItems(requestParameters
|
|
59061
|
+
getAccessRequestRecommendationsIgnoredItems(requestParameters?: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>>;
|
|
58437
59062
|
/**
|
|
58438
59063
|
* This API returns a list of requested access request recommendations.
|
|
58439
59064
|
* @summary List accepted access request recommendations
|
|
@@ -58441,7 +59066,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFactory: (configurat
|
|
|
58441
59066
|
* @param {*} [axiosOptions] Override http request option.
|
|
58442
59067
|
* @throws {RequiredError}
|
|
58443
59068
|
*/
|
|
58444
|
-
getAccessRequestRecommendationsRequestedItems(requestParameters
|
|
59069
|
+
getAccessRequestRecommendationsRequestedItems(requestParameters?: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>>;
|
|
58445
59070
|
/**
|
|
58446
59071
|
* This API returns the list of viewed access request recommendations.
|
|
58447
59072
|
* @summary List viewed access request recommendations
|
|
@@ -58449,7 +59074,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFactory: (configurat
|
|
|
58449
59074
|
* @param {*} [axiosOptions] Override http request option.
|
|
58450
59075
|
* @throws {RequiredError}
|
|
58451
59076
|
*/
|
|
58452
|
-
getAccessRequestRecommendationsViewedItems(requestParameters
|
|
59077
|
+
getAccessRequestRecommendationsViewedItems(requestParameters?: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>>;
|
|
58453
59078
|
/**
|
|
58454
59079
|
* This API updates the configurations for Access Request Recommender for the tenant.
|
|
58455
59080
|
* @summary Update access request recommendations config
|
|
@@ -58609,12 +59234,6 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
58609
59234
|
* @interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest
|
|
58610
59235
|
*/
|
|
58611
59236
|
export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest {
|
|
58612
|
-
/**
|
|
58613
|
-
* Use this header to enable this experimental API.
|
|
58614
|
-
* @type {string}
|
|
58615
|
-
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItems
|
|
58616
|
-
*/
|
|
58617
|
-
readonly xSailPointExperimental: string;
|
|
58618
59237
|
/**
|
|
58619
59238
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58620
59239
|
* @type {number}
|
|
@@ -58645,6 +59264,12 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
58645
59264
|
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItems
|
|
58646
59265
|
*/
|
|
58647
59266
|
readonly sorters?: string;
|
|
59267
|
+
/**
|
|
59268
|
+
* Use this header to enable this experimental API.
|
|
59269
|
+
* @type {string}
|
|
59270
|
+
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItems
|
|
59271
|
+
*/
|
|
59272
|
+
readonly xSailPointExperimental?: string;
|
|
58648
59273
|
}
|
|
58649
59274
|
/**
|
|
58650
59275
|
* Request parameters for getAccessRequestRecommendationsRequestedItems operation in IAIAccessRequestRecommendationsV2024Api.
|
|
@@ -58652,12 +59277,6 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
58652
59277
|
* @interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest
|
|
58653
59278
|
*/
|
|
58654
59279
|
export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest {
|
|
58655
|
-
/**
|
|
58656
|
-
* Use this header to enable this experimental API.
|
|
58657
|
-
* @type {string}
|
|
58658
|
-
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItems
|
|
58659
|
-
*/
|
|
58660
|
-
readonly xSailPointExperimental: string;
|
|
58661
59280
|
/**
|
|
58662
59281
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58663
59282
|
* @type {number}
|
|
@@ -58688,6 +59307,12 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
58688
59307
|
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItems
|
|
58689
59308
|
*/
|
|
58690
59309
|
readonly sorters?: string;
|
|
59310
|
+
/**
|
|
59311
|
+
* Use this header to enable this experimental API.
|
|
59312
|
+
* @type {string}
|
|
59313
|
+
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItems
|
|
59314
|
+
*/
|
|
59315
|
+
readonly xSailPointExperimental?: string;
|
|
58691
59316
|
}
|
|
58692
59317
|
/**
|
|
58693
59318
|
* Request parameters for getAccessRequestRecommendationsViewedItems operation in IAIAccessRequestRecommendationsV2024Api.
|
|
@@ -58695,12 +59320,6 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
58695
59320
|
* @interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItemsRequest
|
|
58696
59321
|
*/
|
|
58697
59322
|
export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItemsRequest {
|
|
58698
|
-
/**
|
|
58699
|
-
* Use this header to enable this experimental API.
|
|
58700
|
-
* @type {string}
|
|
58701
|
-
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItems
|
|
58702
|
-
*/
|
|
58703
|
-
readonly xSailPointExperimental: string;
|
|
58704
59323
|
/**
|
|
58705
59324
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
58706
59325
|
* @type {number}
|
|
@@ -58731,6 +59350,12 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
58731
59350
|
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItems
|
|
58732
59351
|
*/
|
|
58733
59352
|
readonly sorters?: string;
|
|
59353
|
+
/**
|
|
59354
|
+
* Use this header to enable this experimental API.
|
|
59355
|
+
* @type {string}
|
|
59356
|
+
* @memberof IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItems
|
|
59357
|
+
*/
|
|
59358
|
+
readonly xSailPointExperimental?: string;
|
|
58734
59359
|
}
|
|
58735
59360
|
/**
|
|
58736
59361
|
* Request parameters for setAccessRequestRecommendationsConfig operation in IAIAccessRequestRecommendationsV2024Api.
|
|
@@ -58738,18 +59363,18 @@ export interface IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommen
|
|
|
58738
59363
|
* @interface IAIAccessRequestRecommendationsV2024ApiSetAccessRequestRecommendationsConfigRequest
|
|
58739
59364
|
*/
|
|
58740
59365
|
export interface IAIAccessRequestRecommendationsV2024ApiSetAccessRequestRecommendationsConfigRequest {
|
|
58741
|
-
/**
|
|
58742
|
-
* Use this header to enable this experimental API.
|
|
58743
|
-
* @type {string}
|
|
58744
|
-
* @memberof IAIAccessRequestRecommendationsV2024ApiSetAccessRequestRecommendationsConfig
|
|
58745
|
-
*/
|
|
58746
|
-
readonly xSailPointExperimental: string;
|
|
58747
59366
|
/**
|
|
58748
59367
|
* The desired configurations for Access Request Recommender for the tenant.
|
|
58749
59368
|
* @type {AccessRequestRecommendationConfigDtoV2024}
|
|
58750
59369
|
* @memberof IAIAccessRequestRecommendationsV2024ApiSetAccessRequestRecommendationsConfig
|
|
58751
59370
|
*/
|
|
58752
59371
|
readonly accessRequestRecommendationConfigDtoV2024: AccessRequestRecommendationConfigDtoV2024;
|
|
59372
|
+
/**
|
|
59373
|
+
* Use this header to enable this experimental API.
|
|
59374
|
+
* @type {string}
|
|
59375
|
+
* @memberof IAIAccessRequestRecommendationsV2024ApiSetAccessRequestRecommendationsConfig
|
|
59376
|
+
*/
|
|
59377
|
+
readonly xSailPointExperimental?: string;
|
|
58753
59378
|
}
|
|
58754
59379
|
/**
|
|
58755
59380
|
* IAIAccessRequestRecommendationsV2024Api - object-oriented interface
|
|
@@ -58820,7 +59445,7 @@ export declare class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
58820
59445
|
* @throws {RequiredError}
|
|
58821
59446
|
* @memberof IAIAccessRequestRecommendationsV2024Api
|
|
58822
59447
|
*/
|
|
58823
|
-
getAccessRequestRecommendationsIgnoredItems(requestParameters
|
|
59448
|
+
getAccessRequestRecommendationsIgnoredItems(requestParameters?: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoV2024[], any>>;
|
|
58824
59449
|
/**
|
|
58825
59450
|
* This API returns a list of requested access request recommendations.
|
|
58826
59451
|
* @summary List accepted access request recommendations
|
|
@@ -58829,7 +59454,7 @@ export declare class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
58829
59454
|
* @throws {RequiredError}
|
|
58830
59455
|
* @memberof IAIAccessRequestRecommendationsV2024Api
|
|
58831
59456
|
*/
|
|
58832
|
-
getAccessRequestRecommendationsRequestedItems(requestParameters
|
|
59457
|
+
getAccessRequestRecommendationsRequestedItems(requestParameters?: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoV2024[], any>>;
|
|
58833
59458
|
/**
|
|
58834
59459
|
* This API returns the list of viewed access request recommendations.
|
|
58835
59460
|
* @summary List viewed access request recommendations
|
|
@@ -58838,7 +59463,7 @@ export declare class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
58838
59463
|
* @throws {RequiredError}
|
|
58839
59464
|
* @memberof IAIAccessRequestRecommendationsV2024Api
|
|
58840
59465
|
*/
|
|
58841
|
-
getAccessRequestRecommendationsViewedItems(requestParameters
|
|
59466
|
+
getAccessRequestRecommendationsViewedItems(requestParameters?: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoV2024[], any>>;
|
|
58842
59467
|
/**
|
|
58843
59468
|
* This API updates the configurations for Access Request Recommender for the tenant.
|
|
58844
59469
|
* @summary Update access request recommendations config
|
|
@@ -58857,12 +59482,12 @@ export declare const IAICommonAccessV2024ApiAxiosParamCreator: (configuration?:
|
|
|
58857
59482
|
/**
|
|
58858
59483
|
* This API is used to add roles/access profiles to the list of common access for a customer. Requires authorization scope of iai:access-modeling:create
|
|
58859
59484
|
* @summary Create common access items
|
|
58860
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58861
59485
|
* @param {CommonAccessItemRequestV2024} commonAccessItemRequestV2024
|
|
59486
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58862
59487
|
* @param {*} [axiosOptions] Override http request option.
|
|
58863
59488
|
* @throws {RequiredError}
|
|
58864
59489
|
*/
|
|
58865
|
-
createCommonAccess: (
|
|
59490
|
+
createCommonAccess: (commonAccessItemRequestV2024: CommonAccessItemRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
58866
59491
|
/**
|
|
58867
59492
|
* This endpoint returns the current common access for a customer. The returned items can be filtered and sorted. Requires authorization scope of iai:access-modeling:read
|
|
58868
59493
|
* @summary Get a paginated list of common access
|
|
@@ -58894,12 +59519,12 @@ export declare const IAICommonAccessV2024ApiFp: (configuration?: Configuration)
|
|
|
58894
59519
|
/**
|
|
58895
59520
|
* This API is used to add roles/access profiles to the list of common access for a customer. Requires authorization scope of iai:access-modeling:create
|
|
58896
59521
|
* @summary Create common access items
|
|
58897
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
58898
59522
|
* @param {CommonAccessItemRequestV2024} commonAccessItemRequestV2024
|
|
59523
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
58899
59524
|
* @param {*} [axiosOptions] Override http request option.
|
|
58900
59525
|
* @throws {RequiredError}
|
|
58901
59526
|
*/
|
|
58902
|
-
createCommonAccess(
|
|
59527
|
+
createCommonAccess(commonAccessItemRequestV2024: CommonAccessItemRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CommonAccessItemResponseV2024>>;
|
|
58903
59528
|
/**
|
|
58904
59529
|
* This endpoint returns the current common access for a customer. The returned items can be filtered and sorted. Requires authorization scope of iai:access-modeling:read
|
|
58905
59530
|
* @summary Get a paginated list of common access
|
|
@@ -58959,18 +59584,18 @@ export declare const IAICommonAccessV2024ApiFactory: (configuration?: Configurat
|
|
|
58959
59584
|
* @interface IAICommonAccessV2024ApiCreateCommonAccessRequest
|
|
58960
59585
|
*/
|
|
58961
59586
|
export interface IAICommonAccessV2024ApiCreateCommonAccessRequest {
|
|
58962
|
-
/**
|
|
58963
|
-
* Use this header to enable this experimental API.
|
|
58964
|
-
* @type {string}
|
|
58965
|
-
* @memberof IAICommonAccessV2024ApiCreateCommonAccess
|
|
58966
|
-
*/
|
|
58967
|
-
readonly xSailPointExperimental: string;
|
|
58968
59587
|
/**
|
|
58969
59588
|
*
|
|
58970
59589
|
* @type {CommonAccessItemRequestV2024}
|
|
58971
59590
|
* @memberof IAICommonAccessV2024ApiCreateCommonAccess
|
|
58972
59591
|
*/
|
|
58973
59592
|
readonly commonAccessItemRequestV2024: CommonAccessItemRequestV2024;
|
|
59593
|
+
/**
|
|
59594
|
+
* Use this header to enable this experimental API.
|
|
59595
|
+
* @type {string}
|
|
59596
|
+
* @memberof IAICommonAccessV2024ApiCreateCommonAccess
|
|
59597
|
+
*/
|
|
59598
|
+
readonly xSailPointExperimental?: string;
|
|
58974
59599
|
}
|
|
58975
59600
|
/**
|
|
58976
59601
|
* Request parameters for getCommonAccess operation in IAICommonAccessV2024Api.
|
|
@@ -59925,12 +60550,12 @@ export declare const IAIRecommendationsV2024ApiAxiosParamCreator: (configuration
|
|
|
59925
60550
|
/**
|
|
59926
60551
|
* Updates configuration attributes used by certification recommendations.
|
|
59927
60552
|
* @summary Update certification recommendation config values
|
|
59928
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
59929
60553
|
* @param {RecommendationConfigDtoV2024} recommendationConfigDtoV2024
|
|
60554
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
59930
60555
|
* @param {*} [axiosOptions] Override http request option.
|
|
59931
60556
|
* @throws {RequiredError}
|
|
59932
60557
|
*/
|
|
59933
|
-
updateRecommendationsConfig: (
|
|
60558
|
+
updateRecommendationsConfig: (recommendationConfigDtoV2024: RecommendationConfigDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
59934
60559
|
};
|
|
59935
60560
|
/**
|
|
59936
60561
|
* IAIRecommendationsV2024Api - functional programming interface
|
|
@@ -59957,12 +60582,12 @@ export declare const IAIRecommendationsV2024ApiFp: (configuration?: Configuratio
|
|
|
59957
60582
|
/**
|
|
59958
60583
|
* Updates configuration attributes used by certification recommendations.
|
|
59959
60584
|
* @summary Update certification recommendation config values
|
|
59960
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
59961
60585
|
* @param {RecommendationConfigDtoV2024} recommendationConfigDtoV2024
|
|
60586
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
59962
60587
|
* @param {*} [axiosOptions] Override http request option.
|
|
59963
60588
|
* @throws {RequiredError}
|
|
59964
60589
|
*/
|
|
59965
|
-
updateRecommendationsConfig(
|
|
60590
|
+
updateRecommendationsConfig(recommendationConfigDtoV2024: RecommendationConfigDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RecommendationConfigDtoV2024>>;
|
|
59966
60591
|
};
|
|
59967
60592
|
/**
|
|
59968
60593
|
* IAIRecommendationsV2024Api - factory interface
|
|
@@ -60032,18 +60657,18 @@ export interface IAIRecommendationsV2024ApiGetRecommendationsConfigRequest {
|
|
|
60032
60657
|
* @interface IAIRecommendationsV2024ApiUpdateRecommendationsConfigRequest
|
|
60033
60658
|
*/
|
|
60034
60659
|
export interface IAIRecommendationsV2024ApiUpdateRecommendationsConfigRequest {
|
|
60035
|
-
/**
|
|
60036
|
-
* Use this header to enable this experimental API.
|
|
60037
|
-
* @type {string}
|
|
60038
|
-
* @memberof IAIRecommendationsV2024ApiUpdateRecommendationsConfig
|
|
60039
|
-
*/
|
|
60040
|
-
readonly xSailPointExperimental: string;
|
|
60041
60660
|
/**
|
|
60042
60661
|
*
|
|
60043
60662
|
* @type {RecommendationConfigDtoV2024}
|
|
60044
60663
|
* @memberof IAIRecommendationsV2024ApiUpdateRecommendationsConfig
|
|
60045
60664
|
*/
|
|
60046
60665
|
readonly recommendationConfigDtoV2024: RecommendationConfigDtoV2024;
|
|
60666
|
+
/**
|
|
60667
|
+
* Use this header to enable this experimental API.
|
|
60668
|
+
* @type {string}
|
|
60669
|
+
* @memberof IAIRecommendationsV2024ApiUpdateRecommendationsConfig
|
|
60670
|
+
*/
|
|
60671
|
+
readonly xSailPointExperimental?: string;
|
|
60047
60672
|
}
|
|
60048
60673
|
/**
|
|
60049
60674
|
* IAIRecommendationsV2024Api - object-oriented interface
|
|
@@ -60299,11 +60924,11 @@ export declare const IAIRoleMiningV2024ApiAxiosParamCreator: (configuration?: Co
|
|
|
60299
60924
|
* The method retrieves a role mining session.
|
|
60300
60925
|
* @summary Get a role mining session
|
|
60301
60926
|
* @param {string} sessionId The role mining session id to be retrieved.
|
|
60302
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
60927
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60303
60928
|
* @param {*} [axiosOptions] Override http request option.
|
|
60304
60929
|
* @throws {RequiredError}
|
|
60305
60930
|
*/
|
|
60306
|
-
getRoleMiningSession: (sessionId: string, xSailPointExperimental
|
|
60931
|
+
getRoleMiningSession: (sessionId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
60307
60932
|
/**
|
|
60308
60933
|
* This method returns a role mining session status for a customer.
|
|
60309
60934
|
* @summary Get role mining session status state
|
|
@@ -60316,16 +60941,16 @@ export declare const IAIRoleMiningV2024ApiAxiosParamCreator: (configuration?: Co
|
|
|
60316
60941
|
/**
|
|
60317
60942
|
* Returns all role mining sessions that match the query parameters
|
|
60318
60943
|
* @summary Retrieves all role mining sessions
|
|
60319
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
60320
60944
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **saved**: *eq* **name**: *eq, sw*
|
|
60321
60945
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **createdBy, createdDate**
|
|
60322
60946
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
60323
60947
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
60324
60948
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
60949
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60325
60950
|
* @param {*} [axiosOptions] Override http request option.
|
|
60326
60951
|
* @throws {RequiredError}
|
|
60327
60952
|
*/
|
|
60328
|
-
getRoleMiningSessions: (
|
|
60953
|
+
getRoleMiningSessions: (filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
60329
60954
|
/**
|
|
60330
60955
|
* This method returns all saved potential roles (draft roles).
|
|
60331
60956
|
* @summary Retrieves all saved potential roles
|
|
@@ -60343,23 +60968,23 @@ export declare const IAIRoleMiningV2024ApiAxiosParamCreator: (configuration?: Co
|
|
|
60343
60968
|
* @summary Update a potential role
|
|
60344
60969
|
* @param {string} sessionId The role mining session id
|
|
60345
60970
|
* @param {string} potentialRoleId The potential role summary id
|
|
60346
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
60347
60971
|
* @param {Array<PatchPotentialRoleRequestInnerV2024>} patchPotentialRoleRequestInnerV2024
|
|
60972
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60348
60973
|
* @param {*} [axiosOptions] Override http request option.
|
|
60349
60974
|
* @throws {RequiredError}
|
|
60350
60975
|
*/
|
|
60351
|
-
patchPotentialRole: (sessionId: string, potentialRoleId: string,
|
|
60976
|
+
patchPotentialRole: (sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
60352
60977
|
/**
|
|
60353
60978
|
* The method updates an existing potential role using. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
60354
60979
|
* @summary Update a potential role
|
|
60355
60980
|
* @param {string} sessionId The role mining session id
|
|
60356
60981
|
* @param {string} potentialRoleId The potential role summary id
|
|
60357
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
60358
60982
|
* @param {Array<PatchPotentialRoleRequestInnerV2024>} patchPotentialRoleRequestInnerV2024
|
|
60983
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60359
60984
|
* @param {*} [axiosOptions] Override http request option.
|
|
60360
60985
|
* @throws {RequiredError}
|
|
60361
60986
|
*/
|
|
60362
|
-
patchPotentialRole_1: (sessionId: string, potentialRoleId: string,
|
|
60987
|
+
patchPotentialRole_1: (sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
60363
60988
|
/**
|
|
60364
60989
|
* The method updates an existing role mining session using PATCH. Supports op in {\"replace\"} and changes to pruneThreshold and/or minNumIdentitiesInPotentialRole. The potential roles in this role mining session is then re-calculated.
|
|
60365
60990
|
* @summary Patch a role mining session
|
|
@@ -60603,11 +61228,11 @@ export declare const IAIRoleMiningV2024ApiFp: (configuration?: Configuration) =>
|
|
|
60603
61228
|
* The method retrieves a role mining session.
|
|
60604
61229
|
* @summary Get a role mining session
|
|
60605
61230
|
* @param {string} sessionId The role mining session id to be retrieved.
|
|
60606
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
61231
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60607
61232
|
* @param {*} [axiosOptions] Override http request option.
|
|
60608
61233
|
* @throws {RequiredError}
|
|
60609
61234
|
*/
|
|
60610
|
-
getRoleMiningSession(sessionId: string, xSailPointExperimental
|
|
61235
|
+
getRoleMiningSession(sessionId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleMiningSessionResponseV2024>>;
|
|
60611
61236
|
/**
|
|
60612
61237
|
* This method returns a role mining session status for a customer.
|
|
60613
61238
|
* @summary Get role mining session status state
|
|
@@ -60620,16 +61245,16 @@ export declare const IAIRoleMiningV2024ApiFp: (configuration?: Configuration) =>
|
|
|
60620
61245
|
/**
|
|
60621
61246
|
* Returns all role mining sessions that match the query parameters
|
|
60622
61247
|
* @summary Retrieves all role mining sessions
|
|
60623
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
60624
61248
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **saved**: *eq* **name**: *eq, sw*
|
|
60625
61249
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **createdBy, createdDate**
|
|
60626
61250
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
60627
61251
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
60628
61252
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
61253
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60629
61254
|
* @param {*} [axiosOptions] Override http request option.
|
|
60630
61255
|
* @throws {RequiredError}
|
|
60631
61256
|
*/
|
|
60632
|
-
getRoleMiningSessions(
|
|
61257
|
+
getRoleMiningSessions(filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RoleMiningSessionDtoV2024>>>;
|
|
60633
61258
|
/**
|
|
60634
61259
|
* This method returns all saved potential roles (draft roles).
|
|
60635
61260
|
* @summary Retrieves all saved potential roles
|
|
@@ -60647,23 +61272,23 @@ export declare const IAIRoleMiningV2024ApiFp: (configuration?: Configuration) =>
|
|
|
60647
61272
|
* @summary Update a potential role
|
|
60648
61273
|
* @param {string} sessionId The role mining session id
|
|
60649
61274
|
* @param {string} potentialRoleId The potential role summary id
|
|
60650
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
60651
61275
|
* @param {Array<PatchPotentialRoleRequestInnerV2024>} patchPotentialRoleRequestInnerV2024
|
|
61276
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60652
61277
|
* @param {*} [axiosOptions] Override http request option.
|
|
60653
61278
|
* @throws {RequiredError}
|
|
60654
61279
|
*/
|
|
60655
|
-
patchPotentialRole(sessionId: string, potentialRoleId: string,
|
|
61280
|
+
patchPotentialRole(sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
60656
61281
|
/**
|
|
60657
61282
|
* The method updates an existing potential role using. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
60658
61283
|
* @summary Update a potential role
|
|
60659
61284
|
* @param {string} sessionId The role mining session id
|
|
60660
61285
|
* @param {string} potentialRoleId The potential role summary id
|
|
60661
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
60662
61286
|
* @param {Array<PatchPotentialRoleRequestInnerV2024>} patchPotentialRoleRequestInnerV2024
|
|
61287
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60663
61288
|
* @param {*} [axiosOptions] Override http request option.
|
|
60664
61289
|
* @throws {RequiredError}
|
|
60665
61290
|
*/
|
|
60666
|
-
patchPotentialRole_1(sessionId: string, potentialRoleId: string,
|
|
61291
|
+
patchPotentialRole_1(sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
60667
61292
|
/**
|
|
60668
61293
|
* The method updates an existing role mining session using PATCH. Supports op in {\"replace\"} and changes to pruneThreshold and/or minNumIdentitiesInPotentialRole. The potential roles in this role mining session is then re-calculated.
|
|
60669
61294
|
* @summary Patch a role mining session
|
|
@@ -60852,7 +61477,7 @@ export declare const IAIRoleMiningV2024ApiFactory: (configuration?: Configuratio
|
|
|
60852
61477
|
* @param {*} [axiosOptions] Override http request option.
|
|
60853
61478
|
* @throws {RequiredError}
|
|
60854
61479
|
*/
|
|
60855
|
-
getRoleMiningSessions(requestParameters
|
|
61480
|
+
getRoleMiningSessions(requestParameters?: IAIRoleMiningV2024ApiGetRoleMiningSessionsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<RoleMiningSessionDtoV2024>>;
|
|
60856
61481
|
/**
|
|
60857
61482
|
* This method returns all saved potential roles (draft roles).
|
|
60858
61483
|
* @summary Retrieves all saved potential roles
|
|
@@ -61576,7 +62201,7 @@ export interface IAIRoleMiningV2024ApiGetRoleMiningSessionRequest {
|
|
|
61576
62201
|
* @type {string}
|
|
61577
62202
|
* @memberof IAIRoleMiningV2024ApiGetRoleMiningSession
|
|
61578
62203
|
*/
|
|
61579
|
-
readonly xSailPointExperimental
|
|
62204
|
+
readonly xSailPointExperimental?: string;
|
|
61580
62205
|
}
|
|
61581
62206
|
/**
|
|
61582
62207
|
* Request parameters for getRoleMiningSessionStatus operation in IAIRoleMiningV2024Api.
|
|
@@ -61603,12 +62228,6 @@ export interface IAIRoleMiningV2024ApiGetRoleMiningSessionStatusRequest {
|
|
|
61603
62228
|
* @interface IAIRoleMiningV2024ApiGetRoleMiningSessionsRequest
|
|
61604
62229
|
*/
|
|
61605
62230
|
export interface IAIRoleMiningV2024ApiGetRoleMiningSessionsRequest {
|
|
61606
|
-
/**
|
|
61607
|
-
* Use this header to enable this experimental API.
|
|
61608
|
-
* @type {string}
|
|
61609
|
-
* @memberof IAIRoleMiningV2024ApiGetRoleMiningSessions
|
|
61610
|
-
*/
|
|
61611
|
-
readonly xSailPointExperimental: string;
|
|
61612
62231
|
/**
|
|
61613
62232
|
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **saved**: *eq* **name**: *eq, sw*
|
|
61614
62233
|
* @type {string}
|
|
@@ -61639,6 +62258,12 @@ export interface IAIRoleMiningV2024ApiGetRoleMiningSessionsRequest {
|
|
|
61639
62258
|
* @memberof IAIRoleMiningV2024ApiGetRoleMiningSessions
|
|
61640
62259
|
*/
|
|
61641
62260
|
readonly count?: boolean;
|
|
62261
|
+
/**
|
|
62262
|
+
* Use this header to enable this experimental API.
|
|
62263
|
+
* @type {string}
|
|
62264
|
+
* @memberof IAIRoleMiningV2024ApiGetRoleMiningSessions
|
|
62265
|
+
*/
|
|
62266
|
+
readonly xSailPointExperimental?: string;
|
|
61642
62267
|
}
|
|
61643
62268
|
/**
|
|
61644
62269
|
* Request parameters for getSavedPotentialRoles operation in IAIRoleMiningV2024Api.
|
|
@@ -61695,18 +62320,18 @@ export interface IAIRoleMiningV2024ApiPatchPotentialRoleRequest {
|
|
|
61695
62320
|
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole
|
|
61696
62321
|
*/
|
|
61697
62322
|
readonly potentialRoleId: string;
|
|
61698
|
-
/**
|
|
61699
|
-
* Use this header to enable this experimental API.
|
|
61700
|
-
* @type {string}
|
|
61701
|
-
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole
|
|
61702
|
-
*/
|
|
61703
|
-
readonly xSailPointExperimental: string;
|
|
61704
62323
|
/**
|
|
61705
62324
|
*
|
|
61706
62325
|
* @type {Array<PatchPotentialRoleRequestInnerV2024>}
|
|
61707
62326
|
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole
|
|
61708
62327
|
*/
|
|
61709
62328
|
readonly patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>;
|
|
62329
|
+
/**
|
|
62330
|
+
* Use this header to enable this experimental API.
|
|
62331
|
+
* @type {string}
|
|
62332
|
+
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole
|
|
62333
|
+
*/
|
|
62334
|
+
readonly xSailPointExperimental?: string;
|
|
61710
62335
|
}
|
|
61711
62336
|
/**
|
|
61712
62337
|
* Request parameters for patchPotentialRole_1 operation in IAIRoleMiningV2024Api.
|
|
@@ -61726,18 +62351,18 @@ export interface IAIRoleMiningV2024ApiPatchPotentialRole0Request {
|
|
|
61726
62351
|
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole0
|
|
61727
62352
|
*/
|
|
61728
62353
|
readonly potentialRoleId: string;
|
|
61729
|
-
/**
|
|
61730
|
-
* Use this header to enable this experimental API.
|
|
61731
|
-
* @type {string}
|
|
61732
|
-
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole0
|
|
61733
|
-
*/
|
|
61734
|
-
readonly xSailPointExperimental: string;
|
|
61735
62354
|
/**
|
|
61736
62355
|
*
|
|
61737
62356
|
* @type {Array<PatchPotentialRoleRequestInnerV2024>}
|
|
61738
62357
|
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole0
|
|
61739
62358
|
*/
|
|
61740
62359
|
readonly patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>;
|
|
62360
|
+
/**
|
|
62361
|
+
* Use this header to enable this experimental API.
|
|
62362
|
+
* @type {string}
|
|
62363
|
+
* @memberof IAIRoleMiningV2024ApiPatchPotentialRole0
|
|
62364
|
+
*/
|
|
62365
|
+
readonly xSailPointExperimental?: string;
|
|
61741
62366
|
}
|
|
61742
62367
|
/**
|
|
61743
62368
|
* Request parameters for patchRoleMiningSession operation in IAIRoleMiningV2024Api.
|
|
@@ -61983,7 +62608,7 @@ export declare class IAIRoleMiningV2024Api extends BaseAPI {
|
|
|
61983
62608
|
* @throws {RequiredError}
|
|
61984
62609
|
* @memberof IAIRoleMiningV2024Api
|
|
61985
62610
|
*/
|
|
61986
|
-
getRoleMiningSessions(requestParameters
|
|
62611
|
+
getRoleMiningSessions(requestParameters?: IAIRoleMiningV2024ApiGetRoleMiningSessionsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleMiningSessionDtoV2024[], any>>;
|
|
61987
62612
|
/**
|
|
61988
62613
|
* This method returns all saved potential roles (draft roles).
|
|
61989
62614
|
* @summary Retrieves all saved potential roles
|
|
@@ -62040,11 +62665,11 @@ export declare const IconsV2024ApiAxiosParamCreator: (configuration?: Configurat
|
|
|
62040
62665
|
* @summary Delete an icon
|
|
62041
62666
|
* @param {DeleteIconObjectTypeV2024} objectType Object type. Available options [\'application\']
|
|
62042
62667
|
* @param {string} objectId Object id.
|
|
62043
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
62668
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62044
62669
|
* @param {*} [axiosOptions] Override http request option.
|
|
62045
62670
|
* @throws {RequiredError}
|
|
62046
62671
|
*/
|
|
62047
|
-
deleteIcon: (objectType: DeleteIconObjectTypeV2024, objectId: string, xSailPointExperimental
|
|
62672
|
+
deleteIcon: (objectType: DeleteIconObjectTypeV2024, objectId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62048
62673
|
/**
|
|
62049
62674
|
* This API endpoint updates an icon by object type and object id. A token with ORG_ADMIN authority is required to call this API.
|
|
62050
62675
|
* @summary Update an icon
|
|
@@ -62067,11 +62692,11 @@ export declare const IconsV2024ApiFp: (configuration?: Configuration) => {
|
|
|
62067
62692
|
* @summary Delete an icon
|
|
62068
62693
|
* @param {DeleteIconObjectTypeV2024} objectType Object type. Available options [\'application\']
|
|
62069
62694
|
* @param {string} objectId Object id.
|
|
62070
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
62695
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62071
62696
|
* @param {*} [axiosOptions] Override http request option.
|
|
62072
62697
|
* @throws {RequiredError}
|
|
62073
62698
|
*/
|
|
62074
|
-
deleteIcon(objectType: DeleteIconObjectTypeV2024, objectId: string, xSailPointExperimental
|
|
62699
|
+
deleteIcon(objectType: DeleteIconObjectTypeV2024, objectId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
62075
62700
|
/**
|
|
62076
62701
|
* This API endpoint updates an icon by object type and object id. A token with ORG_ADMIN authority is required to call this API.
|
|
62077
62702
|
* @summary Update an icon
|
|
@@ -62129,7 +62754,7 @@ export interface IconsV2024ApiDeleteIconRequest {
|
|
|
62129
62754
|
* @type {string}
|
|
62130
62755
|
* @memberof IconsV2024ApiDeleteIcon
|
|
62131
62756
|
*/
|
|
62132
|
-
readonly xSailPointExperimental
|
|
62757
|
+
readonly xSailPointExperimental?: string;
|
|
62133
62758
|
}
|
|
62134
62759
|
/**
|
|
62135
62760
|
* Request parameters for setIcon operation in IconsV2024Api.
|
|
@@ -62250,6 +62875,17 @@ export declare const IdentitiesV2024ApiAxiosParamCreator: (configuration?: Confi
|
|
|
62250
62875
|
* @throws {RequiredError}
|
|
62251
62876
|
*/
|
|
62252
62877
|
getRoleAssignments: (identityId: string, roleId?: string, roleName?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62878
|
+
/**
|
|
62879
|
+
* The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
|
|
62880
|
+
* @summary List of entitlements by identity.
|
|
62881
|
+
* @param {string} id Identity Id
|
|
62882
|
+
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
62883
|
+
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
62884
|
+
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
62885
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
62886
|
+
* @throws {RequiredError}
|
|
62887
|
+
*/
|
|
62888
|
+
listEntitlementsByIdentity: (id: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62253
62889
|
/**
|
|
62254
62890
|
* This API returns a list of identities.
|
|
62255
62891
|
* @summary List identities
|
|
@@ -62285,10 +62921,11 @@ export declare const IdentitiesV2024ApiAxiosParamCreator: (configuration?: Confi
|
|
|
62285
62921
|
* This API submits a task for inviting given identities via email to complete registration. The invitation email will include the link. After selecting the link an identity will be able to set up password and log in into the system. Invitations expire after 7 days. By default invitations send to the work identity email. It can be changed in Admin > Identities > Identity Profiles by selecting corresponding profile and editing Invitation Options. This task will send an invitation email only for unregistered identities. The executed task status can be checked by Task Management > [Get task status by ID](https://developer.sailpoint.com/docs/api/beta/get-task-status).
|
|
62286
62922
|
* @summary Invite identities to register
|
|
62287
62923
|
* @param {InviteIdentitiesRequestV2024} inviteIdentitiesRequestV2024
|
|
62924
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62288
62925
|
* @param {*} [axiosOptions] Override http request option.
|
|
62289
62926
|
* @throws {RequiredError}
|
|
62290
62927
|
*/
|
|
62291
|
-
startIdentitiesInvite: (inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62928
|
+
startIdentitiesInvite: (inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62292
62929
|
/**
|
|
62293
62930
|
* This operation should not be used to schedule your own identity processing or to perform system wide identity refreshes. The system will use a combination of [event-based processing](https://documentation.sailpoint.com/saas/help/setup/identity_processing.html?h=process#event-based-processing) and [scheduled processing](https://documentation.sailpoint.com/saas/help/setup/identity_processing.html?h=process#scheduled-processing) that runs every day at 8:00 AM and 8:00 PM in the tenant\'s timezone to keep your identities synchronized. This endpoint will perform the following tasks: 1. Calculate identity attributes, including applying or running any rules or transforms (e.g. calculate Lifecycle State at a point-in-time it\'s expected to change). 2. Evaluate role assignments, leading to assignment of new roles and removal of existing roles. 3. Enforce provisioning for any assigned accesses that haven\'t been fulfilled (e.g. failure due to source health). 4. Recalculate manager relationships. 5. Potentially clean-up identity processing errors, assuming the error has been resolved.
|
|
62294
62931
|
* @summary Process a list of identityids
|
|
@@ -62356,6 +62993,17 @@ export declare const IdentitiesV2024ApiFp: (configuration?: Configuration) => {
|
|
|
62356
62993
|
* @throws {RequiredError}
|
|
62357
62994
|
*/
|
|
62358
62995
|
getRoleAssignments(identityId: string, roleId?: string, roleName?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GetRoleAssignments200ResponseInnerV2024>>>;
|
|
62996
|
+
/**
|
|
62997
|
+
* The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
|
|
62998
|
+
* @summary List of entitlements by identity.
|
|
62999
|
+
* @param {string} id Identity Id
|
|
63000
|
+
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
63001
|
+
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
63002
|
+
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
63003
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
63004
|
+
* @throws {RequiredError}
|
|
63005
|
+
*/
|
|
63006
|
+
listEntitlementsByIdentity(id: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IdentityEntitlementsV2024>>>;
|
|
62359
63007
|
/**
|
|
62360
63008
|
* This API returns a list of identities.
|
|
62361
63009
|
* @summary List identities
|
|
@@ -62391,10 +63039,11 @@ export declare const IdentitiesV2024ApiFp: (configuration?: Configuration) => {
|
|
|
62391
63039
|
* This API submits a task for inviting given identities via email to complete registration. The invitation email will include the link. After selecting the link an identity will be able to set up password and log in into the system. Invitations expire after 7 days. By default invitations send to the work identity email. It can be changed in Admin > Identities > Identity Profiles by selecting corresponding profile and editing Invitation Options. This task will send an invitation email only for unregistered identities. The executed task status can be checked by Task Management > [Get task status by ID](https://developer.sailpoint.com/docs/api/beta/get-task-status).
|
|
62392
63040
|
* @summary Invite identities to register
|
|
62393
63041
|
* @param {InviteIdentitiesRequestV2024} inviteIdentitiesRequestV2024
|
|
63042
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62394
63043
|
* @param {*} [axiosOptions] Override http request option.
|
|
62395
63044
|
* @throws {RequiredError}
|
|
62396
63045
|
*/
|
|
62397
|
-
startIdentitiesInvite(inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2024>>;
|
|
63046
|
+
startIdentitiesInvite(inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2024>>;
|
|
62398
63047
|
/**
|
|
62399
63048
|
* This operation should not be used to schedule your own identity processing or to perform system wide identity refreshes. The system will use a combination of [event-based processing](https://documentation.sailpoint.com/saas/help/setup/identity_processing.html?h=process#event-based-processing) and [scheduled processing](https://documentation.sailpoint.com/saas/help/setup/identity_processing.html?h=process#scheduled-processing) that runs every day at 8:00 AM and 8:00 PM in the tenant\'s timezone to keep your identities synchronized. This endpoint will perform the following tasks: 1. Calculate identity attributes, including applying or running any rules or transforms (e.g. calculate Lifecycle State at a point-in-time it\'s expected to change). 2. Evaluate role assignments, leading to assignment of new roles and removal of existing roles. 3. Enforce provisioning for any assigned accesses that haven\'t been fulfilled (e.g. failure due to source health). 4. Recalculate manager relationships. 5. Potentially clean-up identity processing errors, assuming the error has been resolved.
|
|
62400
63049
|
* @summary Process a list of identityids
|
|
@@ -62459,6 +63108,14 @@ export declare const IdentitiesV2024ApiFactory: (configuration?: Configuration,
|
|
|
62459
63108
|
* @throws {RequiredError}
|
|
62460
63109
|
*/
|
|
62461
63110
|
getRoleAssignments(requestParameters: IdentitiesV2024ApiGetRoleAssignmentsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<GetRoleAssignments200ResponseInnerV2024>>;
|
|
63111
|
+
/**
|
|
63112
|
+
* The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
|
|
63113
|
+
* @summary List of entitlements by identity.
|
|
63114
|
+
* @param {IdentitiesV2024ApiListEntitlementsByIdentityRequest} requestParameters Request parameters.
|
|
63115
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
63116
|
+
* @throws {RequiredError}
|
|
63117
|
+
*/
|
|
63118
|
+
listEntitlementsByIdentity(requestParameters: IdentitiesV2024ApiListEntitlementsByIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<IdentityEntitlementsV2024>>;
|
|
62462
63119
|
/**
|
|
62463
63120
|
* This API returns a list of identities.
|
|
62464
63121
|
* @summary List identities
|
|
@@ -62591,6 +63248,37 @@ export interface IdentitiesV2024ApiGetRoleAssignmentsRequest {
|
|
|
62591
63248
|
*/
|
|
62592
63249
|
readonly roleName?: string;
|
|
62593
63250
|
}
|
|
63251
|
+
/**
|
|
63252
|
+
* Request parameters for listEntitlementsByIdentity operation in IdentitiesV2024Api.
|
|
63253
|
+
* @export
|
|
63254
|
+
* @interface IdentitiesV2024ApiListEntitlementsByIdentityRequest
|
|
63255
|
+
*/
|
|
63256
|
+
export interface IdentitiesV2024ApiListEntitlementsByIdentityRequest {
|
|
63257
|
+
/**
|
|
63258
|
+
* Identity Id
|
|
63259
|
+
* @type {string}
|
|
63260
|
+
* @memberof IdentitiesV2024ApiListEntitlementsByIdentity
|
|
63261
|
+
*/
|
|
63262
|
+
readonly id: string;
|
|
63263
|
+
/**
|
|
63264
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
63265
|
+
* @type {number}
|
|
63266
|
+
* @memberof IdentitiesV2024ApiListEntitlementsByIdentity
|
|
63267
|
+
*/
|
|
63268
|
+
readonly limit?: number;
|
|
63269
|
+
/**
|
|
63270
|
+
* Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
63271
|
+
* @type {number}
|
|
63272
|
+
* @memberof IdentitiesV2024ApiListEntitlementsByIdentity
|
|
63273
|
+
*/
|
|
63274
|
+
readonly offset?: number;
|
|
63275
|
+
/**
|
|
63276
|
+
* If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
63277
|
+
* @type {boolean}
|
|
63278
|
+
* @memberof IdentitiesV2024ApiListEntitlementsByIdentity
|
|
63279
|
+
*/
|
|
63280
|
+
readonly count?: boolean;
|
|
63281
|
+
}
|
|
62594
63282
|
/**
|
|
62595
63283
|
* Request parameters for listIdentities operation in IdentitiesV2024Api.
|
|
62596
63284
|
* @export
|
|
@@ -62684,6 +63372,12 @@ export interface IdentitiesV2024ApiStartIdentitiesInviteRequest {
|
|
|
62684
63372
|
* @memberof IdentitiesV2024ApiStartIdentitiesInvite
|
|
62685
63373
|
*/
|
|
62686
63374
|
readonly inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024;
|
|
63375
|
+
/**
|
|
63376
|
+
* Use this header to enable this experimental API.
|
|
63377
|
+
* @type {string}
|
|
63378
|
+
* @memberof IdentitiesV2024ApiStartIdentitiesInvite
|
|
63379
|
+
*/
|
|
63380
|
+
readonly xSailPointExperimental?: string;
|
|
62687
63381
|
}
|
|
62688
63382
|
/**
|
|
62689
63383
|
* Request parameters for startIdentityProcessing operation in IdentitiesV2024Api.
|
|
@@ -62775,6 +63469,15 @@ export declare class IdentitiesV2024Api extends BaseAPI {
|
|
|
62775
63469
|
* @memberof IdentitiesV2024Api
|
|
62776
63470
|
*/
|
|
62777
63471
|
getRoleAssignments(requestParameters: IdentitiesV2024ApiGetRoleAssignmentsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetRoleAssignments200ResponseInnerV2024[], any>>;
|
|
63472
|
+
/**
|
|
63473
|
+
* The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
|
|
63474
|
+
* @summary List of entitlements by identity.
|
|
63475
|
+
* @param {IdentitiesV2024ApiListEntitlementsByIdentityRequest} requestParameters Request parameters.
|
|
63476
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
63477
|
+
* @throws {RequiredError}
|
|
63478
|
+
* @memberof IdentitiesV2024Api
|
|
63479
|
+
*/
|
|
63480
|
+
listEntitlementsByIdentity(requestParameters: IdentitiesV2024ApiListEntitlementsByIdentityRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityEntitlementsV2024[], any>>;
|
|
62778
63481
|
/**
|
|
62779
63482
|
* This API returns a list of identities.
|
|
62780
63483
|
* @summary List identities
|
|
@@ -64203,11 +64906,10 @@ export declare const IdentityProfilesV2024ApiAxiosParamCreator: (configuration?:
|
|
|
64203
64906
|
* This generates a non-persisted IdentityDetails object that will represent as the preview of the identities attribute when the given policy\'\'s attribute config is applied.
|
|
64204
64907
|
* @summary Generate identity profile preview
|
|
64205
64908
|
* @param {IdentityPreviewRequestV2024} identityPreviewRequestV2024 Identity Preview request body.
|
|
64206
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
64207
64909
|
* @param {*} [axiosOptions] Override http request option.
|
|
64208
64910
|
* @throws {RequiredError}
|
|
64209
64911
|
*/
|
|
64210
|
-
generateIdentityPreview: (identityPreviewRequestV2024: IdentityPreviewRequestV2024,
|
|
64912
|
+
generateIdentityPreview: (identityPreviewRequestV2024: IdentityPreviewRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
64211
64913
|
/**
|
|
64212
64914
|
* This returns the default identity attribute config.
|
|
64213
64915
|
* @summary Get default identity attribute config
|
|
@@ -64307,11 +65009,10 @@ export declare const IdentityProfilesV2024ApiFp: (configuration?: Configuration)
|
|
|
64307
65009
|
* This generates a non-persisted IdentityDetails object that will represent as the preview of the identities attribute when the given policy\'\'s attribute config is applied.
|
|
64308
65010
|
* @summary Generate identity profile preview
|
|
64309
65011
|
* @param {IdentityPreviewRequestV2024} identityPreviewRequestV2024 Identity Preview request body.
|
|
64310
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
64311
65012
|
* @param {*} [axiosOptions] Override http request option.
|
|
64312
65013
|
* @throws {RequiredError}
|
|
64313
65014
|
*/
|
|
64314
|
-
generateIdentityPreview(identityPreviewRequestV2024: IdentityPreviewRequestV2024,
|
|
65015
|
+
generateIdentityPreview(identityPreviewRequestV2024: IdentityPreviewRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityPreviewResponseV2024>>;
|
|
64315
65016
|
/**
|
|
64316
65017
|
* This returns the default identity attribute config.
|
|
64317
65018
|
* @summary Get default identity attribute config
|
|
@@ -64548,12 +65249,6 @@ export interface IdentityProfilesV2024ApiGenerateIdentityPreviewRequest {
|
|
|
64548
65249
|
* @memberof IdentityProfilesV2024ApiGenerateIdentityPreview
|
|
64549
65250
|
*/
|
|
64550
65251
|
readonly identityPreviewRequestV2024: IdentityPreviewRequestV2024;
|
|
64551
|
-
/**
|
|
64552
|
-
* Use this header to enable this experimental API.
|
|
64553
|
-
* @type {string}
|
|
64554
|
-
* @memberof IdentityProfilesV2024ApiGenerateIdentityPreview
|
|
64555
|
-
*/
|
|
64556
|
-
readonly xSailPointExperimental?: string;
|
|
64557
65252
|
}
|
|
64558
65253
|
/**
|
|
64559
65254
|
* Request parameters for getDefaultIdentityAttributeConfig operation in IdentityProfilesV2024Api.
|
|
@@ -64770,6 +65465,332 @@ export declare class IdentityProfilesV2024Api extends BaseAPI {
|
|
|
64770
65465
|
*/
|
|
64771
65466
|
updateIdentityProfile(requestParameters: IdentityProfilesV2024ApiUpdateIdentityProfileRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityProfileV2024, any>>;
|
|
64772
65467
|
}
|
|
65468
|
+
/**
|
|
65469
|
+
* LaunchersV2024Api - axios parameter creator
|
|
65470
|
+
* @export
|
|
65471
|
+
*/
|
|
65472
|
+
export declare const LaunchersV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
65473
|
+
/**
|
|
65474
|
+
* Create a Launcher with given information
|
|
65475
|
+
* @summary Create launcher
|
|
65476
|
+
* @param {LauncherRequestV2024} launcherRequestV2024 Payload to create a Launcher
|
|
65477
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65478
|
+
* @throws {RequiredError}
|
|
65479
|
+
*/
|
|
65480
|
+
createLauncher: (launcherRequestV2024: LauncherRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65481
|
+
/**
|
|
65482
|
+
* Delete the given Launcher ID
|
|
65483
|
+
* @summary Delete launcher
|
|
65484
|
+
* @param {string} launcherID ID of the Launcher to be deleted
|
|
65485
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65486
|
+
* @throws {RequiredError}
|
|
65487
|
+
*/
|
|
65488
|
+
deleteLauncher: (launcherID: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65489
|
+
/**
|
|
65490
|
+
* Get details for the given Launcher ID
|
|
65491
|
+
* @summary Get launcher by id
|
|
65492
|
+
* @param {string} launcherID ID of the Launcher to be retrieved
|
|
65493
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65494
|
+
* @throws {RequiredError}
|
|
65495
|
+
*/
|
|
65496
|
+
getLauncher: (launcherID: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65497
|
+
/**
|
|
65498
|
+
* Return a list of Launchers for the authenticated tenant
|
|
65499
|
+
* @summary List all launchers for tenant
|
|
65500
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **description**: *sw* **disabled**: *eq* **name**: *sw*
|
|
65501
|
+
* @param {string} [next] Pagination marker
|
|
65502
|
+
* @param {number} [limit] Number of Launchers to return
|
|
65503
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65504
|
+
* @throws {RequiredError}
|
|
65505
|
+
*/
|
|
65506
|
+
getLaunchers: (filters?: string, next?: string, limit?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65507
|
+
/**
|
|
65508
|
+
* Replace the given Launcher ID with given payload
|
|
65509
|
+
* @summary Replace launcher
|
|
65510
|
+
* @param {string} launcherID ID of the Launcher to be replaced
|
|
65511
|
+
* @param {LauncherRequestV2024} launcherRequestV2024 Payload to replace Launcher
|
|
65512
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65513
|
+
* @throws {RequiredError}
|
|
65514
|
+
*/
|
|
65515
|
+
putLauncher: (launcherID: string, launcherRequestV2024: LauncherRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65516
|
+
/**
|
|
65517
|
+
* Launch the given Launcher ID
|
|
65518
|
+
* @summary Launch a launcher
|
|
65519
|
+
* @param {string} launcherID ID of the Launcher to be launched
|
|
65520
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65521
|
+
* @throws {RequiredError}
|
|
65522
|
+
*/
|
|
65523
|
+
startLauncher: (launcherID: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65524
|
+
};
|
|
65525
|
+
/**
|
|
65526
|
+
* LaunchersV2024Api - functional programming interface
|
|
65527
|
+
* @export
|
|
65528
|
+
*/
|
|
65529
|
+
export declare const LaunchersV2024ApiFp: (configuration?: Configuration) => {
|
|
65530
|
+
/**
|
|
65531
|
+
* Create a Launcher with given information
|
|
65532
|
+
* @summary Create launcher
|
|
65533
|
+
* @param {LauncherRequestV2024} launcherRequestV2024 Payload to create a Launcher
|
|
65534
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65535
|
+
* @throws {RequiredError}
|
|
65536
|
+
*/
|
|
65537
|
+
createLauncher(launcherRequestV2024: LauncherRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LauncherV2024>>;
|
|
65538
|
+
/**
|
|
65539
|
+
* Delete the given Launcher ID
|
|
65540
|
+
* @summary Delete launcher
|
|
65541
|
+
* @param {string} launcherID ID of the Launcher to be deleted
|
|
65542
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65543
|
+
* @throws {RequiredError}
|
|
65544
|
+
*/
|
|
65545
|
+
deleteLauncher(launcherID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
65546
|
+
/**
|
|
65547
|
+
* Get details for the given Launcher ID
|
|
65548
|
+
* @summary Get launcher by id
|
|
65549
|
+
* @param {string} launcherID ID of the Launcher to be retrieved
|
|
65550
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65551
|
+
* @throws {RequiredError}
|
|
65552
|
+
*/
|
|
65553
|
+
getLauncher(launcherID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LauncherV2024>>;
|
|
65554
|
+
/**
|
|
65555
|
+
* Return a list of Launchers for the authenticated tenant
|
|
65556
|
+
* @summary List all launchers for tenant
|
|
65557
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **description**: *sw* **disabled**: *eq* **name**: *sw*
|
|
65558
|
+
* @param {string} [next] Pagination marker
|
|
65559
|
+
* @param {number} [limit] Number of Launchers to return
|
|
65560
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65561
|
+
* @throws {RequiredError}
|
|
65562
|
+
*/
|
|
65563
|
+
getLaunchers(filters?: string, next?: string, limit?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetLaunchers200ResponseV2024>>;
|
|
65564
|
+
/**
|
|
65565
|
+
* Replace the given Launcher ID with given payload
|
|
65566
|
+
* @summary Replace launcher
|
|
65567
|
+
* @param {string} launcherID ID of the Launcher to be replaced
|
|
65568
|
+
* @param {LauncherRequestV2024} launcherRequestV2024 Payload to replace Launcher
|
|
65569
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65570
|
+
* @throws {RequiredError}
|
|
65571
|
+
*/
|
|
65572
|
+
putLauncher(launcherID: string, launcherRequestV2024: LauncherRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LauncherV2024>>;
|
|
65573
|
+
/**
|
|
65574
|
+
* Launch the given Launcher ID
|
|
65575
|
+
* @summary Launch a launcher
|
|
65576
|
+
* @param {string} launcherID ID of the Launcher to be launched
|
|
65577
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65578
|
+
* @throws {RequiredError}
|
|
65579
|
+
*/
|
|
65580
|
+
startLauncher(launcherID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StartLauncher200ResponseV2024>>;
|
|
65581
|
+
};
|
|
65582
|
+
/**
|
|
65583
|
+
* LaunchersV2024Api - factory interface
|
|
65584
|
+
* @export
|
|
65585
|
+
*/
|
|
65586
|
+
export declare const LaunchersV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
65587
|
+
/**
|
|
65588
|
+
* Create a Launcher with given information
|
|
65589
|
+
* @summary Create launcher
|
|
65590
|
+
* @param {LaunchersV2024ApiCreateLauncherRequest} requestParameters Request parameters.
|
|
65591
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65592
|
+
* @throws {RequiredError}
|
|
65593
|
+
*/
|
|
65594
|
+
createLauncher(requestParameters: LaunchersV2024ApiCreateLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<LauncherV2024>;
|
|
65595
|
+
/**
|
|
65596
|
+
* Delete the given Launcher ID
|
|
65597
|
+
* @summary Delete launcher
|
|
65598
|
+
* @param {LaunchersV2024ApiDeleteLauncherRequest} requestParameters Request parameters.
|
|
65599
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65600
|
+
* @throws {RequiredError}
|
|
65601
|
+
*/
|
|
65602
|
+
deleteLauncher(requestParameters: LaunchersV2024ApiDeleteLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
65603
|
+
/**
|
|
65604
|
+
* Get details for the given Launcher ID
|
|
65605
|
+
* @summary Get launcher by id
|
|
65606
|
+
* @param {LaunchersV2024ApiGetLauncherRequest} requestParameters Request parameters.
|
|
65607
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65608
|
+
* @throws {RequiredError}
|
|
65609
|
+
*/
|
|
65610
|
+
getLauncher(requestParameters: LaunchersV2024ApiGetLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<LauncherV2024>;
|
|
65611
|
+
/**
|
|
65612
|
+
* Return a list of Launchers for the authenticated tenant
|
|
65613
|
+
* @summary List all launchers for tenant
|
|
65614
|
+
* @param {LaunchersV2024ApiGetLaunchersRequest} requestParameters Request parameters.
|
|
65615
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65616
|
+
* @throws {RequiredError}
|
|
65617
|
+
*/
|
|
65618
|
+
getLaunchers(requestParameters?: LaunchersV2024ApiGetLaunchersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetLaunchers200ResponseV2024>;
|
|
65619
|
+
/**
|
|
65620
|
+
* Replace the given Launcher ID with given payload
|
|
65621
|
+
* @summary Replace launcher
|
|
65622
|
+
* @param {LaunchersV2024ApiPutLauncherRequest} requestParameters Request parameters.
|
|
65623
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65624
|
+
* @throws {RequiredError}
|
|
65625
|
+
*/
|
|
65626
|
+
putLauncher(requestParameters: LaunchersV2024ApiPutLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<LauncherV2024>;
|
|
65627
|
+
/**
|
|
65628
|
+
* Launch the given Launcher ID
|
|
65629
|
+
* @summary Launch a launcher
|
|
65630
|
+
* @param {LaunchersV2024ApiStartLauncherRequest} requestParameters Request parameters.
|
|
65631
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65632
|
+
* @throws {RequiredError}
|
|
65633
|
+
*/
|
|
65634
|
+
startLauncher(requestParameters: LaunchersV2024ApiStartLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<StartLauncher200ResponseV2024>;
|
|
65635
|
+
};
|
|
65636
|
+
/**
|
|
65637
|
+
* Request parameters for createLauncher operation in LaunchersV2024Api.
|
|
65638
|
+
* @export
|
|
65639
|
+
* @interface LaunchersV2024ApiCreateLauncherRequest
|
|
65640
|
+
*/
|
|
65641
|
+
export interface LaunchersV2024ApiCreateLauncherRequest {
|
|
65642
|
+
/**
|
|
65643
|
+
* Payload to create a Launcher
|
|
65644
|
+
* @type {LauncherRequestV2024}
|
|
65645
|
+
* @memberof LaunchersV2024ApiCreateLauncher
|
|
65646
|
+
*/
|
|
65647
|
+
readonly launcherRequestV2024: LauncherRequestV2024;
|
|
65648
|
+
}
|
|
65649
|
+
/**
|
|
65650
|
+
* Request parameters for deleteLauncher operation in LaunchersV2024Api.
|
|
65651
|
+
* @export
|
|
65652
|
+
* @interface LaunchersV2024ApiDeleteLauncherRequest
|
|
65653
|
+
*/
|
|
65654
|
+
export interface LaunchersV2024ApiDeleteLauncherRequest {
|
|
65655
|
+
/**
|
|
65656
|
+
* ID of the Launcher to be deleted
|
|
65657
|
+
* @type {string}
|
|
65658
|
+
* @memberof LaunchersV2024ApiDeleteLauncher
|
|
65659
|
+
*/
|
|
65660
|
+
readonly launcherID: string;
|
|
65661
|
+
}
|
|
65662
|
+
/**
|
|
65663
|
+
* Request parameters for getLauncher operation in LaunchersV2024Api.
|
|
65664
|
+
* @export
|
|
65665
|
+
* @interface LaunchersV2024ApiGetLauncherRequest
|
|
65666
|
+
*/
|
|
65667
|
+
export interface LaunchersV2024ApiGetLauncherRequest {
|
|
65668
|
+
/**
|
|
65669
|
+
* ID of the Launcher to be retrieved
|
|
65670
|
+
* @type {string}
|
|
65671
|
+
* @memberof LaunchersV2024ApiGetLauncher
|
|
65672
|
+
*/
|
|
65673
|
+
readonly launcherID: string;
|
|
65674
|
+
}
|
|
65675
|
+
/**
|
|
65676
|
+
* Request parameters for getLaunchers operation in LaunchersV2024Api.
|
|
65677
|
+
* @export
|
|
65678
|
+
* @interface LaunchersV2024ApiGetLaunchersRequest
|
|
65679
|
+
*/
|
|
65680
|
+
export interface LaunchersV2024ApiGetLaunchersRequest {
|
|
65681
|
+
/**
|
|
65682
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **description**: *sw* **disabled**: *eq* **name**: *sw*
|
|
65683
|
+
* @type {string}
|
|
65684
|
+
* @memberof LaunchersV2024ApiGetLaunchers
|
|
65685
|
+
*/
|
|
65686
|
+
readonly filters?: string;
|
|
65687
|
+
/**
|
|
65688
|
+
* Pagination marker
|
|
65689
|
+
* @type {string}
|
|
65690
|
+
* @memberof LaunchersV2024ApiGetLaunchers
|
|
65691
|
+
*/
|
|
65692
|
+
readonly next?: string;
|
|
65693
|
+
/**
|
|
65694
|
+
* Number of Launchers to return
|
|
65695
|
+
* @type {number}
|
|
65696
|
+
* @memberof LaunchersV2024ApiGetLaunchers
|
|
65697
|
+
*/
|
|
65698
|
+
readonly limit?: number;
|
|
65699
|
+
}
|
|
65700
|
+
/**
|
|
65701
|
+
* Request parameters for putLauncher operation in LaunchersV2024Api.
|
|
65702
|
+
* @export
|
|
65703
|
+
* @interface LaunchersV2024ApiPutLauncherRequest
|
|
65704
|
+
*/
|
|
65705
|
+
export interface LaunchersV2024ApiPutLauncherRequest {
|
|
65706
|
+
/**
|
|
65707
|
+
* ID of the Launcher to be replaced
|
|
65708
|
+
* @type {string}
|
|
65709
|
+
* @memberof LaunchersV2024ApiPutLauncher
|
|
65710
|
+
*/
|
|
65711
|
+
readonly launcherID: string;
|
|
65712
|
+
/**
|
|
65713
|
+
* Payload to replace Launcher
|
|
65714
|
+
* @type {LauncherRequestV2024}
|
|
65715
|
+
* @memberof LaunchersV2024ApiPutLauncher
|
|
65716
|
+
*/
|
|
65717
|
+
readonly launcherRequestV2024: LauncherRequestV2024;
|
|
65718
|
+
}
|
|
65719
|
+
/**
|
|
65720
|
+
* Request parameters for startLauncher operation in LaunchersV2024Api.
|
|
65721
|
+
* @export
|
|
65722
|
+
* @interface LaunchersV2024ApiStartLauncherRequest
|
|
65723
|
+
*/
|
|
65724
|
+
export interface LaunchersV2024ApiStartLauncherRequest {
|
|
65725
|
+
/**
|
|
65726
|
+
* ID of the Launcher to be launched
|
|
65727
|
+
* @type {string}
|
|
65728
|
+
* @memberof LaunchersV2024ApiStartLauncher
|
|
65729
|
+
*/
|
|
65730
|
+
readonly launcherID: string;
|
|
65731
|
+
}
|
|
65732
|
+
/**
|
|
65733
|
+
* LaunchersV2024Api - object-oriented interface
|
|
65734
|
+
* @export
|
|
65735
|
+
* @class LaunchersV2024Api
|
|
65736
|
+
* @extends {BaseAPI}
|
|
65737
|
+
*/
|
|
65738
|
+
export declare class LaunchersV2024Api extends BaseAPI {
|
|
65739
|
+
/**
|
|
65740
|
+
* Create a Launcher with given information
|
|
65741
|
+
* @summary Create launcher
|
|
65742
|
+
* @param {LaunchersV2024ApiCreateLauncherRequest} requestParameters Request parameters.
|
|
65743
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65744
|
+
* @throws {RequiredError}
|
|
65745
|
+
* @memberof LaunchersV2024Api
|
|
65746
|
+
*/
|
|
65747
|
+
createLauncher(requestParameters: LaunchersV2024ApiCreateLauncherRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LauncherV2024, any>>;
|
|
65748
|
+
/**
|
|
65749
|
+
* Delete the given Launcher ID
|
|
65750
|
+
* @summary Delete launcher
|
|
65751
|
+
* @param {LaunchersV2024ApiDeleteLauncherRequest} requestParameters Request parameters.
|
|
65752
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65753
|
+
* @throws {RequiredError}
|
|
65754
|
+
* @memberof LaunchersV2024Api
|
|
65755
|
+
*/
|
|
65756
|
+
deleteLauncher(requestParameters: LaunchersV2024ApiDeleteLauncherRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
65757
|
+
/**
|
|
65758
|
+
* Get details for the given Launcher ID
|
|
65759
|
+
* @summary Get launcher by id
|
|
65760
|
+
* @param {LaunchersV2024ApiGetLauncherRequest} requestParameters Request parameters.
|
|
65761
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65762
|
+
* @throws {RequiredError}
|
|
65763
|
+
* @memberof LaunchersV2024Api
|
|
65764
|
+
*/
|
|
65765
|
+
getLauncher(requestParameters: LaunchersV2024ApiGetLauncherRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LauncherV2024, any>>;
|
|
65766
|
+
/**
|
|
65767
|
+
* Return a list of Launchers for the authenticated tenant
|
|
65768
|
+
* @summary List all launchers for tenant
|
|
65769
|
+
* @param {LaunchersV2024ApiGetLaunchersRequest} requestParameters Request parameters.
|
|
65770
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65771
|
+
* @throws {RequiredError}
|
|
65772
|
+
* @memberof LaunchersV2024Api
|
|
65773
|
+
*/
|
|
65774
|
+
getLaunchers(requestParameters?: LaunchersV2024ApiGetLaunchersRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLaunchers200ResponseV2024, any>>;
|
|
65775
|
+
/**
|
|
65776
|
+
* Replace the given Launcher ID with given payload
|
|
65777
|
+
* @summary Replace launcher
|
|
65778
|
+
* @param {LaunchersV2024ApiPutLauncherRequest} requestParameters Request parameters.
|
|
65779
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65780
|
+
* @throws {RequiredError}
|
|
65781
|
+
* @memberof LaunchersV2024Api
|
|
65782
|
+
*/
|
|
65783
|
+
putLauncher(requestParameters: LaunchersV2024ApiPutLauncherRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LauncherV2024, any>>;
|
|
65784
|
+
/**
|
|
65785
|
+
* Launch the given Launcher ID
|
|
65786
|
+
* @summary Launch a launcher
|
|
65787
|
+
* @param {LaunchersV2024ApiStartLauncherRequest} requestParameters Request parameters.
|
|
65788
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65789
|
+
* @throws {RequiredError}
|
|
65790
|
+
* @memberof LaunchersV2024Api
|
|
65791
|
+
*/
|
|
65792
|
+
startLauncher(requestParameters: LaunchersV2024ApiStartLauncherRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StartLauncher200ResponseV2024, any>>;
|
|
65793
|
+
}
|
|
64773
65794
|
/**
|
|
64774
65795
|
* LifecycleStatesV2024Api - axios parameter creator
|
|
64775
65796
|
* @export
|
|
@@ -64809,7 +65830,7 @@ export declare const LifecycleStatesV2024ApiAxiosParamCreator: (configuration?:
|
|
|
64809
65830
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
64810
65831
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
64811
65832
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
64812
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
|
|
65833
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
|
|
64813
65834
|
* @param {*} [axiosOptions] Override http request option.
|
|
64814
65835
|
* @throws {RequiredError}
|
|
64815
65836
|
*/
|
|
@@ -64873,7 +65894,7 @@ export declare const LifecycleStatesV2024ApiFp: (configuration?: Configuration)
|
|
|
64873
65894
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
64874
65895
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
64875
65896
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
64876
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
|
|
65897
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
|
|
64877
65898
|
* @param {*} [axiosOptions] Override http request option.
|
|
64878
65899
|
* @throws {RequiredError}
|
|
64879
65900
|
*/
|
|
@@ -65040,7 +66061,7 @@ export interface LifecycleStatesV2024ApiGetLifecycleStatesRequest {
|
|
|
65040
66061
|
*/
|
|
65041
66062
|
readonly count?: boolean;
|
|
65042
66063
|
/**
|
|
65043
|
-
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
|
|
66064
|
+
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
|
|
65044
66065
|
* @type {string}
|
|
65045
66066
|
* @memberof LifecycleStatesV2024ApiGetLifecycleStates
|
|
65046
66067
|
*/
|
|
@@ -65837,12 +66858,12 @@ export declare const MachineAccountsV2024ApiAxiosParamCreator: (configuration?:
|
|
|
65837
66858
|
* Use this API to update machine accounts details.
|
|
65838
66859
|
* @summary Update a machine account
|
|
65839
66860
|
* @param {string} id Machine Account ID.
|
|
65840
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
65841
66861
|
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * description * ownerIdentity * subType * accessType * environment * attributes * classificationMethod * manuallyEdited * nativeIdentity * uuid * source * manuallyCorrelated * enabled * locked * hasEntitlements * connectorAttributes
|
|
66862
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
65842
66863
|
* @param {*} [axiosOptions] Override http request option.
|
|
65843
66864
|
* @throws {RequiredError}
|
|
65844
66865
|
*/
|
|
65845
|
-
updateMachineAccount: (id: string,
|
|
66866
|
+
updateMachineAccount: (id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65846
66867
|
};
|
|
65847
66868
|
/**
|
|
65848
66869
|
* MachineAccountsV2024Api - functional programming interface
|
|
@@ -65875,12 +66896,12 @@ export declare const MachineAccountsV2024ApiFp: (configuration?: Configuration)
|
|
|
65875
66896
|
* Use this API to update machine accounts details.
|
|
65876
66897
|
* @summary Update a machine account
|
|
65877
66898
|
* @param {string} id Machine Account ID.
|
|
65878
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
65879
66899
|
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * description * ownerIdentity * subType * accessType * environment * attributes * classificationMethod * manuallyEdited * nativeIdentity * uuid * source * manuallyCorrelated * enabled * locked * hasEntitlements * connectorAttributes
|
|
66900
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
65880
66901
|
* @param {*} [axiosOptions] Override http request option.
|
|
65881
66902
|
* @throws {RequiredError}
|
|
65882
66903
|
*/
|
|
65883
|
-
updateMachineAccount(id: string,
|
|
66904
|
+
updateMachineAccount(id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountV2024>>;
|
|
65884
66905
|
};
|
|
65885
66906
|
/**
|
|
65886
66907
|
* MachineAccountsV2024Api - factory interface
|
|
@@ -65986,18 +67007,18 @@ export interface MachineAccountsV2024ApiUpdateMachineAccountRequest {
|
|
|
65986
67007
|
* @memberof MachineAccountsV2024ApiUpdateMachineAccount
|
|
65987
67008
|
*/
|
|
65988
67009
|
readonly id: string;
|
|
65989
|
-
/**
|
|
65990
|
-
* Use this header to enable this experimental API.
|
|
65991
|
-
* @type {string}
|
|
65992
|
-
* @memberof MachineAccountsV2024ApiUpdateMachineAccount
|
|
65993
|
-
*/
|
|
65994
|
-
readonly xSailPointExperimental: string;
|
|
65995
67010
|
/**
|
|
65996
67011
|
* A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * description * ownerIdentity * subType * accessType * environment * attributes * classificationMethod * manuallyEdited * nativeIdentity * uuid * source * manuallyCorrelated * enabled * locked * hasEntitlements * connectorAttributes
|
|
65997
67012
|
* @type {Array<object>}
|
|
65998
67013
|
* @memberof MachineAccountsV2024ApiUpdateMachineAccount
|
|
65999
67014
|
*/
|
|
66000
67015
|
readonly requestBody: Array<object>;
|
|
67016
|
+
/**
|
|
67017
|
+
* Use this header to enable this experimental API.
|
|
67018
|
+
* @type {string}
|
|
67019
|
+
* @memberof MachineAccountsV2024ApiUpdateMachineAccount
|
|
67020
|
+
*/
|
|
67021
|
+
readonly xSailPointExperimental?: string;
|
|
66001
67022
|
}
|
|
66002
67023
|
/**
|
|
66003
67024
|
* MachineAccountsV2024Api - object-oriented interface
|
|
@@ -66214,21 +67235,21 @@ export declare const MachineIdentitiesV2024ApiAxiosParamCreator: (configuration?
|
|
|
66214
67235
|
/**
|
|
66215
67236
|
* Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
|
|
66216
67237
|
* @summary Create machine identities
|
|
66217
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
66218
67238
|
* @param {MachineIdentityV2024} machineIdentityV2024
|
|
67239
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66219
67240
|
* @param {*} [axiosOptions] Override http request option.
|
|
66220
67241
|
* @throws {RequiredError}
|
|
66221
67242
|
*/
|
|
66222
|
-
createMachineIdentity: (
|
|
67243
|
+
createMachineIdentity: (machineIdentityV2024: MachineIdentityV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
66223
67244
|
/**
|
|
66224
67245
|
* The API returns successful response if the requested machine identity was deleted.
|
|
66225
67246
|
* @summary Delete machine identity
|
|
66226
67247
|
* @param {string} id Machine Identity ID
|
|
66227
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
67248
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66228
67249
|
* @param {*} [axiosOptions] Override http request option.
|
|
66229
67250
|
* @throws {RequiredError}
|
|
66230
67251
|
*/
|
|
66231
|
-
deleteMachineIdentity: (id: string, xSailPointExperimental
|
|
67252
|
+
deleteMachineIdentity: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
66232
67253
|
/**
|
|
66233
67254
|
* This API returns a single machine identity using the Machine Identity ID.
|
|
66234
67255
|
* @summary Machine identity details
|
|
@@ -66241,8 +67262,8 @@ export declare const MachineIdentitiesV2024ApiAxiosParamCreator: (configuration?
|
|
|
66241
67262
|
/**
|
|
66242
67263
|
* This API returns a list of machine identities.
|
|
66243
67264
|
* @summary List machine identities
|
|
66244
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **
|
|
66245
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name**
|
|
67265
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
|
|
67266
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name, owners.primaryIdentity.name, source.name, created, modified**
|
|
66246
67267
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66247
67268
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
66248
67269
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -66255,12 +67276,12 @@ export declare const MachineIdentitiesV2024ApiAxiosParamCreator: (configuration?
|
|
|
66255
67276
|
* Use this API to update machine identity details.
|
|
66256
67277
|
* @summary Update a machine identity
|
|
66257
67278
|
* @param {string} id Machine Identity ID.
|
|
66258
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
66259
67279
|
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
67280
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66260
67281
|
* @param {*} [axiosOptions] Override http request option.
|
|
66261
67282
|
* @throws {RequiredError}
|
|
66262
67283
|
*/
|
|
66263
|
-
updateMachineIdentity: (id: string,
|
|
67284
|
+
updateMachineIdentity: (id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
66264
67285
|
};
|
|
66265
67286
|
/**
|
|
66266
67287
|
* MachineIdentitiesV2024Api - functional programming interface
|
|
@@ -66270,21 +67291,21 @@ export declare const MachineIdentitiesV2024ApiFp: (configuration?: Configuration
|
|
|
66270
67291
|
/**
|
|
66271
67292
|
* Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
|
|
66272
67293
|
* @summary Create machine identities
|
|
66273
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
66274
67294
|
* @param {MachineIdentityV2024} machineIdentityV2024
|
|
67295
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66275
67296
|
* @param {*} [axiosOptions] Override http request option.
|
|
66276
67297
|
* @throws {RequiredError}
|
|
66277
67298
|
*/
|
|
66278
|
-
createMachineIdentity(
|
|
67299
|
+
createMachineIdentity(machineIdentityV2024: MachineIdentityV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineIdentityV2024>>;
|
|
66279
67300
|
/**
|
|
66280
67301
|
* The API returns successful response if the requested machine identity was deleted.
|
|
66281
67302
|
* @summary Delete machine identity
|
|
66282
67303
|
* @param {string} id Machine Identity ID
|
|
66283
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
67304
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66284
67305
|
* @param {*} [axiosOptions] Override http request option.
|
|
66285
67306
|
* @throws {RequiredError}
|
|
66286
67307
|
*/
|
|
66287
|
-
deleteMachineIdentity(id: string, xSailPointExperimental
|
|
67308
|
+
deleteMachineIdentity(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
66288
67309
|
/**
|
|
66289
67310
|
* This API returns a single machine identity using the Machine Identity ID.
|
|
66290
67311
|
* @summary Machine identity details
|
|
@@ -66297,8 +67318,8 @@ export declare const MachineIdentitiesV2024ApiFp: (configuration?: Configuration
|
|
|
66297
67318
|
/**
|
|
66298
67319
|
* This API returns a list of machine identities.
|
|
66299
67320
|
* @summary List machine identities
|
|
66300
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **
|
|
66301
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name**
|
|
67321
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
|
|
67322
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name, owners.primaryIdentity.name, source.name, created, modified**
|
|
66302
67323
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66303
67324
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
66304
67325
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -66311,12 +67332,12 @@ export declare const MachineIdentitiesV2024ApiFp: (configuration?: Configuration
|
|
|
66311
67332
|
* Use this API to update machine identity details.
|
|
66312
67333
|
* @summary Update a machine identity
|
|
66313
67334
|
* @param {string} id Machine Identity ID.
|
|
66314
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
66315
67335
|
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
67336
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66316
67337
|
* @param {*} [axiosOptions] Override http request option.
|
|
66317
67338
|
* @throws {RequiredError}
|
|
66318
67339
|
*/
|
|
66319
|
-
updateMachineIdentity(id: string,
|
|
67340
|
+
updateMachineIdentity(id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineIdentityV2024>>;
|
|
66320
67341
|
};
|
|
66321
67342
|
/**
|
|
66322
67343
|
* MachineIdentitiesV2024Api - factory interface
|
|
@@ -66370,18 +67391,18 @@ export declare const MachineIdentitiesV2024ApiFactory: (configuration?: Configur
|
|
|
66370
67391
|
* @interface MachineIdentitiesV2024ApiCreateMachineIdentityRequest
|
|
66371
67392
|
*/
|
|
66372
67393
|
export interface MachineIdentitiesV2024ApiCreateMachineIdentityRequest {
|
|
66373
|
-
/**
|
|
66374
|
-
* Use this header to enable this experimental API.
|
|
66375
|
-
* @type {string}
|
|
66376
|
-
* @memberof MachineIdentitiesV2024ApiCreateMachineIdentity
|
|
66377
|
-
*/
|
|
66378
|
-
readonly xSailPointExperimental: string;
|
|
66379
67394
|
/**
|
|
66380
67395
|
*
|
|
66381
67396
|
* @type {MachineIdentityV2024}
|
|
66382
67397
|
* @memberof MachineIdentitiesV2024ApiCreateMachineIdentity
|
|
66383
67398
|
*/
|
|
66384
67399
|
readonly machineIdentityV2024: MachineIdentityV2024;
|
|
67400
|
+
/**
|
|
67401
|
+
* Use this header to enable this experimental API.
|
|
67402
|
+
* @type {string}
|
|
67403
|
+
* @memberof MachineIdentitiesV2024ApiCreateMachineIdentity
|
|
67404
|
+
*/
|
|
67405
|
+
readonly xSailPointExperimental?: string;
|
|
66385
67406
|
}
|
|
66386
67407
|
/**
|
|
66387
67408
|
* Request parameters for deleteMachineIdentity operation in MachineIdentitiesV2024Api.
|
|
@@ -66400,7 +67421,7 @@ export interface MachineIdentitiesV2024ApiDeleteMachineIdentityRequest {
|
|
|
66400
67421
|
* @type {string}
|
|
66401
67422
|
* @memberof MachineIdentitiesV2024ApiDeleteMachineIdentity
|
|
66402
67423
|
*/
|
|
66403
|
-
readonly xSailPointExperimental
|
|
67424
|
+
readonly xSailPointExperimental?: string;
|
|
66404
67425
|
}
|
|
66405
67426
|
/**
|
|
66406
67427
|
* Request parameters for getMachineIdentity operation in MachineIdentitiesV2024Api.
|
|
@@ -66428,13 +67449,13 @@ export interface MachineIdentitiesV2024ApiGetMachineIdentityRequest {
|
|
|
66428
67449
|
*/
|
|
66429
67450
|
export interface MachineIdentitiesV2024ApiListMachineIdentitiesRequest {
|
|
66430
67451
|
/**
|
|
66431
|
-
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **
|
|
67452
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
|
|
66432
67453
|
* @type {string}
|
|
66433
67454
|
* @memberof MachineIdentitiesV2024ApiListMachineIdentities
|
|
66434
67455
|
*/
|
|
66435
67456
|
readonly filters?: string;
|
|
66436
67457
|
/**
|
|
66437
|
-
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name**
|
|
67458
|
+
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name, owners.primaryIdentity.name, source.name, created, modified**
|
|
66438
67459
|
* @type {string}
|
|
66439
67460
|
* @memberof MachineIdentitiesV2024ApiListMachineIdentities
|
|
66440
67461
|
*/
|
|
@@ -66476,18 +67497,18 @@ export interface MachineIdentitiesV2024ApiUpdateMachineIdentityRequest {
|
|
|
66476
67497
|
* @memberof MachineIdentitiesV2024ApiUpdateMachineIdentity
|
|
66477
67498
|
*/
|
|
66478
67499
|
readonly id: string;
|
|
66479
|
-
/**
|
|
66480
|
-
* Use this header to enable this experimental API.
|
|
66481
|
-
* @type {string}
|
|
66482
|
-
* @memberof MachineIdentitiesV2024ApiUpdateMachineIdentity
|
|
66483
|
-
*/
|
|
66484
|
-
readonly xSailPointExperimental: string;
|
|
66485
67500
|
/**
|
|
66486
67501
|
* A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
66487
67502
|
* @type {Array<object>}
|
|
66488
67503
|
* @memberof MachineIdentitiesV2024ApiUpdateMachineIdentity
|
|
66489
67504
|
*/
|
|
66490
67505
|
readonly requestBody: Array<object>;
|
|
67506
|
+
/**
|
|
67507
|
+
* Use this header to enable this experimental API.
|
|
67508
|
+
* @type {string}
|
|
67509
|
+
* @memberof MachineIdentitiesV2024ApiUpdateMachineIdentity
|
|
67510
|
+
*/
|
|
67511
|
+
readonly xSailPointExperimental?: string;
|
|
66491
67512
|
}
|
|
66492
67513
|
/**
|
|
66493
67514
|
* MachineIdentitiesV2024Api - object-oriented interface
|
|
@@ -70119,30 +71140,30 @@ export declare const NotificationsV2024ApiAxiosParamCreator: (configuration?: Co
|
|
|
70119
71140
|
/**
|
|
70120
71141
|
* Create a domain to be verified via DKIM (DomainKeys Identified Mail)
|
|
70121
71142
|
* @summary Verify domain address via dkim
|
|
70122
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
70123
71143
|
* @param {DomainAddressV2024} domainAddressV2024
|
|
71144
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
70124
71145
|
* @param {*} [axiosOptions] Override http request option.
|
|
70125
71146
|
* @throws {RequiredError}
|
|
70126
71147
|
*/
|
|
70127
|
-
createDomainDkim: (
|
|
71148
|
+
createDomainDkim: (domainAddressV2024: DomainAddressV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
70128
71149
|
/**
|
|
70129
71150
|
* This will update notification templates that are available in your tenant. Note that you cannot create new templates in your tenant, but you can use this to create custom notifications from existing templates. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
|
|
70130
71151
|
* @summary Create notification template
|
|
70131
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
70132
71152
|
* @param {TemplateDtoV2024} templateDtoV2024
|
|
71153
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
70133
71154
|
* @param {*} [axiosOptions] Override http request option.
|
|
70134
71155
|
* @throws {RequiredError}
|
|
70135
71156
|
*/
|
|
70136
|
-
createNotificationTemplate: (
|
|
71157
|
+
createNotificationTemplate: (templateDtoV2024: TemplateDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
70137
71158
|
/**
|
|
70138
71159
|
* Create a new sender email address and initiate verification process.
|
|
70139
71160
|
* @summary Create verified from address
|
|
70140
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
70141
71161
|
* @param {EmailStatusDtoV2024} emailStatusDtoV2024
|
|
71162
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
70142
71163
|
* @param {*} [axiosOptions] Override http request option.
|
|
70143
71164
|
* @throws {RequiredError}
|
|
70144
71165
|
*/
|
|
70145
|
-
createVerifiedFromAddress: (
|
|
71166
|
+
createVerifiedFromAddress: (emailStatusDtoV2024: EmailStatusDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
70146
71167
|
/**
|
|
70147
71168
|
* This lets you bulk delete templates that you previously created for your site. Since this is a beta feature, please contact support to enable usage.
|
|
70148
71169
|
* @summary Bulk delete notification templates
|
|
@@ -70266,30 +71287,30 @@ export declare const NotificationsV2024ApiFp: (configuration?: Configuration) =>
|
|
|
70266
71287
|
/**
|
|
70267
71288
|
* Create a domain to be verified via DKIM (DomainKeys Identified Mail)
|
|
70268
71289
|
* @summary Verify domain address via dkim
|
|
70269
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
70270
71290
|
* @param {DomainAddressV2024} domainAddressV2024
|
|
71291
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
70271
71292
|
* @param {*} [axiosOptions] Override http request option.
|
|
70272
71293
|
* @throws {RequiredError}
|
|
70273
71294
|
*/
|
|
70274
|
-
createDomainDkim(
|
|
71295
|
+
createDomainDkim(domainAddressV2024: DomainAddressV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DomainStatusDtoV2024>>;
|
|
70275
71296
|
/**
|
|
70276
71297
|
* This will update notification templates that are available in your tenant. Note that you cannot create new templates in your tenant, but you can use this to create custom notifications from existing templates. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
|
|
70277
71298
|
* @summary Create notification template
|
|
70278
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
70279
71299
|
* @param {TemplateDtoV2024} templateDtoV2024
|
|
71300
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
70280
71301
|
* @param {*} [axiosOptions] Override http request option.
|
|
70281
71302
|
* @throws {RequiredError}
|
|
70282
71303
|
*/
|
|
70283
|
-
createNotificationTemplate(
|
|
71304
|
+
createNotificationTemplate(templateDtoV2024: TemplateDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TemplateDtoV2024>>;
|
|
70284
71305
|
/**
|
|
70285
71306
|
* Create a new sender email address and initiate verification process.
|
|
70286
71307
|
* @summary Create verified from address
|
|
70287
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
70288
71308
|
* @param {EmailStatusDtoV2024} emailStatusDtoV2024
|
|
71309
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
70289
71310
|
* @param {*} [axiosOptions] Override http request option.
|
|
70290
71311
|
* @throws {RequiredError}
|
|
70291
71312
|
*/
|
|
70292
|
-
createVerifiedFromAddress(
|
|
71313
|
+
createVerifiedFromAddress(emailStatusDtoV2024: EmailStatusDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailStatusDtoV2024>>;
|
|
70293
71314
|
/**
|
|
70294
71315
|
* This lets you bulk delete templates that you previously created for your site. Since this is a beta feature, please contact support to enable usage.
|
|
70295
71316
|
* @summary Bulk delete notification templates
|
|
@@ -70537,18 +71558,18 @@ export declare const NotificationsV2024ApiFactory: (configuration?: Configuratio
|
|
|
70537
71558
|
* @interface NotificationsV2024ApiCreateDomainDkimRequest
|
|
70538
71559
|
*/
|
|
70539
71560
|
export interface NotificationsV2024ApiCreateDomainDkimRequest {
|
|
70540
|
-
/**
|
|
70541
|
-
* Use this header to enable this experimental API.
|
|
70542
|
-
* @type {string}
|
|
70543
|
-
* @memberof NotificationsV2024ApiCreateDomainDkim
|
|
70544
|
-
*/
|
|
70545
|
-
readonly xSailPointExperimental: string;
|
|
70546
71561
|
/**
|
|
70547
71562
|
*
|
|
70548
71563
|
* @type {DomainAddressV2024}
|
|
70549
71564
|
* @memberof NotificationsV2024ApiCreateDomainDkim
|
|
70550
71565
|
*/
|
|
70551
71566
|
readonly domainAddressV2024: DomainAddressV2024;
|
|
71567
|
+
/**
|
|
71568
|
+
* Use this header to enable this experimental API.
|
|
71569
|
+
* @type {string}
|
|
71570
|
+
* @memberof NotificationsV2024ApiCreateDomainDkim
|
|
71571
|
+
*/
|
|
71572
|
+
readonly xSailPointExperimental?: string;
|
|
70552
71573
|
}
|
|
70553
71574
|
/**
|
|
70554
71575
|
* Request parameters for createNotificationTemplate operation in NotificationsV2024Api.
|
|
@@ -70556,18 +71577,18 @@ export interface NotificationsV2024ApiCreateDomainDkimRequest {
|
|
|
70556
71577
|
* @interface NotificationsV2024ApiCreateNotificationTemplateRequest
|
|
70557
71578
|
*/
|
|
70558
71579
|
export interface NotificationsV2024ApiCreateNotificationTemplateRequest {
|
|
70559
|
-
/**
|
|
70560
|
-
* Use this header to enable this experimental API.
|
|
70561
|
-
* @type {string}
|
|
70562
|
-
* @memberof NotificationsV2024ApiCreateNotificationTemplate
|
|
70563
|
-
*/
|
|
70564
|
-
readonly xSailPointExperimental: string;
|
|
70565
71580
|
/**
|
|
70566
71581
|
*
|
|
70567
71582
|
* @type {TemplateDtoV2024}
|
|
70568
71583
|
* @memberof NotificationsV2024ApiCreateNotificationTemplate
|
|
70569
71584
|
*/
|
|
70570
71585
|
readonly templateDtoV2024: TemplateDtoV2024;
|
|
71586
|
+
/**
|
|
71587
|
+
* Use this header to enable this experimental API.
|
|
71588
|
+
* @type {string}
|
|
71589
|
+
* @memberof NotificationsV2024ApiCreateNotificationTemplate
|
|
71590
|
+
*/
|
|
71591
|
+
readonly xSailPointExperimental?: string;
|
|
70571
71592
|
}
|
|
70572
71593
|
/**
|
|
70573
71594
|
* Request parameters for createVerifiedFromAddress operation in NotificationsV2024Api.
|
|
@@ -70575,18 +71596,18 @@ export interface NotificationsV2024ApiCreateNotificationTemplateRequest {
|
|
|
70575
71596
|
* @interface NotificationsV2024ApiCreateVerifiedFromAddressRequest
|
|
70576
71597
|
*/
|
|
70577
71598
|
export interface NotificationsV2024ApiCreateVerifiedFromAddressRequest {
|
|
70578
|
-
/**
|
|
70579
|
-
* Use this header to enable this experimental API.
|
|
70580
|
-
* @type {string}
|
|
70581
|
-
* @memberof NotificationsV2024ApiCreateVerifiedFromAddress
|
|
70582
|
-
*/
|
|
70583
|
-
readonly xSailPointExperimental: string;
|
|
70584
71599
|
/**
|
|
70585
71600
|
*
|
|
70586
71601
|
* @type {EmailStatusDtoV2024}
|
|
70587
71602
|
* @memberof NotificationsV2024ApiCreateVerifiedFromAddress
|
|
70588
71603
|
*/
|
|
70589
71604
|
readonly emailStatusDtoV2024: EmailStatusDtoV2024;
|
|
71605
|
+
/**
|
|
71606
|
+
* Use this header to enable this experimental API.
|
|
71607
|
+
* @type {string}
|
|
71608
|
+
* @memberof NotificationsV2024ApiCreateVerifiedFromAddress
|
|
71609
|
+
*/
|
|
71610
|
+
readonly xSailPointExperimental?: string;
|
|
70590
71611
|
}
|
|
70591
71612
|
/**
|
|
70592
71613
|
* Request parameters for deleteNotificationTemplatesInBulk operation in NotificationsV2024Api.
|
|
@@ -71286,12 +72307,12 @@ export declare const OrgConfigV2024ApiAxiosParamCreator: (configuration?: Config
|
|
|
71286
72307
|
/**
|
|
71287
72308
|
* Patch the current organization\'s configuration, using http://jsonpatch.com/ syntax. This is commonly used to changing an organization\'s time zone.
|
|
71288
72309
|
* @summary Patch org config
|
|
71289
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
71290
72310
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
72311
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
71291
72312
|
* @param {*} [axiosOptions] Override http request option.
|
|
71292
72313
|
* @throws {RequiredError}
|
|
71293
72314
|
*/
|
|
71294
|
-
patchOrgConfig: (
|
|
72315
|
+
patchOrgConfig: (jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
71295
72316
|
};
|
|
71296
72317
|
/**
|
|
71297
72318
|
* OrgConfigV2024Api - functional programming interface
|
|
@@ -71320,12 +72341,12 @@ export declare const OrgConfigV2024ApiFp: (configuration?: Configuration) => {
|
|
|
71320
72341
|
/**
|
|
71321
72342
|
* Patch the current organization\'s configuration, using http://jsonpatch.com/ syntax. This is commonly used to changing an organization\'s time zone.
|
|
71322
72343
|
* @summary Patch org config
|
|
71323
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
71324
72344
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
72345
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
71325
72346
|
* @param {*} [axiosOptions] Override http request option.
|
|
71326
72347
|
* @throws {RequiredError}
|
|
71327
72348
|
*/
|
|
71328
|
-
patchOrgConfig(
|
|
72349
|
+
patchOrgConfig(jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrgConfigV2024>>;
|
|
71329
72350
|
};
|
|
71330
72351
|
/**
|
|
71331
72352
|
* OrgConfigV2024Api - factory interface
|
|
@@ -71407,18 +72428,18 @@ export interface OrgConfigV2024ApiGetValidTimeZonesRequest {
|
|
|
71407
72428
|
* @interface OrgConfigV2024ApiPatchOrgConfigRequest
|
|
71408
72429
|
*/
|
|
71409
72430
|
export interface OrgConfigV2024ApiPatchOrgConfigRequest {
|
|
71410
|
-
/**
|
|
71411
|
-
* Use this header to enable this experimental API.
|
|
71412
|
-
* @type {string}
|
|
71413
|
-
* @memberof OrgConfigV2024ApiPatchOrgConfig
|
|
71414
|
-
*/
|
|
71415
|
-
readonly xSailPointExperimental: string;
|
|
71416
72431
|
/**
|
|
71417
72432
|
* A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
71418
72433
|
* @type {Array<JsonPatchOperationV2024>}
|
|
71419
72434
|
* @memberof OrgConfigV2024ApiPatchOrgConfig
|
|
71420
72435
|
*/
|
|
71421
72436
|
readonly jsonPatchOperationV2024: Array<JsonPatchOperationV2024>;
|
|
72437
|
+
/**
|
|
72438
|
+
* Use this header to enable this experimental API.
|
|
72439
|
+
* @type {string}
|
|
72440
|
+
* @memberof OrgConfigV2024ApiPatchOrgConfig
|
|
72441
|
+
*/
|
|
72442
|
+
readonly xSailPointExperimental?: string;
|
|
71422
72443
|
}
|
|
71423
72444
|
/**
|
|
71424
72445
|
* OrgConfigV2024Api - object-oriented interface
|
|
@@ -74939,30 +75960,30 @@ export declare const SIMIntegrationsV2024ApiAxiosParamCreator: (configuration?:
|
|
|
74939
75960
|
/**
|
|
74940
75961
|
* Create a new SIM Integrations.
|
|
74941
75962
|
* @summary Create new sim integration
|
|
74942
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
74943
75963
|
* @param {SimIntegrationDetailsV2024} simIntegrationDetailsV2024 DTO containing the details of the SIM integration
|
|
75964
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
74944
75965
|
* @param {*} [axiosOptions] Override http request option.
|
|
74945
75966
|
* @throws {RequiredError}
|
|
74946
75967
|
*/
|
|
74947
|
-
createSIMIntegration: (
|
|
75968
|
+
createSIMIntegration: (simIntegrationDetailsV2024: SimIntegrationDetailsV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
74948
75969
|
/**
|
|
74949
75970
|
* Get the details of a SIM integration.
|
|
74950
75971
|
* @summary Delete a sim integration
|
|
74951
75972
|
* @param {string} id The id of the integration to delete.
|
|
74952
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
75973
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
74953
75974
|
* @param {*} [axiosOptions] Override http request option.
|
|
74954
75975
|
* @throws {RequiredError}
|
|
74955
75976
|
*/
|
|
74956
|
-
deleteSIMIntegration: (id: string, xSailPointExperimental
|
|
75977
|
+
deleteSIMIntegration: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
74957
75978
|
/**
|
|
74958
75979
|
* Get the details of a SIM integration.
|
|
74959
75980
|
* @summary Get a sim integration details.
|
|
74960
75981
|
* @param {string} id The id of the integration.
|
|
74961
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
75982
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
74962
75983
|
* @param {*} [axiosOptions] Override http request option.
|
|
74963
75984
|
* @throws {RequiredError}
|
|
74964
75985
|
*/
|
|
74965
|
-
getSIMIntegration: (id: string, xSailPointExperimental
|
|
75986
|
+
getSIMIntegration: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
74966
75987
|
/**
|
|
74967
75988
|
* List the existing SIM integrations.
|
|
74968
75989
|
* @summary List the existing sim integrations.
|
|
@@ -74985,12 +76006,12 @@ export declare const SIMIntegrationsV2024ApiAxiosParamCreator: (configuration?:
|
|
|
74985
76006
|
* Patch a SIM attribute given a JsonPatch object.
|
|
74986
76007
|
* @summary Patch a sim attribute.
|
|
74987
76008
|
* @param {string} id SIM integration id
|
|
74988
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
74989
76009
|
* @param {JsonPatchV2024} jsonPatchV2024 The JsonPatch object that describes the changes of SIM
|
|
76010
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
74990
76011
|
* @param {*} [axiosOptions] Override http request option.
|
|
74991
76012
|
* @throws {RequiredError}
|
|
74992
76013
|
*/
|
|
74993
|
-
patchSIMAttributes: (id: string,
|
|
76014
|
+
patchSIMAttributes: (id: string, jsonPatchV2024: JsonPatchV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
74994
76015
|
/**
|
|
74995
76016
|
* Update an existing SIM integration.
|
|
74996
76017
|
* @summary Update an existing sim integration
|
|
@@ -75010,30 +76031,30 @@ export declare const SIMIntegrationsV2024ApiFp: (configuration?: Configuration)
|
|
|
75010
76031
|
/**
|
|
75011
76032
|
* Create a new SIM Integrations.
|
|
75012
76033
|
* @summary Create new sim integration
|
|
75013
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
75014
76034
|
* @param {SimIntegrationDetailsV2024} simIntegrationDetailsV2024 DTO containing the details of the SIM integration
|
|
76035
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
75015
76036
|
* @param {*} [axiosOptions] Override http request option.
|
|
75016
76037
|
* @throws {RequiredError}
|
|
75017
76038
|
*/
|
|
75018
|
-
createSIMIntegration(
|
|
76039
|
+
createSIMIntegration(simIntegrationDetailsV2024: SimIntegrationDetailsV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceDeskIntegrationDtoV2024>>;
|
|
75019
76040
|
/**
|
|
75020
76041
|
* Get the details of a SIM integration.
|
|
75021
76042
|
* @summary Delete a sim integration
|
|
75022
76043
|
* @param {string} id The id of the integration to delete.
|
|
75023
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
76044
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
75024
76045
|
* @param {*} [axiosOptions] Override http request option.
|
|
75025
76046
|
* @throws {RequiredError}
|
|
75026
76047
|
*/
|
|
75027
|
-
deleteSIMIntegration(id: string, xSailPointExperimental
|
|
76048
|
+
deleteSIMIntegration(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
75028
76049
|
/**
|
|
75029
76050
|
* Get the details of a SIM integration.
|
|
75030
76051
|
* @summary Get a sim integration details.
|
|
75031
76052
|
* @param {string} id The id of the integration.
|
|
75032
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
76053
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
75033
76054
|
* @param {*} [axiosOptions] Override http request option.
|
|
75034
76055
|
* @throws {RequiredError}
|
|
75035
76056
|
*/
|
|
75036
|
-
getSIMIntegration(id: string, xSailPointExperimental
|
|
76057
|
+
getSIMIntegration(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceDeskIntegrationDtoV2024>>;
|
|
75037
76058
|
/**
|
|
75038
76059
|
* List the existing SIM integrations.
|
|
75039
76060
|
* @summary List the existing sim integrations.
|
|
@@ -75056,12 +76077,12 @@ export declare const SIMIntegrationsV2024ApiFp: (configuration?: Configuration)
|
|
|
75056
76077
|
* Patch a SIM attribute given a JsonPatch object.
|
|
75057
76078
|
* @summary Patch a sim attribute.
|
|
75058
76079
|
* @param {string} id SIM integration id
|
|
75059
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
75060
76080
|
* @param {JsonPatchV2024} jsonPatchV2024 The JsonPatch object that describes the changes of SIM
|
|
76081
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
75061
76082
|
* @param {*} [axiosOptions] Override http request option.
|
|
75062
76083
|
* @throws {RequiredError}
|
|
75063
76084
|
*/
|
|
75064
|
-
patchSIMAttributes(id: string,
|
|
76085
|
+
patchSIMAttributes(id: string, jsonPatchV2024: JsonPatchV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceDeskIntegrationDtoV2024>>;
|
|
75065
76086
|
/**
|
|
75066
76087
|
* Update an existing SIM integration.
|
|
75067
76088
|
* @summary Update an existing sim integration
|
|
@@ -75141,18 +76162,18 @@ export declare const SIMIntegrationsV2024ApiFactory: (configuration?: Configurat
|
|
|
75141
76162
|
* @interface SIMIntegrationsV2024ApiCreateSIMIntegrationRequest
|
|
75142
76163
|
*/
|
|
75143
76164
|
export interface SIMIntegrationsV2024ApiCreateSIMIntegrationRequest {
|
|
75144
|
-
/**
|
|
75145
|
-
* Use this header to enable this experimental API.
|
|
75146
|
-
* @type {string}
|
|
75147
|
-
* @memberof SIMIntegrationsV2024ApiCreateSIMIntegration
|
|
75148
|
-
*/
|
|
75149
|
-
readonly xSailPointExperimental: string;
|
|
75150
76165
|
/**
|
|
75151
76166
|
* DTO containing the details of the SIM integration
|
|
75152
76167
|
* @type {SimIntegrationDetailsV2024}
|
|
75153
76168
|
* @memberof SIMIntegrationsV2024ApiCreateSIMIntegration
|
|
75154
76169
|
*/
|
|
75155
76170
|
readonly simIntegrationDetailsV2024: SimIntegrationDetailsV2024;
|
|
76171
|
+
/**
|
|
76172
|
+
* Use this header to enable this experimental API.
|
|
76173
|
+
* @type {string}
|
|
76174
|
+
* @memberof SIMIntegrationsV2024ApiCreateSIMIntegration
|
|
76175
|
+
*/
|
|
76176
|
+
readonly xSailPointExperimental?: string;
|
|
75156
76177
|
}
|
|
75157
76178
|
/**
|
|
75158
76179
|
* Request parameters for deleteSIMIntegration operation in SIMIntegrationsV2024Api.
|
|
@@ -75171,7 +76192,7 @@ export interface SIMIntegrationsV2024ApiDeleteSIMIntegrationRequest {
|
|
|
75171
76192
|
* @type {string}
|
|
75172
76193
|
* @memberof SIMIntegrationsV2024ApiDeleteSIMIntegration
|
|
75173
76194
|
*/
|
|
75174
|
-
readonly xSailPointExperimental
|
|
76195
|
+
readonly xSailPointExperimental?: string;
|
|
75175
76196
|
}
|
|
75176
76197
|
/**
|
|
75177
76198
|
* Request parameters for getSIMIntegration operation in SIMIntegrationsV2024Api.
|
|
@@ -75190,7 +76211,7 @@ export interface SIMIntegrationsV2024ApiGetSIMIntegrationRequest {
|
|
|
75190
76211
|
* @type {string}
|
|
75191
76212
|
* @memberof SIMIntegrationsV2024ApiGetSIMIntegration
|
|
75192
76213
|
*/
|
|
75193
|
-
readonly xSailPointExperimental
|
|
76214
|
+
readonly xSailPointExperimental?: string;
|
|
75194
76215
|
}
|
|
75195
76216
|
/**
|
|
75196
76217
|
* Request parameters for getSIMIntegrations operation in SIMIntegrationsV2024Api.
|
|
@@ -75242,18 +76263,18 @@ export interface SIMIntegrationsV2024ApiPatchSIMAttributesRequest {
|
|
|
75242
76263
|
* @memberof SIMIntegrationsV2024ApiPatchSIMAttributes
|
|
75243
76264
|
*/
|
|
75244
76265
|
readonly id: string;
|
|
75245
|
-
/**
|
|
75246
|
-
* Use this header to enable this experimental API.
|
|
75247
|
-
* @type {string}
|
|
75248
|
-
* @memberof SIMIntegrationsV2024ApiPatchSIMAttributes
|
|
75249
|
-
*/
|
|
75250
|
-
readonly xSailPointExperimental: string;
|
|
75251
76266
|
/**
|
|
75252
76267
|
* The JsonPatch object that describes the changes of SIM
|
|
75253
76268
|
* @type {JsonPatchV2024}
|
|
75254
76269
|
* @memberof SIMIntegrationsV2024ApiPatchSIMAttributes
|
|
75255
76270
|
*/
|
|
75256
76271
|
readonly jsonPatchV2024: JsonPatchV2024;
|
|
76272
|
+
/**
|
|
76273
|
+
* Use this header to enable this experimental API.
|
|
76274
|
+
* @type {string}
|
|
76275
|
+
* @memberof SIMIntegrationsV2024ApiPatchSIMAttributes
|
|
76276
|
+
*/
|
|
76277
|
+
readonly xSailPointExperimental?: string;
|
|
75257
76278
|
}
|
|
75258
76279
|
/**
|
|
75259
76280
|
* Request parameters for putSIMIntegration operation in SIMIntegrationsV2024Api.
|
|
@@ -76230,11 +77251,11 @@ export declare const SODViolationsV2024ApiAxiosParamCreator: (configuration?: Co
|
|
|
76230
77251
|
/**
|
|
76231
77252
|
* This API initiates a SOD policy verification asynchronously.
|
|
76232
77253
|
* @summary Check sod violations
|
|
76233
|
-
* @param {
|
|
77254
|
+
* @param {IdentityWithNewAccessV2024} identityWithNewAccessV2024
|
|
76234
77255
|
* @param {*} [axiosOptions] Override http request option.
|
|
76235
77256
|
* @throws {RequiredError}
|
|
76236
77257
|
*/
|
|
76237
|
-
startViolationCheck: (
|
|
77258
|
+
startViolationCheck: (identityWithNewAccessV2024: IdentityWithNewAccessV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
76238
77259
|
};
|
|
76239
77260
|
/**
|
|
76240
77261
|
* SODViolationsV2024Api - functional programming interface
|
|
@@ -76252,11 +77273,11 @@ export declare const SODViolationsV2024ApiFp: (configuration?: Configuration) =>
|
|
|
76252
77273
|
/**
|
|
76253
77274
|
* This API initiates a SOD policy verification asynchronously.
|
|
76254
77275
|
* @summary Check sod violations
|
|
76255
|
-
* @param {
|
|
77276
|
+
* @param {IdentityWithNewAccessV2024} identityWithNewAccessV2024
|
|
76256
77277
|
* @param {*} [axiosOptions] Override http request option.
|
|
76257
77278
|
* @throws {RequiredError}
|
|
76258
77279
|
*/
|
|
76259
|
-
startViolationCheck(
|
|
77280
|
+
startViolationCheck(identityWithNewAccessV2024: IdentityWithNewAccessV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SodViolationCheckV2024>>;
|
|
76260
77281
|
};
|
|
76261
77282
|
/**
|
|
76262
77283
|
* SODViolationsV2024Api - factory interface
|
|
@@ -76301,10 +77322,10 @@ export interface SODViolationsV2024ApiStartPredictSodViolationsRequest {
|
|
|
76301
77322
|
export interface SODViolationsV2024ApiStartViolationCheckRequest {
|
|
76302
77323
|
/**
|
|
76303
77324
|
*
|
|
76304
|
-
* @type {
|
|
77325
|
+
* @type {IdentityWithNewAccessV2024}
|
|
76305
77326
|
* @memberof SODViolationsV2024ApiStartViolationCheck
|
|
76306
77327
|
*/
|
|
76307
|
-
readonly
|
|
77328
|
+
readonly identityWithNewAccessV2024: IdentityWithNewAccessV2024;
|
|
76308
77329
|
}
|
|
76309
77330
|
/**
|
|
76310
77331
|
* SODViolationsV2024Api - object-oriented interface
|
|
@@ -77659,21 +78680,21 @@ export declare const SearchAttributeConfigurationV2024ApiAxiosParamCreator: (con
|
|
|
77659
78680
|
* Delete an extended attribute configuration by name.
|
|
77660
78681
|
* @summary Delete extended search attribute
|
|
77661
78682
|
* @param {string} name Name of the extended search attribute configuration to delete.
|
|
77662
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78683
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77663
78684
|
* @param {*} [axiosOptions] Override http request option.
|
|
77664
78685
|
* @throws {RequiredError}
|
|
77665
78686
|
*/
|
|
77666
|
-
deleteSearchAttributeConfig: (name: string, xSailPointExperimental
|
|
78687
|
+
deleteSearchAttributeConfig: (name: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
77667
78688
|
/**
|
|
77668
78689
|
* Get a list of attribute/application attributes currently configured in Identity Security Cloud (ISC).
|
|
77669
78690
|
* @summary List extended search attributes
|
|
77670
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
77671
78691
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
77672
78692
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
78693
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77673
78694
|
* @param {*} [axiosOptions] Override http request option.
|
|
77674
78695
|
* @throws {RequiredError}
|
|
77675
78696
|
*/
|
|
77676
|
-
getSearchAttributeConfig: (
|
|
78697
|
+
getSearchAttributeConfig: (limit?: number, offset?: number, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
77677
78698
|
/**
|
|
77678
78699
|
* Get an extended attribute configuration by name.
|
|
77679
78700
|
* @summary Get extended search attribute
|
|
@@ -77687,12 +78708,12 @@ export declare const SearchAttributeConfigurationV2024ApiAxiosParamCreator: (con
|
|
|
77687
78708
|
* Update an existing search attribute configuration. You can patch these fields: * name * displayName * applicationAttributes
|
|
77688
78709
|
* @summary Update extended search attribute
|
|
77689
78710
|
* @param {string} name Name of the search attribute configuration to patch.
|
|
77690
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
77691
78711
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
78712
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77692
78713
|
* @param {*} [axiosOptions] Override http request option.
|
|
77693
78714
|
* @throws {RequiredError}
|
|
77694
78715
|
*/
|
|
77695
|
-
patchSearchAttributeConfig: (name: string,
|
|
78716
|
+
patchSearchAttributeConfig: (name: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
77696
78717
|
};
|
|
77697
78718
|
/**
|
|
77698
78719
|
* SearchAttributeConfigurationV2024Api - functional programming interface
|
|
@@ -77712,21 +78733,21 @@ export declare const SearchAttributeConfigurationV2024ApiFp: (configuration?: Co
|
|
|
77712
78733
|
* Delete an extended attribute configuration by name.
|
|
77713
78734
|
* @summary Delete extended search attribute
|
|
77714
78735
|
* @param {string} name Name of the extended search attribute configuration to delete.
|
|
77715
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78736
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77716
78737
|
* @param {*} [axiosOptions] Override http request option.
|
|
77717
78738
|
* @throws {RequiredError}
|
|
77718
78739
|
*/
|
|
77719
|
-
deleteSearchAttributeConfig(name: string, xSailPointExperimental
|
|
78740
|
+
deleteSearchAttributeConfig(name: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
77720
78741
|
/**
|
|
77721
78742
|
* Get a list of attribute/application attributes currently configured in Identity Security Cloud (ISC).
|
|
77722
78743
|
* @summary List extended search attributes
|
|
77723
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
77724
78744
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
77725
78745
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
78746
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77726
78747
|
* @param {*} [axiosOptions] Override http request option.
|
|
77727
78748
|
* @throws {RequiredError}
|
|
77728
78749
|
*/
|
|
77729
|
-
getSearchAttributeConfig(
|
|
78750
|
+
getSearchAttributeConfig(limit?: number, offset?: number, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SearchAttributeConfigV2024>>>;
|
|
77730
78751
|
/**
|
|
77731
78752
|
* Get an extended attribute configuration by name.
|
|
77732
78753
|
* @summary Get extended search attribute
|
|
@@ -77740,12 +78761,12 @@ export declare const SearchAttributeConfigurationV2024ApiFp: (configuration?: Co
|
|
|
77740
78761
|
* Update an existing search attribute configuration. You can patch these fields: * name * displayName * applicationAttributes
|
|
77741
78762
|
* @summary Update extended search attribute
|
|
77742
78763
|
* @param {string} name Name of the search attribute configuration to patch.
|
|
77743
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
77744
78764
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
78765
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77745
78766
|
* @param {*} [axiosOptions] Override http request option.
|
|
77746
78767
|
* @throws {RequiredError}
|
|
77747
78768
|
*/
|
|
77748
|
-
patchSearchAttributeConfig(name: string,
|
|
78769
|
+
patchSearchAttributeConfig(name: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchAttributeConfigV2024>>;
|
|
77749
78770
|
};
|
|
77750
78771
|
/**
|
|
77751
78772
|
* SearchAttributeConfigurationV2024Api - factory interface
|
|
@@ -77775,7 +78796,7 @@ export declare const SearchAttributeConfigurationV2024ApiFactory: (configuration
|
|
|
77775
78796
|
* @param {*} [axiosOptions] Override http request option.
|
|
77776
78797
|
* @throws {RequiredError}
|
|
77777
78798
|
*/
|
|
77778
|
-
getSearchAttributeConfig(requestParameters
|
|
78799
|
+
getSearchAttributeConfig(requestParameters?: SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SearchAttributeConfigV2024>>;
|
|
77779
78800
|
/**
|
|
77780
78801
|
* Get an extended attribute configuration by name.
|
|
77781
78802
|
* @summary Get extended search attribute
|
|
@@ -77829,7 +78850,7 @@ export interface SearchAttributeConfigurationV2024ApiDeleteSearchAttributeConfig
|
|
|
77829
78850
|
* @type {string}
|
|
77830
78851
|
* @memberof SearchAttributeConfigurationV2024ApiDeleteSearchAttributeConfig
|
|
77831
78852
|
*/
|
|
77832
|
-
readonly xSailPointExperimental
|
|
78853
|
+
readonly xSailPointExperimental?: string;
|
|
77833
78854
|
}
|
|
77834
78855
|
/**
|
|
77835
78856
|
* Request parameters for getSearchAttributeConfig operation in SearchAttributeConfigurationV2024Api.
|
|
@@ -77837,12 +78858,6 @@ export interface SearchAttributeConfigurationV2024ApiDeleteSearchAttributeConfig
|
|
|
77837
78858
|
* @interface SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest
|
|
77838
78859
|
*/
|
|
77839
78860
|
export interface SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest {
|
|
77840
|
-
/**
|
|
77841
|
-
* Use this header to enable this experimental API.
|
|
77842
|
-
* @type {string}
|
|
77843
|
-
* @memberof SearchAttributeConfigurationV2024ApiGetSearchAttributeConfig
|
|
77844
|
-
*/
|
|
77845
|
-
readonly xSailPointExperimental: string;
|
|
77846
78861
|
/**
|
|
77847
78862
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
77848
78863
|
* @type {number}
|
|
@@ -77855,6 +78870,12 @@ export interface SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigReq
|
|
|
77855
78870
|
* @memberof SearchAttributeConfigurationV2024ApiGetSearchAttributeConfig
|
|
77856
78871
|
*/
|
|
77857
78872
|
readonly offset?: number;
|
|
78873
|
+
/**
|
|
78874
|
+
* Use this header to enable this experimental API.
|
|
78875
|
+
* @type {string}
|
|
78876
|
+
* @memberof SearchAttributeConfigurationV2024ApiGetSearchAttributeConfig
|
|
78877
|
+
*/
|
|
78878
|
+
readonly xSailPointExperimental?: string;
|
|
77858
78879
|
}
|
|
77859
78880
|
/**
|
|
77860
78881
|
* Request parameters for getSingleSearchAttributeConfig operation in SearchAttributeConfigurationV2024Api.
|
|
@@ -77887,18 +78908,18 @@ export interface SearchAttributeConfigurationV2024ApiPatchSearchAttributeConfigR
|
|
|
77887
78908
|
* @memberof SearchAttributeConfigurationV2024ApiPatchSearchAttributeConfig
|
|
77888
78909
|
*/
|
|
77889
78910
|
readonly name: string;
|
|
77890
|
-
/**
|
|
77891
|
-
* Use this header to enable this experimental API.
|
|
77892
|
-
* @type {string}
|
|
77893
|
-
* @memberof SearchAttributeConfigurationV2024ApiPatchSearchAttributeConfig
|
|
77894
|
-
*/
|
|
77895
|
-
readonly xSailPointExperimental: string;
|
|
77896
78911
|
/**
|
|
77897
78912
|
*
|
|
77898
78913
|
* @type {Array<JsonPatchOperationV2024>}
|
|
77899
78914
|
* @memberof SearchAttributeConfigurationV2024ApiPatchSearchAttributeConfig
|
|
77900
78915
|
*/
|
|
77901
78916
|
readonly jsonPatchOperationV2024: Array<JsonPatchOperationV2024>;
|
|
78917
|
+
/**
|
|
78918
|
+
* Use this header to enable this experimental API.
|
|
78919
|
+
* @type {string}
|
|
78920
|
+
* @memberof SearchAttributeConfigurationV2024ApiPatchSearchAttributeConfig
|
|
78921
|
+
*/
|
|
78922
|
+
readonly xSailPointExperimental?: string;
|
|
77902
78923
|
}
|
|
77903
78924
|
/**
|
|
77904
78925
|
* SearchAttributeConfigurationV2024Api - object-oriented interface
|
|
@@ -77933,7 +78954,7 @@ export declare class SearchAttributeConfigurationV2024Api extends BaseAPI {
|
|
|
77933
78954
|
* @throws {RequiredError}
|
|
77934
78955
|
* @memberof SearchAttributeConfigurationV2024Api
|
|
77935
78956
|
*/
|
|
77936
|
-
getSearchAttributeConfig(requestParameters
|
|
78957
|
+
getSearchAttributeConfig(requestParameters?: SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchAttributeConfigV2024[], any>>;
|
|
77937
78958
|
/**
|
|
77938
78959
|
* Get an extended attribute configuration by name.
|
|
77939
78960
|
* @summary Get extended search attribute
|
|
@@ -79230,12 +80251,12 @@ export declare const SourcesV2024ApiAxiosParamCreator: (configuration?: Configur
|
|
|
79230
80251
|
* Replaces the attribute synchronization configuration for the source specified by the given ID with the configuration provided in the request body. Only the \"enabled\" field of the values in the \"attributes\" array is mutable. Attempting to change other attributes or add new values to the \"attributes\" array will result in an error.
|
|
79231
80252
|
* @summary Update attribute sync config
|
|
79232
80253
|
* @param {string} id The source id
|
|
79233
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
79234
80254
|
* @param {AttrSyncSourceConfigV2024} attrSyncSourceConfigV2024
|
|
80255
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
79235
80256
|
* @param {*} [axiosOptions] Override http request option.
|
|
79236
80257
|
* @throws {RequiredError}
|
|
79237
80258
|
*/
|
|
79238
|
-
putSourceAttrSyncConfig: (id: string,
|
|
80259
|
+
putSourceAttrSyncConfig: (id: string, attrSyncSourceConfigV2024: AttrSyncSourceConfigV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79239
80260
|
/**
|
|
79240
80261
|
* This API will completely replace an existing Schema with the submitted payload. Some fields of the Schema cannot be updated. These fields are listed below. * id * name * created * modified Any attempt to modify these fields will result in an error response with a status code of 400. > `id` must remain in the request body, but it cannot be changed. If `id` is omitted from the request body, the result will be a 400 error.
|
|
79241
80262
|
* @summary Update source schema (full)
|
|
@@ -79320,12 +80341,12 @@ export declare const SourcesV2024ApiAxiosParamCreator: (configuration?: Configur
|
|
|
79320
80341
|
/**
|
|
79321
80342
|
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
79322
80343
|
* @summary Update source entitlement request configuration
|
|
79323
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
79324
80344
|
* @param {SourceEntitlementRequestConfigV2024} sourceEntitlementRequestConfigV2024
|
|
80345
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
79325
80346
|
* @param {*} [axiosOptions] Override http request option.
|
|
79326
80347
|
* @throws {RequiredError}
|
|
79327
80348
|
*/
|
|
79328
|
-
updateSourceEntitlementRequestConfig: (
|
|
80349
|
+
updateSourceEntitlementRequestConfig: (sourceEntitlementRequestConfigV2024: SourceEntitlementRequestConfigV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79329
80350
|
/**
|
|
79330
80351
|
* Use this API to selectively update an existing Schedule using a JSONPatch payload. The following schedule fields are immutable and cannot be updated: - type
|
|
79331
80352
|
* @summary Update source schedule (partial)
|
|
@@ -79694,12 +80715,12 @@ export declare const SourcesV2024ApiFp: (configuration?: Configuration) => {
|
|
|
79694
80715
|
* Replaces the attribute synchronization configuration for the source specified by the given ID with the configuration provided in the request body. Only the \"enabled\" field of the values in the \"attributes\" array is mutable. Attempting to change other attributes or add new values to the \"attributes\" array will result in an error.
|
|
79695
80716
|
* @summary Update attribute sync config
|
|
79696
80717
|
* @param {string} id The source id
|
|
79697
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
79698
80718
|
* @param {AttrSyncSourceConfigV2024} attrSyncSourceConfigV2024
|
|
80719
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
79699
80720
|
* @param {*} [axiosOptions] Override http request option.
|
|
79700
80721
|
* @throws {RequiredError}
|
|
79701
80722
|
*/
|
|
79702
|
-
putSourceAttrSyncConfig(id: string,
|
|
80723
|
+
putSourceAttrSyncConfig(id: string, attrSyncSourceConfigV2024: AttrSyncSourceConfigV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttrSyncSourceConfigV2024>>;
|
|
79703
80724
|
/**
|
|
79704
80725
|
* This API will completely replace an existing Schema with the submitted payload. Some fields of the Schema cannot be updated. These fields are listed below. * id * name * created * modified Any attempt to modify these fields will result in an error response with a status code of 400. > `id` must remain in the request body, but it cannot be changed. If `id` is omitted from the request body, the result will be a 400 error.
|
|
79705
80726
|
* @summary Update source schema (full)
|
|
@@ -79784,12 +80805,12 @@ export declare const SourcesV2024ApiFp: (configuration?: Configuration) => {
|
|
|
79784
80805
|
/**
|
|
79785
80806
|
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
79786
80807
|
* @summary Update source entitlement request configuration
|
|
79787
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
79788
80808
|
* @param {SourceEntitlementRequestConfigV2024} sourceEntitlementRequestConfigV2024
|
|
80809
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
79789
80810
|
* @param {*} [axiosOptions] Override http request option.
|
|
79790
80811
|
* @throws {RequiredError}
|
|
79791
80812
|
*/
|
|
79792
|
-
updateSourceEntitlementRequestConfig(
|
|
80813
|
+
updateSourceEntitlementRequestConfig(sourceEntitlementRequestConfigV2024: SourceEntitlementRequestConfigV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceEntitlementRequestConfigV2024>>;
|
|
79793
80814
|
/**
|
|
79794
80815
|
* Use this API to selectively update an existing Schedule using a JSONPatch payload. The following schedule fields are immutable and cannot be updated: - type
|
|
79795
80816
|
* @summary Update source schedule (partial)
|
|
@@ -80935,18 +81956,18 @@ export interface SourcesV2024ApiPutSourceAttrSyncConfigRequest {
|
|
|
80935
81956
|
* @memberof SourcesV2024ApiPutSourceAttrSyncConfig
|
|
80936
81957
|
*/
|
|
80937
81958
|
readonly id: string;
|
|
80938
|
-
/**
|
|
80939
|
-
* Use this header to enable this experimental API.
|
|
80940
|
-
* @type {string}
|
|
80941
|
-
* @memberof SourcesV2024ApiPutSourceAttrSyncConfig
|
|
80942
|
-
*/
|
|
80943
|
-
readonly xSailPointExperimental: string;
|
|
80944
81959
|
/**
|
|
80945
81960
|
*
|
|
80946
81961
|
* @type {AttrSyncSourceConfigV2024}
|
|
80947
81962
|
* @memberof SourcesV2024ApiPutSourceAttrSyncConfig
|
|
80948
81963
|
*/
|
|
80949
81964
|
readonly attrSyncSourceConfigV2024: AttrSyncSourceConfigV2024;
|
|
81965
|
+
/**
|
|
81966
|
+
* Use this header to enable this experimental API.
|
|
81967
|
+
* @type {string}
|
|
81968
|
+
* @memberof SourcesV2024ApiPutSourceAttrSyncConfig
|
|
81969
|
+
*/
|
|
81970
|
+
readonly xSailPointExperimental?: string;
|
|
80950
81971
|
}
|
|
80951
81972
|
/**
|
|
80952
81973
|
* Request parameters for putSourceSchema operation in SourcesV2024Api.
|
|
@@ -81125,18 +82146,18 @@ export interface SourcesV2024ApiUpdateSourceRequest {
|
|
|
81125
82146
|
* @interface SourcesV2024ApiUpdateSourceEntitlementRequestConfigRequest
|
|
81126
82147
|
*/
|
|
81127
82148
|
export interface SourcesV2024ApiUpdateSourceEntitlementRequestConfigRequest {
|
|
81128
|
-
/**
|
|
81129
|
-
* Use this header to enable this experimental API.
|
|
81130
|
-
* @type {string}
|
|
81131
|
-
* @memberof SourcesV2024ApiUpdateSourceEntitlementRequestConfig
|
|
81132
|
-
*/
|
|
81133
|
-
readonly xSailPointExperimental: string;
|
|
81134
82149
|
/**
|
|
81135
82150
|
*
|
|
81136
82151
|
* @type {SourceEntitlementRequestConfigV2024}
|
|
81137
82152
|
* @memberof SourcesV2024ApiUpdateSourceEntitlementRequestConfig
|
|
81138
82153
|
*/
|
|
81139
82154
|
readonly sourceEntitlementRequestConfigV2024: SourceEntitlementRequestConfigV2024;
|
|
82155
|
+
/**
|
|
82156
|
+
* Use this header to enable this experimental API.
|
|
82157
|
+
* @type {string}
|
|
82158
|
+
* @memberof SourcesV2024ApiUpdateSourceEntitlementRequestConfig
|
|
82159
|
+
*/
|
|
82160
|
+
readonly xSailPointExperimental?: string;
|
|
81140
82161
|
}
|
|
81141
82162
|
/**
|
|
81142
82163
|
* Request parameters for updateSourceSchedule operation in SourcesV2024Api.
|
|
@@ -82694,6 +83715,248 @@ export declare const PutTaggedObjectTypeV2024: {
|
|
|
82694
83715
|
readonly Source: "SOURCE";
|
|
82695
83716
|
};
|
|
82696
83717
|
export type PutTaggedObjectTypeV2024 = typeof PutTaggedObjectTypeV2024[keyof typeof PutTaggedObjectTypeV2024];
|
|
83718
|
+
/**
|
|
83719
|
+
* TagsV2024Api - axios parameter creator
|
|
83720
|
+
* @export
|
|
83721
|
+
*/
|
|
83722
|
+
export declare const TagsV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
83723
|
+
/**
|
|
83724
|
+
* This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83725
|
+
* @summary Create tag
|
|
83726
|
+
* @param {TagV2024} tagV2024
|
|
83727
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83728
|
+
* @throws {RequiredError}
|
|
83729
|
+
*/
|
|
83730
|
+
createTag: (tagV2024: TagV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83731
|
+
/**
|
|
83732
|
+
* This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83733
|
+
* @summary Delete tag
|
|
83734
|
+
* @param {string} id The ID of the object reference to delete.
|
|
83735
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83736
|
+
* @throws {RequiredError}
|
|
83737
|
+
*/
|
|
83738
|
+
deleteTagById: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83739
|
+
/**
|
|
83740
|
+
* Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83741
|
+
* @summary Get tag by id
|
|
83742
|
+
* @param {string} id The ID of the object reference to retrieve.
|
|
83743
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83744
|
+
* @throws {RequiredError}
|
|
83745
|
+
*/
|
|
83746
|
+
getTagById: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83747
|
+
/**
|
|
83748
|
+
* This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83749
|
+
* @summary List tags
|
|
83750
|
+
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83751
|
+
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83752
|
+
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83753
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw*
|
|
83754
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, created, modified**
|
|
83755
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83756
|
+
* @throws {RequiredError}
|
|
83757
|
+
*/
|
|
83758
|
+
listTags: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83759
|
+
};
|
|
83760
|
+
/**
|
|
83761
|
+
* TagsV2024Api - functional programming interface
|
|
83762
|
+
* @export
|
|
83763
|
+
*/
|
|
83764
|
+
export declare const TagsV2024ApiFp: (configuration?: Configuration) => {
|
|
83765
|
+
/**
|
|
83766
|
+
* This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83767
|
+
* @summary Create tag
|
|
83768
|
+
* @param {TagV2024} tagV2024
|
|
83769
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83770
|
+
* @throws {RequiredError}
|
|
83771
|
+
*/
|
|
83772
|
+
createTag(tagV2024: TagV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagV2024>>;
|
|
83773
|
+
/**
|
|
83774
|
+
* This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83775
|
+
* @summary Delete tag
|
|
83776
|
+
* @param {string} id The ID of the object reference to delete.
|
|
83777
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83778
|
+
* @throws {RequiredError}
|
|
83779
|
+
*/
|
|
83780
|
+
deleteTagById(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
83781
|
+
/**
|
|
83782
|
+
* Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83783
|
+
* @summary Get tag by id
|
|
83784
|
+
* @param {string} id The ID of the object reference to retrieve.
|
|
83785
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83786
|
+
* @throws {RequiredError}
|
|
83787
|
+
*/
|
|
83788
|
+
getTagById(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagV2024>>;
|
|
83789
|
+
/**
|
|
83790
|
+
* This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83791
|
+
* @summary List tags
|
|
83792
|
+
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83793
|
+
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83794
|
+
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83795
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw*
|
|
83796
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, created, modified**
|
|
83797
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83798
|
+
* @throws {RequiredError}
|
|
83799
|
+
*/
|
|
83800
|
+
listTags(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TagV2024>>>;
|
|
83801
|
+
};
|
|
83802
|
+
/**
|
|
83803
|
+
* TagsV2024Api - factory interface
|
|
83804
|
+
* @export
|
|
83805
|
+
*/
|
|
83806
|
+
export declare const TagsV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
83807
|
+
/**
|
|
83808
|
+
* This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83809
|
+
* @summary Create tag
|
|
83810
|
+
* @param {TagsV2024ApiCreateTagRequest} requestParameters Request parameters.
|
|
83811
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83812
|
+
* @throws {RequiredError}
|
|
83813
|
+
*/
|
|
83814
|
+
createTag(requestParameters: TagsV2024ApiCreateTagRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TagV2024>;
|
|
83815
|
+
/**
|
|
83816
|
+
* This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83817
|
+
* @summary Delete tag
|
|
83818
|
+
* @param {TagsV2024ApiDeleteTagByIdRequest} requestParameters Request parameters.
|
|
83819
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83820
|
+
* @throws {RequiredError}
|
|
83821
|
+
*/
|
|
83822
|
+
deleteTagById(requestParameters: TagsV2024ApiDeleteTagByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
83823
|
+
/**
|
|
83824
|
+
* Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83825
|
+
* @summary Get tag by id
|
|
83826
|
+
* @param {TagsV2024ApiGetTagByIdRequest} requestParameters Request parameters.
|
|
83827
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83828
|
+
* @throws {RequiredError}
|
|
83829
|
+
*/
|
|
83830
|
+
getTagById(requestParameters: TagsV2024ApiGetTagByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TagV2024>;
|
|
83831
|
+
/**
|
|
83832
|
+
* This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83833
|
+
* @summary List tags
|
|
83834
|
+
* @param {TagsV2024ApiListTagsRequest} requestParameters Request parameters.
|
|
83835
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83836
|
+
* @throws {RequiredError}
|
|
83837
|
+
*/
|
|
83838
|
+
listTags(requestParameters?: TagsV2024ApiListTagsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TagV2024>>;
|
|
83839
|
+
};
|
|
83840
|
+
/**
|
|
83841
|
+
* Request parameters for createTag operation in TagsV2024Api.
|
|
83842
|
+
* @export
|
|
83843
|
+
* @interface TagsV2024ApiCreateTagRequest
|
|
83844
|
+
*/
|
|
83845
|
+
export interface TagsV2024ApiCreateTagRequest {
|
|
83846
|
+
/**
|
|
83847
|
+
*
|
|
83848
|
+
* @type {TagV2024}
|
|
83849
|
+
* @memberof TagsV2024ApiCreateTag
|
|
83850
|
+
*/
|
|
83851
|
+
readonly tagV2024: TagV2024;
|
|
83852
|
+
}
|
|
83853
|
+
/**
|
|
83854
|
+
* Request parameters for deleteTagById operation in TagsV2024Api.
|
|
83855
|
+
* @export
|
|
83856
|
+
* @interface TagsV2024ApiDeleteTagByIdRequest
|
|
83857
|
+
*/
|
|
83858
|
+
export interface TagsV2024ApiDeleteTagByIdRequest {
|
|
83859
|
+
/**
|
|
83860
|
+
* The ID of the object reference to delete.
|
|
83861
|
+
* @type {string}
|
|
83862
|
+
* @memberof TagsV2024ApiDeleteTagById
|
|
83863
|
+
*/
|
|
83864
|
+
readonly id: string;
|
|
83865
|
+
}
|
|
83866
|
+
/**
|
|
83867
|
+
* Request parameters for getTagById operation in TagsV2024Api.
|
|
83868
|
+
* @export
|
|
83869
|
+
* @interface TagsV2024ApiGetTagByIdRequest
|
|
83870
|
+
*/
|
|
83871
|
+
export interface TagsV2024ApiGetTagByIdRequest {
|
|
83872
|
+
/**
|
|
83873
|
+
* The ID of the object reference to retrieve.
|
|
83874
|
+
* @type {string}
|
|
83875
|
+
* @memberof TagsV2024ApiGetTagById
|
|
83876
|
+
*/
|
|
83877
|
+
readonly id: string;
|
|
83878
|
+
}
|
|
83879
|
+
/**
|
|
83880
|
+
* Request parameters for listTags operation in TagsV2024Api.
|
|
83881
|
+
* @export
|
|
83882
|
+
* @interface TagsV2024ApiListTagsRequest
|
|
83883
|
+
*/
|
|
83884
|
+
export interface TagsV2024ApiListTagsRequest {
|
|
83885
|
+
/**
|
|
83886
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83887
|
+
* @type {number}
|
|
83888
|
+
* @memberof TagsV2024ApiListTags
|
|
83889
|
+
*/
|
|
83890
|
+
readonly limit?: number;
|
|
83891
|
+
/**
|
|
83892
|
+
* Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83893
|
+
* @type {number}
|
|
83894
|
+
* @memberof TagsV2024ApiListTags
|
|
83895
|
+
*/
|
|
83896
|
+
readonly offset?: number;
|
|
83897
|
+
/**
|
|
83898
|
+
* If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83899
|
+
* @type {boolean}
|
|
83900
|
+
* @memberof TagsV2024ApiListTags
|
|
83901
|
+
*/
|
|
83902
|
+
readonly count?: boolean;
|
|
83903
|
+
/**
|
|
83904
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw*
|
|
83905
|
+
* @type {string}
|
|
83906
|
+
* @memberof TagsV2024ApiListTags
|
|
83907
|
+
*/
|
|
83908
|
+
readonly filters?: string;
|
|
83909
|
+
/**
|
|
83910
|
+
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, created, modified**
|
|
83911
|
+
* @type {string}
|
|
83912
|
+
* @memberof TagsV2024ApiListTags
|
|
83913
|
+
*/
|
|
83914
|
+
readonly sorters?: string;
|
|
83915
|
+
}
|
|
83916
|
+
/**
|
|
83917
|
+
* TagsV2024Api - object-oriented interface
|
|
83918
|
+
* @export
|
|
83919
|
+
* @class TagsV2024Api
|
|
83920
|
+
* @extends {BaseAPI}
|
|
83921
|
+
*/
|
|
83922
|
+
export declare class TagsV2024Api extends BaseAPI {
|
|
83923
|
+
/**
|
|
83924
|
+
* This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83925
|
+
* @summary Create tag
|
|
83926
|
+
* @param {TagsV2024ApiCreateTagRequest} requestParameters Request parameters.
|
|
83927
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83928
|
+
* @throws {RequiredError}
|
|
83929
|
+
* @memberof TagsV2024Api
|
|
83930
|
+
*/
|
|
83931
|
+
createTag(requestParameters: TagsV2024ApiCreateTagRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TagV2024, any>>;
|
|
83932
|
+
/**
|
|
83933
|
+
* This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83934
|
+
* @summary Delete tag
|
|
83935
|
+
* @param {TagsV2024ApiDeleteTagByIdRequest} requestParameters Request parameters.
|
|
83936
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83937
|
+
* @throws {RequiredError}
|
|
83938
|
+
* @memberof TagsV2024Api
|
|
83939
|
+
*/
|
|
83940
|
+
deleteTagById(requestParameters: TagsV2024ApiDeleteTagByIdRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
83941
|
+
/**
|
|
83942
|
+
* Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83943
|
+
* @summary Get tag by id
|
|
83944
|
+
* @param {TagsV2024ApiGetTagByIdRequest} requestParameters Request parameters.
|
|
83945
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83946
|
+
* @throws {RequiredError}
|
|
83947
|
+
* @memberof TagsV2024Api
|
|
83948
|
+
*/
|
|
83949
|
+
getTagById(requestParameters: TagsV2024ApiGetTagByIdRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TagV2024, any>>;
|
|
83950
|
+
/**
|
|
83951
|
+
* This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83952
|
+
* @summary List tags
|
|
83953
|
+
* @param {TagsV2024ApiListTagsRequest} requestParameters Request parameters.
|
|
83954
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83955
|
+
* @throws {RequiredError}
|
|
83956
|
+
* @memberof TagsV2024Api
|
|
83957
|
+
*/
|
|
83958
|
+
listTags(requestParameters?: TagsV2024ApiListTagsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TagV2024[], any>>;
|
|
83959
|
+
}
|
|
82697
83960
|
/**
|
|
82698
83961
|
* TaskManagementV2024Api - axios parameter creator
|
|
82699
83962
|
* @export
|
|
@@ -83093,12 +84356,12 @@ export declare const TenantContextV2024ApiAxiosParamCreator: (configuration?: Co
|
|
|
83093
84356
|
/**
|
|
83094
84357
|
* Allows the user to make incremental updates to tenant context records using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. This endpoint is specifically designed to modify the `/Key/_*` field, supporting operations such as `add`, `remove`, or `replace` to manage key-value pairs. Note that each tenant is limited to a maximum of 100 key-value pairs.
|
|
83095
84358
|
* @summary Update tenant context
|
|
83096
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
83097
84359
|
* @param {JsonPatchOperationV2024} jsonPatchOperationV2024
|
|
84360
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83098
84361
|
* @param {*} [axiosOptions] Override http request option.
|
|
83099
84362
|
* @throws {RequiredError}
|
|
83100
84363
|
*/
|
|
83101
|
-
patchTenantContext: (
|
|
84364
|
+
patchTenantContext: (jsonPatchOperationV2024: JsonPatchOperationV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83102
84365
|
};
|
|
83103
84366
|
/**
|
|
83104
84367
|
* TenantContextV2024Api - functional programming interface
|
|
@@ -83116,12 +84379,12 @@ export declare const TenantContextV2024ApiFp: (configuration?: Configuration) =>
|
|
|
83116
84379
|
/**
|
|
83117
84380
|
* Allows the user to make incremental updates to tenant context records using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. This endpoint is specifically designed to modify the `/Key/_*` field, supporting operations such as `add`, `remove`, or `replace` to manage key-value pairs. Note that each tenant is limited to a maximum of 100 key-value pairs.
|
|
83118
84381
|
* @summary Update tenant context
|
|
83119
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
83120
84382
|
* @param {JsonPatchOperationV2024} jsonPatchOperationV2024
|
|
84383
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83121
84384
|
* @param {*} [axiosOptions] Override http request option.
|
|
83122
84385
|
* @throws {RequiredError}
|
|
83123
84386
|
*/
|
|
83124
|
-
patchTenantContext(
|
|
84387
|
+
patchTenantContext(jsonPatchOperationV2024: JsonPatchOperationV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
83125
84388
|
};
|
|
83126
84389
|
/**
|
|
83127
84390
|
* TenantContextV2024Api - factory interface
|
|
@@ -83164,18 +84427,18 @@ export interface TenantContextV2024ApiGetTenantContextRequest {
|
|
|
83164
84427
|
* @interface TenantContextV2024ApiPatchTenantContextRequest
|
|
83165
84428
|
*/
|
|
83166
84429
|
export interface TenantContextV2024ApiPatchTenantContextRequest {
|
|
83167
|
-
/**
|
|
83168
|
-
* Use this header to enable this experimental API.
|
|
83169
|
-
* @type {string}
|
|
83170
|
-
* @memberof TenantContextV2024ApiPatchTenantContext
|
|
83171
|
-
*/
|
|
83172
|
-
readonly xSailPointExperimental: string;
|
|
83173
84430
|
/**
|
|
83174
84431
|
*
|
|
83175
84432
|
* @type {JsonPatchOperationV2024}
|
|
83176
84433
|
* @memberof TenantContextV2024ApiPatchTenantContext
|
|
83177
84434
|
*/
|
|
83178
84435
|
readonly jsonPatchOperationV2024: JsonPatchOperationV2024;
|
|
84436
|
+
/**
|
|
84437
|
+
* Use this header to enable this experimental API.
|
|
84438
|
+
* @type {string}
|
|
84439
|
+
* @memberof TenantContextV2024ApiPatchTenantContext
|
|
84440
|
+
*/
|
|
84441
|
+
readonly xSailPointExperimental?: string;
|
|
83179
84442
|
}
|
|
83180
84443
|
/**
|
|
83181
84444
|
* TenantContextV2024Api - object-oriented interface
|
|
@@ -83527,24 +84790,24 @@ export declare const TriggersV2024ApiAxiosParamCreator: (configuration?: Configu
|
|
|
83527
84790
|
* Deletes an existing subscription to a trigger.
|
|
83528
84791
|
* @summary Delete a subscription
|
|
83529
84792
|
* @param {string} id Subscription ID
|
|
83530
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
84793
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83531
84794
|
* @param {*} [axiosOptions] Override http request option.
|
|
83532
84795
|
* @throws {RequiredError}
|
|
83533
84796
|
*/
|
|
83534
|
-
deleteSubscription: (id: string, xSailPointExperimental
|
|
84797
|
+
deleteSubscription: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83535
84798
|
/**
|
|
83536
84799
|
* Gets a list of all trigger subscriptions.
|
|
83537
84800
|
* @summary List subscriptions
|
|
83538
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
83539
84801
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83540
84802
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83541
84803
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83542
84804
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* **triggerId**: *eq* **type**: *eq, le*
|
|
83543
84805
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **triggerId, triggerName**
|
|
84806
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83544
84807
|
* @param {*} [axiosOptions] Override http request option.
|
|
83545
84808
|
* @throws {RequiredError}
|
|
83546
84809
|
*/
|
|
83547
|
-
listSubscriptions: (
|
|
84810
|
+
listSubscriptions: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83548
84811
|
/**
|
|
83549
84812
|
* Gets a list of latest invocation statuses. Statuses of successful invocations are available for up to 24 hours. Statuses of failed invocations are available for up to 48 hours. This endpoint may only fetch up to 2000 invocations, and should not be treated as a representation of the full history of invocations.
|
|
83550
84813
|
* @summary List latest invocation statuses
|
|
@@ -83575,12 +84838,12 @@ export declare const TriggersV2024ApiAxiosParamCreator: (configuration?: Configu
|
|
|
83575
84838
|
* This API updates a trigger subscription in IdentityNow, using a set of instructions to modify a subscription partially. The following fields are patchable: **name**, **description**, **enabled**, **type**, **filter**, **responseDeadline**, **httpConfig**, **eventBridgeConfig**, **workflowConfig**
|
|
83576
84839
|
* @summary Patch a subscription
|
|
83577
84840
|
* @param {string} id ID of the Subscription to patch
|
|
83578
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
83579
84841
|
* @param {Array<SubscriptionPatchRequestInnerV2024>} subscriptionPatchRequestInnerV2024
|
|
84842
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83580
84843
|
* @param {*} [axiosOptions] Override http request option.
|
|
83581
84844
|
* @throws {RequiredError}
|
|
83582
84845
|
*/
|
|
83583
|
-
patchSubscription: (id: string,
|
|
84846
|
+
patchSubscription: (id: string, subscriptionPatchRequestInnerV2024: Array<SubscriptionPatchRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83584
84847
|
/**
|
|
83585
84848
|
* Initiate a test event for all subscribers of the specified event trigger. If there are no subscribers to the specified trigger in the tenant, then no test event will be sent.
|
|
83586
84849
|
* @summary Start a test invocation
|
|
@@ -83638,24 +84901,24 @@ export declare const TriggersV2024ApiFp: (configuration?: Configuration) => {
|
|
|
83638
84901
|
* Deletes an existing subscription to a trigger.
|
|
83639
84902
|
* @summary Delete a subscription
|
|
83640
84903
|
* @param {string} id Subscription ID
|
|
83641
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
84904
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83642
84905
|
* @param {*} [axiosOptions] Override http request option.
|
|
83643
84906
|
* @throws {RequiredError}
|
|
83644
84907
|
*/
|
|
83645
|
-
deleteSubscription(id: string, xSailPointExperimental
|
|
84908
|
+
deleteSubscription(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
83646
84909
|
/**
|
|
83647
84910
|
* Gets a list of all trigger subscriptions.
|
|
83648
84911
|
* @summary List subscriptions
|
|
83649
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
83650
84912
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83651
84913
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83652
84914
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83653
84915
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* **triggerId**: *eq* **type**: *eq, le*
|
|
83654
84916
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **triggerId, triggerName**
|
|
84917
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83655
84918
|
* @param {*} [axiosOptions] Override http request option.
|
|
83656
84919
|
* @throws {RequiredError}
|
|
83657
84920
|
*/
|
|
83658
|
-
listSubscriptions(
|
|
84921
|
+
listSubscriptions(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SubscriptionV2024>>>;
|
|
83659
84922
|
/**
|
|
83660
84923
|
* Gets a list of latest invocation statuses. Statuses of successful invocations are available for up to 24 hours. Statuses of failed invocations are available for up to 48 hours. This endpoint may only fetch up to 2000 invocations, and should not be treated as a representation of the full history of invocations.
|
|
83661
84924
|
* @summary List latest invocation statuses
|
|
@@ -83686,12 +84949,12 @@ export declare const TriggersV2024ApiFp: (configuration?: Configuration) => {
|
|
|
83686
84949
|
* This API updates a trigger subscription in IdentityNow, using a set of instructions to modify a subscription partially. The following fields are patchable: **name**, **description**, **enabled**, **type**, **filter**, **responseDeadline**, **httpConfig**, **eventBridgeConfig**, **workflowConfig**
|
|
83687
84950
|
* @summary Patch a subscription
|
|
83688
84951
|
* @param {string} id ID of the Subscription to patch
|
|
83689
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
83690
84952
|
* @param {Array<SubscriptionPatchRequestInnerV2024>} subscriptionPatchRequestInnerV2024
|
|
84953
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83691
84954
|
* @param {*} [axiosOptions] Override http request option.
|
|
83692
84955
|
* @throws {RequiredError}
|
|
83693
84956
|
*/
|
|
83694
|
-
patchSubscription(id: string,
|
|
84957
|
+
patchSubscription(id: string, subscriptionPatchRequestInnerV2024: Array<SubscriptionPatchRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SubscriptionV2024>>;
|
|
83695
84958
|
/**
|
|
83696
84959
|
* Initiate a test event for all subscribers of the specified event trigger. If there are no subscribers to the specified trigger in the tenant, then no test event will be sent.
|
|
83697
84960
|
* @summary Start a test invocation
|
|
@@ -83757,7 +85020,7 @@ export declare const TriggersV2024ApiFactory: (configuration?: Configuration, ba
|
|
|
83757
85020
|
* @param {*} [axiosOptions] Override http request option.
|
|
83758
85021
|
* @throws {RequiredError}
|
|
83759
85022
|
*/
|
|
83760
|
-
listSubscriptions(requestParameters
|
|
85023
|
+
listSubscriptions(requestParameters?: TriggersV2024ApiListSubscriptionsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SubscriptionV2024>>;
|
|
83761
85024
|
/**
|
|
83762
85025
|
* Gets a list of latest invocation statuses. Statuses of successful invocations are available for up to 24 hours. Statuses of failed invocations are available for up to 48 hours. This endpoint may only fetch up to 2000 invocations, and should not be treated as a representation of the full history of invocations.
|
|
83763
85026
|
* @summary List latest invocation statuses
|
|
@@ -83868,7 +85131,7 @@ export interface TriggersV2024ApiDeleteSubscriptionRequest {
|
|
|
83868
85131
|
* @type {string}
|
|
83869
85132
|
* @memberof TriggersV2024ApiDeleteSubscription
|
|
83870
85133
|
*/
|
|
83871
|
-
readonly xSailPointExperimental
|
|
85134
|
+
readonly xSailPointExperimental?: string;
|
|
83872
85135
|
}
|
|
83873
85136
|
/**
|
|
83874
85137
|
* Request parameters for listSubscriptions operation in TriggersV2024Api.
|
|
@@ -83876,12 +85139,6 @@ export interface TriggersV2024ApiDeleteSubscriptionRequest {
|
|
|
83876
85139
|
* @interface TriggersV2024ApiListSubscriptionsRequest
|
|
83877
85140
|
*/
|
|
83878
85141
|
export interface TriggersV2024ApiListSubscriptionsRequest {
|
|
83879
|
-
/**
|
|
83880
|
-
* Use this header to enable this experimental API.
|
|
83881
|
-
* @type {string}
|
|
83882
|
-
* @memberof TriggersV2024ApiListSubscriptions
|
|
83883
|
-
*/
|
|
83884
|
-
readonly xSailPointExperimental: string;
|
|
83885
85142
|
/**
|
|
83886
85143
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83887
85144
|
* @type {number}
|
|
@@ -83912,6 +85169,12 @@ export interface TriggersV2024ApiListSubscriptionsRequest {
|
|
|
83912
85169
|
* @memberof TriggersV2024ApiListSubscriptions
|
|
83913
85170
|
*/
|
|
83914
85171
|
readonly sorters?: string;
|
|
85172
|
+
/**
|
|
85173
|
+
* Use this header to enable this experimental API.
|
|
85174
|
+
* @type {string}
|
|
85175
|
+
* @memberof TriggersV2024ApiListSubscriptions
|
|
85176
|
+
*/
|
|
85177
|
+
readonly xSailPointExperimental?: string;
|
|
83915
85178
|
}
|
|
83916
85179
|
/**
|
|
83917
85180
|
* Request parameters for listTriggerInvocationStatus operation in TriggersV2024Api.
|
|
@@ -84011,18 +85274,18 @@ export interface TriggersV2024ApiPatchSubscriptionRequest {
|
|
|
84011
85274
|
* @memberof TriggersV2024ApiPatchSubscription
|
|
84012
85275
|
*/
|
|
84013
85276
|
readonly id: string;
|
|
84014
|
-
/**
|
|
84015
|
-
* Use this header to enable this experimental API.
|
|
84016
|
-
* @type {string}
|
|
84017
|
-
* @memberof TriggersV2024ApiPatchSubscription
|
|
84018
|
-
*/
|
|
84019
|
-
readonly xSailPointExperimental: string;
|
|
84020
85277
|
/**
|
|
84021
85278
|
*
|
|
84022
85279
|
* @type {Array<SubscriptionPatchRequestInnerV2024>}
|
|
84023
85280
|
* @memberof TriggersV2024ApiPatchSubscription
|
|
84024
85281
|
*/
|
|
84025
85282
|
readonly subscriptionPatchRequestInnerV2024: Array<SubscriptionPatchRequestInnerV2024>;
|
|
85283
|
+
/**
|
|
85284
|
+
* Use this header to enable this experimental API.
|
|
85285
|
+
* @type {string}
|
|
85286
|
+
* @memberof TriggersV2024ApiPatchSubscription
|
|
85287
|
+
*/
|
|
85288
|
+
readonly xSailPointExperimental?: string;
|
|
84026
85289
|
}
|
|
84027
85290
|
/**
|
|
84028
85291
|
* Request parameters for startTestTriggerInvocation operation in TriggersV2024Api.
|
|
@@ -84129,7 +85392,7 @@ export declare class TriggersV2024Api extends BaseAPI {
|
|
|
84129
85392
|
* @throws {RequiredError}
|
|
84130
85393
|
* @memberof TriggersV2024Api
|
|
84131
85394
|
*/
|
|
84132
|
-
listSubscriptions(requestParameters
|
|
85395
|
+
listSubscriptions(requestParameters?: TriggersV2024ApiListSubscriptionsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SubscriptionV2024[], any>>;
|
|
84133
85396
|
/**
|
|
84134
85397
|
* Gets a list of latest invocation statuses. Statuses of successful invocations are available for up to 24 hours. Statuses of failed invocations are available for up to 48 hours. This endpoint may only fetch up to 2000 invocations, and should not be treated as a representation of the full history of invocations.
|
|
84135
85398
|
* @summary List latest invocation statuses
|
|
@@ -84201,12 +85464,12 @@ export declare const UIMetadataV2024ApiAxiosParamCreator: (configuration?: Confi
|
|
|
84201
85464
|
/**
|
|
84202
85465
|
* This API endpoint updates UI metadata for your tenant. These changes may require up to 5 minutes to take effect on the UI.
|
|
84203
85466
|
* @summary Update tenant ui metadata
|
|
84204
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
84205
85467
|
* @param {TenantUiMetadataItemUpdateRequestV2024} tenantUiMetadataItemUpdateRequestV2024
|
|
85468
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
84206
85469
|
* @param {*} [axiosOptions] Override http request option.
|
|
84207
85470
|
* @throws {RequiredError}
|
|
84208
85471
|
*/
|
|
84209
|
-
setTenantUiMetadata: (
|
|
85472
|
+
setTenantUiMetadata: (tenantUiMetadataItemUpdateRequestV2024: TenantUiMetadataItemUpdateRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
84210
85473
|
};
|
|
84211
85474
|
/**
|
|
84212
85475
|
* UIMetadataV2024Api - functional programming interface
|
|
@@ -84224,12 +85487,12 @@ export declare const UIMetadataV2024ApiFp: (configuration?: Configuration) => {
|
|
|
84224
85487
|
/**
|
|
84225
85488
|
* This API endpoint updates UI metadata for your tenant. These changes may require up to 5 minutes to take effect on the UI.
|
|
84226
85489
|
* @summary Update tenant ui metadata
|
|
84227
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
84228
85490
|
* @param {TenantUiMetadataItemUpdateRequestV2024} tenantUiMetadataItemUpdateRequestV2024
|
|
85491
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
84229
85492
|
* @param {*} [axiosOptions] Override http request option.
|
|
84230
85493
|
* @throws {RequiredError}
|
|
84231
85494
|
*/
|
|
84232
|
-
setTenantUiMetadata(
|
|
85495
|
+
setTenantUiMetadata(tenantUiMetadataItemUpdateRequestV2024: TenantUiMetadataItemUpdateRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenantUiMetadataItemResponseV2024>>;
|
|
84233
85496
|
};
|
|
84234
85497
|
/**
|
|
84235
85498
|
* UIMetadataV2024Api - factory interface
|
|
@@ -84272,18 +85535,18 @@ export interface UIMetadataV2024ApiGetTenantUiMetadataRequest {
|
|
|
84272
85535
|
* @interface UIMetadataV2024ApiSetTenantUiMetadataRequest
|
|
84273
85536
|
*/
|
|
84274
85537
|
export interface UIMetadataV2024ApiSetTenantUiMetadataRequest {
|
|
84275
|
-
/**
|
|
84276
|
-
* Use this header to enable this experimental API.
|
|
84277
|
-
* @type {string}
|
|
84278
|
-
* @memberof UIMetadataV2024ApiSetTenantUiMetadata
|
|
84279
|
-
*/
|
|
84280
|
-
readonly xSailPointExperimental: string;
|
|
84281
85538
|
/**
|
|
84282
85539
|
*
|
|
84283
85540
|
* @type {TenantUiMetadataItemUpdateRequestV2024}
|
|
84284
85541
|
* @memberof UIMetadataV2024ApiSetTenantUiMetadata
|
|
84285
85542
|
*/
|
|
84286
85543
|
readonly tenantUiMetadataItemUpdateRequestV2024: TenantUiMetadataItemUpdateRequestV2024;
|
|
85544
|
+
/**
|
|
85545
|
+
* Use this header to enable this experimental API.
|
|
85546
|
+
* @type {string}
|
|
85547
|
+
* @memberof UIMetadataV2024ApiSetTenantUiMetadata
|
|
85548
|
+
*/
|
|
85549
|
+
readonly xSailPointExperimental?: string;
|
|
84287
85550
|
}
|
|
84288
85551
|
/**
|
|
84289
85552
|
* UIMetadataV2024Api - object-oriented interface
|
|
@@ -85200,12 +86463,12 @@ export declare const WorkReassignmentV2024ApiAxiosParamCreator: (configuration?:
|
|
|
85200
86463
|
/**
|
|
85201
86464
|
* Creates a new Reassignment Configuration for the specified identity.
|
|
85202
86465
|
* @summary Create a reassignment configuration
|
|
85203
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
85204
86466
|
* @param {ConfigurationItemRequestV2024} configurationItemRequestV2024
|
|
86467
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85205
86468
|
* @param {*} [axiosOptions] Override http request option.
|
|
85206
86469
|
* @throws {RequiredError}
|
|
85207
86470
|
*/
|
|
85208
|
-
createReassignmentConfiguration: (
|
|
86471
|
+
createReassignmentConfiguration: (configurationItemRequestV2024: ConfigurationItemRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
85209
86472
|
/**
|
|
85210
86473
|
* Deletes a single reassignment configuration for the specified identity
|
|
85211
86474
|
* @summary Delete reassignment configuration
|
|
@@ -85264,21 +86527,21 @@ export declare const WorkReassignmentV2024ApiAxiosParamCreator: (configuration?:
|
|
|
85264
86527
|
* Replaces existing Reassignment configuration for an identity with the newly provided configuration.
|
|
85265
86528
|
* @summary Update reassignment configuration
|
|
85266
86529
|
* @param {string} identityId unique identity id
|
|
85267
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
85268
86530
|
* @param {ConfigurationItemRequestV2024} configurationItemRequestV2024
|
|
86531
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85269
86532
|
* @param {*} [axiosOptions] Override http request option.
|
|
85270
86533
|
* @throws {RequiredError}
|
|
85271
86534
|
*/
|
|
85272
|
-
putReassignmentConfig: (identityId: string,
|
|
86535
|
+
putReassignmentConfig: (identityId: string, configurationItemRequestV2024: ConfigurationItemRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
85273
86536
|
/**
|
|
85274
86537
|
* Replaces existing Tenant-wide Reassignment Configuration settings with the newly provided settings.
|
|
85275
86538
|
* @summary Update tenant-wide reassignment configuration settings
|
|
85276
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
85277
86539
|
* @param {TenantConfigurationRequestV2024} tenantConfigurationRequestV2024
|
|
86540
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85278
86541
|
* @param {*} [axiosOptions] Override http request option.
|
|
85279
86542
|
* @throws {RequiredError}
|
|
85280
86543
|
*/
|
|
85281
|
-
putTenantConfiguration: (
|
|
86544
|
+
putTenantConfiguration: (tenantConfigurationRequestV2024: TenantConfigurationRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
85282
86545
|
};
|
|
85283
86546
|
/**
|
|
85284
86547
|
* WorkReassignmentV2024Api - functional programming interface
|
|
@@ -85288,12 +86551,12 @@ export declare const WorkReassignmentV2024ApiFp: (configuration?: Configuration)
|
|
|
85288
86551
|
/**
|
|
85289
86552
|
* Creates a new Reassignment Configuration for the specified identity.
|
|
85290
86553
|
* @summary Create a reassignment configuration
|
|
85291
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
85292
86554
|
* @param {ConfigurationItemRequestV2024} configurationItemRequestV2024
|
|
86555
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85293
86556
|
* @param {*} [axiosOptions] Override http request option.
|
|
85294
86557
|
* @throws {RequiredError}
|
|
85295
86558
|
*/
|
|
85296
|
-
createReassignmentConfiguration(
|
|
86559
|
+
createReassignmentConfiguration(configurationItemRequestV2024: ConfigurationItemRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigurationItemResponseV2024>>;
|
|
85297
86560
|
/**
|
|
85298
86561
|
* Deletes a single reassignment configuration for the specified identity
|
|
85299
86562
|
* @summary Delete reassignment configuration
|
|
@@ -85352,21 +86615,21 @@ export declare const WorkReassignmentV2024ApiFp: (configuration?: Configuration)
|
|
|
85352
86615
|
* Replaces existing Reassignment configuration for an identity with the newly provided configuration.
|
|
85353
86616
|
* @summary Update reassignment configuration
|
|
85354
86617
|
* @param {string} identityId unique identity id
|
|
85355
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
85356
86618
|
* @param {ConfigurationItemRequestV2024} configurationItemRequestV2024
|
|
86619
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85357
86620
|
* @param {*} [axiosOptions] Override http request option.
|
|
85358
86621
|
* @throws {RequiredError}
|
|
85359
86622
|
*/
|
|
85360
|
-
putReassignmentConfig(identityId: string,
|
|
86623
|
+
putReassignmentConfig(identityId: string, configurationItemRequestV2024: ConfigurationItemRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigurationItemResponseV2024>>;
|
|
85361
86624
|
/**
|
|
85362
86625
|
* Replaces existing Tenant-wide Reassignment Configuration settings with the newly provided settings.
|
|
85363
86626
|
* @summary Update tenant-wide reassignment configuration settings
|
|
85364
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
85365
86627
|
* @param {TenantConfigurationRequestV2024} tenantConfigurationRequestV2024
|
|
86628
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85366
86629
|
* @param {*} [axiosOptions] Override http request option.
|
|
85367
86630
|
* @throws {RequiredError}
|
|
85368
86631
|
*/
|
|
85369
|
-
putTenantConfiguration(
|
|
86632
|
+
putTenantConfiguration(tenantConfigurationRequestV2024: TenantConfigurationRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenantConfigurationResponseV2024>>;
|
|
85370
86633
|
};
|
|
85371
86634
|
/**
|
|
85372
86635
|
* WorkReassignmentV2024Api - factory interface
|
|
@@ -85452,18 +86715,18 @@ export declare const WorkReassignmentV2024ApiFactory: (configuration?: Configura
|
|
|
85452
86715
|
* @interface WorkReassignmentV2024ApiCreateReassignmentConfigurationRequest
|
|
85453
86716
|
*/
|
|
85454
86717
|
export interface WorkReassignmentV2024ApiCreateReassignmentConfigurationRequest {
|
|
85455
|
-
/**
|
|
85456
|
-
* Use this header to enable this experimental API.
|
|
85457
|
-
* @type {string}
|
|
85458
|
-
* @memberof WorkReassignmentV2024ApiCreateReassignmentConfiguration
|
|
85459
|
-
*/
|
|
85460
|
-
readonly xSailPointExperimental: string;
|
|
85461
86718
|
/**
|
|
85462
86719
|
*
|
|
85463
86720
|
* @type {ConfigurationItemRequestV2024}
|
|
85464
86721
|
* @memberof WorkReassignmentV2024ApiCreateReassignmentConfiguration
|
|
85465
86722
|
*/
|
|
85466
86723
|
readonly configurationItemRequestV2024: ConfigurationItemRequestV2024;
|
|
86724
|
+
/**
|
|
86725
|
+
* Use this header to enable this experimental API.
|
|
86726
|
+
* @type {string}
|
|
86727
|
+
* @memberof WorkReassignmentV2024ApiCreateReassignmentConfiguration
|
|
86728
|
+
*/
|
|
86729
|
+
readonly xSailPointExperimental?: string;
|
|
85467
86730
|
}
|
|
85468
86731
|
/**
|
|
85469
86732
|
* Request parameters for deleteReassignmentConfiguration operation in WorkReassignmentV2024Api.
|
|
@@ -85591,18 +86854,18 @@ export interface WorkReassignmentV2024ApiPutReassignmentConfigRequest {
|
|
|
85591
86854
|
* @memberof WorkReassignmentV2024ApiPutReassignmentConfig
|
|
85592
86855
|
*/
|
|
85593
86856
|
readonly identityId: string;
|
|
85594
|
-
/**
|
|
85595
|
-
* Use this header to enable this experimental API.
|
|
85596
|
-
* @type {string}
|
|
85597
|
-
* @memberof WorkReassignmentV2024ApiPutReassignmentConfig
|
|
85598
|
-
*/
|
|
85599
|
-
readonly xSailPointExperimental: string;
|
|
85600
86857
|
/**
|
|
85601
86858
|
*
|
|
85602
86859
|
* @type {ConfigurationItemRequestV2024}
|
|
85603
86860
|
* @memberof WorkReassignmentV2024ApiPutReassignmentConfig
|
|
85604
86861
|
*/
|
|
85605
86862
|
readonly configurationItemRequestV2024: ConfigurationItemRequestV2024;
|
|
86863
|
+
/**
|
|
86864
|
+
* Use this header to enable this experimental API.
|
|
86865
|
+
* @type {string}
|
|
86866
|
+
* @memberof WorkReassignmentV2024ApiPutReassignmentConfig
|
|
86867
|
+
*/
|
|
86868
|
+
readonly xSailPointExperimental?: string;
|
|
85606
86869
|
}
|
|
85607
86870
|
/**
|
|
85608
86871
|
* Request parameters for putTenantConfiguration operation in WorkReassignmentV2024Api.
|
|
@@ -85610,18 +86873,18 @@ export interface WorkReassignmentV2024ApiPutReassignmentConfigRequest {
|
|
|
85610
86873
|
* @interface WorkReassignmentV2024ApiPutTenantConfigurationRequest
|
|
85611
86874
|
*/
|
|
85612
86875
|
export interface WorkReassignmentV2024ApiPutTenantConfigurationRequest {
|
|
85613
|
-
/**
|
|
85614
|
-
* Use this header to enable this experimental API.
|
|
85615
|
-
* @type {string}
|
|
85616
|
-
* @memberof WorkReassignmentV2024ApiPutTenantConfiguration
|
|
85617
|
-
*/
|
|
85618
|
-
readonly xSailPointExperimental: string;
|
|
85619
86876
|
/**
|
|
85620
86877
|
*
|
|
85621
86878
|
* @type {TenantConfigurationRequestV2024}
|
|
85622
86879
|
* @memberof WorkReassignmentV2024ApiPutTenantConfiguration
|
|
85623
86880
|
*/
|
|
85624
86881
|
readonly tenantConfigurationRequestV2024: TenantConfigurationRequestV2024;
|
|
86882
|
+
/**
|
|
86883
|
+
* Use this header to enable this experimental API.
|
|
86884
|
+
* @type {string}
|
|
86885
|
+
* @memberof WorkReassignmentV2024ApiPutTenantConfiguration
|
|
86886
|
+
*/
|
|
86887
|
+
readonly xSailPointExperimental?: string;
|
|
85625
86888
|
}
|
|
85626
86889
|
/**
|
|
85627
86890
|
* WorkReassignmentV2024Api - object-oriented interface
|