sailpoint-api-client 1.6.2 → 1.6.4
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 +20 -12
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +20 -12
- package/dist/beta/api.js +16 -9
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/index.spec.js +69 -18
- package/dist/index.spec.js.map +1 -1
- package/dist/paginator.d.ts +28 -2
- package/dist/paginator.js +39 -11
- package/dist/paginator.js.map +1 -1
- package/dist/v2024/api.d.ts +136 -189
- package/dist/v2024/api.js +222 -249
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2025/api.d.ts +1098 -183
- package/dist/v2025/api.js +1564 -273
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +1 -1
- package/dist/v3/api.d.ts +20 -12
- package/dist/v3/api.js +18 -11
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/index.spec.ts +46 -4
- package/package.json +1 -1
- package/paginator.ts +77 -13
- package/v2024/README.md +2 -2
- package/v2024/api.ts +251 -390
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +2048 -622
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +22 -14
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/v2025/api.d.ts
CHANGED
|
@@ -1726,7 +1726,7 @@ export interface AccessProfileV2025 {
|
|
|
1726
1726
|
* @type {OwnerReferenceV2025}
|
|
1727
1727
|
* @memberof AccessProfileV2025
|
|
1728
1728
|
*/
|
|
1729
|
-
'owner': OwnerReferenceV2025;
|
|
1729
|
+
'owner': OwnerReferenceV2025 | null;
|
|
1730
1730
|
/**
|
|
1731
1731
|
*
|
|
1732
1732
|
* @type {AccessProfileSourceRefV2025}
|
|
@@ -2249,7 +2249,7 @@ export interface AccessRequestItemV2025 {
|
|
|
2249
2249
|
[key: string]: string;
|
|
2250
2250
|
};
|
|
2251
2251
|
/**
|
|
2252
|
-
* The date the role or access profile or entitlement is no longer assigned to the specified identity. Also known as the expiration date. * Specify a date in the future. * The current SLA for the deprovisioning is 24 hours. * This date can be
|
|
2252
|
+
* The date and time the role or access profile or entitlement is no longer assigned to the specified identity. Also known as the expiration date. * Specify a date-time in the future. * The current SLA for the deprovisioning is 24 hours. * This date-time can be used to change the duration of an existing access item assignment for the specified identity. A GRANT_ACCESS request can extend duration or even remove an expiration date, and either a GRANT_ACCESS or REVOKE_ACCESS request can reduce duration or add an expiration date where one has not previously been present. You can change the expiration date in requests for yourself or others you are authorized to request for.
|
|
2253
2253
|
* @type {string}
|
|
2254
2254
|
* @memberof AccessRequestItemV2025
|
|
2255
2255
|
*/
|
|
@@ -6685,6 +6685,136 @@ export interface AttributeDefinitionV2025 {
|
|
|
6685
6685
|
*/
|
|
6686
6686
|
'isGroup'?: boolean;
|
|
6687
6687
|
}
|
|
6688
|
+
/**
|
|
6689
|
+
* Targeted Entity
|
|
6690
|
+
* @export
|
|
6691
|
+
* @interface AttributeMappingsAllOfTargetV2025
|
|
6692
|
+
*/
|
|
6693
|
+
export interface AttributeMappingsAllOfTargetV2025 {
|
|
6694
|
+
/**
|
|
6695
|
+
* The type of target entity
|
|
6696
|
+
* @type {string}
|
|
6697
|
+
* @memberof AttributeMappingsAllOfTargetV2025
|
|
6698
|
+
*/
|
|
6699
|
+
'type'?: AttributeMappingsAllOfTargetV2025TypeV2025;
|
|
6700
|
+
/**
|
|
6701
|
+
* Name of the targeted attribute
|
|
6702
|
+
* @type {string}
|
|
6703
|
+
* @memberof AttributeMappingsAllOfTargetV2025
|
|
6704
|
+
*/
|
|
6705
|
+
'attributeName'?: string;
|
|
6706
|
+
/**
|
|
6707
|
+
* The ID of Source
|
|
6708
|
+
* @type {string}
|
|
6709
|
+
* @memberof AttributeMappingsAllOfTargetV2025
|
|
6710
|
+
*/
|
|
6711
|
+
'sourceId'?: string;
|
|
6712
|
+
}
|
|
6713
|
+
export declare const AttributeMappingsAllOfTargetV2025TypeV2025: {
|
|
6714
|
+
readonly Identity: "IDENTITY";
|
|
6715
|
+
};
|
|
6716
|
+
export type AttributeMappingsAllOfTargetV2025TypeV2025 = typeof AttributeMappingsAllOfTargetV2025TypeV2025[keyof typeof AttributeMappingsAllOfTargetV2025TypeV2025];
|
|
6717
|
+
/**
|
|
6718
|
+
* Attibute Mapping Object
|
|
6719
|
+
* @export
|
|
6720
|
+
* @interface AttributeMappingsAllOfTransformDefinitionAttributesInputAttributesV2025
|
|
6721
|
+
*/
|
|
6722
|
+
export interface AttributeMappingsAllOfTransformDefinitionAttributesInputAttributesV2025 {
|
|
6723
|
+
/**
|
|
6724
|
+
* The name of attribute
|
|
6725
|
+
* @type {string}
|
|
6726
|
+
* @memberof AttributeMappingsAllOfTransformDefinitionAttributesInputAttributesV2025
|
|
6727
|
+
*/
|
|
6728
|
+
'attributeName'?: string;
|
|
6729
|
+
/**
|
|
6730
|
+
* Name of the Source
|
|
6731
|
+
* @type {string}
|
|
6732
|
+
* @memberof AttributeMappingsAllOfTransformDefinitionAttributesInputAttributesV2025
|
|
6733
|
+
*/
|
|
6734
|
+
'sourceName'?: string;
|
|
6735
|
+
/**
|
|
6736
|
+
* ID of the Source
|
|
6737
|
+
* @type {string}
|
|
6738
|
+
* @memberof AttributeMappingsAllOfTransformDefinitionAttributesInputAttributesV2025
|
|
6739
|
+
*/
|
|
6740
|
+
'name'?: string;
|
|
6741
|
+
}
|
|
6742
|
+
/**
|
|
6743
|
+
* Input Object
|
|
6744
|
+
* @export
|
|
6745
|
+
* @interface AttributeMappingsAllOfTransformDefinitionAttributesInputV2025
|
|
6746
|
+
*/
|
|
6747
|
+
export interface AttributeMappingsAllOfTransformDefinitionAttributesInputV2025 {
|
|
6748
|
+
/**
|
|
6749
|
+
* The Type of Attribute
|
|
6750
|
+
* @type {string}
|
|
6751
|
+
* @memberof AttributeMappingsAllOfTransformDefinitionAttributesInputV2025
|
|
6752
|
+
*/
|
|
6753
|
+
'type'?: string;
|
|
6754
|
+
/**
|
|
6755
|
+
*
|
|
6756
|
+
* @type {AttributeMappingsAllOfTransformDefinitionAttributesInputAttributesV2025}
|
|
6757
|
+
* @memberof AttributeMappingsAllOfTransformDefinitionAttributesInputV2025
|
|
6758
|
+
*/
|
|
6759
|
+
'attributes'?: AttributeMappingsAllOfTransformDefinitionAttributesInputAttributesV2025;
|
|
6760
|
+
}
|
|
6761
|
+
/**
|
|
6762
|
+
* attributes object
|
|
6763
|
+
* @export
|
|
6764
|
+
* @interface AttributeMappingsAllOfTransformDefinitionAttributesV2025
|
|
6765
|
+
*/
|
|
6766
|
+
export interface AttributeMappingsAllOfTransformDefinitionAttributesV2025 {
|
|
6767
|
+
/**
|
|
6768
|
+
*
|
|
6769
|
+
* @type {AttributeMappingsAllOfTransformDefinitionAttributesInputV2025}
|
|
6770
|
+
* @memberof AttributeMappingsAllOfTransformDefinitionAttributesV2025
|
|
6771
|
+
*/
|
|
6772
|
+
'input'?: AttributeMappingsAllOfTransformDefinitionAttributesInputV2025;
|
|
6773
|
+
}
|
|
6774
|
+
/**
|
|
6775
|
+
*
|
|
6776
|
+
* @export
|
|
6777
|
+
* @interface AttributeMappingsAllOfTransformDefinitionV2025
|
|
6778
|
+
*/
|
|
6779
|
+
export interface AttributeMappingsAllOfTransformDefinitionV2025 {
|
|
6780
|
+
/**
|
|
6781
|
+
* The type of transform
|
|
6782
|
+
* @type {string}
|
|
6783
|
+
* @memberof AttributeMappingsAllOfTransformDefinitionV2025
|
|
6784
|
+
*/
|
|
6785
|
+
'type'?: string;
|
|
6786
|
+
/**
|
|
6787
|
+
*
|
|
6788
|
+
* @type {AttributeMappingsAllOfTransformDefinitionAttributesV2025}
|
|
6789
|
+
* @memberof AttributeMappingsAllOfTransformDefinitionV2025
|
|
6790
|
+
*/
|
|
6791
|
+
'attributes'?: AttributeMappingsAllOfTransformDefinitionAttributesV2025;
|
|
6792
|
+
/**
|
|
6793
|
+
* Transform Operation
|
|
6794
|
+
* @type {string}
|
|
6795
|
+
* @memberof AttributeMappingsAllOfTransformDefinitionV2025
|
|
6796
|
+
*/
|
|
6797
|
+
'id'?: string;
|
|
6798
|
+
}
|
|
6799
|
+
/**
|
|
6800
|
+
*
|
|
6801
|
+
* @export
|
|
6802
|
+
* @interface AttributeMappingsV2025
|
|
6803
|
+
*/
|
|
6804
|
+
export interface AttributeMappingsV2025 {
|
|
6805
|
+
/**
|
|
6806
|
+
*
|
|
6807
|
+
* @type {AttributeMappingsAllOfTargetV2025}
|
|
6808
|
+
* @memberof AttributeMappingsV2025
|
|
6809
|
+
*/
|
|
6810
|
+
'target'?: AttributeMappingsAllOfTargetV2025;
|
|
6811
|
+
/**
|
|
6812
|
+
*
|
|
6813
|
+
* @type {AttributeMappingsAllOfTransformDefinitionV2025}
|
|
6814
|
+
* @memberof AttributeMappingsV2025
|
|
6815
|
+
*/
|
|
6816
|
+
'transformDefinition'?: AttributeMappingsAllOfTransformDefinitionV2025;
|
|
6817
|
+
}
|
|
6688
6818
|
/**
|
|
6689
6819
|
*
|
|
6690
6820
|
* @export
|
|
@@ -13668,7 +13798,7 @@ export interface DimensionV2025 {
|
|
|
13668
13798
|
* @type {OwnerReferenceV2025}
|
|
13669
13799
|
* @memberof DimensionV2025
|
|
13670
13800
|
*/
|
|
13671
|
-
'owner': OwnerReferenceV2025;
|
|
13801
|
+
'owner': OwnerReferenceV2025 | null;
|
|
13672
13802
|
/**
|
|
13673
13803
|
*
|
|
13674
13804
|
* @type {Array<AccessProfileRefV2025>}
|
|
@@ -20568,6 +20698,19 @@ export interface ImportEntitlementsBySourceRequestV2025 {
|
|
|
20568
20698
|
*/
|
|
20569
20699
|
'csvFile'?: File;
|
|
20570
20700
|
}
|
|
20701
|
+
/**
|
|
20702
|
+
*
|
|
20703
|
+
* @export
|
|
20704
|
+
* @interface ImportEntitlementsRequestV2025
|
|
20705
|
+
*/
|
|
20706
|
+
export interface ImportEntitlementsRequestV2025 {
|
|
20707
|
+
/**
|
|
20708
|
+
* The CSV file containing the source entitlements to aggregate.
|
|
20709
|
+
* @type {File}
|
|
20710
|
+
* @memberof ImportEntitlementsRequestV2025
|
|
20711
|
+
*/
|
|
20712
|
+
'file'?: File;
|
|
20713
|
+
}
|
|
20571
20714
|
/**
|
|
20572
20715
|
*
|
|
20573
20716
|
* @export
|
|
@@ -22308,6 +22451,66 @@ export declare const MachineAccountV2025ClassificationMethodV2025: {
|
|
|
22308
22451
|
readonly Manual: "MANUAL";
|
|
22309
22452
|
};
|
|
22310
22453
|
export type MachineAccountV2025ClassificationMethodV2025 = typeof MachineAccountV2025ClassificationMethodV2025[keyof typeof MachineAccountV2025ClassificationMethodV2025];
|
|
22454
|
+
/**
|
|
22455
|
+
*
|
|
22456
|
+
* @export
|
|
22457
|
+
* @interface MachineClassificationConfigV2025
|
|
22458
|
+
*/
|
|
22459
|
+
export interface MachineClassificationConfigV2025 {
|
|
22460
|
+
/**
|
|
22461
|
+
* Indicates if the Classification is enabled for a Source
|
|
22462
|
+
* @type {boolean}
|
|
22463
|
+
* @memberof MachineClassificationConfigV2025
|
|
22464
|
+
*/
|
|
22465
|
+
'enabled'?: boolean;
|
|
22466
|
+
/**
|
|
22467
|
+
* Classification Method
|
|
22468
|
+
* @type {string}
|
|
22469
|
+
* @memberof MachineClassificationConfigV2025
|
|
22470
|
+
*/
|
|
22471
|
+
'classificationMethod'?: MachineClassificationConfigV2025ClassificationMethodV2025;
|
|
22472
|
+
/**
|
|
22473
|
+
* A classification criteria object
|
|
22474
|
+
* @type {string}
|
|
22475
|
+
* @memberof MachineClassificationConfigV2025
|
|
22476
|
+
*/
|
|
22477
|
+
'criteria'?: string | null;
|
|
22478
|
+
/**
|
|
22479
|
+
* Time when the config was created
|
|
22480
|
+
* @type {string}
|
|
22481
|
+
* @memberof MachineClassificationConfigV2025
|
|
22482
|
+
*/
|
|
22483
|
+
'created'?: string;
|
|
22484
|
+
/**
|
|
22485
|
+
* Time when the config was last updated
|
|
22486
|
+
* @type {string}
|
|
22487
|
+
* @memberof MachineClassificationConfigV2025
|
|
22488
|
+
*/
|
|
22489
|
+
'modified'?: string | null;
|
|
22490
|
+
}
|
|
22491
|
+
export declare const MachineClassificationConfigV2025ClassificationMethodV2025: {
|
|
22492
|
+
readonly Source: "SOURCE";
|
|
22493
|
+
};
|
|
22494
|
+
export type MachineClassificationConfigV2025ClassificationMethodV2025 = typeof MachineClassificationConfigV2025ClassificationMethodV2025[keyof typeof MachineClassificationConfigV2025ClassificationMethodV2025];
|
|
22495
|
+
/**
|
|
22496
|
+
* The owner configuration associated to the machine identity
|
|
22497
|
+
* @export
|
|
22498
|
+
* @interface MachineIdentityDtoOwnersV2025
|
|
22499
|
+
*/
|
|
22500
|
+
export interface MachineIdentityDtoOwnersV2025 {
|
|
22501
|
+
/**
|
|
22502
|
+
* Defines the identity which is selected as the primary owner
|
|
22503
|
+
* @type {object}
|
|
22504
|
+
* @memberof MachineIdentityDtoOwnersV2025
|
|
22505
|
+
*/
|
|
22506
|
+
'primaryIdentity': object;
|
|
22507
|
+
/**
|
|
22508
|
+
* Defines the identities which are selected as secondary owners
|
|
22509
|
+
* @type {Array<BaseReferenceDtoV2025>}
|
|
22510
|
+
* @memberof MachineIdentityDtoOwnersV2025
|
|
22511
|
+
*/
|
|
22512
|
+
'secondaryIdentities': Array<BaseReferenceDtoV2025>;
|
|
22513
|
+
}
|
|
22311
22514
|
/**
|
|
22312
22515
|
*
|
|
22313
22516
|
* @export
|
|
@@ -22362,6 +22565,18 @@ export interface MachineIdentityV2025 {
|
|
|
22362
22565
|
* @memberof MachineIdentityV2025
|
|
22363
22566
|
*/
|
|
22364
22567
|
'attributes'?: object;
|
|
22568
|
+
/**
|
|
22569
|
+
* The subtype value associated to the machine identity
|
|
22570
|
+
* @type {string}
|
|
22571
|
+
* @memberof MachineIdentityV2025
|
|
22572
|
+
*/
|
|
22573
|
+
'subtype': string;
|
|
22574
|
+
/**
|
|
22575
|
+
*
|
|
22576
|
+
* @type {MachineIdentityDtoOwnersV2025}
|
|
22577
|
+
* @memberof MachineIdentityV2025
|
|
22578
|
+
*/
|
|
22579
|
+
'owners'?: MachineIdentityDtoOwnersV2025;
|
|
22365
22580
|
}
|
|
22366
22581
|
/**
|
|
22367
22582
|
* MAIL FROM attributes for a domain / identity
|
|
@@ -29657,7 +29872,7 @@ export interface RequestedItemDtoRefV2025 {
|
|
|
29657
29872
|
[key: string]: string;
|
|
29658
29873
|
};
|
|
29659
29874
|
/**
|
|
29660
|
-
* The date the role or access profile or entitlement is no longer assigned to the specified identity. Also known as the expiration date. * Specify a date in the future. * The current SLA for the deprovisioning is 24 hours. * This date can be
|
|
29875
|
+
* The date and time the role or access profile or entitlement is no longer assigned to the specified identity. Also known as the expiration date. * Specify a date-time in the future. * The current SLA for the deprovisioning is 24 hours. * This date-time can be used to change the duration of an existing access item assignment for the specified identity. A GRANT_ACCESS request can extend duration or even remove an expiration date, and either a GRANT_ACCESS or REVOKE_ACCESS request can reduce duration or add an expiration date where one has not previously been present. You can change the expiration date in requests for yourself or others you are authorized to request for.
|
|
29661
29876
|
* @type {string}
|
|
29662
29877
|
* @memberof RequestedItemDtoRefV2025
|
|
29663
29878
|
*/
|
|
@@ -33380,7 +33595,7 @@ export interface RoleV2025 {
|
|
|
33380
33595
|
* @type {OwnerReferenceV2025}
|
|
33381
33596
|
* @memberof RoleV2025
|
|
33382
33597
|
*/
|
|
33383
|
-
'owner': OwnerReferenceV2025;
|
|
33598
|
+
'owner': OwnerReferenceV2025 | null;
|
|
33384
33599
|
/**
|
|
33385
33600
|
*
|
|
33386
33601
|
* @type {Array<AccessProfileRefV2025>}
|
|
@@ -35779,6 +35994,32 @@ export declare const SendAccountVerificationRequestV2025ViaV2025: {
|
|
|
35779
35994
|
readonly LinkPersonal: "LINK_PERSONAL";
|
|
35780
35995
|
};
|
|
35781
35996
|
export type SendAccountVerificationRequestV2025ViaV2025 = typeof SendAccountVerificationRequestV2025ViaV2025[keyof typeof SendAccountVerificationRequestV2025ViaV2025];
|
|
35997
|
+
/**
|
|
35998
|
+
*
|
|
35999
|
+
* @export
|
|
36000
|
+
* @interface SendClassifyMachineAccount200ResponseV2025
|
|
36001
|
+
*/
|
|
36002
|
+
export interface SendClassifyMachineAccount200ResponseV2025 {
|
|
36003
|
+
/**
|
|
36004
|
+
* Indicates if account is classified as machine
|
|
36005
|
+
* @type {boolean}
|
|
36006
|
+
* @memberof SendClassifyMachineAccount200ResponseV2025
|
|
36007
|
+
*/
|
|
36008
|
+
'isMachine'?: boolean;
|
|
36009
|
+
}
|
|
36010
|
+
/**
|
|
36011
|
+
*
|
|
36012
|
+
* @export
|
|
36013
|
+
* @interface SendClassifyMachineAccountFromSource200ResponseV2025
|
|
36014
|
+
*/
|
|
36015
|
+
export interface SendClassifyMachineAccountFromSource200ResponseV2025 {
|
|
36016
|
+
/**
|
|
36017
|
+
* Returns the number of all the accounts from source submitted for processing.
|
|
36018
|
+
* @type {number}
|
|
36019
|
+
* @memberof SendClassifyMachineAccountFromSource200ResponseV2025
|
|
36020
|
+
*/
|
|
36021
|
+
'Accounts submitted for processing'?: number;
|
|
36022
|
+
}
|
|
35782
36023
|
/**
|
|
35783
36024
|
*
|
|
35784
36025
|
* @export
|
|
@@ -37577,6 +37818,70 @@ export declare const SourceBeforeProvisioningRuleV2025TypeV2025: {
|
|
|
37577
37818
|
readonly Rule: "RULE";
|
|
37578
37819
|
};
|
|
37579
37820
|
export type SourceBeforeProvisioningRuleV2025TypeV2025 = typeof SourceBeforeProvisioningRuleV2025TypeV2025[keyof typeof SourceBeforeProvisioningRuleV2025TypeV2025];
|
|
37821
|
+
/**
|
|
37822
|
+
* A map containing numbers relevant to the source classification process
|
|
37823
|
+
* @export
|
|
37824
|
+
* @interface SourceClassificationStatusAllOfCountsV2025
|
|
37825
|
+
*/
|
|
37826
|
+
export interface SourceClassificationStatusAllOfCountsV2025 {
|
|
37827
|
+
/**
|
|
37828
|
+
* total number of source accounts
|
|
37829
|
+
* @type {number}
|
|
37830
|
+
* @memberof SourceClassificationStatusAllOfCountsV2025
|
|
37831
|
+
*/
|
|
37832
|
+
'EXPECTED': number;
|
|
37833
|
+
/**
|
|
37834
|
+
* number of accounts that have been sent for processing (should be the same as expected when all accounts are collected)
|
|
37835
|
+
* @type {number}
|
|
37836
|
+
* @memberof SourceClassificationStatusAllOfCountsV2025
|
|
37837
|
+
*/
|
|
37838
|
+
'RECEIVED': number;
|
|
37839
|
+
/**
|
|
37840
|
+
* number of accounts that have been classified
|
|
37841
|
+
* @type {number}
|
|
37842
|
+
* @memberof SourceClassificationStatusAllOfCountsV2025
|
|
37843
|
+
*/
|
|
37844
|
+
'COMPLETED': number;
|
|
37845
|
+
}
|
|
37846
|
+
/**
|
|
37847
|
+
*
|
|
37848
|
+
* @export
|
|
37849
|
+
* @interface SourceClassificationStatusV2025
|
|
37850
|
+
*/
|
|
37851
|
+
export interface SourceClassificationStatusV2025 {
|
|
37852
|
+
/**
|
|
37853
|
+
* Status of Classification Process
|
|
37854
|
+
* @type {string}
|
|
37855
|
+
* @memberof SourceClassificationStatusV2025
|
|
37856
|
+
*/
|
|
37857
|
+
'status'?: SourceClassificationStatusV2025StatusV2025;
|
|
37858
|
+
/**
|
|
37859
|
+
* Time when the process was started
|
|
37860
|
+
* @type {string}
|
|
37861
|
+
* @memberof SourceClassificationStatusV2025
|
|
37862
|
+
*/
|
|
37863
|
+
'started'?: string;
|
|
37864
|
+
/**
|
|
37865
|
+
* Time when the process status was last updated
|
|
37866
|
+
* @type {string}
|
|
37867
|
+
* @memberof SourceClassificationStatusV2025
|
|
37868
|
+
*/
|
|
37869
|
+
'updated'?: string | null;
|
|
37870
|
+
/**
|
|
37871
|
+
*
|
|
37872
|
+
* @type {SourceClassificationStatusAllOfCountsV2025}
|
|
37873
|
+
* @memberof SourceClassificationStatusV2025
|
|
37874
|
+
*/
|
|
37875
|
+
'counts'?: SourceClassificationStatusAllOfCountsV2025;
|
|
37876
|
+
}
|
|
37877
|
+
export declare const SourceClassificationStatusV2025StatusV2025: {
|
|
37878
|
+
readonly Started: "STARTED";
|
|
37879
|
+
readonly Collected: "COLLECTED";
|
|
37880
|
+
readonly Completed: "COMPLETED";
|
|
37881
|
+
readonly Cancelled: "CANCELLED";
|
|
37882
|
+
readonly Terminated: "TERMINATED";
|
|
37883
|
+
};
|
|
37884
|
+
export type SourceClassificationStatusV2025StatusV2025 = typeof SourceClassificationStatusV2025StatusV2025[keyof typeof SourceClassificationStatusV2025StatusV2025];
|
|
37580
37885
|
/**
|
|
37581
37886
|
* Source cluster.
|
|
37582
37887
|
* @export
|
|
@@ -44916,7 +45221,7 @@ export declare const AccessRequestsV2025ApiAxiosParamCreator: (configuration?: C
|
|
|
44916
45221
|
*/
|
|
44917
45222
|
closeAccessRequest: (closeAccessRequestV2025: CloseAccessRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44918
45223
|
/**
|
|
44919
|
-
* Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, the
|
|
45224
|
+
* Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, without changing the account details or end date information from the existing assignment, the API will cancel the request as a duplicate. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * You can specify a `removeDate` to set or alter a sunset date-time on an assignment. The removeDate must be a future date-time, in the UTC timezone. Additionally, if the user already has the access assigned with a sunset date, you can also submit a request without a `removeDate` to request removal of the sunset date and time. * If a `removeDate` is specified, then the requested role, access profile, or entitlement will be removed on that date and time. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. * Now supports an alternate field \'requestedForWithRequestedItems\' for users to specify account selections while requesting items where they have more than one account on the source. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * You cannot use an access request to revoke access from an identity if that access has been granted by role membership or by birthright provisioning. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the requested role, access profile, or entitlement will be removed on that date and time. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * You can specify a `removeDate` to add or alter a sunset date and time on an assignment. The `removeDate` must be a future date-time, in the UTC timezone. If the user already has the access assigned with a sunset date and time, the removeDate must be a date-time earlier than the existing sunset date and time. * Allows a manager to request to revoke access for direct employees. A user with ORG_ADMIN authority can also request to revoke access from anyone. * Now supports REVOKE_ACCESS requests for identities with multiple accounts on a single source, with the help of \'assignmentId\' and \'nativeIdentity\' fields. These fields should be used within the \'requestedItems\' section for the revoke requests. * Usage of \'requestedForWithRequestedItems\' field is not supported for revoke requests.
|
|
44920
45225
|
* @summary Submit access request
|
|
44921
45226
|
* @param {AccessRequestV2025} accessRequestV2025
|
|
44922
45227
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -45030,7 +45335,7 @@ export declare const AccessRequestsV2025ApiFp: (configuration?: Configuration) =
|
|
|
45030
45335
|
*/
|
|
45031
45336
|
closeAccessRequest(closeAccessRequestV2025: CloseAccessRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
45032
45337
|
/**
|
|
45033
|
-
* Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, the
|
|
45338
|
+
* Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, without changing the account details or end date information from the existing assignment, the API will cancel the request as a duplicate. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * You can specify a `removeDate` to set or alter a sunset date-time on an assignment. The removeDate must be a future date-time, in the UTC timezone. Additionally, if the user already has the access assigned with a sunset date, you can also submit a request without a `removeDate` to request removal of the sunset date and time. * If a `removeDate` is specified, then the requested role, access profile, or entitlement will be removed on that date and time. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. * Now supports an alternate field \'requestedForWithRequestedItems\' for users to specify account selections while requesting items where they have more than one account on the source. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * You cannot use an access request to revoke access from an identity if that access has been granted by role membership or by birthright provisioning. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the requested role, access profile, or entitlement will be removed on that date and time. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * You can specify a `removeDate` to add or alter a sunset date and time on an assignment. The `removeDate` must be a future date-time, in the UTC timezone. If the user already has the access assigned with a sunset date and time, the removeDate must be a date-time earlier than the existing sunset date and time. * Allows a manager to request to revoke access for direct employees. A user with ORG_ADMIN authority can also request to revoke access from anyone. * Now supports REVOKE_ACCESS requests for identities with multiple accounts on a single source, with the help of \'assignmentId\' and \'nativeIdentity\' fields. These fields should be used within the \'requestedItems\' section for the revoke requests. * Usage of \'requestedForWithRequestedItems\' field is not supported for revoke requests.
|
|
45034
45339
|
* @summary Submit access request
|
|
45035
45340
|
* @param {AccessRequestV2025} accessRequestV2025
|
|
45036
45341
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -45143,7 +45448,7 @@ export declare const AccessRequestsV2025ApiFactory: (configuration?: Configurati
|
|
|
45143
45448
|
*/
|
|
45144
45449
|
closeAccessRequest(requestParameters: AccessRequestsV2025ApiCloseAccessRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
45145
45450
|
/**
|
|
45146
|
-
* Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, the
|
|
45451
|
+
* Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, without changing the account details or end date information from the existing assignment, the API will cancel the request as a duplicate. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * You can specify a `removeDate` to set or alter a sunset date-time on an assignment. The removeDate must be a future date-time, in the UTC timezone. Additionally, if the user already has the access assigned with a sunset date, you can also submit a request without a `removeDate` to request removal of the sunset date and time. * If a `removeDate` is specified, then the requested role, access profile, or entitlement will be removed on that date and time. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. * Now supports an alternate field \'requestedForWithRequestedItems\' for users to specify account selections while requesting items where they have more than one account on the source. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * You cannot use an access request to revoke access from an identity if that access has been granted by role membership or by birthright provisioning. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the requested role, access profile, or entitlement will be removed on that date and time. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * You can specify a `removeDate` to add or alter a sunset date and time on an assignment. The `removeDate` must be a future date-time, in the UTC timezone. If the user already has the access assigned with a sunset date and time, the removeDate must be a date-time earlier than the existing sunset date and time. * Allows a manager to request to revoke access for direct employees. A user with ORG_ADMIN authority can also request to revoke access from anyone. * Now supports REVOKE_ACCESS requests for identities with multiple accounts on a single source, with the help of \'assignmentId\' and \'nativeIdentity\' fields. These fields should be used within the \'requestedItems\' section for the revoke requests. * Usage of \'requestedForWithRequestedItems\' field is not supported for revoke requests.
|
|
45147
45452
|
* @summary Submit access request
|
|
45148
45453
|
* @param {AccessRequestsV2025ApiCreateAccessRequestRequest} requestParameters Request parameters.
|
|
45149
45454
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -45498,7 +45803,7 @@ export declare class AccessRequestsV2025Api extends BaseAPI {
|
|
|
45498
45803
|
*/
|
|
45499
45804
|
closeAccessRequest(requestParameters: AccessRequestsV2025ApiCloseAccessRequestRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
45500
45805
|
/**
|
|
45501
|
-
* Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, the
|
|
45806
|
+
* Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, without changing the account details or end date information from the existing assignment, the API will cancel the request as a duplicate. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * You can specify a `removeDate` to set or alter a sunset date-time on an assignment. The removeDate must be a future date-time, in the UTC timezone. Additionally, if the user already has the access assigned with a sunset date, you can also submit a request without a `removeDate` to request removal of the sunset date and time. * If a `removeDate` is specified, then the requested role, access profile, or entitlement will be removed on that date and time. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. * Now supports an alternate field \'requestedForWithRequestedItems\' for users to specify account selections while requesting items where they have more than one account on the source. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * You cannot use an access request to revoke access from an identity if that access has been granted by role membership or by birthright provisioning. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the requested role, access profile, or entitlement will be removed on that date and time. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * You can specify a `removeDate` to add or alter a sunset date and time on an assignment. The `removeDate` must be a future date-time, in the UTC timezone. If the user already has the access assigned with a sunset date and time, the removeDate must be a date-time earlier than the existing sunset date and time. * Allows a manager to request to revoke access for direct employees. A user with ORG_ADMIN authority can also request to revoke access from anyone. * Now supports REVOKE_ACCESS requests for identities with multiple accounts on a single source, with the help of \'assignmentId\' and \'nativeIdentity\' fields. These fields should be used within the \'requestedItems\' section for the revoke requests. * Usage of \'requestedForWithRequestedItems\' field is not supported for revoke requests.
|
|
45502
45807
|
* @summary Submit access request
|
|
45503
45808
|
* @param {AccessRequestsV2025ApiCreateAccessRequestRequest} requestParameters Request parameters.
|
|
45504
45809
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -51388,6 +51693,170 @@ export declare class CertificationsV2025Api extends BaseAPI {
|
|
|
51388
51693
|
*/
|
|
51389
51694
|
submitReassignCertsAsync(requestParameters: CertificationsV2025ApiSubmitReassignCertsAsyncRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CertificationTaskV2025, any>>;
|
|
51390
51695
|
}
|
|
51696
|
+
/**
|
|
51697
|
+
* ClassifySourceV2025Api - axios parameter creator
|
|
51698
|
+
* @export
|
|
51699
|
+
*/
|
|
51700
|
+
export declare const ClassifySourceV2025ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
51701
|
+
/**
|
|
51702
|
+
* Use this API to cancel account classification process on a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
51703
|
+
* @summary Cancel classify source\'s accounts process
|
|
51704
|
+
* @param {string} id Source ID.
|
|
51705
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
51706
|
+
* @throws {RequiredError}
|
|
51707
|
+
*/
|
|
51708
|
+
deleteClassifyMachineAccountFromSource: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
51709
|
+
/**
|
|
51710
|
+
* Use this API to get the status of Machine Account Classification process for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
51711
|
+
* @summary Source accounts classification status
|
|
51712
|
+
* @param {string} id Source ID.
|
|
51713
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
51714
|
+
* @throws {RequiredError}
|
|
51715
|
+
*/
|
|
51716
|
+
getClassifyMachineAccountFromSourceStatus: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
51717
|
+
/**
|
|
51718
|
+
* Use this API to classify all the accounts from a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
51719
|
+
* @summary Classify source\'s all accounts
|
|
51720
|
+
* @param {string} id Source ID.
|
|
51721
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
51722
|
+
* @throws {RequiredError}
|
|
51723
|
+
*/
|
|
51724
|
+
sendClassifyMachineAccountFromSource: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
51725
|
+
};
|
|
51726
|
+
/**
|
|
51727
|
+
* ClassifySourceV2025Api - functional programming interface
|
|
51728
|
+
* @export
|
|
51729
|
+
*/
|
|
51730
|
+
export declare const ClassifySourceV2025ApiFp: (configuration?: Configuration) => {
|
|
51731
|
+
/**
|
|
51732
|
+
* Use this API to cancel account classification process on a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
51733
|
+
* @summary Cancel classify source\'s accounts process
|
|
51734
|
+
* @param {string} id Source ID.
|
|
51735
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
51736
|
+
* @throws {RequiredError}
|
|
51737
|
+
*/
|
|
51738
|
+
deleteClassifyMachineAccountFromSource(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
51739
|
+
/**
|
|
51740
|
+
* Use this API to get the status of Machine Account Classification process for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
51741
|
+
* @summary Source accounts classification status
|
|
51742
|
+
* @param {string} id Source ID.
|
|
51743
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
51744
|
+
* @throws {RequiredError}
|
|
51745
|
+
*/
|
|
51746
|
+
getClassifyMachineAccountFromSourceStatus(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceClassificationStatusV2025>>;
|
|
51747
|
+
/**
|
|
51748
|
+
* Use this API to classify all the accounts from a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
51749
|
+
* @summary Classify source\'s all accounts
|
|
51750
|
+
* @param {string} id Source ID.
|
|
51751
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
51752
|
+
* @throws {RequiredError}
|
|
51753
|
+
*/
|
|
51754
|
+
sendClassifyMachineAccountFromSource(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SendClassifyMachineAccountFromSource200ResponseV2025>>;
|
|
51755
|
+
};
|
|
51756
|
+
/**
|
|
51757
|
+
* ClassifySourceV2025Api - factory interface
|
|
51758
|
+
* @export
|
|
51759
|
+
*/
|
|
51760
|
+
export declare const ClassifySourceV2025ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
51761
|
+
/**
|
|
51762
|
+
* Use this API to cancel account classification process on a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
51763
|
+
* @summary Cancel classify source\'s accounts process
|
|
51764
|
+
* @param {ClassifySourceV2025ApiDeleteClassifyMachineAccountFromSourceRequest} requestParameters Request parameters.
|
|
51765
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
51766
|
+
* @throws {RequiredError}
|
|
51767
|
+
*/
|
|
51768
|
+
deleteClassifyMachineAccountFromSource(requestParameters: ClassifySourceV2025ApiDeleteClassifyMachineAccountFromSourceRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
51769
|
+
/**
|
|
51770
|
+
* Use this API to get the status of Machine Account Classification process for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
51771
|
+
* @summary Source accounts classification status
|
|
51772
|
+
* @param {ClassifySourceV2025ApiGetClassifyMachineAccountFromSourceStatusRequest} requestParameters Request parameters.
|
|
51773
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
51774
|
+
* @throws {RequiredError}
|
|
51775
|
+
*/
|
|
51776
|
+
getClassifyMachineAccountFromSourceStatus(requestParameters: ClassifySourceV2025ApiGetClassifyMachineAccountFromSourceStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceClassificationStatusV2025>;
|
|
51777
|
+
/**
|
|
51778
|
+
* Use this API to classify all the accounts from a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
51779
|
+
* @summary Classify source\'s all accounts
|
|
51780
|
+
* @param {ClassifySourceV2025ApiSendClassifyMachineAccountFromSourceRequest} requestParameters Request parameters.
|
|
51781
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
51782
|
+
* @throws {RequiredError}
|
|
51783
|
+
*/
|
|
51784
|
+
sendClassifyMachineAccountFromSource(requestParameters: ClassifySourceV2025ApiSendClassifyMachineAccountFromSourceRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SendClassifyMachineAccountFromSource200ResponseV2025>;
|
|
51785
|
+
};
|
|
51786
|
+
/**
|
|
51787
|
+
* Request parameters for deleteClassifyMachineAccountFromSource operation in ClassifySourceV2025Api.
|
|
51788
|
+
* @export
|
|
51789
|
+
* @interface ClassifySourceV2025ApiDeleteClassifyMachineAccountFromSourceRequest
|
|
51790
|
+
*/
|
|
51791
|
+
export interface ClassifySourceV2025ApiDeleteClassifyMachineAccountFromSourceRequest {
|
|
51792
|
+
/**
|
|
51793
|
+
* Source ID.
|
|
51794
|
+
* @type {string}
|
|
51795
|
+
* @memberof ClassifySourceV2025ApiDeleteClassifyMachineAccountFromSource
|
|
51796
|
+
*/
|
|
51797
|
+
readonly id: string;
|
|
51798
|
+
}
|
|
51799
|
+
/**
|
|
51800
|
+
* Request parameters for getClassifyMachineAccountFromSourceStatus operation in ClassifySourceV2025Api.
|
|
51801
|
+
* @export
|
|
51802
|
+
* @interface ClassifySourceV2025ApiGetClassifyMachineAccountFromSourceStatusRequest
|
|
51803
|
+
*/
|
|
51804
|
+
export interface ClassifySourceV2025ApiGetClassifyMachineAccountFromSourceStatusRequest {
|
|
51805
|
+
/**
|
|
51806
|
+
* Source ID.
|
|
51807
|
+
* @type {string}
|
|
51808
|
+
* @memberof ClassifySourceV2025ApiGetClassifyMachineAccountFromSourceStatus
|
|
51809
|
+
*/
|
|
51810
|
+
readonly id: string;
|
|
51811
|
+
}
|
|
51812
|
+
/**
|
|
51813
|
+
* Request parameters for sendClassifyMachineAccountFromSource operation in ClassifySourceV2025Api.
|
|
51814
|
+
* @export
|
|
51815
|
+
* @interface ClassifySourceV2025ApiSendClassifyMachineAccountFromSourceRequest
|
|
51816
|
+
*/
|
|
51817
|
+
export interface ClassifySourceV2025ApiSendClassifyMachineAccountFromSourceRequest {
|
|
51818
|
+
/**
|
|
51819
|
+
* Source ID.
|
|
51820
|
+
* @type {string}
|
|
51821
|
+
* @memberof ClassifySourceV2025ApiSendClassifyMachineAccountFromSource
|
|
51822
|
+
*/
|
|
51823
|
+
readonly id: string;
|
|
51824
|
+
}
|
|
51825
|
+
/**
|
|
51826
|
+
* ClassifySourceV2025Api - object-oriented interface
|
|
51827
|
+
* @export
|
|
51828
|
+
* @class ClassifySourceV2025Api
|
|
51829
|
+
* @extends {BaseAPI}
|
|
51830
|
+
*/
|
|
51831
|
+
export declare class ClassifySourceV2025Api extends BaseAPI {
|
|
51832
|
+
/**
|
|
51833
|
+
* Use this API to cancel account classification process on a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
51834
|
+
* @summary Cancel classify source\'s accounts process
|
|
51835
|
+
* @param {ClassifySourceV2025ApiDeleteClassifyMachineAccountFromSourceRequest} requestParameters Request parameters.
|
|
51836
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
51837
|
+
* @throws {RequiredError}
|
|
51838
|
+
* @memberof ClassifySourceV2025Api
|
|
51839
|
+
*/
|
|
51840
|
+
deleteClassifyMachineAccountFromSource(requestParameters: ClassifySourceV2025ApiDeleteClassifyMachineAccountFromSourceRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
51841
|
+
/**
|
|
51842
|
+
* Use this API to get the status of Machine Account Classification process for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
51843
|
+
* @summary Source accounts classification status
|
|
51844
|
+
* @param {ClassifySourceV2025ApiGetClassifyMachineAccountFromSourceStatusRequest} requestParameters Request parameters.
|
|
51845
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
51846
|
+
* @throws {RequiredError}
|
|
51847
|
+
* @memberof ClassifySourceV2025Api
|
|
51848
|
+
*/
|
|
51849
|
+
getClassifyMachineAccountFromSourceStatus(requestParameters: ClassifySourceV2025ApiGetClassifyMachineAccountFromSourceStatusRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceClassificationStatusV2025, any>>;
|
|
51850
|
+
/**
|
|
51851
|
+
* Use this API to classify all the accounts from a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
51852
|
+
* @summary Classify source\'s all accounts
|
|
51853
|
+
* @param {ClassifySourceV2025ApiSendClassifyMachineAccountFromSourceRequest} requestParameters Request parameters.
|
|
51854
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
51855
|
+
* @throws {RequiredError}
|
|
51856
|
+
* @memberof ClassifySourceV2025Api
|
|
51857
|
+
*/
|
|
51858
|
+
sendClassifyMachineAccountFromSource(requestParameters: ClassifySourceV2025ApiSendClassifyMachineAccountFromSourceRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SendClassifyMachineAccountFromSource200ResponseV2025, any>>;
|
|
51859
|
+
}
|
|
51391
51860
|
/**
|
|
51392
51861
|
* ConfigurationHubV2025Api - axios parameter creator
|
|
51393
51862
|
* @export
|
|
@@ -62136,50 +62605,46 @@ export declare const IdentitiesV2025ApiAxiosParamCreator: (configuration?: Confi
|
|
|
62136
62605
|
* The API returns successful response if the requested identity was deleted.
|
|
62137
62606
|
* @summary Delete identity
|
|
62138
62607
|
* @param {string} id Identity Id
|
|
62139
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
62608
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62140
62609
|
* @param {*} [axiosOptions] Override http request option.
|
|
62141
62610
|
* @throws {RequiredError}
|
|
62142
62611
|
*/
|
|
62143
|
-
deleteIdentity: (id: string, xSailPointExperimental
|
|
62612
|
+
deleteIdentity: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62144
62613
|
/**
|
|
62145
62614
|
* This API returns a single identity using the Identity ID.
|
|
62146
62615
|
* @summary Identity details
|
|
62147
62616
|
* @param {string} id Identity Id
|
|
62148
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62149
62617
|
* @param {*} [axiosOptions] Override http request option.
|
|
62150
62618
|
* @throws {RequiredError}
|
|
62151
62619
|
*/
|
|
62152
|
-
getIdentity: (id: string,
|
|
62620
|
+
getIdentity: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62153
62621
|
/**
|
|
62154
62622
|
* Use this API to return an identity\'s owned objects that will cause problems for deleting the identity. Use this API as a checklist of objects that you need to reassign to a different identity before you can delete the identity. For a full list of objects owned by an identity, use the [Search API](https://developer.sailpoint.com/docs/api/v3/search-post/). When you search for identities, the returned identities have a property, `owns`, that contains a more comprehensive list of identity\'s owned objects.
|
|
62155
62623
|
* @summary Get ownership details
|
|
62156
62624
|
* @param {string} identityId Identity ID.
|
|
62157
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62158
62625
|
* @param {*} [axiosOptions] Override http request option.
|
|
62159
62626
|
* @throws {RequiredError}
|
|
62160
62627
|
*/
|
|
62161
|
-
getIdentityOwnershipDetails: (identityId: string,
|
|
62628
|
+
getIdentityOwnershipDetails: (identityId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62162
62629
|
/**
|
|
62163
62630
|
*
|
|
62164
62631
|
* @summary Role assignment details
|
|
62165
62632
|
* @param {string} identityId Identity Id
|
|
62166
62633
|
* @param {string} assignmentId Assignment Id
|
|
62167
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62168
62634
|
* @param {*} [axiosOptions] Override http request option.
|
|
62169
62635
|
* @throws {RequiredError}
|
|
62170
62636
|
*/
|
|
62171
|
-
getRoleAssignment: (identityId: string, assignmentId: string,
|
|
62637
|
+
getRoleAssignment: (identityId: string, assignmentId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62172
62638
|
/**
|
|
62173
62639
|
* This returns either a list of Role Assignments when querying with either a Role Id or Role Name, or a list of Role Assignment References if querying with only identity Id.
|
|
62174
62640
|
* @summary List role assignments
|
|
62175
62641
|
* @param {string} identityId Identity Id to get the role assignments for
|
|
62176
62642
|
* @param {string} [roleId] Role Id to filter the role assignments with
|
|
62177
62643
|
* @param {string} [roleName] Role name to filter the role assignments with
|
|
62178
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62179
62644
|
* @param {*} [axiosOptions] Override http request option.
|
|
62180
62645
|
* @throws {RequiredError}
|
|
62181
62646
|
*/
|
|
62182
|
-
getRoleAssignments: (identityId: string, roleId?: string, roleName?: string,
|
|
62647
|
+
getRoleAssignments: (identityId: string, roleId?: string, roleName?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62183
62648
|
/**
|
|
62184
62649
|
* This API returns a list of identities.
|
|
62185
62650
|
* @summary List identities
|
|
@@ -62189,20 +62654,18 @@ export declare const IdentitiesV2025ApiAxiosParamCreator: (configuration?: Confi
|
|
|
62189
62654
|
* @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.
|
|
62190
62655
|
* @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.
|
|
62191
62656
|
* @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.
|
|
62192
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62193
62657
|
* @param {*} [axiosOptions] Override http request option.
|
|
62194
62658
|
* @throws {RequiredError}
|
|
62195
62659
|
*/
|
|
62196
|
-
listIdentities: (filters?: string, sorters?: string, defaultFilter?: ListIdentitiesDefaultFilterV2025, count?: boolean, limit?: number, offset?: number,
|
|
62660
|
+
listIdentities: (filters?: string, sorters?: string, defaultFilter?: ListIdentitiesDefaultFilterV2025, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62197
62661
|
/**
|
|
62198
62662
|
* Use this endpoint to reset a user\'s identity if they have forgotten their authentication information like their answers to knowledge-based questions. Resetting an identity de-registers the user and removes any elevated user levels they have.
|
|
62199
62663
|
* @summary Reset an identity
|
|
62200
62664
|
* @param {string} identityId Identity Id
|
|
62201
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62202
62665
|
* @param {*} [axiosOptions] Override http request option.
|
|
62203
62666
|
* @throws {RequiredError}
|
|
62204
62667
|
*/
|
|
62205
|
-
resetIdentity: (identityId: string,
|
|
62668
|
+
resetIdentity: (identityId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62206
62669
|
/**
|
|
62207
62670
|
* This API sends an email with the link to start Password Reset. After selecting the link an identity will be able to set up a new password. Emails expire after 2 hours.
|
|
62208
62671
|
* @summary Send password reset email
|
|
@@ -62217,11 +62680,10 @@ export declare const IdentitiesV2025ApiAxiosParamCreator: (configuration?: Confi
|
|
|
62217
62680
|
* 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).
|
|
62218
62681
|
* @summary Invite identities to register
|
|
62219
62682
|
* @param {InviteIdentitiesRequestV2025} inviteIdentitiesRequestV2025
|
|
62220
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62221
62683
|
* @param {*} [axiosOptions] Override http request option.
|
|
62222
62684
|
* @throws {RequiredError}
|
|
62223
62685
|
*/
|
|
62224
|
-
startIdentitiesInvite: (inviteIdentitiesRequestV2025: InviteIdentitiesRequestV2025,
|
|
62686
|
+
startIdentitiesInvite: (inviteIdentitiesRequestV2025: InviteIdentitiesRequestV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62225
62687
|
/**
|
|
62226
62688
|
* 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.
|
|
62227
62689
|
* @summary Process a list of identityids
|
|
@@ -62250,50 +62712,46 @@ export declare const IdentitiesV2025ApiFp: (configuration?: Configuration) => {
|
|
|
62250
62712
|
* The API returns successful response if the requested identity was deleted.
|
|
62251
62713
|
* @summary Delete identity
|
|
62252
62714
|
* @param {string} id Identity Id
|
|
62253
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
62715
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62254
62716
|
* @param {*} [axiosOptions] Override http request option.
|
|
62255
62717
|
* @throws {RequiredError}
|
|
62256
62718
|
*/
|
|
62257
|
-
deleteIdentity(id: string, xSailPointExperimental
|
|
62719
|
+
deleteIdentity(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
62258
62720
|
/**
|
|
62259
62721
|
* This API returns a single identity using the Identity ID.
|
|
62260
62722
|
* @summary Identity details
|
|
62261
62723
|
* @param {string} id Identity Id
|
|
62262
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62263
62724
|
* @param {*} [axiosOptions] Override http request option.
|
|
62264
62725
|
* @throws {RequiredError}
|
|
62265
62726
|
*/
|
|
62266
|
-
getIdentity(id: string,
|
|
62727
|
+
getIdentity(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityV2025>>;
|
|
62267
62728
|
/**
|
|
62268
62729
|
* Use this API to return an identity\'s owned objects that will cause problems for deleting the identity. Use this API as a checklist of objects that you need to reassign to a different identity before you can delete the identity. For a full list of objects owned by an identity, use the [Search API](https://developer.sailpoint.com/docs/api/v3/search-post/). When you search for identities, the returned identities have a property, `owns`, that contains a more comprehensive list of identity\'s owned objects.
|
|
62269
62730
|
* @summary Get ownership details
|
|
62270
62731
|
* @param {string} identityId Identity ID.
|
|
62271
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62272
62732
|
* @param {*} [axiosOptions] Override http request option.
|
|
62273
62733
|
* @throws {RequiredError}
|
|
62274
62734
|
*/
|
|
62275
|
-
getIdentityOwnershipDetails(identityId: string,
|
|
62735
|
+
getIdentityOwnershipDetails(identityId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityOwnershipAssociationDetailsV2025>>;
|
|
62276
62736
|
/**
|
|
62277
62737
|
*
|
|
62278
62738
|
* @summary Role assignment details
|
|
62279
62739
|
* @param {string} identityId Identity Id
|
|
62280
62740
|
* @param {string} assignmentId Assignment Id
|
|
62281
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62282
62741
|
* @param {*} [axiosOptions] Override http request option.
|
|
62283
62742
|
* @throws {RequiredError}
|
|
62284
62743
|
*/
|
|
62285
|
-
getRoleAssignment(identityId: string, assignmentId: string,
|
|
62744
|
+
getRoleAssignment(identityId: string, assignmentId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleAssignmentDtoV2025>>;
|
|
62286
62745
|
/**
|
|
62287
62746
|
* This returns either a list of Role Assignments when querying with either a Role Id or Role Name, or a list of Role Assignment References if querying with only identity Id.
|
|
62288
62747
|
* @summary List role assignments
|
|
62289
62748
|
* @param {string} identityId Identity Id to get the role assignments for
|
|
62290
62749
|
* @param {string} [roleId] Role Id to filter the role assignments with
|
|
62291
62750
|
* @param {string} [roleName] Role name to filter the role assignments with
|
|
62292
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62293
62751
|
* @param {*} [axiosOptions] Override http request option.
|
|
62294
62752
|
* @throws {RequiredError}
|
|
62295
62753
|
*/
|
|
62296
|
-
getRoleAssignments(identityId: string, roleId?: string, roleName?: string,
|
|
62754
|
+
getRoleAssignments(identityId: string, roleId?: string, roleName?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GetRoleAssignments200ResponseInnerV2025>>>;
|
|
62297
62755
|
/**
|
|
62298
62756
|
* This API returns a list of identities.
|
|
62299
62757
|
* @summary List identities
|
|
@@ -62303,20 +62761,18 @@ export declare const IdentitiesV2025ApiFp: (configuration?: Configuration) => {
|
|
|
62303
62761
|
* @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.
|
|
62304
62762
|
* @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.
|
|
62305
62763
|
* @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.
|
|
62306
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62307
62764
|
* @param {*} [axiosOptions] Override http request option.
|
|
62308
62765
|
* @throws {RequiredError}
|
|
62309
62766
|
*/
|
|
62310
|
-
listIdentities(filters?: string, sorters?: string, defaultFilter?: ListIdentitiesDefaultFilterV2025, count?: boolean, limit?: number, offset?: number,
|
|
62767
|
+
listIdentities(filters?: string, sorters?: string, defaultFilter?: ListIdentitiesDefaultFilterV2025, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IdentityV2025>>>;
|
|
62311
62768
|
/**
|
|
62312
62769
|
* Use this endpoint to reset a user\'s identity if they have forgotten their authentication information like their answers to knowledge-based questions. Resetting an identity de-registers the user and removes any elevated user levels they have.
|
|
62313
62770
|
* @summary Reset an identity
|
|
62314
62771
|
* @param {string} identityId Identity Id
|
|
62315
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62316
62772
|
* @param {*} [axiosOptions] Override http request option.
|
|
62317
62773
|
* @throws {RequiredError}
|
|
62318
62774
|
*/
|
|
62319
|
-
resetIdentity(identityId: string,
|
|
62775
|
+
resetIdentity(identityId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
62320
62776
|
/**
|
|
62321
62777
|
* This API sends an email with the link to start Password Reset. After selecting the link an identity will be able to set up a new password. Emails expire after 2 hours.
|
|
62322
62778
|
* @summary Send password reset email
|
|
@@ -62331,11 +62787,10 @@ export declare const IdentitiesV2025ApiFp: (configuration?: Configuration) => {
|
|
|
62331
62787
|
* 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).
|
|
62332
62788
|
* @summary Invite identities to register
|
|
62333
62789
|
* @param {InviteIdentitiesRequestV2025} inviteIdentitiesRequestV2025
|
|
62334
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62335
62790
|
* @param {*} [axiosOptions] Override http request option.
|
|
62336
62791
|
* @throws {RequiredError}
|
|
62337
62792
|
*/
|
|
62338
|
-
startIdentitiesInvite(inviteIdentitiesRequestV2025: InviteIdentitiesRequestV2025,
|
|
62793
|
+
startIdentitiesInvite(inviteIdentitiesRequestV2025: InviteIdentitiesRequestV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2025>>;
|
|
62339
62794
|
/**
|
|
62340
62795
|
* 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.
|
|
62341
62796
|
* @summary Process a list of identityids
|
|
@@ -62466,7 +62921,7 @@ export interface IdentitiesV2025ApiDeleteIdentityRequest {
|
|
|
62466
62921
|
* @type {string}
|
|
62467
62922
|
* @memberof IdentitiesV2025ApiDeleteIdentity
|
|
62468
62923
|
*/
|
|
62469
|
-
readonly xSailPointExperimental
|
|
62924
|
+
readonly xSailPointExperimental?: string;
|
|
62470
62925
|
}
|
|
62471
62926
|
/**
|
|
62472
62927
|
* Request parameters for getIdentity operation in IdentitiesV2025Api.
|
|
@@ -62480,12 +62935,6 @@ export interface IdentitiesV2025ApiGetIdentityRequest {
|
|
|
62480
62935
|
* @memberof IdentitiesV2025ApiGetIdentity
|
|
62481
62936
|
*/
|
|
62482
62937
|
readonly id: string;
|
|
62483
|
-
/**
|
|
62484
|
-
* Use this header to enable this experimental API.
|
|
62485
|
-
* @type {string}
|
|
62486
|
-
* @memberof IdentitiesV2025ApiGetIdentity
|
|
62487
|
-
*/
|
|
62488
|
-
readonly xSailPointExperimental?: string;
|
|
62489
62938
|
}
|
|
62490
62939
|
/**
|
|
62491
62940
|
* Request parameters for getIdentityOwnershipDetails operation in IdentitiesV2025Api.
|
|
@@ -62499,12 +62948,6 @@ export interface IdentitiesV2025ApiGetIdentityOwnershipDetailsRequest {
|
|
|
62499
62948
|
* @memberof IdentitiesV2025ApiGetIdentityOwnershipDetails
|
|
62500
62949
|
*/
|
|
62501
62950
|
readonly identityId: string;
|
|
62502
|
-
/**
|
|
62503
|
-
* Use this header to enable this experimental API.
|
|
62504
|
-
* @type {string}
|
|
62505
|
-
* @memberof IdentitiesV2025ApiGetIdentityOwnershipDetails
|
|
62506
|
-
*/
|
|
62507
|
-
readonly xSailPointExperimental?: string;
|
|
62508
62951
|
}
|
|
62509
62952
|
/**
|
|
62510
62953
|
* Request parameters for getRoleAssignment operation in IdentitiesV2025Api.
|
|
@@ -62524,12 +62967,6 @@ export interface IdentitiesV2025ApiGetRoleAssignmentRequest {
|
|
|
62524
62967
|
* @memberof IdentitiesV2025ApiGetRoleAssignment
|
|
62525
62968
|
*/
|
|
62526
62969
|
readonly assignmentId: string;
|
|
62527
|
-
/**
|
|
62528
|
-
* Use this header to enable this experimental API.
|
|
62529
|
-
* @type {string}
|
|
62530
|
-
* @memberof IdentitiesV2025ApiGetRoleAssignment
|
|
62531
|
-
*/
|
|
62532
|
-
readonly xSailPointExperimental?: string;
|
|
62533
62970
|
}
|
|
62534
62971
|
/**
|
|
62535
62972
|
* Request parameters for getRoleAssignments operation in IdentitiesV2025Api.
|
|
@@ -62555,12 +62992,6 @@ export interface IdentitiesV2025ApiGetRoleAssignmentsRequest {
|
|
|
62555
62992
|
* @memberof IdentitiesV2025ApiGetRoleAssignments
|
|
62556
62993
|
*/
|
|
62557
62994
|
readonly roleName?: string;
|
|
62558
|
-
/**
|
|
62559
|
-
* Use this header to enable this experimental API.
|
|
62560
|
-
* @type {string}
|
|
62561
|
-
* @memberof IdentitiesV2025ApiGetRoleAssignments
|
|
62562
|
-
*/
|
|
62563
|
-
readonly xSailPointExperimental?: string;
|
|
62564
62995
|
}
|
|
62565
62996
|
/**
|
|
62566
62997
|
* Request parameters for listIdentities operation in IdentitiesV2025Api.
|
|
@@ -62604,12 +63035,6 @@ export interface IdentitiesV2025ApiListIdentitiesRequest {
|
|
|
62604
63035
|
* @memberof IdentitiesV2025ApiListIdentities
|
|
62605
63036
|
*/
|
|
62606
63037
|
readonly offset?: number;
|
|
62607
|
-
/**
|
|
62608
|
-
* Use this header to enable this experimental API.
|
|
62609
|
-
* @type {string}
|
|
62610
|
-
* @memberof IdentitiesV2025ApiListIdentities
|
|
62611
|
-
*/
|
|
62612
|
-
readonly xSailPointExperimental?: string;
|
|
62613
63038
|
}
|
|
62614
63039
|
/**
|
|
62615
63040
|
* Request parameters for resetIdentity operation in IdentitiesV2025Api.
|
|
@@ -62623,12 +63048,6 @@ export interface IdentitiesV2025ApiResetIdentityRequest {
|
|
|
62623
63048
|
* @memberof IdentitiesV2025ApiResetIdentity
|
|
62624
63049
|
*/
|
|
62625
63050
|
readonly identityId: string;
|
|
62626
|
-
/**
|
|
62627
|
-
* Use this header to enable this experimental API.
|
|
62628
|
-
* @type {string}
|
|
62629
|
-
* @memberof IdentitiesV2025ApiResetIdentity
|
|
62630
|
-
*/
|
|
62631
|
-
readonly xSailPointExperimental?: string;
|
|
62632
63051
|
}
|
|
62633
63052
|
/**
|
|
62634
63053
|
* Request parameters for sendIdentityVerificationAccountToken operation in IdentitiesV2025Api.
|
|
@@ -62667,12 +63086,6 @@ export interface IdentitiesV2025ApiStartIdentitiesInviteRequest {
|
|
|
62667
63086
|
* @memberof IdentitiesV2025ApiStartIdentitiesInvite
|
|
62668
63087
|
*/
|
|
62669
63088
|
readonly inviteIdentitiesRequestV2025: InviteIdentitiesRequestV2025;
|
|
62670
|
-
/**
|
|
62671
|
-
* Use this header to enable this experimental API.
|
|
62672
|
-
* @type {string}
|
|
62673
|
-
* @memberof IdentitiesV2025ApiStartIdentitiesInvite
|
|
62674
|
-
*/
|
|
62675
|
-
readonly xSailPointExperimental?: string;
|
|
62676
63089
|
}
|
|
62677
63090
|
/**
|
|
62678
63091
|
* Request parameters for startIdentityProcessing operation in IdentitiesV2025Api.
|
|
@@ -62835,39 +63248,35 @@ export declare const IdentityAttributesV2025ApiAxiosParamCreator: (configuration
|
|
|
62835
63248
|
/**
|
|
62836
63249
|
* Use this API to create a new identity attribute.
|
|
62837
63250
|
* @summary Create identity attribute
|
|
62838
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
62839
63251
|
* @param {IdentityAttributeV2025} identityAttributeV2025
|
|
62840
63252
|
* @param {*} [axiosOptions] Override http request option.
|
|
62841
63253
|
* @throws {RequiredError}
|
|
62842
63254
|
*/
|
|
62843
|
-
createIdentityAttribute: (
|
|
63255
|
+
createIdentityAttribute: (identityAttributeV2025: IdentityAttributeV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62844
63256
|
/**
|
|
62845
63257
|
* This deletes an identity attribute with the given name. The `system` and `standard` properties must be set to false before you can delete an identity attribute.
|
|
62846
63258
|
* @summary Delete identity attribute
|
|
62847
63259
|
* @param {string} name The attribute\'s technical name.
|
|
62848
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
62849
63260
|
* @param {*} [axiosOptions] Override http request option.
|
|
62850
63261
|
* @throws {RequiredError}
|
|
62851
63262
|
*/
|
|
62852
|
-
deleteIdentityAttribute: (name: string,
|
|
63263
|
+
deleteIdentityAttribute: (name: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62853
63264
|
/**
|
|
62854
63265
|
* Use this API to bulk delete identity attributes for a given set of names. Attributes that are currently mapped in an identity profile cannot be deleted. The `system` and `standard` properties must be set to \'false\' before you can delete an identity attribute.
|
|
62855
63266
|
* @summary Bulk delete identity attributes
|
|
62856
63267
|
* @param {IdentityAttributeNamesV2025} identityAttributeNamesV2025
|
|
62857
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62858
63268
|
* @param {*} [axiosOptions] Override http request option.
|
|
62859
63269
|
* @throws {RequiredError}
|
|
62860
63270
|
*/
|
|
62861
|
-
deleteIdentityAttributesInBulk: (identityAttributeNamesV2025: IdentityAttributeNamesV2025,
|
|
63271
|
+
deleteIdentityAttributesInBulk: (identityAttributeNamesV2025: IdentityAttributeNamesV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62862
63272
|
/**
|
|
62863
63273
|
* This gets an identity attribute for a given technical name.
|
|
62864
63274
|
* @summary Get identity attribute
|
|
62865
63275
|
* @param {string} name The attribute\'s technical name.
|
|
62866
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62867
63276
|
* @param {*} [axiosOptions] Override http request option.
|
|
62868
63277
|
* @throws {RequiredError}
|
|
62869
63278
|
*/
|
|
62870
|
-
getIdentityAttribute: (name: string,
|
|
63279
|
+
getIdentityAttribute: (name: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62871
63280
|
/**
|
|
62872
63281
|
* Use this API to get a collection of identity attributes.
|
|
62873
63282
|
* @summary List identity attributes
|
|
@@ -62875,21 +63284,19 @@ export declare const IdentityAttributesV2025ApiAxiosParamCreator: (configuration
|
|
|
62875
63284
|
* @param {boolean} [includeSilent] Include \'silent\' attributes in the response.
|
|
62876
63285
|
* @param {boolean} [searchableOnly] Include only \'searchable\' attributes in the response.
|
|
62877
63286
|
* @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.
|
|
62878
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62879
63287
|
* @param {*} [axiosOptions] Override http request option.
|
|
62880
63288
|
* @throws {RequiredError}
|
|
62881
63289
|
*/
|
|
62882
|
-
listIdentityAttributes: (includeSystem?: boolean, includeSilent?: boolean, searchableOnly?: boolean, count?: boolean,
|
|
63290
|
+
listIdentityAttributes: (includeSystem?: boolean, includeSilent?: boolean, searchableOnly?: boolean, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62883
63291
|
/**
|
|
62884
63292
|
* This updates an existing identity attribute. Making an attribute searchable requires that the `system`, `standard`, and `multi` properties be set to false.
|
|
62885
63293
|
* @summary Update identity attribute
|
|
62886
63294
|
* @param {string} name The attribute\'s technical name.
|
|
62887
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
62888
63295
|
* @param {IdentityAttributeV2025} identityAttributeV2025
|
|
62889
63296
|
* @param {*} [axiosOptions] Override http request option.
|
|
62890
63297
|
* @throws {RequiredError}
|
|
62891
63298
|
*/
|
|
62892
|
-
putIdentityAttribute: (name: string,
|
|
63299
|
+
putIdentityAttribute: (name: string, identityAttributeV2025: IdentityAttributeV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62893
63300
|
};
|
|
62894
63301
|
/**
|
|
62895
63302
|
* IdentityAttributesV2025Api - functional programming interface
|
|
@@ -62899,39 +63306,35 @@ export declare const IdentityAttributesV2025ApiFp: (configuration?: Configuratio
|
|
|
62899
63306
|
/**
|
|
62900
63307
|
* Use this API to create a new identity attribute.
|
|
62901
63308
|
* @summary Create identity attribute
|
|
62902
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
62903
63309
|
* @param {IdentityAttributeV2025} identityAttributeV2025
|
|
62904
63310
|
* @param {*} [axiosOptions] Override http request option.
|
|
62905
63311
|
* @throws {RequiredError}
|
|
62906
63312
|
*/
|
|
62907
|
-
createIdentityAttribute(
|
|
63313
|
+
createIdentityAttribute(identityAttributeV2025: IdentityAttributeV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityAttributeV2025>>;
|
|
62908
63314
|
/**
|
|
62909
63315
|
* This deletes an identity attribute with the given name. The `system` and `standard` properties must be set to false before you can delete an identity attribute.
|
|
62910
63316
|
* @summary Delete identity attribute
|
|
62911
63317
|
* @param {string} name The attribute\'s technical name.
|
|
62912
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
62913
63318
|
* @param {*} [axiosOptions] Override http request option.
|
|
62914
63319
|
* @throws {RequiredError}
|
|
62915
63320
|
*/
|
|
62916
|
-
deleteIdentityAttribute(name: string,
|
|
63321
|
+
deleteIdentityAttribute(name: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
62917
63322
|
/**
|
|
62918
63323
|
* Use this API to bulk delete identity attributes for a given set of names. Attributes that are currently mapped in an identity profile cannot be deleted. The `system` and `standard` properties must be set to \'false\' before you can delete an identity attribute.
|
|
62919
63324
|
* @summary Bulk delete identity attributes
|
|
62920
63325
|
* @param {IdentityAttributeNamesV2025} identityAttributeNamesV2025
|
|
62921
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62922
63326
|
* @param {*} [axiosOptions] Override http request option.
|
|
62923
63327
|
* @throws {RequiredError}
|
|
62924
63328
|
*/
|
|
62925
|
-
deleteIdentityAttributesInBulk(identityAttributeNamesV2025: IdentityAttributeNamesV2025,
|
|
63329
|
+
deleteIdentityAttributesInBulk(identityAttributeNamesV2025: IdentityAttributeNamesV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
62926
63330
|
/**
|
|
62927
63331
|
* This gets an identity attribute for a given technical name.
|
|
62928
63332
|
* @summary Get identity attribute
|
|
62929
63333
|
* @param {string} name The attribute\'s technical name.
|
|
62930
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62931
63334
|
* @param {*} [axiosOptions] Override http request option.
|
|
62932
63335
|
* @throws {RequiredError}
|
|
62933
63336
|
*/
|
|
62934
|
-
getIdentityAttribute(name: string,
|
|
63337
|
+
getIdentityAttribute(name: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityAttributeV2025>>;
|
|
62935
63338
|
/**
|
|
62936
63339
|
* Use this API to get a collection of identity attributes.
|
|
62937
63340
|
* @summary List identity attributes
|
|
@@ -62939,21 +63342,19 @@ export declare const IdentityAttributesV2025ApiFp: (configuration?: Configuratio
|
|
|
62939
63342
|
* @param {boolean} [includeSilent] Include \'silent\' attributes in the response.
|
|
62940
63343
|
* @param {boolean} [searchableOnly] Include only \'searchable\' attributes in the response.
|
|
62941
63344
|
* @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.
|
|
62942
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62943
63345
|
* @param {*} [axiosOptions] Override http request option.
|
|
62944
63346
|
* @throws {RequiredError}
|
|
62945
63347
|
*/
|
|
62946
|
-
listIdentityAttributes(includeSystem?: boolean, includeSilent?: boolean, searchableOnly?: boolean, count?: boolean,
|
|
63348
|
+
listIdentityAttributes(includeSystem?: boolean, includeSilent?: boolean, searchableOnly?: boolean, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IdentityAttributeV2025>>>;
|
|
62947
63349
|
/**
|
|
62948
63350
|
* This updates an existing identity attribute. Making an attribute searchable requires that the `system`, `standard`, and `multi` properties be set to false.
|
|
62949
63351
|
* @summary Update identity attribute
|
|
62950
63352
|
* @param {string} name The attribute\'s technical name.
|
|
62951
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
62952
63353
|
* @param {IdentityAttributeV2025} identityAttributeV2025
|
|
62953
63354
|
* @param {*} [axiosOptions] Override http request option.
|
|
62954
63355
|
* @throws {RequiredError}
|
|
62955
63356
|
*/
|
|
62956
|
-
putIdentityAttribute(name: string,
|
|
63357
|
+
putIdentityAttribute(name: string, identityAttributeV2025: IdentityAttributeV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityAttributeV2025>>;
|
|
62957
63358
|
};
|
|
62958
63359
|
/**
|
|
62959
63360
|
* IdentityAttributesV2025Api - factory interface
|
|
@@ -63015,12 +63416,6 @@ export declare const IdentityAttributesV2025ApiFactory: (configuration?: Configu
|
|
|
63015
63416
|
* @interface IdentityAttributesV2025ApiCreateIdentityAttributeRequest
|
|
63016
63417
|
*/
|
|
63017
63418
|
export interface IdentityAttributesV2025ApiCreateIdentityAttributeRequest {
|
|
63018
|
-
/**
|
|
63019
|
-
* Use this header to enable this experimental API.
|
|
63020
|
-
* @type {string}
|
|
63021
|
-
* @memberof IdentityAttributesV2025ApiCreateIdentityAttribute
|
|
63022
|
-
*/
|
|
63023
|
-
readonly xSailPointExperimental: string;
|
|
63024
63419
|
/**
|
|
63025
63420
|
*
|
|
63026
63421
|
* @type {IdentityAttributeV2025}
|
|
@@ -63040,12 +63435,6 @@ export interface IdentityAttributesV2025ApiDeleteIdentityAttributeRequest {
|
|
|
63040
63435
|
* @memberof IdentityAttributesV2025ApiDeleteIdentityAttribute
|
|
63041
63436
|
*/
|
|
63042
63437
|
readonly name: string;
|
|
63043
|
-
/**
|
|
63044
|
-
* Use this header to enable this experimental API.
|
|
63045
|
-
* @type {string}
|
|
63046
|
-
* @memberof IdentityAttributesV2025ApiDeleteIdentityAttribute
|
|
63047
|
-
*/
|
|
63048
|
-
readonly xSailPointExperimental: string;
|
|
63049
63438
|
}
|
|
63050
63439
|
/**
|
|
63051
63440
|
* Request parameters for deleteIdentityAttributesInBulk operation in IdentityAttributesV2025Api.
|
|
@@ -63059,12 +63448,6 @@ export interface IdentityAttributesV2025ApiDeleteIdentityAttributesInBulkRequest
|
|
|
63059
63448
|
* @memberof IdentityAttributesV2025ApiDeleteIdentityAttributesInBulk
|
|
63060
63449
|
*/
|
|
63061
63450
|
readonly identityAttributeNamesV2025: IdentityAttributeNamesV2025;
|
|
63062
|
-
/**
|
|
63063
|
-
* Use this header to enable this experimental API.
|
|
63064
|
-
* @type {string}
|
|
63065
|
-
* @memberof IdentityAttributesV2025ApiDeleteIdentityAttributesInBulk
|
|
63066
|
-
*/
|
|
63067
|
-
readonly xSailPointExperimental?: string;
|
|
63068
63451
|
}
|
|
63069
63452
|
/**
|
|
63070
63453
|
* Request parameters for getIdentityAttribute operation in IdentityAttributesV2025Api.
|
|
@@ -63078,12 +63461,6 @@ export interface IdentityAttributesV2025ApiGetIdentityAttributeRequest {
|
|
|
63078
63461
|
* @memberof IdentityAttributesV2025ApiGetIdentityAttribute
|
|
63079
63462
|
*/
|
|
63080
63463
|
readonly name: string;
|
|
63081
|
-
/**
|
|
63082
|
-
* Use this header to enable this experimental API.
|
|
63083
|
-
* @type {string}
|
|
63084
|
-
* @memberof IdentityAttributesV2025ApiGetIdentityAttribute
|
|
63085
|
-
*/
|
|
63086
|
-
readonly xSailPointExperimental?: string;
|
|
63087
63464
|
}
|
|
63088
63465
|
/**
|
|
63089
63466
|
* Request parameters for listIdentityAttributes operation in IdentityAttributesV2025Api.
|
|
@@ -63115,12 +63492,6 @@ export interface IdentityAttributesV2025ApiListIdentityAttributesRequest {
|
|
|
63115
63492
|
* @memberof IdentityAttributesV2025ApiListIdentityAttributes
|
|
63116
63493
|
*/
|
|
63117
63494
|
readonly count?: boolean;
|
|
63118
|
-
/**
|
|
63119
|
-
* Use this header to enable this experimental API.
|
|
63120
|
-
* @type {string}
|
|
63121
|
-
* @memberof IdentityAttributesV2025ApiListIdentityAttributes
|
|
63122
|
-
*/
|
|
63123
|
-
readonly xSailPointExperimental?: string;
|
|
63124
63495
|
}
|
|
63125
63496
|
/**
|
|
63126
63497
|
* Request parameters for putIdentityAttribute operation in IdentityAttributesV2025Api.
|
|
@@ -63134,12 +63505,6 @@ export interface IdentityAttributesV2025ApiPutIdentityAttributeRequest {
|
|
|
63134
63505
|
* @memberof IdentityAttributesV2025ApiPutIdentityAttribute
|
|
63135
63506
|
*/
|
|
63136
63507
|
readonly name: string;
|
|
63137
|
-
/**
|
|
63138
|
-
* Use this header to enable this experimental API.
|
|
63139
|
-
* @type {string}
|
|
63140
|
-
* @memberof IdentityAttributesV2025ApiPutIdentityAttribute
|
|
63141
|
-
*/
|
|
63142
|
-
readonly xSailPointExperimental: string;
|
|
63143
63508
|
/**
|
|
63144
63509
|
*
|
|
63145
63510
|
* @type {IdentityAttributeV2025}
|
|
@@ -65500,6 +65865,338 @@ export declare const TestMFAConfigMethodV2025: {
|
|
|
65500
65865
|
readonly DuoWeb: "duo-web";
|
|
65501
65866
|
};
|
|
65502
65867
|
export type TestMFAConfigMethodV2025 = typeof TestMFAConfigMethodV2025[keyof typeof TestMFAConfigMethodV2025];
|
|
65868
|
+
/**
|
|
65869
|
+
* MachineAccountClassifyV2025Api - axios parameter creator
|
|
65870
|
+
* @export
|
|
65871
|
+
*/
|
|
65872
|
+
export declare const MachineAccountClassifyV2025ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
65873
|
+
/**
|
|
65874
|
+
* Use this API to classify a single machine account. A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
65875
|
+
* @summary Classify a Single Machine Account
|
|
65876
|
+
* @param {string} id Account ID.
|
|
65877
|
+
* @param {SendClassifyMachineAccountClassificationModeV2025} [classificationMode] Specifies how the accounts should be classified. default - uses criteria to classify account as machine or human, excludes accounts that were manually classified. ignoreManual - like default, but includes accounts that were manually classified. forceMachine - forces account to be classified as machine. forceHuman - forces account to be classified as human.
|
|
65878
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65879
|
+
* @throws {RequiredError}
|
|
65880
|
+
*/
|
|
65881
|
+
sendClassifyMachineAccount: (id: string, classificationMode?: SendClassifyMachineAccountClassificationModeV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65882
|
+
};
|
|
65883
|
+
/**
|
|
65884
|
+
* MachineAccountClassifyV2025Api - functional programming interface
|
|
65885
|
+
* @export
|
|
65886
|
+
*/
|
|
65887
|
+
export declare const MachineAccountClassifyV2025ApiFp: (configuration?: Configuration) => {
|
|
65888
|
+
/**
|
|
65889
|
+
* Use this API to classify a single machine account. A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
65890
|
+
* @summary Classify a Single Machine Account
|
|
65891
|
+
* @param {string} id Account ID.
|
|
65892
|
+
* @param {SendClassifyMachineAccountClassificationModeV2025} [classificationMode] Specifies how the accounts should be classified. default - uses criteria to classify account as machine or human, excludes accounts that were manually classified. ignoreManual - like default, but includes accounts that were manually classified. forceMachine - forces account to be classified as machine. forceHuman - forces account to be classified as human.
|
|
65893
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65894
|
+
* @throws {RequiredError}
|
|
65895
|
+
*/
|
|
65896
|
+
sendClassifyMachineAccount(id: string, classificationMode?: SendClassifyMachineAccountClassificationModeV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SendClassifyMachineAccount200ResponseV2025>>;
|
|
65897
|
+
};
|
|
65898
|
+
/**
|
|
65899
|
+
* MachineAccountClassifyV2025Api - factory interface
|
|
65900
|
+
* @export
|
|
65901
|
+
*/
|
|
65902
|
+
export declare const MachineAccountClassifyV2025ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
65903
|
+
/**
|
|
65904
|
+
* Use this API to classify a single machine account. A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
65905
|
+
* @summary Classify a Single Machine Account
|
|
65906
|
+
* @param {MachineAccountClassifyV2025ApiSendClassifyMachineAccountRequest} requestParameters Request parameters.
|
|
65907
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65908
|
+
* @throws {RequiredError}
|
|
65909
|
+
*/
|
|
65910
|
+
sendClassifyMachineAccount(requestParameters: MachineAccountClassifyV2025ApiSendClassifyMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SendClassifyMachineAccount200ResponseV2025>;
|
|
65911
|
+
};
|
|
65912
|
+
/**
|
|
65913
|
+
* Request parameters for sendClassifyMachineAccount operation in MachineAccountClassifyV2025Api.
|
|
65914
|
+
* @export
|
|
65915
|
+
* @interface MachineAccountClassifyV2025ApiSendClassifyMachineAccountRequest
|
|
65916
|
+
*/
|
|
65917
|
+
export interface MachineAccountClassifyV2025ApiSendClassifyMachineAccountRequest {
|
|
65918
|
+
/**
|
|
65919
|
+
* Account ID.
|
|
65920
|
+
* @type {string}
|
|
65921
|
+
* @memberof MachineAccountClassifyV2025ApiSendClassifyMachineAccount
|
|
65922
|
+
*/
|
|
65923
|
+
readonly id: string;
|
|
65924
|
+
/**
|
|
65925
|
+
* Specifies how the accounts should be classified. default - uses criteria to classify account as machine or human, excludes accounts that were manually classified. ignoreManual - like default, but includes accounts that were manually classified. forceMachine - forces account to be classified as machine. forceHuman - forces account to be classified as human.
|
|
65926
|
+
* @type {'default' | 'ignoreManual' | 'forceMachine' | 'forceHuman'}
|
|
65927
|
+
* @memberof MachineAccountClassifyV2025ApiSendClassifyMachineAccount
|
|
65928
|
+
*/
|
|
65929
|
+
readonly classificationMode?: SendClassifyMachineAccountClassificationModeV2025;
|
|
65930
|
+
}
|
|
65931
|
+
/**
|
|
65932
|
+
* MachineAccountClassifyV2025Api - object-oriented interface
|
|
65933
|
+
* @export
|
|
65934
|
+
* @class MachineAccountClassifyV2025Api
|
|
65935
|
+
* @extends {BaseAPI}
|
|
65936
|
+
*/
|
|
65937
|
+
export declare class MachineAccountClassifyV2025Api extends BaseAPI {
|
|
65938
|
+
/**
|
|
65939
|
+
* Use this API to classify a single machine account. A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
65940
|
+
* @summary Classify a Single Machine Account
|
|
65941
|
+
* @param {MachineAccountClassifyV2025ApiSendClassifyMachineAccountRequest} requestParameters Request parameters.
|
|
65942
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65943
|
+
* @throws {RequiredError}
|
|
65944
|
+
* @memberof MachineAccountClassifyV2025Api
|
|
65945
|
+
*/
|
|
65946
|
+
sendClassifyMachineAccount(requestParameters: MachineAccountClassifyV2025ApiSendClassifyMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SendClassifyMachineAccount200ResponseV2025, any>>;
|
|
65947
|
+
}
|
|
65948
|
+
/**
|
|
65949
|
+
* @export
|
|
65950
|
+
*/
|
|
65951
|
+
export declare const SendClassifyMachineAccountClassificationModeV2025: {
|
|
65952
|
+
readonly Default: "default";
|
|
65953
|
+
readonly IgnoreManual: "ignoreManual";
|
|
65954
|
+
readonly ForceMachine: "forceMachine";
|
|
65955
|
+
readonly ForceHuman: "forceHuman";
|
|
65956
|
+
};
|
|
65957
|
+
export type SendClassifyMachineAccountClassificationModeV2025 = typeof SendClassifyMachineAccountClassificationModeV2025[keyof typeof SendClassifyMachineAccountClassificationModeV2025];
|
|
65958
|
+
/**
|
|
65959
|
+
* MachineAccountMappingsV2025Api - axios parameter creator
|
|
65960
|
+
* @export
|
|
65961
|
+
*/
|
|
65962
|
+
export declare const MachineAccountMappingsV2025ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
65963
|
+
/**
|
|
65964
|
+
* Creates Machine Account Mappings for both identities and accounts for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
65965
|
+
* @summary Create machine account mappings
|
|
65966
|
+
* @param {string} id Source ID.
|
|
65967
|
+
* @param {AttributeMappingsV2025} attributeMappingsV2025
|
|
65968
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65969
|
+
* @throws {RequiredError}
|
|
65970
|
+
*/
|
|
65971
|
+
createMachineAccountMappings: (id: string, attributeMappingsV2025: AttributeMappingsV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65972
|
+
/**
|
|
65973
|
+
* Use this API to remove machine account attribute mappings for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
65974
|
+
* @summary Delete source\'s machine account mappings
|
|
65975
|
+
* @param {string} id source ID.
|
|
65976
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65977
|
+
* @throws {RequiredError}
|
|
65978
|
+
*/
|
|
65979
|
+
deleteMachineAccountMappings: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65980
|
+
/**
|
|
65981
|
+
* Retrieves Machine account mappings for a specified source using Source ID.
|
|
65982
|
+
* @summary Machine account mapping for source
|
|
65983
|
+
* @param {string} id Source ID
|
|
65984
|
+
* @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.
|
|
65985
|
+
* @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.
|
|
65986
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65987
|
+
* @throws {RequiredError}
|
|
65988
|
+
*/
|
|
65989
|
+
listMachineAccountMappings: (id: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65990
|
+
/**
|
|
65991
|
+
* Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
65992
|
+
* @summary Update Source\'s Machine Account Mappings
|
|
65993
|
+
* @param {string} id Source ID.
|
|
65994
|
+
* @param {AttributeMappingsV2025} attributeMappingsV2025
|
|
65995
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65996
|
+
* @throws {RequiredError}
|
|
65997
|
+
*/
|
|
65998
|
+
setMachineAccountMappings: (id: string, attributeMappingsV2025: AttributeMappingsV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65999
|
+
};
|
|
66000
|
+
/**
|
|
66001
|
+
* MachineAccountMappingsV2025Api - functional programming interface
|
|
66002
|
+
* @export
|
|
66003
|
+
*/
|
|
66004
|
+
export declare const MachineAccountMappingsV2025ApiFp: (configuration?: Configuration) => {
|
|
66005
|
+
/**
|
|
66006
|
+
* Creates Machine Account Mappings for both identities and accounts for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
66007
|
+
* @summary Create machine account mappings
|
|
66008
|
+
* @param {string} id Source ID.
|
|
66009
|
+
* @param {AttributeMappingsV2025} attributeMappingsV2025
|
|
66010
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66011
|
+
* @throws {RequiredError}
|
|
66012
|
+
*/
|
|
66013
|
+
createMachineAccountMappings(id: string, attributeMappingsV2025: AttributeMappingsV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeMappingsV2025>>>;
|
|
66014
|
+
/**
|
|
66015
|
+
* Use this API to remove machine account attribute mappings for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
66016
|
+
* @summary Delete source\'s machine account mappings
|
|
66017
|
+
* @param {string} id source ID.
|
|
66018
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66019
|
+
* @throws {RequiredError}
|
|
66020
|
+
*/
|
|
66021
|
+
deleteMachineAccountMappings(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
66022
|
+
/**
|
|
66023
|
+
* Retrieves Machine account mappings for a specified source using Source ID.
|
|
66024
|
+
* @summary Machine account mapping for source
|
|
66025
|
+
* @param {string} id Source ID
|
|
66026
|
+
* @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.
|
|
66027
|
+
* @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.
|
|
66028
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66029
|
+
* @throws {RequiredError}
|
|
66030
|
+
*/
|
|
66031
|
+
listMachineAccountMappings(id: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeMappingsV2025>>>;
|
|
66032
|
+
/**
|
|
66033
|
+
* Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
66034
|
+
* @summary Update Source\'s Machine Account Mappings
|
|
66035
|
+
* @param {string} id Source ID.
|
|
66036
|
+
* @param {AttributeMappingsV2025} attributeMappingsV2025
|
|
66037
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66038
|
+
* @throws {RequiredError}
|
|
66039
|
+
*/
|
|
66040
|
+
setMachineAccountMappings(id: string, attributeMappingsV2025: AttributeMappingsV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeMappingsV2025>>>;
|
|
66041
|
+
};
|
|
66042
|
+
/**
|
|
66043
|
+
* MachineAccountMappingsV2025Api - factory interface
|
|
66044
|
+
* @export
|
|
66045
|
+
*/
|
|
66046
|
+
export declare const MachineAccountMappingsV2025ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
66047
|
+
/**
|
|
66048
|
+
* Creates Machine Account Mappings for both identities and accounts for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
66049
|
+
* @summary Create machine account mappings
|
|
66050
|
+
* @param {MachineAccountMappingsV2025ApiCreateMachineAccountMappingsRequest} requestParameters Request parameters.
|
|
66051
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66052
|
+
* @throws {RequiredError}
|
|
66053
|
+
*/
|
|
66054
|
+
createMachineAccountMappings(requestParameters: MachineAccountMappingsV2025ApiCreateMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeMappingsV2025>>;
|
|
66055
|
+
/**
|
|
66056
|
+
* Use this API to remove machine account attribute mappings for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
66057
|
+
* @summary Delete source\'s machine account mappings
|
|
66058
|
+
* @param {MachineAccountMappingsV2025ApiDeleteMachineAccountMappingsRequest} requestParameters Request parameters.
|
|
66059
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66060
|
+
* @throws {RequiredError}
|
|
66061
|
+
*/
|
|
66062
|
+
deleteMachineAccountMappings(requestParameters: MachineAccountMappingsV2025ApiDeleteMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
66063
|
+
/**
|
|
66064
|
+
* Retrieves Machine account mappings for a specified source using Source ID.
|
|
66065
|
+
* @summary Machine account mapping for source
|
|
66066
|
+
* @param {MachineAccountMappingsV2025ApiListMachineAccountMappingsRequest} requestParameters Request parameters.
|
|
66067
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66068
|
+
* @throws {RequiredError}
|
|
66069
|
+
*/
|
|
66070
|
+
listMachineAccountMappings(requestParameters: MachineAccountMappingsV2025ApiListMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeMappingsV2025>>;
|
|
66071
|
+
/**
|
|
66072
|
+
* Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
66073
|
+
* @summary Update Source\'s Machine Account Mappings
|
|
66074
|
+
* @param {MachineAccountMappingsV2025ApiSetMachineAccountMappingsRequest} requestParameters Request parameters.
|
|
66075
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66076
|
+
* @throws {RequiredError}
|
|
66077
|
+
*/
|
|
66078
|
+
setMachineAccountMappings(requestParameters: MachineAccountMappingsV2025ApiSetMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeMappingsV2025>>;
|
|
66079
|
+
};
|
|
66080
|
+
/**
|
|
66081
|
+
* Request parameters for createMachineAccountMappings operation in MachineAccountMappingsV2025Api.
|
|
66082
|
+
* @export
|
|
66083
|
+
* @interface MachineAccountMappingsV2025ApiCreateMachineAccountMappingsRequest
|
|
66084
|
+
*/
|
|
66085
|
+
export interface MachineAccountMappingsV2025ApiCreateMachineAccountMappingsRequest {
|
|
66086
|
+
/**
|
|
66087
|
+
* Source ID.
|
|
66088
|
+
* @type {string}
|
|
66089
|
+
* @memberof MachineAccountMappingsV2025ApiCreateMachineAccountMappings
|
|
66090
|
+
*/
|
|
66091
|
+
readonly id: string;
|
|
66092
|
+
/**
|
|
66093
|
+
*
|
|
66094
|
+
* @type {AttributeMappingsV2025}
|
|
66095
|
+
* @memberof MachineAccountMappingsV2025ApiCreateMachineAccountMappings
|
|
66096
|
+
*/
|
|
66097
|
+
readonly attributeMappingsV2025: AttributeMappingsV2025;
|
|
66098
|
+
}
|
|
66099
|
+
/**
|
|
66100
|
+
* Request parameters for deleteMachineAccountMappings operation in MachineAccountMappingsV2025Api.
|
|
66101
|
+
* @export
|
|
66102
|
+
* @interface MachineAccountMappingsV2025ApiDeleteMachineAccountMappingsRequest
|
|
66103
|
+
*/
|
|
66104
|
+
export interface MachineAccountMappingsV2025ApiDeleteMachineAccountMappingsRequest {
|
|
66105
|
+
/**
|
|
66106
|
+
* source ID.
|
|
66107
|
+
* @type {string}
|
|
66108
|
+
* @memberof MachineAccountMappingsV2025ApiDeleteMachineAccountMappings
|
|
66109
|
+
*/
|
|
66110
|
+
readonly id: string;
|
|
66111
|
+
}
|
|
66112
|
+
/**
|
|
66113
|
+
* Request parameters for listMachineAccountMappings operation in MachineAccountMappingsV2025Api.
|
|
66114
|
+
* @export
|
|
66115
|
+
* @interface MachineAccountMappingsV2025ApiListMachineAccountMappingsRequest
|
|
66116
|
+
*/
|
|
66117
|
+
export interface MachineAccountMappingsV2025ApiListMachineAccountMappingsRequest {
|
|
66118
|
+
/**
|
|
66119
|
+
* Source ID
|
|
66120
|
+
* @type {string}
|
|
66121
|
+
* @memberof MachineAccountMappingsV2025ApiListMachineAccountMappings
|
|
66122
|
+
*/
|
|
66123
|
+
readonly id: string;
|
|
66124
|
+
/**
|
|
66125
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
66126
|
+
* @type {number}
|
|
66127
|
+
* @memberof MachineAccountMappingsV2025ApiListMachineAccountMappings
|
|
66128
|
+
*/
|
|
66129
|
+
readonly limit?: number;
|
|
66130
|
+
/**
|
|
66131
|
+
* 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.
|
|
66132
|
+
* @type {number}
|
|
66133
|
+
* @memberof MachineAccountMappingsV2025ApiListMachineAccountMappings
|
|
66134
|
+
*/
|
|
66135
|
+
readonly offset?: number;
|
|
66136
|
+
}
|
|
66137
|
+
/**
|
|
66138
|
+
* Request parameters for setMachineAccountMappings operation in MachineAccountMappingsV2025Api.
|
|
66139
|
+
* @export
|
|
66140
|
+
* @interface MachineAccountMappingsV2025ApiSetMachineAccountMappingsRequest
|
|
66141
|
+
*/
|
|
66142
|
+
export interface MachineAccountMappingsV2025ApiSetMachineAccountMappingsRequest {
|
|
66143
|
+
/**
|
|
66144
|
+
* Source ID.
|
|
66145
|
+
* @type {string}
|
|
66146
|
+
* @memberof MachineAccountMappingsV2025ApiSetMachineAccountMappings
|
|
66147
|
+
*/
|
|
66148
|
+
readonly id: string;
|
|
66149
|
+
/**
|
|
66150
|
+
*
|
|
66151
|
+
* @type {AttributeMappingsV2025}
|
|
66152
|
+
* @memberof MachineAccountMappingsV2025ApiSetMachineAccountMappings
|
|
66153
|
+
*/
|
|
66154
|
+
readonly attributeMappingsV2025: AttributeMappingsV2025;
|
|
66155
|
+
}
|
|
66156
|
+
/**
|
|
66157
|
+
* MachineAccountMappingsV2025Api - object-oriented interface
|
|
66158
|
+
* @export
|
|
66159
|
+
* @class MachineAccountMappingsV2025Api
|
|
66160
|
+
* @extends {BaseAPI}
|
|
66161
|
+
*/
|
|
66162
|
+
export declare class MachineAccountMappingsV2025Api extends BaseAPI {
|
|
66163
|
+
/**
|
|
66164
|
+
* Creates Machine Account Mappings for both identities and accounts for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
66165
|
+
* @summary Create machine account mappings
|
|
66166
|
+
* @param {MachineAccountMappingsV2025ApiCreateMachineAccountMappingsRequest} requestParameters Request parameters.
|
|
66167
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66168
|
+
* @throws {RequiredError}
|
|
66169
|
+
* @memberof MachineAccountMappingsV2025Api
|
|
66170
|
+
*/
|
|
66171
|
+
createMachineAccountMappings(requestParameters: MachineAccountMappingsV2025ApiCreateMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeMappingsV2025[], any>>;
|
|
66172
|
+
/**
|
|
66173
|
+
* Use this API to remove machine account attribute mappings for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
66174
|
+
* @summary Delete source\'s machine account mappings
|
|
66175
|
+
* @param {MachineAccountMappingsV2025ApiDeleteMachineAccountMappingsRequest} requestParameters Request parameters.
|
|
66176
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66177
|
+
* @throws {RequiredError}
|
|
66178
|
+
* @memberof MachineAccountMappingsV2025Api
|
|
66179
|
+
*/
|
|
66180
|
+
deleteMachineAccountMappings(requestParameters: MachineAccountMappingsV2025ApiDeleteMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
66181
|
+
/**
|
|
66182
|
+
* Retrieves Machine account mappings for a specified source using Source ID.
|
|
66183
|
+
* @summary Machine account mapping for source
|
|
66184
|
+
* @param {MachineAccountMappingsV2025ApiListMachineAccountMappingsRequest} requestParameters Request parameters.
|
|
66185
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66186
|
+
* @throws {RequiredError}
|
|
66187
|
+
* @memberof MachineAccountMappingsV2025Api
|
|
66188
|
+
*/
|
|
66189
|
+
listMachineAccountMappings(requestParameters: MachineAccountMappingsV2025ApiListMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeMappingsV2025[], any>>;
|
|
66190
|
+
/**
|
|
66191
|
+
* Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
66192
|
+
* @summary Update Source\'s Machine Account Mappings
|
|
66193
|
+
* @param {MachineAccountMappingsV2025ApiSetMachineAccountMappingsRequest} requestParameters Request parameters.
|
|
66194
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66195
|
+
* @throws {RequiredError}
|
|
66196
|
+
* @memberof MachineAccountMappingsV2025Api
|
|
66197
|
+
*/
|
|
66198
|
+
setMachineAccountMappings(requestParameters: MachineAccountMappingsV2025ApiSetMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeMappingsV2025[], any>>;
|
|
66199
|
+
}
|
|
65503
66200
|
/**
|
|
65504
66201
|
* MachineAccountsV2025Api - axios parameter creator
|
|
65505
66202
|
* @export
|
|
@@ -65728,6 +66425,178 @@ export declare class MachineAccountsV2025Api extends BaseAPI {
|
|
|
65728
66425
|
*/
|
|
65729
66426
|
updateMachineAccount(requestParameters: MachineAccountsV2025ApiUpdateMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountV2025, any>>;
|
|
65730
66427
|
}
|
|
66428
|
+
/**
|
|
66429
|
+
* MachineClassificationConfigV2025Api - axios parameter creator
|
|
66430
|
+
* @export
|
|
66431
|
+
*/
|
|
66432
|
+
export declare const MachineClassificationConfigV2025ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
66433
|
+
/**
|
|
66434
|
+
* Use this API to remove Classification Config for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
66435
|
+
* @summary Delete source\'s classification config
|
|
66436
|
+
* @param {string} id Source ID.
|
|
66437
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66438
|
+
* @throws {RequiredError}
|
|
66439
|
+
*/
|
|
66440
|
+
deleteMachineClassificationConfig: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
66441
|
+
/**
|
|
66442
|
+
* This API returns a Machine Classification Config for a Source using Source ID.
|
|
66443
|
+
* @summary Machine classification config for source
|
|
66444
|
+
* @param {string} id Source ID
|
|
66445
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66446
|
+
* @throws {RequiredError}
|
|
66447
|
+
*/
|
|
66448
|
+
getMachineClassificationConfig: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
66449
|
+
/**
|
|
66450
|
+
* Use this API to update Classification Config for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
66451
|
+
* @summary Update source\'s classification config
|
|
66452
|
+
* @param {string} id Source ID.
|
|
66453
|
+
* @param {MachineClassificationConfigV2025} machineClassificationConfigV2025
|
|
66454
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66455
|
+
* @throws {RequiredError}
|
|
66456
|
+
*/
|
|
66457
|
+
setMachineClassificationConfig: (id: string, machineClassificationConfigV2025: MachineClassificationConfigV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
66458
|
+
};
|
|
66459
|
+
/**
|
|
66460
|
+
* MachineClassificationConfigV2025Api - functional programming interface
|
|
66461
|
+
* @export
|
|
66462
|
+
*/
|
|
66463
|
+
export declare const MachineClassificationConfigV2025ApiFp: (configuration?: Configuration) => {
|
|
66464
|
+
/**
|
|
66465
|
+
* Use this API to remove Classification Config for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
66466
|
+
* @summary Delete source\'s classification config
|
|
66467
|
+
* @param {string} id Source ID.
|
|
66468
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66469
|
+
* @throws {RequiredError}
|
|
66470
|
+
*/
|
|
66471
|
+
deleteMachineClassificationConfig(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
66472
|
+
/**
|
|
66473
|
+
* This API returns a Machine Classification Config for a Source using Source ID.
|
|
66474
|
+
* @summary Machine classification config for source
|
|
66475
|
+
* @param {string} id Source ID
|
|
66476
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66477
|
+
* @throws {RequiredError}
|
|
66478
|
+
*/
|
|
66479
|
+
getMachineClassificationConfig(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineClassificationConfigV2025>>;
|
|
66480
|
+
/**
|
|
66481
|
+
* Use this API to update Classification Config for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
66482
|
+
* @summary Update source\'s classification config
|
|
66483
|
+
* @param {string} id Source ID.
|
|
66484
|
+
* @param {MachineClassificationConfigV2025} machineClassificationConfigV2025
|
|
66485
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66486
|
+
* @throws {RequiredError}
|
|
66487
|
+
*/
|
|
66488
|
+
setMachineClassificationConfig(id: string, machineClassificationConfigV2025: MachineClassificationConfigV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineClassificationConfigV2025>>;
|
|
66489
|
+
};
|
|
66490
|
+
/**
|
|
66491
|
+
* MachineClassificationConfigV2025Api - factory interface
|
|
66492
|
+
* @export
|
|
66493
|
+
*/
|
|
66494
|
+
export declare const MachineClassificationConfigV2025ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
66495
|
+
/**
|
|
66496
|
+
* Use this API to remove Classification Config for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
66497
|
+
* @summary Delete source\'s classification config
|
|
66498
|
+
* @param {MachineClassificationConfigV2025ApiDeleteMachineClassificationConfigRequest} requestParameters Request parameters.
|
|
66499
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66500
|
+
* @throws {RequiredError}
|
|
66501
|
+
*/
|
|
66502
|
+
deleteMachineClassificationConfig(requestParameters: MachineClassificationConfigV2025ApiDeleteMachineClassificationConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
66503
|
+
/**
|
|
66504
|
+
* This API returns a Machine Classification Config for a Source using Source ID.
|
|
66505
|
+
* @summary Machine classification config for source
|
|
66506
|
+
* @param {MachineClassificationConfigV2025ApiGetMachineClassificationConfigRequest} requestParameters Request parameters.
|
|
66507
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66508
|
+
* @throws {RequiredError}
|
|
66509
|
+
*/
|
|
66510
|
+
getMachineClassificationConfig(requestParameters: MachineClassificationConfigV2025ApiGetMachineClassificationConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineClassificationConfigV2025>;
|
|
66511
|
+
/**
|
|
66512
|
+
* Use this API to update Classification Config for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
66513
|
+
* @summary Update source\'s classification config
|
|
66514
|
+
* @param {MachineClassificationConfigV2025ApiSetMachineClassificationConfigRequest} requestParameters Request parameters.
|
|
66515
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66516
|
+
* @throws {RequiredError}
|
|
66517
|
+
*/
|
|
66518
|
+
setMachineClassificationConfig(requestParameters: MachineClassificationConfigV2025ApiSetMachineClassificationConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineClassificationConfigV2025>;
|
|
66519
|
+
};
|
|
66520
|
+
/**
|
|
66521
|
+
* Request parameters for deleteMachineClassificationConfig operation in MachineClassificationConfigV2025Api.
|
|
66522
|
+
* @export
|
|
66523
|
+
* @interface MachineClassificationConfigV2025ApiDeleteMachineClassificationConfigRequest
|
|
66524
|
+
*/
|
|
66525
|
+
export interface MachineClassificationConfigV2025ApiDeleteMachineClassificationConfigRequest {
|
|
66526
|
+
/**
|
|
66527
|
+
* Source ID.
|
|
66528
|
+
* @type {string}
|
|
66529
|
+
* @memberof MachineClassificationConfigV2025ApiDeleteMachineClassificationConfig
|
|
66530
|
+
*/
|
|
66531
|
+
readonly id: string;
|
|
66532
|
+
}
|
|
66533
|
+
/**
|
|
66534
|
+
* Request parameters for getMachineClassificationConfig operation in MachineClassificationConfigV2025Api.
|
|
66535
|
+
* @export
|
|
66536
|
+
* @interface MachineClassificationConfigV2025ApiGetMachineClassificationConfigRequest
|
|
66537
|
+
*/
|
|
66538
|
+
export interface MachineClassificationConfigV2025ApiGetMachineClassificationConfigRequest {
|
|
66539
|
+
/**
|
|
66540
|
+
* Source ID
|
|
66541
|
+
* @type {string}
|
|
66542
|
+
* @memberof MachineClassificationConfigV2025ApiGetMachineClassificationConfig
|
|
66543
|
+
*/
|
|
66544
|
+
readonly id: string;
|
|
66545
|
+
}
|
|
66546
|
+
/**
|
|
66547
|
+
* Request parameters for setMachineClassificationConfig operation in MachineClassificationConfigV2025Api.
|
|
66548
|
+
* @export
|
|
66549
|
+
* @interface MachineClassificationConfigV2025ApiSetMachineClassificationConfigRequest
|
|
66550
|
+
*/
|
|
66551
|
+
export interface MachineClassificationConfigV2025ApiSetMachineClassificationConfigRequest {
|
|
66552
|
+
/**
|
|
66553
|
+
* Source ID.
|
|
66554
|
+
* @type {string}
|
|
66555
|
+
* @memberof MachineClassificationConfigV2025ApiSetMachineClassificationConfig
|
|
66556
|
+
*/
|
|
66557
|
+
readonly id: string;
|
|
66558
|
+
/**
|
|
66559
|
+
*
|
|
66560
|
+
* @type {MachineClassificationConfigV2025}
|
|
66561
|
+
* @memberof MachineClassificationConfigV2025ApiSetMachineClassificationConfig
|
|
66562
|
+
*/
|
|
66563
|
+
readonly machineClassificationConfigV2025: MachineClassificationConfigV2025;
|
|
66564
|
+
}
|
|
66565
|
+
/**
|
|
66566
|
+
* MachineClassificationConfigV2025Api - object-oriented interface
|
|
66567
|
+
* @export
|
|
66568
|
+
* @class MachineClassificationConfigV2025Api
|
|
66569
|
+
* @extends {BaseAPI}
|
|
66570
|
+
*/
|
|
66571
|
+
export declare class MachineClassificationConfigV2025Api extends BaseAPI {
|
|
66572
|
+
/**
|
|
66573
|
+
* Use this API to remove Classification Config for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
66574
|
+
* @summary Delete source\'s classification config
|
|
66575
|
+
* @param {MachineClassificationConfigV2025ApiDeleteMachineClassificationConfigRequest} requestParameters Request parameters.
|
|
66576
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66577
|
+
* @throws {RequiredError}
|
|
66578
|
+
* @memberof MachineClassificationConfigV2025Api
|
|
66579
|
+
*/
|
|
66580
|
+
deleteMachineClassificationConfig(requestParameters: MachineClassificationConfigV2025ApiDeleteMachineClassificationConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
66581
|
+
/**
|
|
66582
|
+
* This API returns a Machine Classification Config for a Source using Source ID.
|
|
66583
|
+
* @summary Machine classification config for source
|
|
66584
|
+
* @param {MachineClassificationConfigV2025ApiGetMachineClassificationConfigRequest} requestParameters Request parameters.
|
|
66585
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66586
|
+
* @throws {RequiredError}
|
|
66587
|
+
* @memberof MachineClassificationConfigV2025Api
|
|
66588
|
+
*/
|
|
66589
|
+
getMachineClassificationConfig(requestParameters: MachineClassificationConfigV2025ApiGetMachineClassificationConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineClassificationConfigV2025, any>>;
|
|
66590
|
+
/**
|
|
66591
|
+
* Use this API to update Classification Config for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
66592
|
+
* @summary Update source\'s classification config
|
|
66593
|
+
* @param {MachineClassificationConfigV2025ApiSetMachineClassificationConfigRequest} requestParameters Request parameters.
|
|
66594
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
66595
|
+
* @throws {RequiredError}
|
|
66596
|
+
* @memberof MachineClassificationConfigV2025Api
|
|
66597
|
+
*/
|
|
66598
|
+
setMachineClassificationConfig(requestParameters: MachineClassificationConfigV2025ApiSetMachineClassificationConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineClassificationConfigV2025, any>>;
|
|
66599
|
+
}
|
|
65731
66600
|
/**
|
|
65732
66601
|
* MachineIdentitiesV2025Api - axios parameter creator
|
|
65733
66602
|
* @export
|
|
@@ -65763,7 +66632,7 @@ export declare const MachineIdentitiesV2025ApiAxiosParamCreator: (configuration?
|
|
|
65763
66632
|
/**
|
|
65764
66633
|
* This API returns a list of machine identities.
|
|
65765
66634
|
* @summary List machine identities
|
|
65766
|
-
* @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* **description**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
|
|
66635
|
+
* @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* **description**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq* **subtype**: *eq, in* **owners.primaryIdentity.id**: *eq, in, sw* **owners.primaryIdentity.name**: *eq, in, isnull, pr* **owners.secondaryIdentity.id**: *eq, in, sw* **owners.secondaryIdentity.name**: *eq, in, isnull, pr*
|
|
65767
66636
|
* @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**
|
|
65768
66637
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
65769
66638
|
* @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.
|
|
@@ -65819,7 +66688,7 @@ export declare const MachineIdentitiesV2025ApiFp: (configuration?: Configuration
|
|
|
65819
66688
|
/**
|
|
65820
66689
|
* This API returns a list of machine identities.
|
|
65821
66690
|
* @summary List machine identities
|
|
65822
|
-
* @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* **description**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
|
|
66691
|
+
* @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* **description**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq* **subtype**: *eq, in* **owners.primaryIdentity.id**: *eq, in, sw* **owners.primaryIdentity.name**: *eq, in, isnull, pr* **owners.secondaryIdentity.id**: *eq, in, sw* **owners.secondaryIdentity.name**: *eq, in, isnull, pr*
|
|
65823
66692
|
* @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**
|
|
65824
66693
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
65825
66694
|
* @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.
|
|
@@ -65950,7 +66819,7 @@ export interface MachineIdentitiesV2025ApiGetMachineIdentityRequest {
|
|
|
65950
66819
|
*/
|
|
65951
66820
|
export interface MachineIdentitiesV2025ApiListMachineIdentitiesRequest {
|
|
65952
66821
|
/**
|
|
65953
|
-
* 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* **description**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
|
|
66822
|
+
* 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* **description**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq* **subtype**: *eq, in* **owners.primaryIdentity.id**: *eq, in, sw* **owners.primaryIdentity.name**: *eq, in, isnull, pr* **owners.secondaryIdentity.id**: *eq, in, sw* **owners.secondaryIdentity.name**: *eq, in, isnull, pr*
|
|
65954
66823
|
* @type {string}
|
|
65955
66824
|
* @memberof MachineIdentitiesV2025ApiListMachineIdentities
|
|
65956
66825
|
*/
|
|
@@ -72693,7 +73562,7 @@ export declare const RequestableObjectsV2025ApiAxiosParamCreator: (configuration
|
|
|
72693
73562
|
* Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v2024/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. Any authenticated token can call this endpoint to see their requestable access items.
|
|
72694
73563
|
* @summary Requestable objects list
|
|
72695
73564
|
* @param {string} [identityId] If present, the value returns only requestable objects for the specified identity. * Admin users can call this with any identity ID value. * Non-admin users can only specify *me* or pass their own identity ID value. * If absent, returns a list of all requestable objects for the tenant. Only admin users can make such a call. In this case, the available, pending, assigned accesses will not be annotated in the result.
|
|
72696
|
-
* @param {Array<
|
|
73565
|
+
* @param {Array<ListRequestableObjectsTypesV2025>} [types] Filters the results to the specified type/types, where each type is one of `ROLE` or `ACCESS_PROFILE`. If absent, all types are returned. SailPoint may add support for additional types in the future without notice.
|
|
72697
73566
|
* @param {string} [term] Allows searching requestable access items with a partial match on the name or description. If `term` is provided, then the API will ignore the `filter` query parameter.
|
|
72698
73567
|
* @param {Array<RequestableObjectRequestStatusV2025>} [statuses] Filters the result to the specified status/statuses, where each status is one of `AVAILABLE`, `ASSIGNED`, or `PENDING`. Specifying this parameter without also specifying an `identity-id` parameter results in an error. SailPoint may add additional statuses in the future without notice.
|
|
72699
73568
|
* @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.
|
|
@@ -72704,7 +73573,7 @@ export declare const RequestableObjectsV2025ApiAxiosParamCreator: (configuration
|
|
|
72704
73573
|
* @param {*} [axiosOptions] Override http request option.
|
|
72705
73574
|
* @throws {RequiredError}
|
|
72706
73575
|
*/
|
|
72707
|
-
listRequestableObjects: (identityId?: string, types?: Array<
|
|
73576
|
+
listRequestableObjects: (identityId?: string, types?: Array<ListRequestableObjectsTypesV2025>, term?: string, statuses?: Array<RequestableObjectRequestStatusV2025>, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
72708
73577
|
};
|
|
72709
73578
|
/**
|
|
72710
73579
|
* RequestableObjectsV2025Api - functional programming interface
|
|
@@ -72715,7 +73584,7 @@ export declare const RequestableObjectsV2025ApiFp: (configuration?: Configuratio
|
|
|
72715
73584
|
* Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v2024/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. Any authenticated token can call this endpoint to see their requestable access items.
|
|
72716
73585
|
* @summary Requestable objects list
|
|
72717
73586
|
* @param {string} [identityId] If present, the value returns only requestable objects for the specified identity. * Admin users can call this with any identity ID value. * Non-admin users can only specify *me* or pass their own identity ID value. * If absent, returns a list of all requestable objects for the tenant. Only admin users can make such a call. In this case, the available, pending, assigned accesses will not be annotated in the result.
|
|
72718
|
-
* @param {Array<
|
|
73587
|
+
* @param {Array<ListRequestableObjectsTypesV2025>} [types] Filters the results to the specified type/types, where each type is one of `ROLE` or `ACCESS_PROFILE`. If absent, all types are returned. SailPoint may add support for additional types in the future without notice.
|
|
72719
73588
|
* @param {string} [term] Allows searching requestable access items with a partial match on the name or description. If `term` is provided, then the API will ignore the `filter` query parameter.
|
|
72720
73589
|
* @param {Array<RequestableObjectRequestStatusV2025>} [statuses] Filters the result to the specified status/statuses, where each status is one of `AVAILABLE`, `ASSIGNED`, or `PENDING`. Specifying this parameter without also specifying an `identity-id` parameter results in an error. SailPoint may add additional statuses in the future without notice.
|
|
72721
73590
|
* @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.
|
|
@@ -72726,7 +73595,7 @@ export declare const RequestableObjectsV2025ApiFp: (configuration?: Configuratio
|
|
|
72726
73595
|
* @param {*} [axiosOptions] Override http request option.
|
|
72727
73596
|
* @throws {RequiredError}
|
|
72728
73597
|
*/
|
|
72729
|
-
listRequestableObjects(identityId?: string, types?: Array<
|
|
73598
|
+
listRequestableObjects(identityId?: string, types?: Array<ListRequestableObjectsTypesV2025>, term?: string, statuses?: Array<RequestableObjectRequestStatusV2025>, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RequestableObjectV2025>>>;
|
|
72730
73599
|
};
|
|
72731
73600
|
/**
|
|
72732
73601
|
* RequestableObjectsV2025Api - factory interface
|
|
@@ -72756,10 +73625,10 @@ export interface RequestableObjectsV2025ApiListRequestableObjectsRequest {
|
|
|
72756
73625
|
readonly identityId?: string;
|
|
72757
73626
|
/**
|
|
72758
73627
|
* Filters the results to the specified type/types, where each type is one of `ROLE` or `ACCESS_PROFILE`. If absent, all types are returned. SailPoint may add support for additional types in the future without notice.
|
|
72759
|
-
* @type {Array<
|
|
73628
|
+
* @type {Array<'ACCESS_PROFILE' | 'ROLE'>}
|
|
72760
73629
|
* @memberof RequestableObjectsV2025ApiListRequestableObjects
|
|
72761
73630
|
*/
|
|
72762
|
-
readonly types?: Array<
|
|
73631
|
+
readonly types?: Array<ListRequestableObjectsTypesV2025>;
|
|
72763
73632
|
/**
|
|
72764
73633
|
* Allows searching requestable access items with a partial match on the name or description. If `term` is provided, then the API will ignore the `filter` query parameter.
|
|
72765
73634
|
* @type {string}
|
|
@@ -72820,6 +73689,14 @@ export declare class RequestableObjectsV2025Api extends BaseAPI {
|
|
|
72820
73689
|
*/
|
|
72821
73690
|
listRequestableObjects(requestParameters?: RequestableObjectsV2025ApiListRequestableObjectsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestableObjectV2025[], any>>;
|
|
72822
73691
|
}
|
|
73692
|
+
/**
|
|
73693
|
+
* @export
|
|
73694
|
+
*/
|
|
73695
|
+
export declare const ListRequestableObjectsTypesV2025: {
|
|
73696
|
+
readonly AccessProfile: "ACCESS_PROFILE";
|
|
73697
|
+
readonly Role: "ROLE";
|
|
73698
|
+
};
|
|
73699
|
+
export type ListRequestableObjectsTypesV2025 = typeof ListRequestableObjectsTypesV2025[keyof typeof ListRequestableObjectsTypesV2025];
|
|
72823
73700
|
/**
|
|
72824
73701
|
* RoleInsightsV2025Api - axios parameter creator
|
|
72825
73702
|
* @export
|
|
@@ -78443,11 +79320,10 @@ export declare const SourcesV2025ApiAxiosParamCreator: (configuration?: Configur
|
|
|
78443
79320
|
* Deletes the native change detection configuration for the source specified by the given ID.
|
|
78444
79321
|
* @summary Delete native change detection configuration
|
|
78445
79322
|
* @param {string} id The source id
|
|
78446
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78447
79323
|
* @param {*} [axiosOptions] Override http request option.
|
|
78448
79324
|
* @throws {RequiredError}
|
|
78449
79325
|
*/
|
|
78450
|
-
deleteNativeChangeDetectionConfig: (id: string,
|
|
79326
|
+
deleteNativeChangeDetectionConfig: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78451
79327
|
/**
|
|
78452
79328
|
* Deletes the provisioning policy with the specified usage on an application.
|
|
78453
79329
|
* @summary Delete provisioning policy by usagetype
|
|
@@ -78512,11 +79388,10 @@ export declare const SourcesV2025ApiAxiosParamCreator: (configuration?: Configur
|
|
|
78512
79388
|
* This API returns the existing native change detection configuration for a source specified by the given ID.
|
|
78513
79389
|
* @summary Native change detection configuration
|
|
78514
79390
|
* @param {string} id The source id
|
|
78515
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
78516
79391
|
* @param {*} [axiosOptions] Override http request option.
|
|
78517
79392
|
* @throws {RequiredError}
|
|
78518
79393
|
*/
|
|
78519
|
-
getNativeChangeDetectionConfig: (id: string,
|
|
79394
|
+
getNativeChangeDetectionConfig: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78520
79395
|
/**
|
|
78521
79396
|
* This end-point retrieves the ProvisioningPolicy with the specified usage on the specified Source in IdentityNow.
|
|
78522
79397
|
* @summary Get provisioning policy by usagetype
|
|
@@ -78640,6 +79515,16 @@ export declare const SourcesV2025ApiAxiosParamCreator: (configuration?: Configur
|
|
|
78640
79515
|
* @throws {RequiredError}
|
|
78641
79516
|
*/
|
|
78642
79517
|
importConnectorFile: (sourceId: string, file?: File, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79518
|
+
/**
|
|
79519
|
+
* Starts an entitlement aggregation on the specified source. If the target source is a delimited file source, then the CSV file needs to be included in the request body. You will also need to set the Content-Type header to `multipart/form-data`. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
79520
|
+
* @summary Entitlement aggregation
|
|
79521
|
+
* @param {string} sourceId Source Id
|
|
79522
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
79523
|
+
* @param {File} [file] The CSV file containing the source entitlements to aggregate.
|
|
79524
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
79525
|
+
* @throws {RequiredError}
|
|
79526
|
+
*/
|
|
79527
|
+
importEntitlements: (sourceId: string, xSailPointExperimental?: string, file?: File, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78643
79528
|
/**
|
|
78644
79529
|
* This API uploads a source schema template file to configure a source\'s entitlement attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** -> **`{SourceName}`** -> **Import Data** -> **Import Entitlements** -> **Download** >**NOTE: This API is designated only for Delimited File sources.**
|
|
78645
79530
|
* @summary Uploads source entitlements schema template
|
|
@@ -78703,12 +79588,11 @@ export declare const SourcesV2025ApiAxiosParamCreator: (configuration?: Configur
|
|
|
78703
79588
|
* Replaces the native change detection configuration for the source specified by the given ID with the configuration provided in the request body.
|
|
78704
79589
|
* @summary Update native change detection configuration
|
|
78705
79590
|
* @param {string} id The source id
|
|
78706
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78707
79591
|
* @param {NativeChangeDetectionConfigV2025} nativeChangeDetectionConfigV2025
|
|
78708
79592
|
* @param {*} [axiosOptions] Override http request option.
|
|
78709
79593
|
* @throws {RequiredError}
|
|
78710
79594
|
*/
|
|
78711
|
-
putNativeChangeDetectionConfig: (id: string,
|
|
79595
|
+
putNativeChangeDetectionConfig: (id: string, nativeChangeDetectionConfigV2025: NativeChangeDetectionConfigV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78712
79596
|
/**
|
|
78713
79597
|
* This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
78714
79598
|
* @summary Update provisioning policy by usagetype
|
|
@@ -78903,11 +79787,10 @@ export declare const SourcesV2025ApiFp: (configuration?: Configuration) => {
|
|
|
78903
79787
|
* Deletes the native change detection configuration for the source specified by the given ID.
|
|
78904
79788
|
* @summary Delete native change detection configuration
|
|
78905
79789
|
* @param {string} id The source id
|
|
78906
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78907
79790
|
* @param {*} [axiosOptions] Override http request option.
|
|
78908
79791
|
* @throws {RequiredError}
|
|
78909
79792
|
*/
|
|
78910
|
-
deleteNativeChangeDetectionConfig(id: string,
|
|
79793
|
+
deleteNativeChangeDetectionConfig(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
78911
79794
|
/**
|
|
78912
79795
|
* Deletes the provisioning policy with the specified usage on an application.
|
|
78913
79796
|
* @summary Delete provisioning policy by usagetype
|
|
@@ -78972,11 +79855,10 @@ export declare const SourcesV2025ApiFp: (configuration?: Configuration) => {
|
|
|
78972
79855
|
* This API returns the existing native change detection configuration for a source specified by the given ID.
|
|
78973
79856
|
* @summary Native change detection configuration
|
|
78974
79857
|
* @param {string} id The source id
|
|
78975
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
78976
79858
|
* @param {*} [axiosOptions] Override http request option.
|
|
78977
79859
|
* @throws {RequiredError}
|
|
78978
79860
|
*/
|
|
78979
|
-
getNativeChangeDetectionConfig(id: string,
|
|
79861
|
+
getNativeChangeDetectionConfig(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NativeChangeDetectionConfigV2025>>;
|
|
78980
79862
|
/**
|
|
78981
79863
|
* This end-point retrieves the ProvisioningPolicy with the specified usage on the specified Source in IdentityNow.
|
|
78982
79864
|
* @summary Get provisioning policy by usagetype
|
|
@@ -79100,6 +79982,16 @@ export declare const SourcesV2025ApiFp: (configuration?: Configuration) => {
|
|
|
79100
79982
|
* @throws {RequiredError}
|
|
79101
79983
|
*/
|
|
79102
79984
|
importConnectorFile(sourceId: string, file?: File, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceV2025>>;
|
|
79985
|
+
/**
|
|
79986
|
+
* Starts an entitlement aggregation on the specified source. If the target source is a delimited file source, then the CSV file needs to be included in the request body. You will also need to set the Content-Type header to `multipart/form-data`. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
79987
|
+
* @summary Entitlement aggregation
|
|
79988
|
+
* @param {string} sourceId Source Id
|
|
79989
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
79990
|
+
* @param {File} [file] The CSV file containing the source entitlements to aggregate.
|
|
79991
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
79992
|
+
* @throws {RequiredError}
|
|
79993
|
+
*/
|
|
79994
|
+
importEntitlements(sourceId: string, xSailPointExperimental?: string, file?: File, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoadEntitlementTaskV2025>>;
|
|
79103
79995
|
/**
|
|
79104
79996
|
* This API uploads a source schema template file to configure a source\'s entitlement attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** -> **`{SourceName}`** -> **Import Data** -> **Import Entitlements** -> **Download** >**NOTE: This API is designated only for Delimited File sources.**
|
|
79105
79997
|
* @summary Uploads source entitlements schema template
|
|
@@ -79163,12 +80055,11 @@ export declare const SourcesV2025ApiFp: (configuration?: Configuration) => {
|
|
|
79163
80055
|
* Replaces the native change detection configuration for the source specified by the given ID with the configuration provided in the request body.
|
|
79164
80056
|
* @summary Update native change detection configuration
|
|
79165
80057
|
* @param {string} id The source id
|
|
79166
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
79167
80058
|
* @param {NativeChangeDetectionConfigV2025} nativeChangeDetectionConfigV2025
|
|
79168
80059
|
* @param {*} [axiosOptions] Override http request option.
|
|
79169
80060
|
* @throws {RequiredError}
|
|
79170
80061
|
*/
|
|
79171
|
-
putNativeChangeDetectionConfig(id: string,
|
|
80062
|
+
putNativeChangeDetectionConfig(id: string, nativeChangeDetectionConfigV2025: NativeChangeDetectionConfigV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NativeChangeDetectionConfigV2025>>;
|
|
79172
80063
|
/**
|
|
79173
80064
|
* This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
79174
80065
|
* @summary Update provisioning policy by usagetype
|
|
@@ -79538,6 +80429,14 @@ export declare const SourcesV2025ApiFactory: (configuration?: Configuration, bas
|
|
|
79538
80429
|
* @throws {RequiredError}
|
|
79539
80430
|
*/
|
|
79540
80431
|
importConnectorFile(requestParameters: SourcesV2025ApiImportConnectorFileRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceV2025>;
|
|
80432
|
+
/**
|
|
80433
|
+
* Starts an entitlement aggregation on the specified source. If the target source is a delimited file source, then the CSV file needs to be included in the request body. You will also need to set the Content-Type header to `multipart/form-data`. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
80434
|
+
* @summary Entitlement aggregation
|
|
80435
|
+
* @param {SourcesV2025ApiImportEntitlementsRequest} requestParameters Request parameters.
|
|
80436
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
80437
|
+
* @throws {RequiredError}
|
|
80438
|
+
*/
|
|
80439
|
+
importEntitlements(requestParameters: SourcesV2025ApiImportEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<LoadEntitlementTaskV2025>;
|
|
79541
80440
|
/**
|
|
79542
80441
|
* This API uploads a source schema template file to configure a source\'s entitlement attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** -> **`{SourceName}`** -> **Import Data** -> **Import Entitlements** -> **Download** >**NOTE: This API is designated only for Delimited File sources.**
|
|
79543
80442
|
* @summary Uploads source entitlements schema template
|
|
@@ -79822,12 +80721,6 @@ export interface SourcesV2025ApiDeleteNativeChangeDetectionConfigRequest {
|
|
|
79822
80721
|
* @memberof SourcesV2025ApiDeleteNativeChangeDetectionConfig
|
|
79823
80722
|
*/
|
|
79824
80723
|
readonly id: string;
|
|
79825
|
-
/**
|
|
79826
|
-
* Use this header to enable this experimental API.
|
|
79827
|
-
* @type {string}
|
|
79828
|
-
* @memberof SourcesV2025ApiDeleteNativeChangeDetectionConfig
|
|
79829
|
-
*/
|
|
79830
|
-
readonly xSailPointExperimental: string;
|
|
79831
80724
|
}
|
|
79832
80725
|
/**
|
|
79833
80726
|
* Request parameters for deleteProvisioningPolicy operation in SourcesV2025Api.
|
|
@@ -79956,12 +80849,6 @@ export interface SourcesV2025ApiGetNativeChangeDetectionConfigRequest {
|
|
|
79956
80849
|
* @memberof SourcesV2025ApiGetNativeChangeDetectionConfig
|
|
79957
80850
|
*/
|
|
79958
80851
|
readonly id: string;
|
|
79959
|
-
/**
|
|
79960
|
-
* Use this header to enable this experimental API.
|
|
79961
|
-
* @type {string}
|
|
79962
|
-
* @memberof SourcesV2025ApiGetNativeChangeDetectionConfig
|
|
79963
|
-
*/
|
|
79964
|
-
readonly xSailPointExperimental?: string;
|
|
79965
80852
|
}
|
|
79966
80853
|
/**
|
|
79967
80854
|
* Request parameters for getProvisioningPolicy operation in SourcesV2025Api.
|
|
@@ -80211,6 +81098,31 @@ export interface SourcesV2025ApiImportConnectorFileRequest {
|
|
|
80211
81098
|
*/
|
|
80212
81099
|
readonly file?: File;
|
|
80213
81100
|
}
|
|
81101
|
+
/**
|
|
81102
|
+
* Request parameters for importEntitlements operation in SourcesV2025Api.
|
|
81103
|
+
* @export
|
|
81104
|
+
* @interface SourcesV2025ApiImportEntitlementsRequest
|
|
81105
|
+
*/
|
|
81106
|
+
export interface SourcesV2025ApiImportEntitlementsRequest {
|
|
81107
|
+
/**
|
|
81108
|
+
* Source Id
|
|
81109
|
+
* @type {string}
|
|
81110
|
+
* @memberof SourcesV2025ApiImportEntitlements
|
|
81111
|
+
*/
|
|
81112
|
+
readonly sourceId: string;
|
|
81113
|
+
/**
|
|
81114
|
+
* Use this header to enable this experimental API.
|
|
81115
|
+
* @type {string}
|
|
81116
|
+
* @memberof SourcesV2025ApiImportEntitlements
|
|
81117
|
+
*/
|
|
81118
|
+
readonly xSailPointExperimental?: string;
|
|
81119
|
+
/**
|
|
81120
|
+
* The CSV file containing the source entitlements to aggregate.
|
|
81121
|
+
* @type {File}
|
|
81122
|
+
* @memberof SourcesV2025ApiImportEntitlements
|
|
81123
|
+
*/
|
|
81124
|
+
readonly file?: File;
|
|
81125
|
+
}
|
|
80214
81126
|
/**
|
|
80215
81127
|
* Request parameters for importEntitlementsSchema operation in SourcesV2025Api.
|
|
80216
81128
|
* @export
|
|
@@ -80367,12 +81279,6 @@ export interface SourcesV2025ApiPutNativeChangeDetectionConfigRequest {
|
|
|
80367
81279
|
* @memberof SourcesV2025ApiPutNativeChangeDetectionConfig
|
|
80368
81280
|
*/
|
|
80369
81281
|
readonly id: string;
|
|
80370
|
-
/**
|
|
80371
|
-
* Use this header to enable this experimental API.
|
|
80372
|
-
* @type {string}
|
|
80373
|
-
* @memberof SourcesV2025ApiPutNativeChangeDetectionConfig
|
|
80374
|
-
*/
|
|
80375
|
-
readonly xSailPointExperimental: string;
|
|
80376
81282
|
/**
|
|
80377
81283
|
*
|
|
80378
81284
|
* @type {NativeChangeDetectionConfigV2025}
|
|
@@ -80948,6 +81854,15 @@ export declare class SourcesV2025Api extends BaseAPI {
|
|
|
80948
81854
|
* @memberof SourcesV2025Api
|
|
80949
81855
|
*/
|
|
80950
81856
|
importConnectorFile(requestParameters: SourcesV2025ApiImportConnectorFileRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceV2025, any>>;
|
|
81857
|
+
/**
|
|
81858
|
+
* Starts an entitlement aggregation on the specified source. If the target source is a delimited file source, then the CSV file needs to be included in the request body. You will also need to set the Content-Type header to `multipart/form-data`. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
81859
|
+
* @summary Entitlement aggregation
|
|
81860
|
+
* @param {SourcesV2025ApiImportEntitlementsRequest} requestParameters Request parameters.
|
|
81861
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
81862
|
+
* @throws {RequiredError}
|
|
81863
|
+
* @memberof SourcesV2025Api
|
|
81864
|
+
*/
|
|
81865
|
+
importEntitlements(requestParameters: SourcesV2025ApiImportEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LoadEntitlementTaskV2025, any>>;
|
|
80951
81866
|
/**
|
|
80952
81867
|
* This API uploads a source schema template file to configure a source\'s entitlement attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** -> **`{SourceName}`** -> **Import Data** -> **Import Entitlements** -> **Download** >**NOTE: This API is designated only for Delimited File sources.**
|
|
80953
81868
|
* @summary Uploads source entitlements schema template
|