sailpoint-api-client 1.6.2 → 1.6.3
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 +67 -16
- 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 +44 -2
- 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/v2025/api.ts
CHANGED
|
@@ -1785,7 +1785,7 @@ export interface AccessProfileV2025 {
|
|
|
1785
1785
|
* @type {OwnerReferenceV2025}
|
|
1786
1786
|
* @memberof AccessProfileV2025
|
|
1787
1787
|
*/
|
|
1788
|
-
'owner': OwnerReferenceV2025;
|
|
1788
|
+
'owner': OwnerReferenceV2025 | null;
|
|
1789
1789
|
/**
|
|
1790
1790
|
*
|
|
1791
1791
|
* @type {AccessProfileSourceRefV2025}
|
|
@@ -2317,7 +2317,7 @@ export interface AccessRequestItemV2025 {
|
|
|
2317
2317
|
*/
|
|
2318
2318
|
'clientMetadata'?: { [key: string]: string; };
|
|
2319
2319
|
/**
|
|
2320
|
-
* 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
|
|
2320
|
+
* 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.
|
|
2321
2321
|
* @type {string}
|
|
2322
2322
|
* @memberof AccessRequestItemV2025
|
|
2323
2323
|
*/
|
|
@@ -6919,6 +6919,139 @@ export interface AttributeDefinitionV2025 {
|
|
|
6919
6919
|
}
|
|
6920
6920
|
|
|
6921
6921
|
|
|
6922
|
+
/**
|
|
6923
|
+
* Targeted Entity
|
|
6924
|
+
* @export
|
|
6925
|
+
* @interface AttributeMappingsAllOfTargetV2025
|
|
6926
|
+
*/
|
|
6927
|
+
export interface AttributeMappingsAllOfTargetV2025 {
|
|
6928
|
+
/**
|
|
6929
|
+
* The type of target entity
|
|
6930
|
+
* @type {string}
|
|
6931
|
+
* @memberof AttributeMappingsAllOfTargetV2025
|
|
6932
|
+
*/
|
|
6933
|
+
'type'?: AttributeMappingsAllOfTargetV2025TypeV2025;
|
|
6934
|
+
/**
|
|
6935
|
+
* Name of the targeted attribute
|
|
6936
|
+
* @type {string}
|
|
6937
|
+
* @memberof AttributeMappingsAllOfTargetV2025
|
|
6938
|
+
*/
|
|
6939
|
+
'attributeName'?: string;
|
|
6940
|
+
/**
|
|
6941
|
+
* The ID of Source
|
|
6942
|
+
* @type {string}
|
|
6943
|
+
* @memberof AttributeMappingsAllOfTargetV2025
|
|
6944
|
+
*/
|
|
6945
|
+
'sourceId'?: string;
|
|
6946
|
+
}
|
|
6947
|
+
|
|
6948
|
+
export const AttributeMappingsAllOfTargetV2025TypeV2025 = {
|
|
6949
|
+
Identity: 'IDENTITY'
|
|
6950
|
+
} as const;
|
|
6951
|
+
|
|
6952
|
+
export type AttributeMappingsAllOfTargetV2025TypeV2025 = typeof AttributeMappingsAllOfTargetV2025TypeV2025[keyof typeof AttributeMappingsAllOfTargetV2025TypeV2025];
|
|
6953
|
+
|
|
6954
|
+
/**
|
|
6955
|
+
* Attibute Mapping Object
|
|
6956
|
+
* @export
|
|
6957
|
+
* @interface AttributeMappingsAllOfTransformDefinitionAttributesInputAttributesV2025
|
|
6958
|
+
*/
|
|
6959
|
+
export interface AttributeMappingsAllOfTransformDefinitionAttributesInputAttributesV2025 {
|
|
6960
|
+
/**
|
|
6961
|
+
* The name of attribute
|
|
6962
|
+
* @type {string}
|
|
6963
|
+
* @memberof AttributeMappingsAllOfTransformDefinitionAttributesInputAttributesV2025
|
|
6964
|
+
*/
|
|
6965
|
+
'attributeName'?: string;
|
|
6966
|
+
/**
|
|
6967
|
+
* Name of the Source
|
|
6968
|
+
* @type {string}
|
|
6969
|
+
* @memberof AttributeMappingsAllOfTransformDefinitionAttributesInputAttributesV2025
|
|
6970
|
+
*/
|
|
6971
|
+
'sourceName'?: string;
|
|
6972
|
+
/**
|
|
6973
|
+
* ID of the Source
|
|
6974
|
+
* @type {string}
|
|
6975
|
+
* @memberof AttributeMappingsAllOfTransformDefinitionAttributesInputAttributesV2025
|
|
6976
|
+
*/
|
|
6977
|
+
'name'?: string;
|
|
6978
|
+
}
|
|
6979
|
+
/**
|
|
6980
|
+
* Input Object
|
|
6981
|
+
* @export
|
|
6982
|
+
* @interface AttributeMappingsAllOfTransformDefinitionAttributesInputV2025
|
|
6983
|
+
*/
|
|
6984
|
+
export interface AttributeMappingsAllOfTransformDefinitionAttributesInputV2025 {
|
|
6985
|
+
/**
|
|
6986
|
+
* The Type of Attribute
|
|
6987
|
+
* @type {string}
|
|
6988
|
+
* @memberof AttributeMappingsAllOfTransformDefinitionAttributesInputV2025
|
|
6989
|
+
*/
|
|
6990
|
+
'type'?: string;
|
|
6991
|
+
/**
|
|
6992
|
+
*
|
|
6993
|
+
* @type {AttributeMappingsAllOfTransformDefinitionAttributesInputAttributesV2025}
|
|
6994
|
+
* @memberof AttributeMappingsAllOfTransformDefinitionAttributesInputV2025
|
|
6995
|
+
*/
|
|
6996
|
+
'attributes'?: AttributeMappingsAllOfTransformDefinitionAttributesInputAttributesV2025;
|
|
6997
|
+
}
|
|
6998
|
+
/**
|
|
6999
|
+
* attributes object
|
|
7000
|
+
* @export
|
|
7001
|
+
* @interface AttributeMappingsAllOfTransformDefinitionAttributesV2025
|
|
7002
|
+
*/
|
|
7003
|
+
export interface AttributeMappingsAllOfTransformDefinitionAttributesV2025 {
|
|
7004
|
+
/**
|
|
7005
|
+
*
|
|
7006
|
+
* @type {AttributeMappingsAllOfTransformDefinitionAttributesInputV2025}
|
|
7007
|
+
* @memberof AttributeMappingsAllOfTransformDefinitionAttributesV2025
|
|
7008
|
+
*/
|
|
7009
|
+
'input'?: AttributeMappingsAllOfTransformDefinitionAttributesInputV2025;
|
|
7010
|
+
}
|
|
7011
|
+
/**
|
|
7012
|
+
*
|
|
7013
|
+
* @export
|
|
7014
|
+
* @interface AttributeMappingsAllOfTransformDefinitionV2025
|
|
7015
|
+
*/
|
|
7016
|
+
export interface AttributeMappingsAllOfTransformDefinitionV2025 {
|
|
7017
|
+
/**
|
|
7018
|
+
* The type of transform
|
|
7019
|
+
* @type {string}
|
|
7020
|
+
* @memberof AttributeMappingsAllOfTransformDefinitionV2025
|
|
7021
|
+
*/
|
|
7022
|
+
'type'?: string;
|
|
7023
|
+
/**
|
|
7024
|
+
*
|
|
7025
|
+
* @type {AttributeMappingsAllOfTransformDefinitionAttributesV2025}
|
|
7026
|
+
* @memberof AttributeMappingsAllOfTransformDefinitionV2025
|
|
7027
|
+
*/
|
|
7028
|
+
'attributes'?: AttributeMappingsAllOfTransformDefinitionAttributesV2025;
|
|
7029
|
+
/**
|
|
7030
|
+
* Transform Operation
|
|
7031
|
+
* @type {string}
|
|
7032
|
+
* @memberof AttributeMappingsAllOfTransformDefinitionV2025
|
|
7033
|
+
*/
|
|
7034
|
+
'id'?: string;
|
|
7035
|
+
}
|
|
7036
|
+
/**
|
|
7037
|
+
*
|
|
7038
|
+
* @export
|
|
7039
|
+
* @interface AttributeMappingsV2025
|
|
7040
|
+
*/
|
|
7041
|
+
export interface AttributeMappingsV2025 {
|
|
7042
|
+
/**
|
|
7043
|
+
*
|
|
7044
|
+
* @type {AttributeMappingsAllOfTargetV2025}
|
|
7045
|
+
* @memberof AttributeMappingsV2025
|
|
7046
|
+
*/
|
|
7047
|
+
'target'?: AttributeMappingsAllOfTargetV2025;
|
|
7048
|
+
/**
|
|
7049
|
+
*
|
|
7050
|
+
* @type {AttributeMappingsAllOfTransformDefinitionV2025}
|
|
7051
|
+
* @memberof AttributeMappingsV2025
|
|
7052
|
+
*/
|
|
7053
|
+
'transformDefinition'?: AttributeMappingsAllOfTransformDefinitionV2025;
|
|
7054
|
+
}
|
|
6922
7055
|
/**
|
|
6923
7056
|
*
|
|
6924
7057
|
* @export
|
|
@@ -14136,7 +14269,7 @@ export interface DimensionV2025 {
|
|
|
14136
14269
|
* @type {OwnerReferenceV2025}
|
|
14137
14270
|
* @memberof DimensionV2025
|
|
14138
14271
|
*/
|
|
14139
|
-
'owner': OwnerReferenceV2025;
|
|
14272
|
+
'owner': OwnerReferenceV2025 | null;
|
|
14140
14273
|
/**
|
|
14141
14274
|
*
|
|
14142
14275
|
* @type {Array<AccessProfileRefV2025>}
|
|
@@ -21168,6 +21301,19 @@ export interface ImportEntitlementsBySourceRequestV2025 {
|
|
|
21168
21301
|
*/
|
|
21169
21302
|
'csvFile'?: File;
|
|
21170
21303
|
}
|
|
21304
|
+
/**
|
|
21305
|
+
*
|
|
21306
|
+
* @export
|
|
21307
|
+
* @interface ImportEntitlementsRequestV2025
|
|
21308
|
+
*/
|
|
21309
|
+
export interface ImportEntitlementsRequestV2025 {
|
|
21310
|
+
/**
|
|
21311
|
+
* The CSV file containing the source entitlements to aggregate.
|
|
21312
|
+
* @type {File}
|
|
21313
|
+
* @memberof ImportEntitlementsRequestV2025
|
|
21314
|
+
*/
|
|
21315
|
+
'file'?: File;
|
|
21316
|
+
}
|
|
21171
21317
|
/**
|
|
21172
21318
|
*
|
|
21173
21319
|
* @export
|
|
@@ -22941,6 +23087,69 @@ export const MachineAccountV2025ClassificationMethodV2025 = {
|
|
|
22941
23087
|
|
|
22942
23088
|
export type MachineAccountV2025ClassificationMethodV2025 = typeof MachineAccountV2025ClassificationMethodV2025[keyof typeof MachineAccountV2025ClassificationMethodV2025];
|
|
22943
23089
|
|
|
23090
|
+
/**
|
|
23091
|
+
*
|
|
23092
|
+
* @export
|
|
23093
|
+
* @interface MachineClassificationConfigV2025
|
|
23094
|
+
*/
|
|
23095
|
+
export interface MachineClassificationConfigV2025 {
|
|
23096
|
+
/**
|
|
23097
|
+
* Indicates if the Classification is enabled for a Source
|
|
23098
|
+
* @type {boolean}
|
|
23099
|
+
* @memberof MachineClassificationConfigV2025
|
|
23100
|
+
*/
|
|
23101
|
+
'enabled'?: boolean;
|
|
23102
|
+
/**
|
|
23103
|
+
* Classification Method
|
|
23104
|
+
* @type {string}
|
|
23105
|
+
* @memberof MachineClassificationConfigV2025
|
|
23106
|
+
*/
|
|
23107
|
+
'classificationMethod'?: MachineClassificationConfigV2025ClassificationMethodV2025;
|
|
23108
|
+
/**
|
|
23109
|
+
* A classification criteria object
|
|
23110
|
+
* @type {string}
|
|
23111
|
+
* @memberof MachineClassificationConfigV2025
|
|
23112
|
+
*/
|
|
23113
|
+
'criteria'?: string | null;
|
|
23114
|
+
/**
|
|
23115
|
+
* Time when the config was created
|
|
23116
|
+
* @type {string}
|
|
23117
|
+
* @memberof MachineClassificationConfigV2025
|
|
23118
|
+
*/
|
|
23119
|
+
'created'?: string;
|
|
23120
|
+
/**
|
|
23121
|
+
* Time when the config was last updated
|
|
23122
|
+
* @type {string}
|
|
23123
|
+
* @memberof MachineClassificationConfigV2025
|
|
23124
|
+
*/
|
|
23125
|
+
'modified'?: string | null;
|
|
23126
|
+
}
|
|
23127
|
+
|
|
23128
|
+
export const MachineClassificationConfigV2025ClassificationMethodV2025 = {
|
|
23129
|
+
Source: 'SOURCE'
|
|
23130
|
+
} as const;
|
|
23131
|
+
|
|
23132
|
+
export type MachineClassificationConfigV2025ClassificationMethodV2025 = typeof MachineClassificationConfigV2025ClassificationMethodV2025[keyof typeof MachineClassificationConfigV2025ClassificationMethodV2025];
|
|
23133
|
+
|
|
23134
|
+
/**
|
|
23135
|
+
* The owner configuration associated to the machine identity
|
|
23136
|
+
* @export
|
|
23137
|
+
* @interface MachineIdentityDtoOwnersV2025
|
|
23138
|
+
*/
|
|
23139
|
+
export interface MachineIdentityDtoOwnersV2025 {
|
|
23140
|
+
/**
|
|
23141
|
+
* Defines the identity which is selected as the primary owner
|
|
23142
|
+
* @type {object}
|
|
23143
|
+
* @memberof MachineIdentityDtoOwnersV2025
|
|
23144
|
+
*/
|
|
23145
|
+
'primaryIdentity': object;
|
|
23146
|
+
/**
|
|
23147
|
+
* Defines the identities which are selected as secondary owners
|
|
23148
|
+
* @type {Array<BaseReferenceDtoV2025>}
|
|
23149
|
+
* @memberof MachineIdentityDtoOwnersV2025
|
|
23150
|
+
*/
|
|
23151
|
+
'secondaryIdentities': Array<BaseReferenceDtoV2025>;
|
|
23152
|
+
}
|
|
22944
23153
|
/**
|
|
22945
23154
|
*
|
|
22946
23155
|
* @export
|
|
@@ -22995,6 +23204,18 @@ export interface MachineIdentityV2025 {
|
|
|
22995
23204
|
* @memberof MachineIdentityV2025
|
|
22996
23205
|
*/
|
|
22997
23206
|
'attributes'?: object;
|
|
23207
|
+
/**
|
|
23208
|
+
* The subtype value associated to the machine identity
|
|
23209
|
+
* @type {string}
|
|
23210
|
+
* @memberof MachineIdentityV2025
|
|
23211
|
+
*/
|
|
23212
|
+
'subtype': string;
|
|
23213
|
+
/**
|
|
23214
|
+
*
|
|
23215
|
+
* @type {MachineIdentityDtoOwnersV2025}
|
|
23216
|
+
* @memberof MachineIdentityV2025
|
|
23217
|
+
*/
|
|
23218
|
+
'owners'?: MachineIdentityDtoOwnersV2025;
|
|
22998
23219
|
}
|
|
22999
23220
|
/**
|
|
23000
23221
|
* MAIL FROM attributes for a domain / identity
|
|
@@ -30511,7 +30732,7 @@ export interface RequestedItemDtoRefV2025 {
|
|
|
30511
30732
|
*/
|
|
30512
30733
|
'clientMetadata'?: { [key: string]: string; };
|
|
30513
30734
|
/**
|
|
30514
|
-
* 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
|
|
30735
|
+
* 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.
|
|
30515
30736
|
* @type {string}
|
|
30516
30737
|
* @memberof RequestedItemDtoRefV2025
|
|
30517
30738
|
*/
|
|
@@ -34347,7 +34568,7 @@ export interface RoleV2025 {
|
|
|
34347
34568
|
* @type {OwnerReferenceV2025}
|
|
34348
34569
|
* @memberof RoleV2025
|
|
34349
34570
|
*/
|
|
34350
|
-
'owner': OwnerReferenceV2025;
|
|
34571
|
+
'owner': OwnerReferenceV2025 | null;
|
|
34351
34572
|
/**
|
|
34352
34573
|
*
|
|
34353
34574
|
* @type {Array<AccessProfileRefV2025>}
|
|
@@ -36795,6 +37016,32 @@ export const SendAccountVerificationRequestV2025ViaV2025 = {
|
|
|
36795
37016
|
|
|
36796
37017
|
export type SendAccountVerificationRequestV2025ViaV2025 = typeof SendAccountVerificationRequestV2025ViaV2025[keyof typeof SendAccountVerificationRequestV2025ViaV2025];
|
|
36797
37018
|
|
|
37019
|
+
/**
|
|
37020
|
+
*
|
|
37021
|
+
* @export
|
|
37022
|
+
* @interface SendClassifyMachineAccount200ResponseV2025
|
|
37023
|
+
*/
|
|
37024
|
+
export interface SendClassifyMachineAccount200ResponseV2025 {
|
|
37025
|
+
/**
|
|
37026
|
+
* Indicates if account is classified as machine
|
|
37027
|
+
* @type {boolean}
|
|
37028
|
+
* @memberof SendClassifyMachineAccount200ResponseV2025
|
|
37029
|
+
*/
|
|
37030
|
+
'isMachine'?: boolean;
|
|
37031
|
+
}
|
|
37032
|
+
/**
|
|
37033
|
+
*
|
|
37034
|
+
* @export
|
|
37035
|
+
* @interface SendClassifyMachineAccountFromSource200ResponseV2025
|
|
37036
|
+
*/
|
|
37037
|
+
export interface SendClassifyMachineAccountFromSource200ResponseV2025 {
|
|
37038
|
+
/**
|
|
37039
|
+
* Returns the number of all the accounts from source submitted for processing.
|
|
37040
|
+
* @type {number}
|
|
37041
|
+
* @memberof SendClassifyMachineAccountFromSource200ResponseV2025
|
|
37042
|
+
*/
|
|
37043
|
+
'Accounts submitted for processing'?: number;
|
|
37044
|
+
}
|
|
36798
37045
|
/**
|
|
36799
37046
|
*
|
|
36800
37047
|
* @export
|
|
@@ -38629,6 +38876,73 @@ export const SourceBeforeProvisioningRuleV2025TypeV2025 = {
|
|
|
38629
38876
|
|
|
38630
38877
|
export type SourceBeforeProvisioningRuleV2025TypeV2025 = typeof SourceBeforeProvisioningRuleV2025TypeV2025[keyof typeof SourceBeforeProvisioningRuleV2025TypeV2025];
|
|
38631
38878
|
|
|
38879
|
+
/**
|
|
38880
|
+
* A map containing numbers relevant to the source classification process
|
|
38881
|
+
* @export
|
|
38882
|
+
* @interface SourceClassificationStatusAllOfCountsV2025
|
|
38883
|
+
*/
|
|
38884
|
+
export interface SourceClassificationStatusAllOfCountsV2025 {
|
|
38885
|
+
/**
|
|
38886
|
+
* total number of source accounts
|
|
38887
|
+
* @type {number}
|
|
38888
|
+
* @memberof SourceClassificationStatusAllOfCountsV2025
|
|
38889
|
+
*/
|
|
38890
|
+
'EXPECTED': number;
|
|
38891
|
+
/**
|
|
38892
|
+
* number of accounts that have been sent for processing (should be the same as expected when all accounts are collected)
|
|
38893
|
+
* @type {number}
|
|
38894
|
+
* @memberof SourceClassificationStatusAllOfCountsV2025
|
|
38895
|
+
*/
|
|
38896
|
+
'RECEIVED': number;
|
|
38897
|
+
/**
|
|
38898
|
+
* number of accounts that have been classified
|
|
38899
|
+
* @type {number}
|
|
38900
|
+
* @memberof SourceClassificationStatusAllOfCountsV2025
|
|
38901
|
+
*/
|
|
38902
|
+
'COMPLETED': number;
|
|
38903
|
+
}
|
|
38904
|
+
/**
|
|
38905
|
+
*
|
|
38906
|
+
* @export
|
|
38907
|
+
* @interface SourceClassificationStatusV2025
|
|
38908
|
+
*/
|
|
38909
|
+
export interface SourceClassificationStatusV2025 {
|
|
38910
|
+
/**
|
|
38911
|
+
* Status of Classification Process
|
|
38912
|
+
* @type {string}
|
|
38913
|
+
* @memberof SourceClassificationStatusV2025
|
|
38914
|
+
*/
|
|
38915
|
+
'status'?: SourceClassificationStatusV2025StatusV2025;
|
|
38916
|
+
/**
|
|
38917
|
+
* Time when the process was started
|
|
38918
|
+
* @type {string}
|
|
38919
|
+
* @memberof SourceClassificationStatusV2025
|
|
38920
|
+
*/
|
|
38921
|
+
'started'?: string;
|
|
38922
|
+
/**
|
|
38923
|
+
* Time when the process status was last updated
|
|
38924
|
+
* @type {string}
|
|
38925
|
+
* @memberof SourceClassificationStatusV2025
|
|
38926
|
+
*/
|
|
38927
|
+
'updated'?: string | null;
|
|
38928
|
+
/**
|
|
38929
|
+
*
|
|
38930
|
+
* @type {SourceClassificationStatusAllOfCountsV2025}
|
|
38931
|
+
* @memberof SourceClassificationStatusV2025
|
|
38932
|
+
*/
|
|
38933
|
+
'counts'?: SourceClassificationStatusAllOfCountsV2025;
|
|
38934
|
+
}
|
|
38935
|
+
|
|
38936
|
+
export const SourceClassificationStatusV2025StatusV2025 = {
|
|
38937
|
+
Started: 'STARTED',
|
|
38938
|
+
Collected: 'COLLECTED',
|
|
38939
|
+
Completed: 'COMPLETED',
|
|
38940
|
+
Cancelled: 'CANCELLED',
|
|
38941
|
+
Terminated: 'TERMINATED'
|
|
38942
|
+
} as const;
|
|
38943
|
+
|
|
38944
|
+
export type SourceClassificationStatusV2025StatusV2025 = typeof SourceClassificationStatusV2025StatusV2025[keyof typeof SourceClassificationStatusV2025StatusV2025];
|
|
38945
|
+
|
|
38632
38946
|
/**
|
|
38633
38947
|
* Source cluster.
|
|
38634
38948
|
* @export
|
|
@@ -46495,74 +46809,74 @@ export const AccessRequestApprovalsV2025ApiAxiosParamCreator = function (configu
|
|
|
46495
46809
|
const localVarHeaderParameter = {} as any;
|
|
46496
46810
|
const localVarQueryParameter = {} as any;
|
|
46497
46811
|
|
|
46498
|
-
// authentication userAuth required
|
|
46499
|
-
// oauth required
|
|
46500
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
46501
|
-
|
|
46502
|
-
// authentication userAuth required
|
|
46503
|
-
// oauth required
|
|
46504
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
46505
|
-
|
|
46506
|
-
if (ownerId !== undefined) {
|
|
46507
|
-
localVarQueryParameter['owner-id'] = ownerId;
|
|
46508
|
-
}
|
|
46509
|
-
|
|
46510
|
-
if (limit !== undefined) {
|
|
46511
|
-
localVarQueryParameter['limit'] = limit;
|
|
46512
|
-
}
|
|
46513
|
-
|
|
46514
|
-
if (offset !== undefined) {
|
|
46515
|
-
localVarQueryParameter['offset'] = offset;
|
|
46516
|
-
}
|
|
46517
|
-
|
|
46518
|
-
if (count !== undefined) {
|
|
46519
|
-
localVarQueryParameter['count'] = count;
|
|
46520
|
-
}
|
|
46521
|
-
|
|
46522
|
-
if (filters !== undefined) {
|
|
46523
|
-
localVarQueryParameter['filters'] = filters;
|
|
46524
|
-
}
|
|
46525
|
-
|
|
46526
|
-
if (sorters !== undefined) {
|
|
46527
|
-
localVarQueryParameter['sorters'] = sorters;
|
|
46528
|
-
}
|
|
46529
|
-
|
|
46530
|
-
|
|
46531
|
-
|
|
46532
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
46533
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
46534
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
46535
|
-
|
|
46536
|
-
return {
|
|
46537
|
-
url: toPathString(localVarUrlObj),
|
|
46538
|
-
axiosOptions: localVarRequestOptions,
|
|
46539
|
-
};
|
|
46540
|
-
},
|
|
46541
|
-
/**
|
|
46542
|
-
* This endpoint returns a list of pending approvals. See \"owner-id\" query parameter below for authorization info.
|
|
46543
|
-
* @summary Pending access request approvals list
|
|
46544
|
-
* @param {string} [ownerId] If present, the value returns only pending approvals for the specified identity. * ORG_ADMIN users can call this with any identity ID value. * ORG_ADMIN users can also fetch all the approvals in the org, when owner-id is not used. * Non-ORG_ADMIN users can only specify *me* or pass their own identity ID value.
|
|
46545
|
-
* @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.
|
|
46546
|
-
* @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.
|
|
46547
|
-
* @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.
|
|
46548
|
-
* @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* **requestedFor.id**: *eq, in* **modified**: *gt, lt, ge, le, eq, in* **accessRequestId**: *eq, in* **created**: *gt, lt, ge, le, eq, in*
|
|
46549
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
|
|
46550
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
46551
|
-
* @throws {RequiredError}
|
|
46552
|
-
*/
|
|
46553
|
-
listPendingApprovals: async (ownerId?: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
46554
|
-
const localVarPath = `/access-request-approvals/pending`;
|
|
46555
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
46556
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
46557
|
-
let baseOptions;
|
|
46558
|
-
if (configuration) {
|
|
46559
|
-
baseOptions = configuration.baseOptions;
|
|
46560
|
-
}
|
|
46561
|
-
|
|
46562
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
46563
|
-
const localVarHeaderParameter = {} as any;
|
|
46564
|
-
const localVarQueryParameter = {} as any;
|
|
46565
|
-
|
|
46812
|
+
// authentication userAuth required
|
|
46813
|
+
// oauth required
|
|
46814
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
46815
|
+
|
|
46816
|
+
// authentication userAuth required
|
|
46817
|
+
// oauth required
|
|
46818
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
46819
|
+
|
|
46820
|
+
if (ownerId !== undefined) {
|
|
46821
|
+
localVarQueryParameter['owner-id'] = ownerId;
|
|
46822
|
+
}
|
|
46823
|
+
|
|
46824
|
+
if (limit !== undefined) {
|
|
46825
|
+
localVarQueryParameter['limit'] = limit;
|
|
46826
|
+
}
|
|
46827
|
+
|
|
46828
|
+
if (offset !== undefined) {
|
|
46829
|
+
localVarQueryParameter['offset'] = offset;
|
|
46830
|
+
}
|
|
46831
|
+
|
|
46832
|
+
if (count !== undefined) {
|
|
46833
|
+
localVarQueryParameter['count'] = count;
|
|
46834
|
+
}
|
|
46835
|
+
|
|
46836
|
+
if (filters !== undefined) {
|
|
46837
|
+
localVarQueryParameter['filters'] = filters;
|
|
46838
|
+
}
|
|
46839
|
+
|
|
46840
|
+
if (sorters !== undefined) {
|
|
46841
|
+
localVarQueryParameter['sorters'] = sorters;
|
|
46842
|
+
}
|
|
46843
|
+
|
|
46844
|
+
|
|
46845
|
+
|
|
46846
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
46847
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
46848
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
46849
|
+
|
|
46850
|
+
return {
|
|
46851
|
+
url: toPathString(localVarUrlObj),
|
|
46852
|
+
axiosOptions: localVarRequestOptions,
|
|
46853
|
+
};
|
|
46854
|
+
},
|
|
46855
|
+
/**
|
|
46856
|
+
* This endpoint returns a list of pending approvals. See \"owner-id\" query parameter below for authorization info.
|
|
46857
|
+
* @summary Pending access request approvals list
|
|
46858
|
+
* @param {string} [ownerId] If present, the value returns only pending approvals for the specified identity. * ORG_ADMIN users can call this with any identity ID value. * ORG_ADMIN users can also fetch all the approvals in the org, when owner-id is not used. * Non-ORG_ADMIN users can only specify *me* or pass their own identity ID value.
|
|
46859
|
+
* @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.
|
|
46860
|
+
* @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.
|
|
46861
|
+
* @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.
|
|
46862
|
+
* @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* **requestedFor.id**: *eq, in* **modified**: *gt, lt, ge, le, eq, in* **accessRequestId**: *eq, in* **created**: *gt, lt, ge, le, eq, in*
|
|
46863
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
|
|
46864
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
46865
|
+
* @throws {RequiredError}
|
|
46866
|
+
*/
|
|
46867
|
+
listPendingApprovals: async (ownerId?: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
46868
|
+
const localVarPath = `/access-request-approvals/pending`;
|
|
46869
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
46870
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
46871
|
+
let baseOptions;
|
|
46872
|
+
if (configuration) {
|
|
46873
|
+
baseOptions = configuration.baseOptions;
|
|
46874
|
+
}
|
|
46875
|
+
|
|
46876
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
46877
|
+
const localVarHeaderParameter = {} as any;
|
|
46878
|
+
const localVarQueryParameter = {} as any;
|
|
46879
|
+
|
|
46566
46880
|
// authentication userAuth required
|
|
46567
46881
|
// oauth required
|
|
46568
46882
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
@@ -47520,7 +47834,7 @@ export const AccessRequestsV2025ApiAxiosParamCreator = function (configuration?:
|
|
|
47520
47834
|
};
|
|
47521
47835
|
},
|
|
47522
47836
|
/**
|
|
47523
|
-
* 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
|
|
47837
|
+
* 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.
|
|
47524
47838
|
* @summary Submit access request
|
|
47525
47839
|
* @param {AccessRequestV2025} accessRequestV2025
|
|
47526
47840
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -47983,7 +48297,7 @@ export const AccessRequestsV2025ApiFp = function(configuration?: Configuration)
|
|
|
47983
48297
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
47984
48298
|
},
|
|
47985
48299
|
/**
|
|
47986
|
-
* 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
|
|
48300
|
+
* 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.
|
|
47987
48301
|
* @summary Submit access request
|
|
47988
48302
|
* @param {AccessRequestV2025} accessRequestV2025
|
|
47989
48303
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -48143,7 +48457,7 @@ export const AccessRequestsV2025ApiFactory = function (configuration?: Configura
|
|
|
48143
48457
|
return localVarFp.closeAccessRequest(requestParameters.closeAccessRequestV2025, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
48144
48458
|
},
|
|
48145
48459
|
/**
|
|
48146
|
-
* 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
|
|
48460
|
+
* 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.
|
|
48147
48461
|
* @summary Submit access request
|
|
48148
48462
|
* @param {AccessRequestsV2025ApiCreateAccessRequestRequest} requestParameters Request parameters.
|
|
48149
48463
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -48557,7 +48871,7 @@ export class AccessRequestsV2025Api extends BaseAPI {
|
|
|
48557
48871
|
}
|
|
48558
48872
|
|
|
48559
48873
|
/**
|
|
48560
|
-
* 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
|
|
48874
|
+
* 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.
|
|
48561
48875
|
* @summary Submit access request
|
|
48562
48876
|
* @param {AccessRequestsV2025ApiCreateAccessRequestRequest} requestParameters Request parameters.
|
|
48563
48877
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -59711,162 +60025,23 @@ export class CertificationsV2025Api extends BaseAPI {
|
|
|
59711
60025
|
|
|
59712
60026
|
|
|
59713
60027
|
/**
|
|
59714
|
-
*
|
|
60028
|
+
* ClassifySourceV2025Api - axios parameter creator
|
|
59715
60029
|
* @export
|
|
59716
60030
|
*/
|
|
59717
|
-
export const
|
|
60031
|
+
export const ClassifySourceV2025ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
59718
60032
|
return {
|
|
59719
60033
|
/**
|
|
59720
|
-
*
|
|
59721
|
-
* @summary
|
|
59722
|
-
* @param {
|
|
59723
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
59724
|
-
* @throws {RequiredError}
|
|
59725
|
-
*/
|
|
59726
|
-
createDeploy: async (deployRequestV2025: DeployRequestV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
59727
|
-
// verify required parameter 'deployRequestV2025' is not null or undefined
|
|
59728
|
-
assertParamExists('createDeploy', 'deployRequestV2025', deployRequestV2025)
|
|
59729
|
-
const localVarPath = `/configuration-hub/deploys`;
|
|
59730
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
59731
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
59732
|
-
let baseOptions;
|
|
59733
|
-
if (configuration) {
|
|
59734
|
-
baseOptions = configuration.baseOptions;
|
|
59735
|
-
}
|
|
59736
|
-
|
|
59737
|
-
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
59738
|
-
const localVarHeaderParameter = {} as any;
|
|
59739
|
-
const localVarQueryParameter = {} as any;
|
|
59740
|
-
|
|
59741
|
-
// authentication userAuth required
|
|
59742
|
-
// oauth required
|
|
59743
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
59744
|
-
|
|
59745
|
-
// authentication userAuth required
|
|
59746
|
-
// oauth required
|
|
59747
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
59748
|
-
|
|
59749
|
-
|
|
59750
|
-
|
|
59751
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
59752
|
-
|
|
59753
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
59754
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
59755
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
59756
|
-
localVarRequestOptions.data = serializeDataIfNeeded(deployRequestV2025, localVarRequestOptions, configuration)
|
|
59757
|
-
|
|
59758
|
-
return {
|
|
59759
|
-
url: toPathString(localVarUrlObj),
|
|
59760
|
-
axiosOptions: localVarRequestOptions,
|
|
59761
|
-
};
|
|
59762
|
-
},
|
|
59763
|
-
/**
|
|
59764
|
-
* This creates an object mapping between current org and source org. Source org should be \"default\" when creating an object mapping that is not to be associated to any particular org. The request will need the following security scope: - sp:config-object-mapping:manage
|
|
59765
|
-
* @summary Creates an object mapping
|
|
59766
|
-
* @param {string} sourceOrg The name of the source org.
|
|
59767
|
-
* @param {ObjectMappingRequestV2025} objectMappingRequestV2025 The object mapping request body.
|
|
59768
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
59769
|
-
* @throws {RequiredError}
|
|
59770
|
-
*/
|
|
59771
|
-
createObjectMapping: async (sourceOrg: string, objectMappingRequestV2025: ObjectMappingRequestV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
59772
|
-
// verify required parameter 'sourceOrg' is not null or undefined
|
|
59773
|
-
assertParamExists('createObjectMapping', 'sourceOrg', sourceOrg)
|
|
59774
|
-
// verify required parameter 'objectMappingRequestV2025' is not null or undefined
|
|
59775
|
-
assertParamExists('createObjectMapping', 'objectMappingRequestV2025', objectMappingRequestV2025)
|
|
59776
|
-
const localVarPath = `/configuration-hub/object-mappings/{sourceOrg}`
|
|
59777
|
-
.replace(`{${"sourceOrg"}}`, encodeURIComponent(String(sourceOrg)));
|
|
59778
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
59779
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
59780
|
-
let baseOptions;
|
|
59781
|
-
if (configuration) {
|
|
59782
|
-
baseOptions = configuration.baseOptions;
|
|
59783
|
-
}
|
|
59784
|
-
|
|
59785
|
-
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
59786
|
-
const localVarHeaderParameter = {} as any;
|
|
59787
|
-
const localVarQueryParameter = {} as any;
|
|
59788
|
-
|
|
59789
|
-
// authentication userAuth required
|
|
59790
|
-
// oauth required
|
|
59791
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
59792
|
-
|
|
59793
|
-
// authentication userAuth required
|
|
59794
|
-
// oauth required
|
|
59795
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
59796
|
-
|
|
59797
|
-
|
|
59798
|
-
|
|
59799
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
59800
|
-
|
|
59801
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
59802
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
59803
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
59804
|
-
localVarRequestOptions.data = serializeDataIfNeeded(objectMappingRequestV2025, localVarRequestOptions, configuration)
|
|
59805
|
-
|
|
59806
|
-
return {
|
|
59807
|
-
url: toPathString(localVarUrlObj),
|
|
59808
|
-
axiosOptions: localVarRequestOptions,
|
|
59809
|
-
};
|
|
59810
|
-
},
|
|
59811
|
-
/**
|
|
59812
|
-
* This creates a set of object mappings (Max 25) between current org and source org. Source org should be \"default\" when creating object mappings that are not to be associated to any particular org. The request will need the following security scope: - sp:config-object-mapping:manage
|
|
59813
|
-
* @summary Bulk creates object mappings
|
|
59814
|
-
* @param {string} sourceOrg The name of the source org.
|
|
59815
|
-
* @param {ObjectMappingBulkCreateRequestV2025} objectMappingBulkCreateRequestV2025 The bulk create object mapping request body.
|
|
59816
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
59817
|
-
* @throws {RequiredError}
|
|
59818
|
-
*/
|
|
59819
|
-
createObjectMappings: async (sourceOrg: string, objectMappingBulkCreateRequestV2025: ObjectMappingBulkCreateRequestV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
59820
|
-
// verify required parameter 'sourceOrg' is not null or undefined
|
|
59821
|
-
assertParamExists('createObjectMappings', 'sourceOrg', sourceOrg)
|
|
59822
|
-
// verify required parameter 'objectMappingBulkCreateRequestV2025' is not null or undefined
|
|
59823
|
-
assertParamExists('createObjectMappings', 'objectMappingBulkCreateRequestV2025', objectMappingBulkCreateRequestV2025)
|
|
59824
|
-
const localVarPath = `/configuration-hub/object-mappings/{sourceOrg}/bulk-create`
|
|
59825
|
-
.replace(`{${"sourceOrg"}}`, encodeURIComponent(String(sourceOrg)));
|
|
59826
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
59827
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
59828
|
-
let baseOptions;
|
|
59829
|
-
if (configuration) {
|
|
59830
|
-
baseOptions = configuration.baseOptions;
|
|
59831
|
-
}
|
|
59832
|
-
|
|
59833
|
-
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
59834
|
-
const localVarHeaderParameter = {} as any;
|
|
59835
|
-
const localVarQueryParameter = {} as any;
|
|
59836
|
-
|
|
59837
|
-
// authentication userAuth required
|
|
59838
|
-
// oauth required
|
|
59839
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
59840
|
-
|
|
59841
|
-
// authentication userAuth required
|
|
59842
|
-
// oauth required
|
|
59843
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
59844
|
-
|
|
59845
|
-
|
|
59846
|
-
|
|
59847
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
59848
|
-
|
|
59849
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
59850
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
59851
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
59852
|
-
localVarRequestOptions.data = serializeDataIfNeeded(objectMappingBulkCreateRequestV2025, localVarRequestOptions, configuration)
|
|
59853
|
-
|
|
59854
|
-
return {
|
|
59855
|
-
url: toPathString(localVarUrlObj),
|
|
59856
|
-
axiosOptions: localVarRequestOptions,
|
|
59857
|
-
};
|
|
59858
|
-
},
|
|
59859
|
-
/**
|
|
59860
|
-
* This API creates a new scheduled action for the current tenant.
|
|
59861
|
-
* @summary Create scheduled action
|
|
59862
|
-
* @param {ScheduledActionPayloadV2025} scheduledActionPayloadV2025 The scheduled action creation request body.
|
|
60034
|
+
* 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.
|
|
60035
|
+
* @summary Cancel classify source\'s accounts process
|
|
60036
|
+
* @param {string} id Source ID.
|
|
59863
60037
|
* @param {*} [axiosOptions] Override http request option.
|
|
59864
60038
|
* @throws {RequiredError}
|
|
59865
60039
|
*/
|
|
59866
|
-
|
|
59867
|
-
// verify required parameter '
|
|
59868
|
-
assertParamExists('
|
|
59869
|
-
const localVarPath = `/
|
|
60040
|
+
deleteClassifyMachineAccountFromSource: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
60041
|
+
// verify required parameter 'id' is not null or undefined
|
|
60042
|
+
assertParamExists('deleteClassifyMachineAccountFromSource', 'id', id)
|
|
60043
|
+
const localVarPath = `/sources/{sourceId}/classify`
|
|
60044
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
59870
60045
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
59871
60046
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
59872
60047
|
let baseOptions;
|
|
@@ -59874,7 +60049,7 @@ export const ConfigurationHubV2025ApiAxiosParamCreator = function (configuration
|
|
|
59874
60049
|
baseOptions = configuration.baseOptions;
|
|
59875
60050
|
}
|
|
59876
60051
|
|
|
59877
|
-
const localVarRequestOptions = { method: '
|
|
60052
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};
|
|
59878
60053
|
const localVarHeaderParameter = {} as any;
|
|
59879
60054
|
const localVarQueryParameter = {} as any;
|
|
59880
60055
|
|
|
@@ -59888,12 +60063,9 @@ export const ConfigurationHubV2025ApiAxiosParamCreator = function (configuration
|
|
|
59888
60063
|
|
|
59889
60064
|
|
|
59890
60065
|
|
|
59891
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
59892
|
-
|
|
59893
60066
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
59894
60067
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
59895
60068
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
59896
|
-
localVarRequestOptions.data = serializeDataIfNeeded(scheduledActionPayloadV2025, localVarRequestOptions, configuration)
|
|
59897
60069
|
|
|
59898
60070
|
return {
|
|
59899
60071
|
url: toPathString(localVarUrlObj),
|
|
@@ -59901,19 +60073,17 @@ export const ConfigurationHubV2025ApiAxiosParamCreator = function (configuration
|
|
|
59901
60073
|
};
|
|
59902
60074
|
},
|
|
59903
60075
|
/**
|
|
59904
|
-
*
|
|
59905
|
-
* @summary
|
|
59906
|
-
* @param {
|
|
59907
|
-
* @param {string} name Name that will be assigned to the uploaded configuration file.
|
|
60076
|
+
* 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.
|
|
60077
|
+
* @summary Source accounts classification status
|
|
60078
|
+
* @param {string} id Source ID.
|
|
59908
60079
|
* @param {*} [axiosOptions] Override http request option.
|
|
59909
60080
|
* @throws {RequiredError}
|
|
59910
60081
|
*/
|
|
59911
|
-
|
|
59912
|
-
// verify required parameter '
|
|
59913
|
-
assertParamExists('
|
|
59914
|
-
|
|
59915
|
-
|
|
59916
|
-
const localVarPath = `/configuration-hub/backups/uploads`;
|
|
60082
|
+
getClassifyMachineAccountFromSourceStatus: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
60083
|
+
// verify required parameter 'id' is not null or undefined
|
|
60084
|
+
assertParamExists('getClassifyMachineAccountFromSourceStatus', 'id', id)
|
|
60085
|
+
const localVarPath = `/sources/{sourceId}/classify`
|
|
60086
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
59917
60087
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
59918
60088
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
59919
60089
|
let baseOptions;
|
|
@@ -59921,10 +60091,9 @@ export const ConfigurationHubV2025ApiAxiosParamCreator = function (configuration
|
|
|
59921
60091
|
baseOptions = configuration.baseOptions;
|
|
59922
60092
|
}
|
|
59923
60093
|
|
|
59924
|
-
const localVarRequestOptions = { method: '
|
|
60094
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
59925
60095
|
const localVarHeaderParameter = {} as any;
|
|
59926
60096
|
const localVarQueryParameter = {} as any;
|
|
59927
|
-
const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
|
|
59928
60097
|
|
|
59929
60098
|
// authentication userAuth required
|
|
59930
60099
|
// oauth required
|
|
@@ -59935,21 +60104,10 @@ export const ConfigurationHubV2025ApiAxiosParamCreator = function (configuration
|
|
|
59935
60104
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
59936
60105
|
|
|
59937
60106
|
|
|
59938
|
-
if (data !== undefined) {
|
|
59939
|
-
localVarFormParams.append('data', data as any);
|
|
59940
|
-
}
|
|
59941
|
-
|
|
59942
|
-
if (name !== undefined) {
|
|
59943
|
-
localVarFormParams.append('name', name as any);
|
|
59944
|
-
}
|
|
59945
|
-
|
|
59946
|
-
|
|
59947
|
-
localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
|
|
59948
60107
|
|
|
59949
60108
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
59950
60109
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
59951
60110
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
59952
|
-
localVarRequestOptions.data = localVarFormParams;
|
|
59953
60111
|
|
|
59954
60112
|
return {
|
|
59955
60113
|
url: toPathString(localVarUrlObj),
|
|
@@ -59957,16 +60115,16 @@ export const ConfigurationHubV2025ApiAxiosParamCreator = function (configuration
|
|
|
59957
60115
|
};
|
|
59958
60116
|
},
|
|
59959
60117
|
/**
|
|
59960
|
-
*
|
|
59961
|
-
* @summary
|
|
59962
|
-
* @param {string} id
|
|
60118
|
+
* 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.
|
|
60119
|
+
* @summary Classify source\'s all accounts
|
|
60120
|
+
* @param {string} id Source ID.
|
|
59963
60121
|
* @param {*} [axiosOptions] Override http request option.
|
|
59964
60122
|
* @throws {RequiredError}
|
|
59965
60123
|
*/
|
|
59966
|
-
|
|
60124
|
+
sendClassifyMachineAccountFromSource: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
59967
60125
|
// verify required parameter 'id' is not null or undefined
|
|
59968
|
-
assertParamExists('
|
|
59969
|
-
const localVarPath = `/
|
|
60126
|
+
assertParamExists('sendClassifyMachineAccountFromSource', 'id', id)
|
|
60127
|
+
const localVarPath = `/sources/{sourceId}/classify`
|
|
59970
60128
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
59971
60129
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
59972
60130
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -59975,7 +60133,475 @@ export const ConfigurationHubV2025ApiAxiosParamCreator = function (configuration
|
|
|
59975
60133
|
baseOptions = configuration.baseOptions;
|
|
59976
60134
|
}
|
|
59977
60135
|
|
|
59978
|
-
const localVarRequestOptions = { method: '
|
|
60136
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
60137
|
+
const localVarHeaderParameter = {} as any;
|
|
60138
|
+
const localVarQueryParameter = {} as any;
|
|
60139
|
+
|
|
60140
|
+
// authentication userAuth required
|
|
60141
|
+
// oauth required
|
|
60142
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60143
|
+
|
|
60144
|
+
// authentication userAuth required
|
|
60145
|
+
// oauth required
|
|
60146
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60147
|
+
|
|
60148
|
+
|
|
60149
|
+
|
|
60150
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
60151
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
60152
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
60153
|
+
|
|
60154
|
+
return {
|
|
60155
|
+
url: toPathString(localVarUrlObj),
|
|
60156
|
+
axiosOptions: localVarRequestOptions,
|
|
60157
|
+
};
|
|
60158
|
+
},
|
|
60159
|
+
}
|
|
60160
|
+
};
|
|
60161
|
+
|
|
60162
|
+
/**
|
|
60163
|
+
* ClassifySourceV2025Api - functional programming interface
|
|
60164
|
+
* @export
|
|
60165
|
+
*/
|
|
60166
|
+
export const ClassifySourceV2025ApiFp = function(configuration?: Configuration) {
|
|
60167
|
+
const localVarAxiosParamCreator = ClassifySourceV2025ApiAxiosParamCreator(configuration)
|
|
60168
|
+
return {
|
|
60169
|
+
/**
|
|
60170
|
+
* 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.
|
|
60171
|
+
* @summary Cancel classify source\'s accounts process
|
|
60172
|
+
* @param {string} id Source ID.
|
|
60173
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
60174
|
+
* @throws {RequiredError}
|
|
60175
|
+
*/
|
|
60176
|
+
async deleteClassifyMachineAccountFromSource(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
60177
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteClassifyMachineAccountFromSource(id, axiosOptions);
|
|
60178
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
60179
|
+
const localVarOperationServerBasePath = operationServerMap['ClassifySourceV2025Api.deleteClassifyMachineAccountFromSource']?.[localVarOperationServerIndex]?.url;
|
|
60180
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
60181
|
+
},
|
|
60182
|
+
/**
|
|
60183
|
+
* 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.
|
|
60184
|
+
* @summary Source accounts classification status
|
|
60185
|
+
* @param {string} id Source ID.
|
|
60186
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
60187
|
+
* @throws {RequiredError}
|
|
60188
|
+
*/
|
|
60189
|
+
async getClassifyMachineAccountFromSourceStatus(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceClassificationStatusV2025>> {
|
|
60190
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getClassifyMachineAccountFromSourceStatus(id, axiosOptions);
|
|
60191
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
60192
|
+
const localVarOperationServerBasePath = operationServerMap['ClassifySourceV2025Api.getClassifyMachineAccountFromSourceStatus']?.[localVarOperationServerIndex]?.url;
|
|
60193
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
60194
|
+
},
|
|
60195
|
+
/**
|
|
60196
|
+
* 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.
|
|
60197
|
+
* @summary Classify source\'s all accounts
|
|
60198
|
+
* @param {string} id Source ID.
|
|
60199
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
60200
|
+
* @throws {RequiredError}
|
|
60201
|
+
*/
|
|
60202
|
+
async sendClassifyMachineAccountFromSource(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SendClassifyMachineAccountFromSource200ResponseV2025>> {
|
|
60203
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.sendClassifyMachineAccountFromSource(id, axiosOptions);
|
|
60204
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
60205
|
+
const localVarOperationServerBasePath = operationServerMap['ClassifySourceV2025Api.sendClassifyMachineAccountFromSource']?.[localVarOperationServerIndex]?.url;
|
|
60206
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
60207
|
+
},
|
|
60208
|
+
}
|
|
60209
|
+
};
|
|
60210
|
+
|
|
60211
|
+
/**
|
|
60212
|
+
* ClassifySourceV2025Api - factory interface
|
|
60213
|
+
* @export
|
|
60214
|
+
*/
|
|
60215
|
+
export const ClassifySourceV2025ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
60216
|
+
const localVarFp = ClassifySourceV2025ApiFp(configuration)
|
|
60217
|
+
return {
|
|
60218
|
+
/**
|
|
60219
|
+
* 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.
|
|
60220
|
+
* @summary Cancel classify source\'s accounts process
|
|
60221
|
+
* @param {ClassifySourceV2025ApiDeleteClassifyMachineAccountFromSourceRequest} requestParameters Request parameters.
|
|
60222
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
60223
|
+
* @throws {RequiredError}
|
|
60224
|
+
*/
|
|
60225
|
+
deleteClassifyMachineAccountFromSource(requestParameters: ClassifySourceV2025ApiDeleteClassifyMachineAccountFromSourceRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
60226
|
+
return localVarFp.deleteClassifyMachineAccountFromSource(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
60227
|
+
},
|
|
60228
|
+
/**
|
|
60229
|
+
* 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.
|
|
60230
|
+
* @summary Source accounts classification status
|
|
60231
|
+
* @param {ClassifySourceV2025ApiGetClassifyMachineAccountFromSourceStatusRequest} requestParameters Request parameters.
|
|
60232
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
60233
|
+
* @throws {RequiredError}
|
|
60234
|
+
*/
|
|
60235
|
+
getClassifyMachineAccountFromSourceStatus(requestParameters: ClassifySourceV2025ApiGetClassifyMachineAccountFromSourceStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceClassificationStatusV2025> {
|
|
60236
|
+
return localVarFp.getClassifyMachineAccountFromSourceStatus(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
60237
|
+
},
|
|
60238
|
+
/**
|
|
60239
|
+
* 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.
|
|
60240
|
+
* @summary Classify source\'s all accounts
|
|
60241
|
+
* @param {ClassifySourceV2025ApiSendClassifyMachineAccountFromSourceRequest} requestParameters Request parameters.
|
|
60242
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
60243
|
+
* @throws {RequiredError}
|
|
60244
|
+
*/
|
|
60245
|
+
sendClassifyMachineAccountFromSource(requestParameters: ClassifySourceV2025ApiSendClassifyMachineAccountFromSourceRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SendClassifyMachineAccountFromSource200ResponseV2025> {
|
|
60246
|
+
return localVarFp.sendClassifyMachineAccountFromSource(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
60247
|
+
},
|
|
60248
|
+
};
|
|
60249
|
+
};
|
|
60250
|
+
|
|
60251
|
+
/**
|
|
60252
|
+
* Request parameters for deleteClassifyMachineAccountFromSource operation in ClassifySourceV2025Api.
|
|
60253
|
+
* @export
|
|
60254
|
+
* @interface ClassifySourceV2025ApiDeleteClassifyMachineAccountFromSourceRequest
|
|
60255
|
+
*/
|
|
60256
|
+
export interface ClassifySourceV2025ApiDeleteClassifyMachineAccountFromSourceRequest {
|
|
60257
|
+
/**
|
|
60258
|
+
* Source ID.
|
|
60259
|
+
* @type {string}
|
|
60260
|
+
* @memberof ClassifySourceV2025ApiDeleteClassifyMachineAccountFromSource
|
|
60261
|
+
*/
|
|
60262
|
+
readonly id: string
|
|
60263
|
+
}
|
|
60264
|
+
|
|
60265
|
+
/**
|
|
60266
|
+
* Request parameters for getClassifyMachineAccountFromSourceStatus operation in ClassifySourceV2025Api.
|
|
60267
|
+
* @export
|
|
60268
|
+
* @interface ClassifySourceV2025ApiGetClassifyMachineAccountFromSourceStatusRequest
|
|
60269
|
+
*/
|
|
60270
|
+
export interface ClassifySourceV2025ApiGetClassifyMachineAccountFromSourceStatusRequest {
|
|
60271
|
+
/**
|
|
60272
|
+
* Source ID.
|
|
60273
|
+
* @type {string}
|
|
60274
|
+
* @memberof ClassifySourceV2025ApiGetClassifyMachineAccountFromSourceStatus
|
|
60275
|
+
*/
|
|
60276
|
+
readonly id: string
|
|
60277
|
+
}
|
|
60278
|
+
|
|
60279
|
+
/**
|
|
60280
|
+
* Request parameters for sendClassifyMachineAccountFromSource operation in ClassifySourceV2025Api.
|
|
60281
|
+
* @export
|
|
60282
|
+
* @interface ClassifySourceV2025ApiSendClassifyMachineAccountFromSourceRequest
|
|
60283
|
+
*/
|
|
60284
|
+
export interface ClassifySourceV2025ApiSendClassifyMachineAccountFromSourceRequest {
|
|
60285
|
+
/**
|
|
60286
|
+
* Source ID.
|
|
60287
|
+
* @type {string}
|
|
60288
|
+
* @memberof ClassifySourceV2025ApiSendClassifyMachineAccountFromSource
|
|
60289
|
+
*/
|
|
60290
|
+
readonly id: string
|
|
60291
|
+
}
|
|
60292
|
+
|
|
60293
|
+
/**
|
|
60294
|
+
* ClassifySourceV2025Api - object-oriented interface
|
|
60295
|
+
* @export
|
|
60296
|
+
* @class ClassifySourceV2025Api
|
|
60297
|
+
* @extends {BaseAPI}
|
|
60298
|
+
*/
|
|
60299
|
+
export class ClassifySourceV2025Api extends BaseAPI {
|
|
60300
|
+
/**
|
|
60301
|
+
* 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.
|
|
60302
|
+
* @summary Cancel classify source\'s accounts process
|
|
60303
|
+
* @param {ClassifySourceV2025ApiDeleteClassifyMachineAccountFromSourceRequest} requestParameters Request parameters.
|
|
60304
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
60305
|
+
* @throws {RequiredError}
|
|
60306
|
+
* @memberof ClassifySourceV2025Api
|
|
60307
|
+
*/
|
|
60308
|
+
public deleteClassifyMachineAccountFromSource(requestParameters: ClassifySourceV2025ApiDeleteClassifyMachineAccountFromSourceRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
60309
|
+
return ClassifySourceV2025ApiFp(this.configuration).deleteClassifyMachineAccountFromSource(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
60310
|
+
}
|
|
60311
|
+
|
|
60312
|
+
/**
|
|
60313
|
+
* 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.
|
|
60314
|
+
* @summary Source accounts classification status
|
|
60315
|
+
* @param {ClassifySourceV2025ApiGetClassifyMachineAccountFromSourceStatusRequest} requestParameters Request parameters.
|
|
60316
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
60317
|
+
* @throws {RequiredError}
|
|
60318
|
+
* @memberof ClassifySourceV2025Api
|
|
60319
|
+
*/
|
|
60320
|
+
public getClassifyMachineAccountFromSourceStatus(requestParameters: ClassifySourceV2025ApiGetClassifyMachineAccountFromSourceStatusRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
60321
|
+
return ClassifySourceV2025ApiFp(this.configuration).getClassifyMachineAccountFromSourceStatus(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
60322
|
+
}
|
|
60323
|
+
|
|
60324
|
+
/**
|
|
60325
|
+
* 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.
|
|
60326
|
+
* @summary Classify source\'s all accounts
|
|
60327
|
+
* @param {ClassifySourceV2025ApiSendClassifyMachineAccountFromSourceRequest} requestParameters Request parameters.
|
|
60328
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
60329
|
+
* @throws {RequiredError}
|
|
60330
|
+
* @memberof ClassifySourceV2025Api
|
|
60331
|
+
*/
|
|
60332
|
+
public sendClassifyMachineAccountFromSource(requestParameters: ClassifySourceV2025ApiSendClassifyMachineAccountFromSourceRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
60333
|
+
return ClassifySourceV2025ApiFp(this.configuration).sendClassifyMachineAccountFromSource(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
60334
|
+
}
|
|
60335
|
+
}
|
|
60336
|
+
|
|
60337
|
+
|
|
60338
|
+
|
|
60339
|
+
/**
|
|
60340
|
+
* ConfigurationHubV2025Api - axios parameter creator
|
|
60341
|
+
* @export
|
|
60342
|
+
*/
|
|
60343
|
+
export const ConfigurationHubV2025ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
60344
|
+
return {
|
|
60345
|
+
/**
|
|
60346
|
+
* This API performs a deploy based on an existing daft.
|
|
60347
|
+
* @summary Create a deploy
|
|
60348
|
+
* @param {DeployRequestV2025} deployRequestV2025 The deploy request body.
|
|
60349
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
60350
|
+
* @throws {RequiredError}
|
|
60351
|
+
*/
|
|
60352
|
+
createDeploy: async (deployRequestV2025: DeployRequestV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
60353
|
+
// verify required parameter 'deployRequestV2025' is not null or undefined
|
|
60354
|
+
assertParamExists('createDeploy', 'deployRequestV2025', deployRequestV2025)
|
|
60355
|
+
const localVarPath = `/configuration-hub/deploys`;
|
|
60356
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
60357
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
60358
|
+
let baseOptions;
|
|
60359
|
+
if (configuration) {
|
|
60360
|
+
baseOptions = configuration.baseOptions;
|
|
60361
|
+
}
|
|
60362
|
+
|
|
60363
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
60364
|
+
const localVarHeaderParameter = {} as any;
|
|
60365
|
+
const localVarQueryParameter = {} as any;
|
|
60366
|
+
|
|
60367
|
+
// authentication userAuth required
|
|
60368
|
+
// oauth required
|
|
60369
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60370
|
+
|
|
60371
|
+
// authentication userAuth required
|
|
60372
|
+
// oauth required
|
|
60373
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60374
|
+
|
|
60375
|
+
|
|
60376
|
+
|
|
60377
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
60378
|
+
|
|
60379
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
60380
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
60381
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
60382
|
+
localVarRequestOptions.data = serializeDataIfNeeded(deployRequestV2025, localVarRequestOptions, configuration)
|
|
60383
|
+
|
|
60384
|
+
return {
|
|
60385
|
+
url: toPathString(localVarUrlObj),
|
|
60386
|
+
axiosOptions: localVarRequestOptions,
|
|
60387
|
+
};
|
|
60388
|
+
},
|
|
60389
|
+
/**
|
|
60390
|
+
* This creates an object mapping between current org and source org. Source org should be \"default\" when creating an object mapping that is not to be associated to any particular org. The request will need the following security scope: - sp:config-object-mapping:manage
|
|
60391
|
+
* @summary Creates an object mapping
|
|
60392
|
+
* @param {string} sourceOrg The name of the source org.
|
|
60393
|
+
* @param {ObjectMappingRequestV2025} objectMappingRequestV2025 The object mapping request body.
|
|
60394
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
60395
|
+
* @throws {RequiredError}
|
|
60396
|
+
*/
|
|
60397
|
+
createObjectMapping: async (sourceOrg: string, objectMappingRequestV2025: ObjectMappingRequestV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
60398
|
+
// verify required parameter 'sourceOrg' is not null or undefined
|
|
60399
|
+
assertParamExists('createObjectMapping', 'sourceOrg', sourceOrg)
|
|
60400
|
+
// verify required parameter 'objectMappingRequestV2025' is not null or undefined
|
|
60401
|
+
assertParamExists('createObjectMapping', 'objectMappingRequestV2025', objectMappingRequestV2025)
|
|
60402
|
+
const localVarPath = `/configuration-hub/object-mappings/{sourceOrg}`
|
|
60403
|
+
.replace(`{${"sourceOrg"}}`, encodeURIComponent(String(sourceOrg)));
|
|
60404
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
60405
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
60406
|
+
let baseOptions;
|
|
60407
|
+
if (configuration) {
|
|
60408
|
+
baseOptions = configuration.baseOptions;
|
|
60409
|
+
}
|
|
60410
|
+
|
|
60411
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
60412
|
+
const localVarHeaderParameter = {} as any;
|
|
60413
|
+
const localVarQueryParameter = {} as any;
|
|
60414
|
+
|
|
60415
|
+
// authentication userAuth required
|
|
60416
|
+
// oauth required
|
|
60417
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60418
|
+
|
|
60419
|
+
// authentication userAuth required
|
|
60420
|
+
// oauth required
|
|
60421
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60422
|
+
|
|
60423
|
+
|
|
60424
|
+
|
|
60425
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
60426
|
+
|
|
60427
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
60428
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
60429
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
60430
|
+
localVarRequestOptions.data = serializeDataIfNeeded(objectMappingRequestV2025, localVarRequestOptions, configuration)
|
|
60431
|
+
|
|
60432
|
+
return {
|
|
60433
|
+
url: toPathString(localVarUrlObj),
|
|
60434
|
+
axiosOptions: localVarRequestOptions,
|
|
60435
|
+
};
|
|
60436
|
+
},
|
|
60437
|
+
/**
|
|
60438
|
+
* This creates a set of object mappings (Max 25) between current org and source org. Source org should be \"default\" when creating object mappings that are not to be associated to any particular org. The request will need the following security scope: - sp:config-object-mapping:manage
|
|
60439
|
+
* @summary Bulk creates object mappings
|
|
60440
|
+
* @param {string} sourceOrg The name of the source org.
|
|
60441
|
+
* @param {ObjectMappingBulkCreateRequestV2025} objectMappingBulkCreateRequestV2025 The bulk create object mapping request body.
|
|
60442
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
60443
|
+
* @throws {RequiredError}
|
|
60444
|
+
*/
|
|
60445
|
+
createObjectMappings: async (sourceOrg: string, objectMappingBulkCreateRequestV2025: ObjectMappingBulkCreateRequestV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
60446
|
+
// verify required parameter 'sourceOrg' is not null or undefined
|
|
60447
|
+
assertParamExists('createObjectMappings', 'sourceOrg', sourceOrg)
|
|
60448
|
+
// verify required parameter 'objectMappingBulkCreateRequestV2025' is not null or undefined
|
|
60449
|
+
assertParamExists('createObjectMappings', 'objectMappingBulkCreateRequestV2025', objectMappingBulkCreateRequestV2025)
|
|
60450
|
+
const localVarPath = `/configuration-hub/object-mappings/{sourceOrg}/bulk-create`
|
|
60451
|
+
.replace(`{${"sourceOrg"}}`, encodeURIComponent(String(sourceOrg)));
|
|
60452
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
60453
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
60454
|
+
let baseOptions;
|
|
60455
|
+
if (configuration) {
|
|
60456
|
+
baseOptions = configuration.baseOptions;
|
|
60457
|
+
}
|
|
60458
|
+
|
|
60459
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
60460
|
+
const localVarHeaderParameter = {} as any;
|
|
60461
|
+
const localVarQueryParameter = {} as any;
|
|
60462
|
+
|
|
60463
|
+
// authentication userAuth required
|
|
60464
|
+
// oauth required
|
|
60465
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60466
|
+
|
|
60467
|
+
// authentication userAuth required
|
|
60468
|
+
// oauth required
|
|
60469
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60470
|
+
|
|
60471
|
+
|
|
60472
|
+
|
|
60473
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
60474
|
+
|
|
60475
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
60476
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
60477
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
60478
|
+
localVarRequestOptions.data = serializeDataIfNeeded(objectMappingBulkCreateRequestV2025, localVarRequestOptions, configuration)
|
|
60479
|
+
|
|
60480
|
+
return {
|
|
60481
|
+
url: toPathString(localVarUrlObj),
|
|
60482
|
+
axiosOptions: localVarRequestOptions,
|
|
60483
|
+
};
|
|
60484
|
+
},
|
|
60485
|
+
/**
|
|
60486
|
+
* This API creates a new scheduled action for the current tenant.
|
|
60487
|
+
* @summary Create scheduled action
|
|
60488
|
+
* @param {ScheduledActionPayloadV2025} scheduledActionPayloadV2025 The scheduled action creation request body.
|
|
60489
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
60490
|
+
* @throws {RequiredError}
|
|
60491
|
+
*/
|
|
60492
|
+
createScheduledAction: async (scheduledActionPayloadV2025: ScheduledActionPayloadV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
60493
|
+
// verify required parameter 'scheduledActionPayloadV2025' is not null or undefined
|
|
60494
|
+
assertParamExists('createScheduledAction', 'scheduledActionPayloadV2025', scheduledActionPayloadV2025)
|
|
60495
|
+
const localVarPath = `/configuration-hub/scheduled-actions`;
|
|
60496
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
60497
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
60498
|
+
let baseOptions;
|
|
60499
|
+
if (configuration) {
|
|
60500
|
+
baseOptions = configuration.baseOptions;
|
|
60501
|
+
}
|
|
60502
|
+
|
|
60503
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
60504
|
+
const localVarHeaderParameter = {} as any;
|
|
60505
|
+
const localVarQueryParameter = {} as any;
|
|
60506
|
+
|
|
60507
|
+
// authentication userAuth required
|
|
60508
|
+
// oauth required
|
|
60509
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60510
|
+
|
|
60511
|
+
// authentication userAuth required
|
|
60512
|
+
// oauth required
|
|
60513
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60514
|
+
|
|
60515
|
+
|
|
60516
|
+
|
|
60517
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
60518
|
+
|
|
60519
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
60520
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
60521
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
60522
|
+
localVarRequestOptions.data = serializeDataIfNeeded(scheduledActionPayloadV2025, localVarRequestOptions, configuration)
|
|
60523
|
+
|
|
60524
|
+
return {
|
|
60525
|
+
url: toPathString(localVarUrlObj),
|
|
60526
|
+
axiosOptions: localVarRequestOptions,
|
|
60527
|
+
};
|
|
60528
|
+
},
|
|
60529
|
+
/**
|
|
60530
|
+
* This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects) for more information about supported objects.
|
|
60531
|
+
* @summary Upload a configuration
|
|
60532
|
+
* @param {File} data JSON file containing the objects to be imported.
|
|
60533
|
+
* @param {string} name Name that will be assigned to the uploaded configuration file.
|
|
60534
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
60535
|
+
* @throws {RequiredError}
|
|
60536
|
+
*/
|
|
60537
|
+
createUploadedConfiguration: async (data: File, name: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
60538
|
+
// verify required parameter 'data' is not null or undefined
|
|
60539
|
+
assertParamExists('createUploadedConfiguration', 'data', data)
|
|
60540
|
+
// verify required parameter 'name' is not null or undefined
|
|
60541
|
+
assertParamExists('createUploadedConfiguration', 'name', name)
|
|
60542
|
+
const localVarPath = `/configuration-hub/backups/uploads`;
|
|
60543
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
60544
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
60545
|
+
let baseOptions;
|
|
60546
|
+
if (configuration) {
|
|
60547
|
+
baseOptions = configuration.baseOptions;
|
|
60548
|
+
}
|
|
60549
|
+
|
|
60550
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
60551
|
+
const localVarHeaderParameter = {} as any;
|
|
60552
|
+
const localVarQueryParameter = {} as any;
|
|
60553
|
+
const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
|
|
60554
|
+
|
|
60555
|
+
// authentication userAuth required
|
|
60556
|
+
// oauth required
|
|
60557
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60558
|
+
|
|
60559
|
+
// authentication userAuth required
|
|
60560
|
+
// oauth required
|
|
60561
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
60562
|
+
|
|
60563
|
+
|
|
60564
|
+
if (data !== undefined) {
|
|
60565
|
+
localVarFormParams.append('data', data as any);
|
|
60566
|
+
}
|
|
60567
|
+
|
|
60568
|
+
if (name !== undefined) {
|
|
60569
|
+
localVarFormParams.append('name', name as any);
|
|
60570
|
+
}
|
|
60571
|
+
|
|
60572
|
+
|
|
60573
|
+
localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
|
|
60574
|
+
|
|
60575
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
60576
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
60577
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
60578
|
+
localVarRequestOptions.data = localVarFormParams;
|
|
60579
|
+
|
|
60580
|
+
return {
|
|
60581
|
+
url: toPathString(localVarUrlObj),
|
|
60582
|
+
axiosOptions: localVarRequestOptions,
|
|
60583
|
+
};
|
|
60584
|
+
},
|
|
60585
|
+
/**
|
|
60586
|
+
* This API deletes an existing backup for the current tenant. On success, this endpoint will return an empty response. The backup id can be obtained from the response after a backup was successfully created, or from the list backups endpoint.
|
|
60587
|
+
* @summary Delete a backup
|
|
60588
|
+
* @param {string} id The id of the backup to delete.
|
|
60589
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
60590
|
+
* @throws {RequiredError}
|
|
60591
|
+
*/
|
|
60592
|
+
deleteBackup: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
60593
|
+
// verify required parameter 'id' is not null or undefined
|
|
60594
|
+
assertParamExists('deleteBackup', 'id', id)
|
|
60595
|
+
const localVarPath = `/configuration-hub/backups/{id}`
|
|
60596
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
60597
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
60598
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
60599
|
+
let baseOptions;
|
|
60600
|
+
if (configuration) {
|
|
60601
|
+
baseOptions = configuration.baseOptions;
|
|
60602
|
+
}
|
|
60603
|
+
|
|
60604
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};
|
|
59979
60605
|
const localVarHeaderParameter = {} as any;
|
|
59980
60606
|
const localVarQueryParameter = {} as any;
|
|
59981
60607
|
|
|
@@ -80181,19 +80807,17 @@ export const IdentitiesV2025ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80181
80807
|
* The API returns successful response if the requested identity was deleted.
|
|
80182
80808
|
* @summary Delete identity
|
|
80183
80809
|
* @param {string} id Identity Id
|
|
80184
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
80810
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
80185
80811
|
* @param {*} [axiosOptions] Override http request option.
|
|
80186
80812
|
* @throws {RequiredError}
|
|
80187
80813
|
*/
|
|
80188
|
-
deleteIdentity: async (id: string, xSailPointExperimental
|
|
80814
|
+
deleteIdentity: async (id: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
80189
80815
|
// verify required parameter 'id' is not null or undefined
|
|
80190
80816
|
assertParamExists('deleteIdentity', 'id', id)
|
|
80191
80817
|
if (xSailPointExperimental === undefined) {
|
|
80192
80818
|
xSailPointExperimental = 'true';
|
|
80193
80819
|
}
|
|
80194
80820
|
|
|
80195
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
80196
|
-
assertParamExists('deleteIdentity', 'xSailPointExperimental', xSailPointExperimental)
|
|
80197
80821
|
const localVarPath = `/identities/{id}`
|
|
80198
80822
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
80199
80823
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -80233,17 +80857,12 @@ export const IdentitiesV2025ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80233
80857
|
* This API returns a single identity using the Identity ID.
|
|
80234
80858
|
* @summary Identity details
|
|
80235
80859
|
* @param {string} id Identity Id
|
|
80236
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
80237
80860
|
* @param {*} [axiosOptions] Override http request option.
|
|
80238
80861
|
* @throws {RequiredError}
|
|
80239
80862
|
*/
|
|
80240
|
-
getIdentity: async (id: string,
|
|
80863
|
+
getIdentity: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
80241
80864
|
// verify required parameter 'id' is not null or undefined
|
|
80242
80865
|
assertParamExists('getIdentity', 'id', id)
|
|
80243
|
-
if (xSailPointExperimental === undefined) {
|
|
80244
|
-
xSailPointExperimental = 'true';
|
|
80245
|
-
}
|
|
80246
|
-
|
|
80247
80866
|
const localVarPath = `/identities/{id}`
|
|
80248
80867
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
80249
80868
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -80267,9 +80886,6 @@ export const IdentitiesV2025ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80267
80886
|
|
|
80268
80887
|
|
|
80269
80888
|
|
|
80270
|
-
if (xSailPointExperimental != null) {
|
|
80271
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
80272
|
-
}
|
|
80273
80889
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
80274
80890
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
80275
80891
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -80283,17 +80899,12 @@ export const IdentitiesV2025ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80283
80899
|
* 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.
|
|
80284
80900
|
* @summary Get ownership details
|
|
80285
80901
|
* @param {string} identityId Identity ID.
|
|
80286
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
80287
80902
|
* @param {*} [axiosOptions] Override http request option.
|
|
80288
80903
|
* @throws {RequiredError}
|
|
80289
80904
|
*/
|
|
80290
|
-
getIdentityOwnershipDetails: async (identityId: string,
|
|
80905
|
+
getIdentityOwnershipDetails: async (identityId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
80291
80906
|
// verify required parameter 'identityId' is not null or undefined
|
|
80292
80907
|
assertParamExists('getIdentityOwnershipDetails', 'identityId', identityId)
|
|
80293
|
-
if (xSailPointExperimental === undefined) {
|
|
80294
|
-
xSailPointExperimental = 'true';
|
|
80295
|
-
}
|
|
80296
|
-
|
|
80297
80908
|
const localVarPath = `/identities/{identityId}/ownership`
|
|
80298
80909
|
.replace(`{${"identityId"}}`, encodeURIComponent(String(identityId)));
|
|
80299
80910
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -80317,9 +80928,6 @@ export const IdentitiesV2025ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80317
80928
|
|
|
80318
80929
|
|
|
80319
80930
|
|
|
80320
|
-
if (xSailPointExperimental != null) {
|
|
80321
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
80322
|
-
}
|
|
80323
80931
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
80324
80932
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
80325
80933
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -80334,19 +80942,14 @@ export const IdentitiesV2025ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80334
80942
|
* @summary Role assignment details
|
|
80335
80943
|
* @param {string} identityId Identity Id
|
|
80336
80944
|
* @param {string} assignmentId Assignment Id
|
|
80337
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
80338
80945
|
* @param {*} [axiosOptions] Override http request option.
|
|
80339
80946
|
* @throws {RequiredError}
|
|
80340
80947
|
*/
|
|
80341
|
-
getRoleAssignment: async (identityId: string, assignmentId: string,
|
|
80948
|
+
getRoleAssignment: async (identityId: string, assignmentId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
80342
80949
|
// verify required parameter 'identityId' is not null or undefined
|
|
80343
80950
|
assertParamExists('getRoleAssignment', 'identityId', identityId)
|
|
80344
80951
|
// verify required parameter 'assignmentId' is not null or undefined
|
|
80345
80952
|
assertParamExists('getRoleAssignment', 'assignmentId', assignmentId)
|
|
80346
|
-
if (xSailPointExperimental === undefined) {
|
|
80347
|
-
xSailPointExperimental = 'true';
|
|
80348
|
-
}
|
|
80349
|
-
|
|
80350
80953
|
const localVarPath = `/identities/{identityId}/role-assignments/{assignmentId}`
|
|
80351
80954
|
.replace(`{${"identityId"}}`, encodeURIComponent(String(identityId)))
|
|
80352
80955
|
.replace(`{${"assignmentId"}}`, encodeURIComponent(String(assignmentId)));
|
|
@@ -80371,9 +80974,6 @@ export const IdentitiesV2025ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80371
80974
|
|
|
80372
80975
|
|
|
80373
80976
|
|
|
80374
|
-
if (xSailPointExperimental != null) {
|
|
80375
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
80376
|
-
}
|
|
80377
80977
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
80378
80978
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
80379
80979
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -80389,17 +80989,12 @@ export const IdentitiesV2025ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80389
80989
|
* @param {string} identityId Identity Id to get the role assignments for
|
|
80390
80990
|
* @param {string} [roleId] Role Id to filter the role assignments with
|
|
80391
80991
|
* @param {string} [roleName] Role name to filter the role assignments with
|
|
80392
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
80393
80992
|
* @param {*} [axiosOptions] Override http request option.
|
|
80394
80993
|
* @throws {RequiredError}
|
|
80395
80994
|
*/
|
|
80396
|
-
getRoleAssignments: async (identityId: string, roleId?: string, roleName?: string,
|
|
80995
|
+
getRoleAssignments: async (identityId: string, roleId?: string, roleName?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
80397
80996
|
// verify required parameter 'identityId' is not null or undefined
|
|
80398
80997
|
assertParamExists('getRoleAssignments', 'identityId', identityId)
|
|
80399
|
-
if (xSailPointExperimental === undefined) {
|
|
80400
|
-
xSailPointExperimental = 'true';
|
|
80401
|
-
}
|
|
80402
|
-
|
|
80403
80998
|
const localVarPath = `/identities/{identityId}/role-assignments`
|
|
80404
80999
|
.replace(`{${"identityId"}}`, encodeURIComponent(String(identityId)));
|
|
80405
81000
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -80431,9 +81026,6 @@ export const IdentitiesV2025ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80431
81026
|
|
|
80432
81027
|
|
|
80433
81028
|
|
|
80434
|
-
if (xSailPointExperimental != null) {
|
|
80435
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
80436
|
-
}
|
|
80437
81029
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
80438
81030
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
80439
81031
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -80452,15 +81044,10 @@ export const IdentitiesV2025ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80452
81044
|
* @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.
|
|
80453
81045
|
* @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.
|
|
80454
81046
|
* @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.
|
|
80455
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
80456
81047
|
* @param {*} [axiosOptions] Override http request option.
|
|
80457
81048
|
* @throws {RequiredError}
|
|
80458
81049
|
*/
|
|
80459
|
-
listIdentities: async (filters?: string, sorters?: string, defaultFilter?: ListIdentitiesDefaultFilterV2025, count?: boolean, limit?: number, offset?: number,
|
|
80460
|
-
if (xSailPointExperimental === undefined) {
|
|
80461
|
-
xSailPointExperimental = 'true';
|
|
80462
|
-
}
|
|
80463
|
-
|
|
81050
|
+
listIdentities: async (filters?: string, sorters?: string, defaultFilter?: ListIdentitiesDefaultFilterV2025, count?: boolean, limit?: number, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
80464
81051
|
const localVarPath = `/identities`;
|
|
80465
81052
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
80466
81053
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -80507,9 +81094,6 @@ export const IdentitiesV2025ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80507
81094
|
|
|
80508
81095
|
|
|
80509
81096
|
|
|
80510
|
-
if (xSailPointExperimental != null) {
|
|
80511
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
80512
|
-
}
|
|
80513
81097
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
80514
81098
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
80515
81099
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -80523,17 +81107,12 @@ export const IdentitiesV2025ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80523
81107
|
* 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.
|
|
80524
81108
|
* @summary Reset an identity
|
|
80525
81109
|
* @param {string} identityId Identity Id
|
|
80526
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
80527
81110
|
* @param {*} [axiosOptions] Override http request option.
|
|
80528
81111
|
* @throws {RequiredError}
|
|
80529
81112
|
*/
|
|
80530
|
-
resetIdentity: async (identityId: string,
|
|
81113
|
+
resetIdentity: async (identityId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
80531
81114
|
// verify required parameter 'identityId' is not null or undefined
|
|
80532
81115
|
assertParamExists('resetIdentity', 'identityId', identityId)
|
|
80533
|
-
if (xSailPointExperimental === undefined) {
|
|
80534
|
-
xSailPointExperimental = 'true';
|
|
80535
|
-
}
|
|
80536
|
-
|
|
80537
81116
|
const localVarPath = `/identities/{id}/reset`
|
|
80538
81117
|
.replace(`{${"identityId"}}`, encodeURIComponent(String(identityId)));
|
|
80539
81118
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -80557,9 +81136,6 @@ export const IdentitiesV2025ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80557
81136
|
|
|
80558
81137
|
|
|
80559
81138
|
|
|
80560
|
-
if (xSailPointExperimental != null) {
|
|
80561
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
80562
|
-
}
|
|
80563
81139
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
80564
81140
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
80565
81141
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -80629,17 +81205,12 @@ export const IdentitiesV2025ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80629
81205
|
* 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).
|
|
80630
81206
|
* @summary Invite identities to register
|
|
80631
81207
|
* @param {InviteIdentitiesRequestV2025} inviteIdentitiesRequestV2025
|
|
80632
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
80633
81208
|
* @param {*} [axiosOptions] Override http request option.
|
|
80634
81209
|
* @throws {RequiredError}
|
|
80635
81210
|
*/
|
|
80636
|
-
startIdentitiesInvite: async (inviteIdentitiesRequestV2025: InviteIdentitiesRequestV2025,
|
|
81211
|
+
startIdentitiesInvite: async (inviteIdentitiesRequestV2025: InviteIdentitiesRequestV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
80637
81212
|
// verify required parameter 'inviteIdentitiesRequestV2025' is not null or undefined
|
|
80638
81213
|
assertParamExists('startIdentitiesInvite', 'inviteIdentitiesRequestV2025', inviteIdentitiesRequestV2025)
|
|
80639
|
-
if (xSailPointExperimental === undefined) {
|
|
80640
|
-
xSailPointExperimental = 'true';
|
|
80641
|
-
}
|
|
80642
|
-
|
|
80643
81214
|
const localVarPath = `/identities/invite`;
|
|
80644
81215
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
80645
81216
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -80664,9 +81235,6 @@ export const IdentitiesV2025ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80664
81235
|
|
|
80665
81236
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
80666
81237
|
|
|
80667
|
-
if (xSailPointExperimental != null) {
|
|
80668
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
80669
|
-
}
|
|
80670
81238
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
80671
81239
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
80672
81240
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -80797,11 +81365,11 @@ export const IdentitiesV2025ApiFp = function(configuration?: Configuration) {
|
|
|
80797
81365
|
* The API returns successful response if the requested identity was deleted.
|
|
80798
81366
|
* @summary Delete identity
|
|
80799
81367
|
* @param {string} id Identity Id
|
|
80800
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
81368
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
80801
81369
|
* @param {*} [axiosOptions] Override http request option.
|
|
80802
81370
|
* @throws {RequiredError}
|
|
80803
81371
|
*/
|
|
80804
|
-
async deleteIdentity(id: string, xSailPointExperimental
|
|
81372
|
+
async deleteIdentity(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
80805
81373
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteIdentity(id, xSailPointExperimental, axiosOptions);
|
|
80806
81374
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
80807
81375
|
const localVarOperationServerBasePath = operationServerMap['IdentitiesV2025Api.deleteIdentity']?.[localVarOperationServerIndex]?.url;
|
|
@@ -80811,12 +81379,11 @@ export const IdentitiesV2025ApiFp = function(configuration?: Configuration) {
|
|
|
80811
81379
|
* This API returns a single identity using the Identity ID.
|
|
80812
81380
|
* @summary Identity details
|
|
80813
81381
|
* @param {string} id Identity Id
|
|
80814
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
80815
81382
|
* @param {*} [axiosOptions] Override http request option.
|
|
80816
81383
|
* @throws {RequiredError}
|
|
80817
81384
|
*/
|
|
80818
|
-
async getIdentity(id: string,
|
|
80819
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getIdentity(id,
|
|
81385
|
+
async getIdentity(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityV2025>> {
|
|
81386
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getIdentity(id, axiosOptions);
|
|
80820
81387
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
80821
81388
|
const localVarOperationServerBasePath = operationServerMap['IdentitiesV2025Api.getIdentity']?.[localVarOperationServerIndex]?.url;
|
|
80822
81389
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -80825,12 +81392,11 @@ export const IdentitiesV2025ApiFp = function(configuration?: Configuration) {
|
|
|
80825
81392
|
* 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.
|
|
80826
81393
|
* @summary Get ownership details
|
|
80827
81394
|
* @param {string} identityId Identity ID.
|
|
80828
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
80829
81395
|
* @param {*} [axiosOptions] Override http request option.
|
|
80830
81396
|
* @throws {RequiredError}
|
|
80831
81397
|
*/
|
|
80832
|
-
async getIdentityOwnershipDetails(identityId: string,
|
|
80833
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getIdentityOwnershipDetails(identityId,
|
|
81398
|
+
async getIdentityOwnershipDetails(identityId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityOwnershipAssociationDetailsV2025>> {
|
|
81399
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getIdentityOwnershipDetails(identityId, axiosOptions);
|
|
80834
81400
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
80835
81401
|
const localVarOperationServerBasePath = operationServerMap['IdentitiesV2025Api.getIdentityOwnershipDetails']?.[localVarOperationServerIndex]?.url;
|
|
80836
81402
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -80840,12 +81406,11 @@ export const IdentitiesV2025ApiFp = function(configuration?: Configuration) {
|
|
|
80840
81406
|
* @summary Role assignment details
|
|
80841
81407
|
* @param {string} identityId Identity Id
|
|
80842
81408
|
* @param {string} assignmentId Assignment Id
|
|
80843
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
80844
81409
|
* @param {*} [axiosOptions] Override http request option.
|
|
80845
81410
|
* @throws {RequiredError}
|
|
80846
81411
|
*/
|
|
80847
|
-
async getRoleAssignment(identityId: string, assignmentId: string,
|
|
80848
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getRoleAssignment(identityId, assignmentId,
|
|
81412
|
+
async getRoleAssignment(identityId: string, assignmentId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleAssignmentDtoV2025>> {
|
|
81413
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getRoleAssignment(identityId, assignmentId, axiosOptions);
|
|
80849
81414
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
80850
81415
|
const localVarOperationServerBasePath = operationServerMap['IdentitiesV2025Api.getRoleAssignment']?.[localVarOperationServerIndex]?.url;
|
|
80851
81416
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -80856,12 +81421,11 @@ export const IdentitiesV2025ApiFp = function(configuration?: Configuration) {
|
|
|
80856
81421
|
* @param {string} identityId Identity Id to get the role assignments for
|
|
80857
81422
|
* @param {string} [roleId] Role Id to filter the role assignments with
|
|
80858
81423
|
* @param {string} [roleName] Role name to filter the role assignments with
|
|
80859
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
80860
81424
|
* @param {*} [axiosOptions] Override http request option.
|
|
80861
81425
|
* @throws {RequiredError}
|
|
80862
81426
|
*/
|
|
80863
|
-
async getRoleAssignments(identityId: string, roleId?: string, roleName?: string,
|
|
80864
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getRoleAssignments(identityId, roleId, roleName,
|
|
81427
|
+
async getRoleAssignments(identityId: string, roleId?: string, roleName?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GetRoleAssignments200ResponseInnerV2025>>> {
|
|
81428
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getRoleAssignments(identityId, roleId, roleName, axiosOptions);
|
|
80865
81429
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
80866
81430
|
const localVarOperationServerBasePath = operationServerMap['IdentitiesV2025Api.getRoleAssignments']?.[localVarOperationServerIndex]?.url;
|
|
80867
81431
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -80875,12 +81439,11 @@ export const IdentitiesV2025ApiFp = function(configuration?: Configuration) {
|
|
|
80875
81439
|
* @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.
|
|
80876
81440
|
* @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.
|
|
80877
81441
|
* @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.
|
|
80878
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
80879
81442
|
* @param {*} [axiosOptions] Override http request option.
|
|
80880
81443
|
* @throws {RequiredError}
|
|
80881
81444
|
*/
|
|
80882
|
-
async listIdentities(filters?: string, sorters?: string, defaultFilter?: ListIdentitiesDefaultFilterV2025, count?: boolean, limit?: number, offset?: number,
|
|
80883
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listIdentities(filters, sorters, defaultFilter, count, limit, offset,
|
|
81445
|
+
async listIdentities(filters?: string, sorters?: string, defaultFilter?: ListIdentitiesDefaultFilterV2025, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IdentityV2025>>> {
|
|
81446
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listIdentities(filters, sorters, defaultFilter, count, limit, offset, axiosOptions);
|
|
80884
81447
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
80885
81448
|
const localVarOperationServerBasePath = operationServerMap['IdentitiesV2025Api.listIdentities']?.[localVarOperationServerIndex]?.url;
|
|
80886
81449
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -80889,12 +81452,11 @@ export const IdentitiesV2025ApiFp = function(configuration?: Configuration) {
|
|
|
80889
81452
|
* 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.
|
|
80890
81453
|
* @summary Reset an identity
|
|
80891
81454
|
* @param {string} identityId Identity Id
|
|
80892
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
80893
81455
|
* @param {*} [axiosOptions] Override http request option.
|
|
80894
81456
|
* @throws {RequiredError}
|
|
80895
81457
|
*/
|
|
80896
|
-
async resetIdentity(identityId: string,
|
|
80897
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.resetIdentity(identityId,
|
|
81458
|
+
async resetIdentity(identityId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
81459
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.resetIdentity(identityId, axiosOptions);
|
|
80898
81460
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
80899
81461
|
const localVarOperationServerBasePath = operationServerMap['IdentitiesV2025Api.resetIdentity']?.[localVarOperationServerIndex]?.url;
|
|
80900
81462
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -80918,12 +81480,11 @@ export const IdentitiesV2025ApiFp = function(configuration?: Configuration) {
|
|
|
80918
81480
|
* 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).
|
|
80919
81481
|
* @summary Invite identities to register
|
|
80920
81482
|
* @param {InviteIdentitiesRequestV2025} inviteIdentitiesRequestV2025
|
|
80921
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
80922
81483
|
* @param {*} [axiosOptions] Override http request option.
|
|
80923
81484
|
* @throws {RequiredError}
|
|
80924
81485
|
*/
|
|
80925
|
-
async startIdentitiesInvite(inviteIdentitiesRequestV2025: InviteIdentitiesRequestV2025,
|
|
80926
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.startIdentitiesInvite(inviteIdentitiesRequestV2025,
|
|
81486
|
+
async startIdentitiesInvite(inviteIdentitiesRequestV2025: InviteIdentitiesRequestV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2025>> {
|
|
81487
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.startIdentitiesInvite(inviteIdentitiesRequestV2025, axiosOptions);
|
|
80927
81488
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
80928
81489
|
const localVarOperationServerBasePath = operationServerMap['IdentitiesV2025Api.startIdentitiesInvite']?.[localVarOperationServerIndex]?.url;
|
|
80929
81490
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -80984,7 +81545,7 @@ export const IdentitiesV2025ApiFactory = function (configuration?: Configuration
|
|
|
80984
81545
|
* @throws {RequiredError}
|
|
80985
81546
|
*/
|
|
80986
81547
|
getIdentity(requestParameters: IdentitiesV2025ApiGetIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityV2025> {
|
|
80987
|
-
return localVarFp.getIdentity(requestParameters.id,
|
|
81548
|
+
return localVarFp.getIdentity(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
80988
81549
|
},
|
|
80989
81550
|
/**
|
|
80990
81551
|
* 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.
|
|
@@ -80994,7 +81555,7 @@ export const IdentitiesV2025ApiFactory = function (configuration?: Configuration
|
|
|
80994
81555
|
* @throws {RequiredError}
|
|
80995
81556
|
*/
|
|
80996
81557
|
getIdentityOwnershipDetails(requestParameters: IdentitiesV2025ApiGetIdentityOwnershipDetailsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityOwnershipAssociationDetailsV2025> {
|
|
80997
|
-
return localVarFp.getIdentityOwnershipDetails(requestParameters.identityId,
|
|
81558
|
+
return localVarFp.getIdentityOwnershipDetails(requestParameters.identityId, axiosOptions).then((request) => request(axios, basePath));
|
|
80998
81559
|
},
|
|
80999
81560
|
/**
|
|
81000
81561
|
*
|
|
@@ -81004,7 +81565,7 @@ export const IdentitiesV2025ApiFactory = function (configuration?: Configuration
|
|
|
81004
81565
|
* @throws {RequiredError}
|
|
81005
81566
|
*/
|
|
81006
81567
|
getRoleAssignment(requestParameters: IdentitiesV2025ApiGetRoleAssignmentRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RoleAssignmentDtoV2025> {
|
|
81007
|
-
return localVarFp.getRoleAssignment(requestParameters.identityId, requestParameters.assignmentId,
|
|
81568
|
+
return localVarFp.getRoleAssignment(requestParameters.identityId, requestParameters.assignmentId, axiosOptions).then((request) => request(axios, basePath));
|
|
81008
81569
|
},
|
|
81009
81570
|
/**
|
|
81010
81571
|
* 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.
|
|
@@ -81014,7 +81575,7 @@ export const IdentitiesV2025ApiFactory = function (configuration?: Configuration
|
|
|
81014
81575
|
* @throws {RequiredError}
|
|
81015
81576
|
*/
|
|
81016
81577
|
getRoleAssignments(requestParameters: IdentitiesV2025ApiGetRoleAssignmentsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<GetRoleAssignments200ResponseInnerV2025>> {
|
|
81017
|
-
return localVarFp.getRoleAssignments(requestParameters.identityId, requestParameters.roleId, requestParameters.roleName,
|
|
81578
|
+
return localVarFp.getRoleAssignments(requestParameters.identityId, requestParameters.roleId, requestParameters.roleName, axiosOptions).then((request) => request(axios, basePath));
|
|
81018
81579
|
},
|
|
81019
81580
|
/**
|
|
81020
81581
|
* This API returns a list of identities.
|
|
@@ -81024,7 +81585,7 @@ export const IdentitiesV2025ApiFactory = function (configuration?: Configuration
|
|
|
81024
81585
|
* @throws {RequiredError}
|
|
81025
81586
|
*/
|
|
81026
81587
|
listIdentities(requestParameters: IdentitiesV2025ApiListIdentitiesRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<IdentityV2025>> {
|
|
81027
|
-
return localVarFp.listIdentities(requestParameters.filters, requestParameters.sorters, requestParameters.defaultFilter, requestParameters.count, requestParameters.limit, requestParameters.offset,
|
|
81588
|
+
return localVarFp.listIdentities(requestParameters.filters, requestParameters.sorters, requestParameters.defaultFilter, requestParameters.count, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(axios, basePath));
|
|
81028
81589
|
},
|
|
81029
81590
|
/**
|
|
81030
81591
|
* 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.
|
|
@@ -81034,7 +81595,7 @@ export const IdentitiesV2025ApiFactory = function (configuration?: Configuration
|
|
|
81034
81595
|
* @throws {RequiredError}
|
|
81035
81596
|
*/
|
|
81036
81597
|
resetIdentity(requestParameters: IdentitiesV2025ApiResetIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
81037
|
-
return localVarFp.resetIdentity(requestParameters.identityId,
|
|
81598
|
+
return localVarFp.resetIdentity(requestParameters.identityId, axiosOptions).then((request) => request(axios, basePath));
|
|
81038
81599
|
},
|
|
81039
81600
|
/**
|
|
81040
81601
|
* 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.
|
|
@@ -81054,7 +81615,7 @@ export const IdentitiesV2025ApiFactory = function (configuration?: Configuration
|
|
|
81054
81615
|
* @throws {RequiredError}
|
|
81055
81616
|
*/
|
|
81056
81617
|
startIdentitiesInvite(requestParameters: IdentitiesV2025ApiStartIdentitiesInviteRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TaskStatusV2025> {
|
|
81057
|
-
return localVarFp.startIdentitiesInvite(requestParameters.inviteIdentitiesRequestV2025,
|
|
81618
|
+
return localVarFp.startIdentitiesInvite(requestParameters.inviteIdentitiesRequestV2025, axiosOptions).then((request) => request(axios, basePath));
|
|
81058
81619
|
},
|
|
81059
81620
|
/**
|
|
81060
81621
|
* 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.
|
|
@@ -81097,7 +81658,7 @@ export interface IdentitiesV2025ApiDeleteIdentityRequest {
|
|
|
81097
81658
|
* @type {string}
|
|
81098
81659
|
* @memberof IdentitiesV2025ApiDeleteIdentity
|
|
81099
81660
|
*/
|
|
81100
|
-
readonly xSailPointExperimental
|
|
81661
|
+
readonly xSailPointExperimental?: string
|
|
81101
81662
|
}
|
|
81102
81663
|
|
|
81103
81664
|
/**
|
|
@@ -81112,13 +81673,6 @@ export interface IdentitiesV2025ApiGetIdentityRequest {
|
|
|
81112
81673
|
* @memberof IdentitiesV2025ApiGetIdentity
|
|
81113
81674
|
*/
|
|
81114
81675
|
readonly id: string
|
|
81115
|
-
|
|
81116
|
-
/**
|
|
81117
|
-
* Use this header to enable this experimental API.
|
|
81118
|
-
* @type {string}
|
|
81119
|
-
* @memberof IdentitiesV2025ApiGetIdentity
|
|
81120
|
-
*/
|
|
81121
|
-
readonly xSailPointExperimental?: string
|
|
81122
81676
|
}
|
|
81123
81677
|
|
|
81124
81678
|
/**
|
|
@@ -81133,13 +81687,6 @@ export interface IdentitiesV2025ApiGetIdentityOwnershipDetailsRequest {
|
|
|
81133
81687
|
* @memberof IdentitiesV2025ApiGetIdentityOwnershipDetails
|
|
81134
81688
|
*/
|
|
81135
81689
|
readonly identityId: string
|
|
81136
|
-
|
|
81137
|
-
/**
|
|
81138
|
-
* Use this header to enable this experimental API.
|
|
81139
|
-
* @type {string}
|
|
81140
|
-
* @memberof IdentitiesV2025ApiGetIdentityOwnershipDetails
|
|
81141
|
-
*/
|
|
81142
|
-
readonly xSailPointExperimental?: string
|
|
81143
81690
|
}
|
|
81144
81691
|
|
|
81145
81692
|
/**
|
|
@@ -81161,13 +81708,6 @@ export interface IdentitiesV2025ApiGetRoleAssignmentRequest {
|
|
|
81161
81708
|
* @memberof IdentitiesV2025ApiGetRoleAssignment
|
|
81162
81709
|
*/
|
|
81163
81710
|
readonly assignmentId: string
|
|
81164
|
-
|
|
81165
|
-
/**
|
|
81166
|
-
* Use this header to enable this experimental API.
|
|
81167
|
-
* @type {string}
|
|
81168
|
-
* @memberof IdentitiesV2025ApiGetRoleAssignment
|
|
81169
|
-
*/
|
|
81170
|
-
readonly xSailPointExperimental?: string
|
|
81171
81711
|
}
|
|
81172
81712
|
|
|
81173
81713
|
/**
|
|
@@ -81196,13 +81736,6 @@ export interface IdentitiesV2025ApiGetRoleAssignmentsRequest {
|
|
|
81196
81736
|
* @memberof IdentitiesV2025ApiGetRoleAssignments
|
|
81197
81737
|
*/
|
|
81198
81738
|
readonly roleName?: string
|
|
81199
|
-
|
|
81200
|
-
/**
|
|
81201
|
-
* Use this header to enable this experimental API.
|
|
81202
|
-
* @type {string}
|
|
81203
|
-
* @memberof IdentitiesV2025ApiGetRoleAssignments
|
|
81204
|
-
*/
|
|
81205
|
-
readonly xSailPointExperimental?: string
|
|
81206
81739
|
}
|
|
81207
81740
|
|
|
81208
81741
|
/**
|
|
@@ -81252,13 +81785,6 @@ export interface IdentitiesV2025ApiListIdentitiesRequest {
|
|
|
81252
81785
|
* @memberof IdentitiesV2025ApiListIdentities
|
|
81253
81786
|
*/
|
|
81254
81787
|
readonly offset?: number
|
|
81255
|
-
|
|
81256
|
-
/**
|
|
81257
|
-
* Use this header to enable this experimental API.
|
|
81258
|
-
* @type {string}
|
|
81259
|
-
* @memberof IdentitiesV2025ApiListIdentities
|
|
81260
|
-
*/
|
|
81261
|
-
readonly xSailPointExperimental?: string
|
|
81262
81788
|
}
|
|
81263
81789
|
|
|
81264
81790
|
/**
|
|
@@ -81273,13 +81799,6 @@ export interface IdentitiesV2025ApiResetIdentityRequest {
|
|
|
81273
81799
|
* @memberof IdentitiesV2025ApiResetIdentity
|
|
81274
81800
|
*/
|
|
81275
81801
|
readonly identityId: string
|
|
81276
|
-
|
|
81277
|
-
/**
|
|
81278
|
-
* Use this header to enable this experimental API.
|
|
81279
|
-
* @type {string}
|
|
81280
|
-
* @memberof IdentitiesV2025ApiResetIdentity
|
|
81281
|
-
*/
|
|
81282
|
-
readonly xSailPointExperimental?: string
|
|
81283
81802
|
}
|
|
81284
81803
|
|
|
81285
81804
|
/**
|
|
@@ -81322,13 +81841,6 @@ export interface IdentitiesV2025ApiStartIdentitiesInviteRequest {
|
|
|
81322
81841
|
* @memberof IdentitiesV2025ApiStartIdentitiesInvite
|
|
81323
81842
|
*/
|
|
81324
81843
|
readonly inviteIdentitiesRequestV2025: InviteIdentitiesRequestV2025
|
|
81325
|
-
|
|
81326
|
-
/**
|
|
81327
|
-
* Use this header to enable this experimental API.
|
|
81328
|
-
* @type {string}
|
|
81329
|
-
* @memberof IdentitiesV2025ApiStartIdentitiesInvite
|
|
81330
|
-
*/
|
|
81331
|
-
readonly xSailPointExperimental?: string
|
|
81332
81844
|
}
|
|
81333
81845
|
|
|
81334
81846
|
/**
|
|
@@ -81401,7 +81913,7 @@ export class IdentitiesV2025Api extends BaseAPI {
|
|
|
81401
81913
|
* @memberof IdentitiesV2025Api
|
|
81402
81914
|
*/
|
|
81403
81915
|
public getIdentity(requestParameters: IdentitiesV2025ApiGetIdentityRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
81404
|
-
return IdentitiesV2025ApiFp(this.configuration).getIdentity(requestParameters.id,
|
|
81916
|
+
return IdentitiesV2025ApiFp(this.configuration).getIdentity(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
81405
81917
|
}
|
|
81406
81918
|
|
|
81407
81919
|
/**
|
|
@@ -81413,7 +81925,7 @@ export class IdentitiesV2025Api extends BaseAPI {
|
|
|
81413
81925
|
* @memberof IdentitiesV2025Api
|
|
81414
81926
|
*/
|
|
81415
81927
|
public getIdentityOwnershipDetails(requestParameters: IdentitiesV2025ApiGetIdentityOwnershipDetailsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
81416
|
-
return IdentitiesV2025ApiFp(this.configuration).getIdentityOwnershipDetails(requestParameters.identityId,
|
|
81928
|
+
return IdentitiesV2025ApiFp(this.configuration).getIdentityOwnershipDetails(requestParameters.identityId, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
81417
81929
|
}
|
|
81418
81930
|
|
|
81419
81931
|
/**
|
|
@@ -81425,7 +81937,7 @@ export class IdentitiesV2025Api extends BaseAPI {
|
|
|
81425
81937
|
* @memberof IdentitiesV2025Api
|
|
81426
81938
|
*/
|
|
81427
81939
|
public getRoleAssignment(requestParameters: IdentitiesV2025ApiGetRoleAssignmentRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
81428
|
-
return IdentitiesV2025ApiFp(this.configuration).getRoleAssignment(requestParameters.identityId, requestParameters.assignmentId,
|
|
81940
|
+
return IdentitiesV2025ApiFp(this.configuration).getRoleAssignment(requestParameters.identityId, requestParameters.assignmentId, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
81429
81941
|
}
|
|
81430
81942
|
|
|
81431
81943
|
/**
|
|
@@ -81437,7 +81949,7 @@ export class IdentitiesV2025Api extends BaseAPI {
|
|
|
81437
81949
|
* @memberof IdentitiesV2025Api
|
|
81438
81950
|
*/
|
|
81439
81951
|
public getRoleAssignments(requestParameters: IdentitiesV2025ApiGetRoleAssignmentsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
81440
|
-
return IdentitiesV2025ApiFp(this.configuration).getRoleAssignments(requestParameters.identityId, requestParameters.roleId, requestParameters.roleName,
|
|
81952
|
+
return IdentitiesV2025ApiFp(this.configuration).getRoleAssignments(requestParameters.identityId, requestParameters.roleId, requestParameters.roleName, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
81441
81953
|
}
|
|
81442
81954
|
|
|
81443
81955
|
/**
|
|
@@ -81449,7 +81961,7 @@ export class IdentitiesV2025Api extends BaseAPI {
|
|
|
81449
81961
|
* @memberof IdentitiesV2025Api
|
|
81450
81962
|
*/
|
|
81451
81963
|
public listIdentities(requestParameters: IdentitiesV2025ApiListIdentitiesRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
81452
|
-
return IdentitiesV2025ApiFp(this.configuration).listIdentities(requestParameters.filters, requestParameters.sorters, requestParameters.defaultFilter, requestParameters.count, requestParameters.limit, requestParameters.offset,
|
|
81964
|
+
return IdentitiesV2025ApiFp(this.configuration).listIdentities(requestParameters.filters, requestParameters.sorters, requestParameters.defaultFilter, requestParameters.count, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
81453
81965
|
}
|
|
81454
81966
|
|
|
81455
81967
|
/**
|
|
@@ -81461,7 +81973,7 @@ export class IdentitiesV2025Api extends BaseAPI {
|
|
|
81461
81973
|
* @memberof IdentitiesV2025Api
|
|
81462
81974
|
*/
|
|
81463
81975
|
public resetIdentity(requestParameters: IdentitiesV2025ApiResetIdentityRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
81464
|
-
return IdentitiesV2025ApiFp(this.configuration).resetIdentity(requestParameters.identityId,
|
|
81976
|
+
return IdentitiesV2025ApiFp(this.configuration).resetIdentity(requestParameters.identityId, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
81465
81977
|
}
|
|
81466
81978
|
|
|
81467
81979
|
/**
|
|
@@ -81485,7 +81997,7 @@ export class IdentitiesV2025Api extends BaseAPI {
|
|
|
81485
81997
|
* @memberof IdentitiesV2025Api
|
|
81486
81998
|
*/
|
|
81487
81999
|
public startIdentitiesInvite(requestParameters: IdentitiesV2025ApiStartIdentitiesInviteRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
81488
|
-
return IdentitiesV2025ApiFp(this.configuration).startIdentitiesInvite(requestParameters.inviteIdentitiesRequestV2025,
|
|
82000
|
+
return IdentitiesV2025ApiFp(this.configuration).startIdentitiesInvite(requestParameters.inviteIdentitiesRequestV2025, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
81489
82001
|
}
|
|
81490
82002
|
|
|
81491
82003
|
/**
|
|
@@ -81532,18 +82044,11 @@ export const IdentityAttributesV2025ApiAxiosParamCreator = function (configurati
|
|
|
81532
82044
|
/**
|
|
81533
82045
|
* Use this API to create a new identity attribute.
|
|
81534
82046
|
* @summary Create identity attribute
|
|
81535
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
81536
82047
|
* @param {IdentityAttributeV2025} identityAttributeV2025
|
|
81537
82048
|
* @param {*} [axiosOptions] Override http request option.
|
|
81538
82049
|
* @throws {RequiredError}
|
|
81539
82050
|
*/
|
|
81540
|
-
createIdentityAttribute: async (
|
|
81541
|
-
if (xSailPointExperimental === undefined) {
|
|
81542
|
-
xSailPointExperimental = 'true';
|
|
81543
|
-
}
|
|
81544
|
-
|
|
81545
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
81546
|
-
assertParamExists('createIdentityAttribute', 'xSailPointExperimental', xSailPointExperimental)
|
|
82051
|
+
createIdentityAttribute: async (identityAttributeV2025: IdentityAttributeV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
81547
82052
|
// verify required parameter 'identityAttributeV2025' is not null or undefined
|
|
81548
82053
|
assertParamExists('createIdentityAttribute', 'identityAttributeV2025', identityAttributeV2025)
|
|
81549
82054
|
const localVarPath = `/identity-attributes`;
|
|
@@ -81570,9 +82075,6 @@ export const IdentityAttributesV2025ApiAxiosParamCreator = function (configurati
|
|
|
81570
82075
|
|
|
81571
82076
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
81572
82077
|
|
|
81573
|
-
if (xSailPointExperimental != null) {
|
|
81574
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
81575
|
-
}
|
|
81576
82078
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
81577
82079
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
81578
82080
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -81587,19 +82089,12 @@ export const IdentityAttributesV2025ApiAxiosParamCreator = function (configurati
|
|
|
81587
82089
|
* 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.
|
|
81588
82090
|
* @summary Delete identity attribute
|
|
81589
82091
|
* @param {string} name The attribute\'s technical name.
|
|
81590
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
81591
82092
|
* @param {*} [axiosOptions] Override http request option.
|
|
81592
82093
|
* @throws {RequiredError}
|
|
81593
82094
|
*/
|
|
81594
|
-
deleteIdentityAttribute: async (name: string,
|
|
82095
|
+
deleteIdentityAttribute: async (name: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
81595
82096
|
// verify required parameter 'name' is not null or undefined
|
|
81596
82097
|
assertParamExists('deleteIdentityAttribute', 'name', name)
|
|
81597
|
-
if (xSailPointExperimental === undefined) {
|
|
81598
|
-
xSailPointExperimental = 'true';
|
|
81599
|
-
}
|
|
81600
|
-
|
|
81601
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
81602
|
-
assertParamExists('deleteIdentityAttribute', 'xSailPointExperimental', xSailPointExperimental)
|
|
81603
82098
|
const localVarPath = `/identity-attributes/{name}`
|
|
81604
82099
|
.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
81605
82100
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -81623,9 +82118,6 @@ export const IdentityAttributesV2025ApiAxiosParamCreator = function (configurati
|
|
|
81623
82118
|
|
|
81624
82119
|
|
|
81625
82120
|
|
|
81626
|
-
if (xSailPointExperimental != null) {
|
|
81627
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
81628
|
-
}
|
|
81629
82121
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
81630
82122
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
81631
82123
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -81639,17 +82131,12 @@ export const IdentityAttributesV2025ApiAxiosParamCreator = function (configurati
|
|
|
81639
82131
|
* 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.
|
|
81640
82132
|
* @summary Bulk delete identity attributes
|
|
81641
82133
|
* @param {IdentityAttributeNamesV2025} identityAttributeNamesV2025
|
|
81642
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81643
82134
|
* @param {*} [axiosOptions] Override http request option.
|
|
81644
82135
|
* @throws {RequiredError}
|
|
81645
82136
|
*/
|
|
81646
|
-
deleteIdentityAttributesInBulk: async (identityAttributeNamesV2025: IdentityAttributeNamesV2025,
|
|
82137
|
+
deleteIdentityAttributesInBulk: async (identityAttributeNamesV2025: IdentityAttributeNamesV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
81647
82138
|
// verify required parameter 'identityAttributeNamesV2025' is not null or undefined
|
|
81648
82139
|
assertParamExists('deleteIdentityAttributesInBulk', 'identityAttributeNamesV2025', identityAttributeNamesV2025)
|
|
81649
|
-
if (xSailPointExperimental === undefined) {
|
|
81650
|
-
xSailPointExperimental = 'true';
|
|
81651
|
-
}
|
|
81652
|
-
|
|
81653
82140
|
const localVarPath = `/identity-attributes/bulk-delete`;
|
|
81654
82141
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
81655
82142
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -81674,9 +82161,6 @@ export const IdentityAttributesV2025ApiAxiosParamCreator = function (configurati
|
|
|
81674
82161
|
|
|
81675
82162
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
81676
82163
|
|
|
81677
|
-
if (xSailPointExperimental != null) {
|
|
81678
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
81679
|
-
}
|
|
81680
82164
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
81681
82165
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
81682
82166
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -81691,17 +82175,12 @@ export const IdentityAttributesV2025ApiAxiosParamCreator = function (configurati
|
|
|
81691
82175
|
* This gets an identity attribute for a given technical name.
|
|
81692
82176
|
* @summary Get identity attribute
|
|
81693
82177
|
* @param {string} name The attribute\'s technical name.
|
|
81694
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81695
82178
|
* @param {*} [axiosOptions] Override http request option.
|
|
81696
82179
|
* @throws {RequiredError}
|
|
81697
82180
|
*/
|
|
81698
|
-
getIdentityAttribute: async (name: string,
|
|
82181
|
+
getIdentityAttribute: async (name: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
81699
82182
|
// verify required parameter 'name' is not null or undefined
|
|
81700
82183
|
assertParamExists('getIdentityAttribute', 'name', name)
|
|
81701
|
-
if (xSailPointExperimental === undefined) {
|
|
81702
|
-
xSailPointExperimental = 'true';
|
|
81703
|
-
}
|
|
81704
|
-
|
|
81705
82184
|
const localVarPath = `/identity-attributes/{name}`
|
|
81706
82185
|
.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
81707
82186
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -81725,9 +82204,6 @@ export const IdentityAttributesV2025ApiAxiosParamCreator = function (configurati
|
|
|
81725
82204
|
|
|
81726
82205
|
|
|
81727
82206
|
|
|
81728
|
-
if (xSailPointExperimental != null) {
|
|
81729
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
81730
|
-
}
|
|
81731
82207
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
81732
82208
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
81733
82209
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -81744,15 +82220,10 @@ export const IdentityAttributesV2025ApiAxiosParamCreator = function (configurati
|
|
|
81744
82220
|
* @param {boolean} [includeSilent] Include \'silent\' attributes in the response.
|
|
81745
82221
|
* @param {boolean} [searchableOnly] Include only \'searchable\' attributes in the response.
|
|
81746
82222
|
* @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.
|
|
81747
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81748
82223
|
* @param {*} [axiosOptions] Override http request option.
|
|
81749
82224
|
* @throws {RequiredError}
|
|
81750
82225
|
*/
|
|
81751
|
-
listIdentityAttributes: async (includeSystem?: boolean, includeSilent?: boolean, searchableOnly?: boolean, count?: boolean,
|
|
81752
|
-
if (xSailPointExperimental === undefined) {
|
|
81753
|
-
xSailPointExperimental = 'true';
|
|
81754
|
-
}
|
|
81755
|
-
|
|
82226
|
+
listIdentityAttributes: async (includeSystem?: boolean, includeSilent?: boolean, searchableOnly?: boolean, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
81756
82227
|
const localVarPath = `/identity-attributes`;
|
|
81757
82228
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
81758
82229
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -81791,9 +82262,6 @@ export const IdentityAttributesV2025ApiAxiosParamCreator = function (configurati
|
|
|
81791
82262
|
|
|
81792
82263
|
|
|
81793
82264
|
|
|
81794
|
-
if (xSailPointExperimental != null) {
|
|
81795
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
81796
|
-
}
|
|
81797
82265
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
81798
82266
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
81799
82267
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -81807,20 +82275,13 @@ export const IdentityAttributesV2025ApiAxiosParamCreator = function (configurati
|
|
|
81807
82275
|
* This updates an existing identity attribute. Making an attribute searchable requires that the `system`, `standard`, and `multi` properties be set to false.
|
|
81808
82276
|
* @summary Update identity attribute
|
|
81809
82277
|
* @param {string} name The attribute\'s technical name.
|
|
81810
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
81811
82278
|
* @param {IdentityAttributeV2025} identityAttributeV2025
|
|
81812
82279
|
* @param {*} [axiosOptions] Override http request option.
|
|
81813
82280
|
* @throws {RequiredError}
|
|
81814
82281
|
*/
|
|
81815
|
-
putIdentityAttribute: async (name: string,
|
|
82282
|
+
putIdentityAttribute: async (name: string, identityAttributeV2025: IdentityAttributeV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
81816
82283
|
// verify required parameter 'name' is not null or undefined
|
|
81817
82284
|
assertParamExists('putIdentityAttribute', 'name', name)
|
|
81818
|
-
if (xSailPointExperimental === undefined) {
|
|
81819
|
-
xSailPointExperimental = 'true';
|
|
81820
|
-
}
|
|
81821
|
-
|
|
81822
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
81823
|
-
assertParamExists('putIdentityAttribute', 'xSailPointExperimental', xSailPointExperimental)
|
|
81824
82285
|
// verify required parameter 'identityAttributeV2025' is not null or undefined
|
|
81825
82286
|
assertParamExists('putIdentityAttribute', 'identityAttributeV2025', identityAttributeV2025)
|
|
81826
82287
|
const localVarPath = `/identity-attributes/{name}`
|
|
@@ -81848,9 +82309,6 @@ export const IdentityAttributesV2025ApiAxiosParamCreator = function (configurati
|
|
|
81848
82309
|
|
|
81849
82310
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
81850
82311
|
|
|
81851
|
-
if (xSailPointExperimental != null) {
|
|
81852
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
81853
|
-
}
|
|
81854
82312
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
81855
82313
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
81856
82314
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -81874,13 +82332,12 @@ export const IdentityAttributesV2025ApiFp = function(configuration?: Configurati
|
|
|
81874
82332
|
/**
|
|
81875
82333
|
* Use this API to create a new identity attribute.
|
|
81876
82334
|
* @summary Create identity attribute
|
|
81877
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
81878
82335
|
* @param {IdentityAttributeV2025} identityAttributeV2025
|
|
81879
82336
|
* @param {*} [axiosOptions] Override http request option.
|
|
81880
82337
|
* @throws {RequiredError}
|
|
81881
82338
|
*/
|
|
81882
|
-
async createIdentityAttribute(
|
|
81883
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createIdentityAttribute(
|
|
82339
|
+
async createIdentityAttribute(identityAttributeV2025: IdentityAttributeV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityAttributeV2025>> {
|
|
82340
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createIdentityAttribute(identityAttributeV2025, axiosOptions);
|
|
81884
82341
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
81885
82342
|
const localVarOperationServerBasePath = operationServerMap['IdentityAttributesV2025Api.createIdentityAttribute']?.[localVarOperationServerIndex]?.url;
|
|
81886
82343
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -81889,12 +82346,11 @@ export const IdentityAttributesV2025ApiFp = function(configuration?: Configurati
|
|
|
81889
82346
|
* 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.
|
|
81890
82347
|
* @summary Delete identity attribute
|
|
81891
82348
|
* @param {string} name The attribute\'s technical name.
|
|
81892
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
81893
82349
|
* @param {*} [axiosOptions] Override http request option.
|
|
81894
82350
|
* @throws {RequiredError}
|
|
81895
82351
|
*/
|
|
81896
|
-
async deleteIdentityAttribute(name: string,
|
|
81897
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteIdentityAttribute(name,
|
|
82352
|
+
async deleteIdentityAttribute(name: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
82353
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteIdentityAttribute(name, axiosOptions);
|
|
81898
82354
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
81899
82355
|
const localVarOperationServerBasePath = operationServerMap['IdentityAttributesV2025Api.deleteIdentityAttribute']?.[localVarOperationServerIndex]?.url;
|
|
81900
82356
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -81903,12 +82359,11 @@ export const IdentityAttributesV2025ApiFp = function(configuration?: Configurati
|
|
|
81903
82359
|
* 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.
|
|
81904
82360
|
* @summary Bulk delete identity attributes
|
|
81905
82361
|
* @param {IdentityAttributeNamesV2025} identityAttributeNamesV2025
|
|
81906
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81907
82362
|
* @param {*} [axiosOptions] Override http request option.
|
|
81908
82363
|
* @throws {RequiredError}
|
|
81909
82364
|
*/
|
|
81910
|
-
async deleteIdentityAttributesInBulk(identityAttributeNamesV2025: IdentityAttributeNamesV2025,
|
|
81911
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteIdentityAttributesInBulk(identityAttributeNamesV2025,
|
|
82365
|
+
async deleteIdentityAttributesInBulk(identityAttributeNamesV2025: IdentityAttributeNamesV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
82366
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteIdentityAttributesInBulk(identityAttributeNamesV2025, axiosOptions);
|
|
81912
82367
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
81913
82368
|
const localVarOperationServerBasePath = operationServerMap['IdentityAttributesV2025Api.deleteIdentityAttributesInBulk']?.[localVarOperationServerIndex]?.url;
|
|
81914
82369
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -81917,12 +82372,11 @@ export const IdentityAttributesV2025ApiFp = function(configuration?: Configurati
|
|
|
81917
82372
|
* This gets an identity attribute for a given technical name.
|
|
81918
82373
|
* @summary Get identity attribute
|
|
81919
82374
|
* @param {string} name The attribute\'s technical name.
|
|
81920
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81921
82375
|
* @param {*} [axiosOptions] Override http request option.
|
|
81922
82376
|
* @throws {RequiredError}
|
|
81923
82377
|
*/
|
|
81924
|
-
async getIdentityAttribute(name: string,
|
|
81925
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getIdentityAttribute(name,
|
|
82378
|
+
async getIdentityAttribute(name: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityAttributeV2025>> {
|
|
82379
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getIdentityAttribute(name, axiosOptions);
|
|
81926
82380
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
81927
82381
|
const localVarOperationServerBasePath = operationServerMap['IdentityAttributesV2025Api.getIdentityAttribute']?.[localVarOperationServerIndex]?.url;
|
|
81928
82382
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -81934,12 +82388,11 @@ export const IdentityAttributesV2025ApiFp = function(configuration?: Configurati
|
|
|
81934
82388
|
* @param {boolean} [includeSilent] Include \'silent\' attributes in the response.
|
|
81935
82389
|
* @param {boolean} [searchableOnly] Include only \'searchable\' attributes in the response.
|
|
81936
82390
|
* @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.
|
|
81937
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81938
82391
|
* @param {*} [axiosOptions] Override http request option.
|
|
81939
82392
|
* @throws {RequiredError}
|
|
81940
82393
|
*/
|
|
81941
|
-
async listIdentityAttributes(includeSystem?: boolean, includeSilent?: boolean, searchableOnly?: boolean, count?: boolean,
|
|
81942
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listIdentityAttributes(includeSystem, includeSilent, searchableOnly, count,
|
|
82394
|
+
async listIdentityAttributes(includeSystem?: boolean, includeSilent?: boolean, searchableOnly?: boolean, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IdentityAttributeV2025>>> {
|
|
82395
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listIdentityAttributes(includeSystem, includeSilent, searchableOnly, count, axiosOptions);
|
|
81943
82396
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
81944
82397
|
const localVarOperationServerBasePath = operationServerMap['IdentityAttributesV2025Api.listIdentityAttributes']?.[localVarOperationServerIndex]?.url;
|
|
81945
82398
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -81948,13 +82401,12 @@ export const IdentityAttributesV2025ApiFp = function(configuration?: Configurati
|
|
|
81948
82401
|
* This updates an existing identity attribute. Making an attribute searchable requires that the `system`, `standard`, and `multi` properties be set to false.
|
|
81949
82402
|
* @summary Update identity attribute
|
|
81950
82403
|
* @param {string} name The attribute\'s technical name.
|
|
81951
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
81952
82404
|
* @param {IdentityAttributeV2025} identityAttributeV2025
|
|
81953
82405
|
* @param {*} [axiosOptions] Override http request option.
|
|
81954
82406
|
* @throws {RequiredError}
|
|
81955
82407
|
*/
|
|
81956
|
-
async putIdentityAttribute(name: string,
|
|
81957
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.putIdentityAttribute(name,
|
|
82408
|
+
async putIdentityAttribute(name: string, identityAttributeV2025: IdentityAttributeV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityAttributeV2025>> {
|
|
82409
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.putIdentityAttribute(name, identityAttributeV2025, axiosOptions);
|
|
81958
82410
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
81959
82411
|
const localVarOperationServerBasePath = operationServerMap['IdentityAttributesV2025Api.putIdentityAttribute']?.[localVarOperationServerIndex]?.url;
|
|
81960
82412
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -81977,7 +82429,7 @@ export const IdentityAttributesV2025ApiFactory = function (configuration?: Confi
|
|
|
81977
82429
|
* @throws {RequiredError}
|
|
81978
82430
|
*/
|
|
81979
82431
|
createIdentityAttribute(requestParameters: IdentityAttributesV2025ApiCreateIdentityAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityAttributeV2025> {
|
|
81980
|
-
return localVarFp.createIdentityAttribute(requestParameters.
|
|
82432
|
+
return localVarFp.createIdentityAttribute(requestParameters.identityAttributeV2025, axiosOptions).then((request) => request(axios, basePath));
|
|
81981
82433
|
},
|
|
81982
82434
|
/**
|
|
81983
82435
|
* 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.
|
|
@@ -81987,7 +82439,7 @@ export const IdentityAttributesV2025ApiFactory = function (configuration?: Confi
|
|
|
81987
82439
|
* @throws {RequiredError}
|
|
81988
82440
|
*/
|
|
81989
82441
|
deleteIdentityAttribute(requestParameters: IdentityAttributesV2025ApiDeleteIdentityAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
81990
|
-
return localVarFp.deleteIdentityAttribute(requestParameters.name,
|
|
82442
|
+
return localVarFp.deleteIdentityAttribute(requestParameters.name, axiosOptions).then((request) => request(axios, basePath));
|
|
81991
82443
|
},
|
|
81992
82444
|
/**
|
|
81993
82445
|
* 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.
|
|
@@ -81997,7 +82449,7 @@ export const IdentityAttributesV2025ApiFactory = function (configuration?: Confi
|
|
|
81997
82449
|
* @throws {RequiredError}
|
|
81998
82450
|
*/
|
|
81999
82451
|
deleteIdentityAttributesInBulk(requestParameters: IdentityAttributesV2025ApiDeleteIdentityAttributesInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
82000
|
-
return localVarFp.deleteIdentityAttributesInBulk(requestParameters.identityAttributeNamesV2025,
|
|
82452
|
+
return localVarFp.deleteIdentityAttributesInBulk(requestParameters.identityAttributeNamesV2025, axiosOptions).then((request) => request(axios, basePath));
|
|
82001
82453
|
},
|
|
82002
82454
|
/**
|
|
82003
82455
|
* This gets an identity attribute for a given technical name.
|
|
@@ -82007,7 +82459,7 @@ export const IdentityAttributesV2025ApiFactory = function (configuration?: Confi
|
|
|
82007
82459
|
* @throws {RequiredError}
|
|
82008
82460
|
*/
|
|
82009
82461
|
getIdentityAttribute(requestParameters: IdentityAttributesV2025ApiGetIdentityAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityAttributeV2025> {
|
|
82010
|
-
return localVarFp.getIdentityAttribute(requestParameters.name,
|
|
82462
|
+
return localVarFp.getIdentityAttribute(requestParameters.name, axiosOptions).then((request) => request(axios, basePath));
|
|
82011
82463
|
},
|
|
82012
82464
|
/**
|
|
82013
82465
|
* Use this API to get a collection of identity attributes.
|
|
@@ -82017,7 +82469,7 @@ export const IdentityAttributesV2025ApiFactory = function (configuration?: Confi
|
|
|
82017
82469
|
* @throws {RequiredError}
|
|
82018
82470
|
*/
|
|
82019
82471
|
listIdentityAttributes(requestParameters: IdentityAttributesV2025ApiListIdentityAttributesRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<IdentityAttributeV2025>> {
|
|
82020
|
-
return localVarFp.listIdentityAttributes(requestParameters.includeSystem, requestParameters.includeSilent, requestParameters.searchableOnly, requestParameters.count,
|
|
82472
|
+
return localVarFp.listIdentityAttributes(requestParameters.includeSystem, requestParameters.includeSilent, requestParameters.searchableOnly, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
|
|
82021
82473
|
},
|
|
82022
82474
|
/**
|
|
82023
82475
|
* This updates an existing identity attribute. Making an attribute searchable requires that the `system`, `standard`, and `multi` properties be set to false.
|
|
@@ -82027,7 +82479,7 @@ export const IdentityAttributesV2025ApiFactory = function (configuration?: Confi
|
|
|
82027
82479
|
* @throws {RequiredError}
|
|
82028
82480
|
*/
|
|
82029
82481
|
putIdentityAttribute(requestParameters: IdentityAttributesV2025ApiPutIdentityAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityAttributeV2025> {
|
|
82030
|
-
return localVarFp.putIdentityAttribute(requestParameters.name, requestParameters.
|
|
82482
|
+
return localVarFp.putIdentityAttribute(requestParameters.name, requestParameters.identityAttributeV2025, axiosOptions).then((request) => request(axios, basePath));
|
|
82031
82483
|
},
|
|
82032
82484
|
};
|
|
82033
82485
|
};
|
|
@@ -82038,13 +82490,6 @@ export const IdentityAttributesV2025ApiFactory = function (configuration?: Confi
|
|
|
82038
82490
|
* @interface IdentityAttributesV2025ApiCreateIdentityAttributeRequest
|
|
82039
82491
|
*/
|
|
82040
82492
|
export interface IdentityAttributesV2025ApiCreateIdentityAttributeRequest {
|
|
82041
|
-
/**
|
|
82042
|
-
* Use this header to enable this experimental API.
|
|
82043
|
-
* @type {string}
|
|
82044
|
-
* @memberof IdentityAttributesV2025ApiCreateIdentityAttribute
|
|
82045
|
-
*/
|
|
82046
|
-
readonly xSailPointExperimental: string
|
|
82047
|
-
|
|
82048
82493
|
/**
|
|
82049
82494
|
*
|
|
82050
82495
|
* @type {IdentityAttributeV2025}
|
|
@@ -82065,13 +82510,6 @@ export interface IdentityAttributesV2025ApiDeleteIdentityAttributeRequest {
|
|
|
82065
82510
|
* @memberof IdentityAttributesV2025ApiDeleteIdentityAttribute
|
|
82066
82511
|
*/
|
|
82067
82512
|
readonly name: string
|
|
82068
|
-
|
|
82069
|
-
/**
|
|
82070
|
-
* Use this header to enable this experimental API.
|
|
82071
|
-
* @type {string}
|
|
82072
|
-
* @memberof IdentityAttributesV2025ApiDeleteIdentityAttribute
|
|
82073
|
-
*/
|
|
82074
|
-
readonly xSailPointExperimental: string
|
|
82075
82513
|
}
|
|
82076
82514
|
|
|
82077
82515
|
/**
|
|
@@ -82086,13 +82524,6 @@ export interface IdentityAttributesV2025ApiDeleteIdentityAttributesInBulkRequest
|
|
|
82086
82524
|
* @memberof IdentityAttributesV2025ApiDeleteIdentityAttributesInBulk
|
|
82087
82525
|
*/
|
|
82088
82526
|
readonly identityAttributeNamesV2025: IdentityAttributeNamesV2025
|
|
82089
|
-
|
|
82090
|
-
/**
|
|
82091
|
-
* Use this header to enable this experimental API.
|
|
82092
|
-
* @type {string}
|
|
82093
|
-
* @memberof IdentityAttributesV2025ApiDeleteIdentityAttributesInBulk
|
|
82094
|
-
*/
|
|
82095
|
-
readonly xSailPointExperimental?: string
|
|
82096
82527
|
}
|
|
82097
82528
|
|
|
82098
82529
|
/**
|
|
@@ -82107,13 +82538,6 @@ export interface IdentityAttributesV2025ApiGetIdentityAttributeRequest {
|
|
|
82107
82538
|
* @memberof IdentityAttributesV2025ApiGetIdentityAttribute
|
|
82108
82539
|
*/
|
|
82109
82540
|
readonly name: string
|
|
82110
|
-
|
|
82111
|
-
/**
|
|
82112
|
-
* Use this header to enable this experimental API.
|
|
82113
|
-
* @type {string}
|
|
82114
|
-
* @memberof IdentityAttributesV2025ApiGetIdentityAttribute
|
|
82115
|
-
*/
|
|
82116
|
-
readonly xSailPointExperimental?: string
|
|
82117
82541
|
}
|
|
82118
82542
|
|
|
82119
82543
|
/**
|
|
@@ -82149,13 +82573,6 @@ export interface IdentityAttributesV2025ApiListIdentityAttributesRequest {
|
|
|
82149
82573
|
* @memberof IdentityAttributesV2025ApiListIdentityAttributes
|
|
82150
82574
|
*/
|
|
82151
82575
|
readonly count?: boolean
|
|
82152
|
-
|
|
82153
|
-
/**
|
|
82154
|
-
* Use this header to enable this experimental API.
|
|
82155
|
-
* @type {string}
|
|
82156
|
-
* @memberof IdentityAttributesV2025ApiListIdentityAttributes
|
|
82157
|
-
*/
|
|
82158
|
-
readonly xSailPointExperimental?: string
|
|
82159
82576
|
}
|
|
82160
82577
|
|
|
82161
82578
|
/**
|
|
@@ -82171,13 +82588,6 @@ export interface IdentityAttributesV2025ApiPutIdentityAttributeRequest {
|
|
|
82171
82588
|
*/
|
|
82172
82589
|
readonly name: string
|
|
82173
82590
|
|
|
82174
|
-
/**
|
|
82175
|
-
* Use this header to enable this experimental API.
|
|
82176
|
-
* @type {string}
|
|
82177
|
-
* @memberof IdentityAttributesV2025ApiPutIdentityAttribute
|
|
82178
|
-
*/
|
|
82179
|
-
readonly xSailPointExperimental: string
|
|
82180
|
-
|
|
82181
82591
|
/**
|
|
82182
82592
|
*
|
|
82183
82593
|
* @type {IdentityAttributeV2025}
|
|
@@ -82202,7 +82612,7 @@ export class IdentityAttributesV2025Api extends BaseAPI {
|
|
|
82202
82612
|
* @memberof IdentityAttributesV2025Api
|
|
82203
82613
|
*/
|
|
82204
82614
|
public createIdentityAttribute(requestParameters: IdentityAttributesV2025ApiCreateIdentityAttributeRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
82205
|
-
return IdentityAttributesV2025ApiFp(this.configuration).createIdentityAttribute(requestParameters.
|
|
82615
|
+
return IdentityAttributesV2025ApiFp(this.configuration).createIdentityAttribute(requestParameters.identityAttributeV2025, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
82206
82616
|
}
|
|
82207
82617
|
|
|
82208
82618
|
/**
|
|
@@ -82214,7 +82624,7 @@ export class IdentityAttributesV2025Api extends BaseAPI {
|
|
|
82214
82624
|
* @memberof IdentityAttributesV2025Api
|
|
82215
82625
|
*/
|
|
82216
82626
|
public deleteIdentityAttribute(requestParameters: IdentityAttributesV2025ApiDeleteIdentityAttributeRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
82217
|
-
return IdentityAttributesV2025ApiFp(this.configuration).deleteIdentityAttribute(requestParameters.name,
|
|
82627
|
+
return IdentityAttributesV2025ApiFp(this.configuration).deleteIdentityAttribute(requestParameters.name, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
82218
82628
|
}
|
|
82219
82629
|
|
|
82220
82630
|
/**
|
|
@@ -82226,7 +82636,7 @@ export class IdentityAttributesV2025Api extends BaseAPI {
|
|
|
82226
82636
|
* @memberof IdentityAttributesV2025Api
|
|
82227
82637
|
*/
|
|
82228
82638
|
public deleteIdentityAttributesInBulk(requestParameters: IdentityAttributesV2025ApiDeleteIdentityAttributesInBulkRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
82229
|
-
return IdentityAttributesV2025ApiFp(this.configuration).deleteIdentityAttributesInBulk(requestParameters.identityAttributeNamesV2025,
|
|
82639
|
+
return IdentityAttributesV2025ApiFp(this.configuration).deleteIdentityAttributesInBulk(requestParameters.identityAttributeNamesV2025, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
82230
82640
|
}
|
|
82231
82641
|
|
|
82232
82642
|
/**
|
|
@@ -82238,7 +82648,7 @@ export class IdentityAttributesV2025Api extends BaseAPI {
|
|
|
82238
82648
|
* @memberof IdentityAttributesV2025Api
|
|
82239
82649
|
*/
|
|
82240
82650
|
public getIdentityAttribute(requestParameters: IdentityAttributesV2025ApiGetIdentityAttributeRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
82241
|
-
return IdentityAttributesV2025ApiFp(this.configuration).getIdentityAttribute(requestParameters.name,
|
|
82651
|
+
return IdentityAttributesV2025ApiFp(this.configuration).getIdentityAttribute(requestParameters.name, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
82242
82652
|
}
|
|
82243
82653
|
|
|
82244
82654
|
/**
|
|
@@ -82250,7 +82660,7 @@ export class IdentityAttributesV2025Api extends BaseAPI {
|
|
|
82250
82660
|
* @memberof IdentityAttributesV2025Api
|
|
82251
82661
|
*/
|
|
82252
82662
|
public listIdentityAttributes(requestParameters: IdentityAttributesV2025ApiListIdentityAttributesRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
82253
|
-
return IdentityAttributesV2025ApiFp(this.configuration).listIdentityAttributes(requestParameters.includeSystem, requestParameters.includeSilent, requestParameters.searchableOnly, requestParameters.count,
|
|
82663
|
+
return IdentityAttributesV2025ApiFp(this.configuration).listIdentityAttributes(requestParameters.includeSystem, requestParameters.includeSilent, requestParameters.searchableOnly, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
82254
82664
|
}
|
|
82255
82665
|
|
|
82256
82666
|
/**
|
|
@@ -82262,7 +82672,7 @@ export class IdentityAttributesV2025Api extends BaseAPI {
|
|
|
82262
82672
|
* @memberof IdentityAttributesV2025Api
|
|
82263
82673
|
*/
|
|
82264
82674
|
public putIdentityAttribute(requestParameters: IdentityAttributesV2025ApiPutIdentityAttributeRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
82265
|
-
return IdentityAttributesV2025ApiFp(this.configuration).putIdentityAttribute(requestParameters.name, requestParameters.
|
|
82675
|
+
return IdentityAttributesV2025ApiFp(this.configuration).putIdentityAttribute(requestParameters.name, requestParameters.identityAttributeV2025, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
82266
82676
|
}
|
|
82267
82677
|
}
|
|
82268
82678
|
|
|
@@ -86614,6 +87024,616 @@ export const TestMFAConfigMethodV2025 = {
|
|
|
86614
87024
|
export type TestMFAConfigMethodV2025 = typeof TestMFAConfigMethodV2025[keyof typeof TestMFAConfigMethodV2025];
|
|
86615
87025
|
|
|
86616
87026
|
|
|
87027
|
+
/**
|
|
87028
|
+
* MachineAccountClassifyV2025Api - axios parameter creator
|
|
87029
|
+
* @export
|
|
87030
|
+
*/
|
|
87031
|
+
export const MachineAccountClassifyV2025ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
87032
|
+
return {
|
|
87033
|
+
/**
|
|
87034
|
+
* 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.
|
|
87035
|
+
* @summary Classify a Single Machine Account
|
|
87036
|
+
* @param {string} id Account ID.
|
|
87037
|
+
* @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.
|
|
87038
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87039
|
+
* @throws {RequiredError}
|
|
87040
|
+
*/
|
|
87041
|
+
sendClassifyMachineAccount: async (id: string, classificationMode?: SendClassifyMachineAccountClassificationModeV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
87042
|
+
// verify required parameter 'id' is not null or undefined
|
|
87043
|
+
assertParamExists('sendClassifyMachineAccount', 'id', id)
|
|
87044
|
+
const localVarPath = `/accounts/{id}/classify`
|
|
87045
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
87046
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
87047
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
87048
|
+
let baseOptions;
|
|
87049
|
+
if (configuration) {
|
|
87050
|
+
baseOptions = configuration.baseOptions;
|
|
87051
|
+
}
|
|
87052
|
+
|
|
87053
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
87054
|
+
const localVarHeaderParameter = {} as any;
|
|
87055
|
+
const localVarQueryParameter = {} as any;
|
|
87056
|
+
|
|
87057
|
+
// authentication userAuth required
|
|
87058
|
+
// oauth required
|
|
87059
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
87060
|
+
|
|
87061
|
+
// authentication userAuth required
|
|
87062
|
+
// oauth required
|
|
87063
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
87064
|
+
|
|
87065
|
+
if (classificationMode !== undefined) {
|
|
87066
|
+
localVarQueryParameter['classificationMode'] = classificationMode;
|
|
87067
|
+
}
|
|
87068
|
+
|
|
87069
|
+
|
|
87070
|
+
|
|
87071
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
87072
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
87073
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
87074
|
+
|
|
87075
|
+
return {
|
|
87076
|
+
url: toPathString(localVarUrlObj),
|
|
87077
|
+
axiosOptions: localVarRequestOptions,
|
|
87078
|
+
};
|
|
87079
|
+
},
|
|
87080
|
+
}
|
|
87081
|
+
};
|
|
87082
|
+
|
|
87083
|
+
/**
|
|
87084
|
+
* MachineAccountClassifyV2025Api - functional programming interface
|
|
87085
|
+
* @export
|
|
87086
|
+
*/
|
|
87087
|
+
export const MachineAccountClassifyV2025ApiFp = function(configuration?: Configuration) {
|
|
87088
|
+
const localVarAxiosParamCreator = MachineAccountClassifyV2025ApiAxiosParamCreator(configuration)
|
|
87089
|
+
return {
|
|
87090
|
+
/**
|
|
87091
|
+
* 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.
|
|
87092
|
+
* @summary Classify a Single Machine Account
|
|
87093
|
+
* @param {string} id Account ID.
|
|
87094
|
+
* @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.
|
|
87095
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87096
|
+
* @throws {RequiredError}
|
|
87097
|
+
*/
|
|
87098
|
+
async sendClassifyMachineAccount(id: string, classificationMode?: SendClassifyMachineAccountClassificationModeV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SendClassifyMachineAccount200ResponseV2025>> {
|
|
87099
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.sendClassifyMachineAccount(id, classificationMode, axiosOptions);
|
|
87100
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
87101
|
+
const localVarOperationServerBasePath = operationServerMap['MachineAccountClassifyV2025Api.sendClassifyMachineAccount']?.[localVarOperationServerIndex]?.url;
|
|
87102
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
87103
|
+
},
|
|
87104
|
+
}
|
|
87105
|
+
};
|
|
87106
|
+
|
|
87107
|
+
/**
|
|
87108
|
+
* MachineAccountClassifyV2025Api - factory interface
|
|
87109
|
+
* @export
|
|
87110
|
+
*/
|
|
87111
|
+
export const MachineAccountClassifyV2025ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
87112
|
+
const localVarFp = MachineAccountClassifyV2025ApiFp(configuration)
|
|
87113
|
+
return {
|
|
87114
|
+
/**
|
|
87115
|
+
* 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.
|
|
87116
|
+
* @summary Classify a Single Machine Account
|
|
87117
|
+
* @param {MachineAccountClassifyV2025ApiSendClassifyMachineAccountRequest} requestParameters Request parameters.
|
|
87118
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87119
|
+
* @throws {RequiredError}
|
|
87120
|
+
*/
|
|
87121
|
+
sendClassifyMachineAccount(requestParameters: MachineAccountClassifyV2025ApiSendClassifyMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SendClassifyMachineAccount200ResponseV2025> {
|
|
87122
|
+
return localVarFp.sendClassifyMachineAccount(requestParameters.id, requestParameters.classificationMode, axiosOptions).then((request) => request(axios, basePath));
|
|
87123
|
+
},
|
|
87124
|
+
};
|
|
87125
|
+
};
|
|
87126
|
+
|
|
87127
|
+
/**
|
|
87128
|
+
* Request parameters for sendClassifyMachineAccount operation in MachineAccountClassifyV2025Api.
|
|
87129
|
+
* @export
|
|
87130
|
+
* @interface MachineAccountClassifyV2025ApiSendClassifyMachineAccountRequest
|
|
87131
|
+
*/
|
|
87132
|
+
export interface MachineAccountClassifyV2025ApiSendClassifyMachineAccountRequest {
|
|
87133
|
+
/**
|
|
87134
|
+
* Account ID.
|
|
87135
|
+
* @type {string}
|
|
87136
|
+
* @memberof MachineAccountClassifyV2025ApiSendClassifyMachineAccount
|
|
87137
|
+
*/
|
|
87138
|
+
readonly id: string
|
|
87139
|
+
|
|
87140
|
+
/**
|
|
87141
|
+
* 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.
|
|
87142
|
+
* @type {'default' | 'ignoreManual' | 'forceMachine' | 'forceHuman'}
|
|
87143
|
+
* @memberof MachineAccountClassifyV2025ApiSendClassifyMachineAccount
|
|
87144
|
+
*/
|
|
87145
|
+
readonly classificationMode?: SendClassifyMachineAccountClassificationModeV2025
|
|
87146
|
+
}
|
|
87147
|
+
|
|
87148
|
+
/**
|
|
87149
|
+
* MachineAccountClassifyV2025Api - object-oriented interface
|
|
87150
|
+
* @export
|
|
87151
|
+
* @class MachineAccountClassifyV2025Api
|
|
87152
|
+
* @extends {BaseAPI}
|
|
87153
|
+
*/
|
|
87154
|
+
export class MachineAccountClassifyV2025Api extends BaseAPI {
|
|
87155
|
+
/**
|
|
87156
|
+
* 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.
|
|
87157
|
+
* @summary Classify a Single Machine Account
|
|
87158
|
+
* @param {MachineAccountClassifyV2025ApiSendClassifyMachineAccountRequest} requestParameters Request parameters.
|
|
87159
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87160
|
+
* @throws {RequiredError}
|
|
87161
|
+
* @memberof MachineAccountClassifyV2025Api
|
|
87162
|
+
*/
|
|
87163
|
+
public sendClassifyMachineAccount(requestParameters: MachineAccountClassifyV2025ApiSendClassifyMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
87164
|
+
return MachineAccountClassifyV2025ApiFp(this.configuration).sendClassifyMachineAccount(requestParameters.id, requestParameters.classificationMode, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
87165
|
+
}
|
|
87166
|
+
}
|
|
87167
|
+
|
|
87168
|
+
/**
|
|
87169
|
+
* @export
|
|
87170
|
+
*/
|
|
87171
|
+
export const SendClassifyMachineAccountClassificationModeV2025 = {
|
|
87172
|
+
Default: 'default',
|
|
87173
|
+
IgnoreManual: 'ignoreManual',
|
|
87174
|
+
ForceMachine: 'forceMachine',
|
|
87175
|
+
ForceHuman: 'forceHuman'
|
|
87176
|
+
} as const;
|
|
87177
|
+
export type SendClassifyMachineAccountClassificationModeV2025 = typeof SendClassifyMachineAccountClassificationModeV2025[keyof typeof SendClassifyMachineAccountClassificationModeV2025];
|
|
87178
|
+
|
|
87179
|
+
|
|
87180
|
+
/**
|
|
87181
|
+
* MachineAccountMappingsV2025Api - axios parameter creator
|
|
87182
|
+
* @export
|
|
87183
|
+
*/
|
|
87184
|
+
export const MachineAccountMappingsV2025ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
87185
|
+
return {
|
|
87186
|
+
/**
|
|
87187
|
+
* 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.
|
|
87188
|
+
* @summary Create machine account mappings
|
|
87189
|
+
* @param {string} id Source ID.
|
|
87190
|
+
* @param {AttributeMappingsV2025} attributeMappingsV2025
|
|
87191
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87192
|
+
* @throws {RequiredError}
|
|
87193
|
+
*/
|
|
87194
|
+
createMachineAccountMappings: async (id: string, attributeMappingsV2025: AttributeMappingsV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
87195
|
+
// verify required parameter 'id' is not null or undefined
|
|
87196
|
+
assertParamExists('createMachineAccountMappings', 'id', id)
|
|
87197
|
+
// verify required parameter 'attributeMappingsV2025' is not null or undefined
|
|
87198
|
+
assertParamExists('createMachineAccountMappings', 'attributeMappingsV2025', attributeMappingsV2025)
|
|
87199
|
+
const localVarPath = `/sources/{sourceId}/machine-account-mappings`
|
|
87200
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
87201
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
87202
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
87203
|
+
let baseOptions;
|
|
87204
|
+
if (configuration) {
|
|
87205
|
+
baseOptions = configuration.baseOptions;
|
|
87206
|
+
}
|
|
87207
|
+
|
|
87208
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
87209
|
+
const localVarHeaderParameter = {} as any;
|
|
87210
|
+
const localVarQueryParameter = {} as any;
|
|
87211
|
+
|
|
87212
|
+
// authentication userAuth required
|
|
87213
|
+
// oauth required
|
|
87214
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
87215
|
+
|
|
87216
|
+
// authentication userAuth required
|
|
87217
|
+
// oauth required
|
|
87218
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
87219
|
+
|
|
87220
|
+
|
|
87221
|
+
|
|
87222
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
87223
|
+
|
|
87224
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
87225
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
87226
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
87227
|
+
localVarRequestOptions.data = serializeDataIfNeeded(attributeMappingsV2025, localVarRequestOptions, configuration)
|
|
87228
|
+
|
|
87229
|
+
return {
|
|
87230
|
+
url: toPathString(localVarUrlObj),
|
|
87231
|
+
axiosOptions: localVarRequestOptions,
|
|
87232
|
+
};
|
|
87233
|
+
},
|
|
87234
|
+
/**
|
|
87235
|
+
* 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.
|
|
87236
|
+
* @summary Delete source\'s machine account mappings
|
|
87237
|
+
* @param {string} id source ID.
|
|
87238
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87239
|
+
* @throws {RequiredError}
|
|
87240
|
+
*/
|
|
87241
|
+
deleteMachineAccountMappings: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
87242
|
+
// verify required parameter 'id' is not null or undefined
|
|
87243
|
+
assertParamExists('deleteMachineAccountMappings', 'id', id)
|
|
87244
|
+
const localVarPath = `/sources/{sourceId}/machine-account-mappings`
|
|
87245
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
87246
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
87247
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
87248
|
+
let baseOptions;
|
|
87249
|
+
if (configuration) {
|
|
87250
|
+
baseOptions = configuration.baseOptions;
|
|
87251
|
+
}
|
|
87252
|
+
|
|
87253
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};
|
|
87254
|
+
const localVarHeaderParameter = {} as any;
|
|
87255
|
+
const localVarQueryParameter = {} as any;
|
|
87256
|
+
|
|
87257
|
+
// authentication userAuth required
|
|
87258
|
+
// oauth required
|
|
87259
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
87260
|
+
|
|
87261
|
+
// authentication userAuth required
|
|
87262
|
+
// oauth required
|
|
87263
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
87264
|
+
|
|
87265
|
+
|
|
87266
|
+
|
|
87267
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
87268
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
87269
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
87270
|
+
|
|
87271
|
+
return {
|
|
87272
|
+
url: toPathString(localVarUrlObj),
|
|
87273
|
+
axiosOptions: localVarRequestOptions,
|
|
87274
|
+
};
|
|
87275
|
+
},
|
|
87276
|
+
/**
|
|
87277
|
+
* Retrieves Machine account mappings for a specified source using Source ID.
|
|
87278
|
+
* @summary Machine account mapping for source
|
|
87279
|
+
* @param {string} id Source ID
|
|
87280
|
+
* @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.
|
|
87281
|
+
* @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.
|
|
87282
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87283
|
+
* @throws {RequiredError}
|
|
87284
|
+
*/
|
|
87285
|
+
listMachineAccountMappings: async (id: string, limit?: number, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
87286
|
+
// verify required parameter 'id' is not null or undefined
|
|
87287
|
+
assertParamExists('listMachineAccountMappings', 'id', id)
|
|
87288
|
+
const localVarPath = `/sources/{sourceId}/machine-account-mappings`
|
|
87289
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
87290
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
87291
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
87292
|
+
let baseOptions;
|
|
87293
|
+
if (configuration) {
|
|
87294
|
+
baseOptions = configuration.baseOptions;
|
|
87295
|
+
}
|
|
87296
|
+
|
|
87297
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
87298
|
+
const localVarHeaderParameter = {} as any;
|
|
87299
|
+
const localVarQueryParameter = {} as any;
|
|
87300
|
+
|
|
87301
|
+
// authentication userAuth required
|
|
87302
|
+
// oauth required
|
|
87303
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
87304
|
+
|
|
87305
|
+
// authentication userAuth required
|
|
87306
|
+
// oauth required
|
|
87307
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
87308
|
+
|
|
87309
|
+
if (limit !== undefined) {
|
|
87310
|
+
localVarQueryParameter['limit'] = limit;
|
|
87311
|
+
}
|
|
87312
|
+
|
|
87313
|
+
if (offset !== undefined) {
|
|
87314
|
+
localVarQueryParameter['offset'] = offset;
|
|
87315
|
+
}
|
|
87316
|
+
|
|
87317
|
+
|
|
87318
|
+
|
|
87319
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
87320
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
87321
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
87322
|
+
|
|
87323
|
+
return {
|
|
87324
|
+
url: toPathString(localVarUrlObj),
|
|
87325
|
+
axiosOptions: localVarRequestOptions,
|
|
87326
|
+
};
|
|
87327
|
+
},
|
|
87328
|
+
/**
|
|
87329
|
+
* 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.
|
|
87330
|
+
* @summary Update Source\'s Machine Account Mappings
|
|
87331
|
+
* @param {string} id Source ID.
|
|
87332
|
+
* @param {AttributeMappingsV2025} attributeMappingsV2025
|
|
87333
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87334
|
+
* @throws {RequiredError}
|
|
87335
|
+
*/
|
|
87336
|
+
setMachineAccountMappings: async (id: string, attributeMappingsV2025: AttributeMappingsV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
87337
|
+
// verify required parameter 'id' is not null or undefined
|
|
87338
|
+
assertParamExists('setMachineAccountMappings', 'id', id)
|
|
87339
|
+
// verify required parameter 'attributeMappingsV2025' is not null or undefined
|
|
87340
|
+
assertParamExists('setMachineAccountMappings', 'attributeMappingsV2025', attributeMappingsV2025)
|
|
87341
|
+
const localVarPath = `/sources/{sourceId}/machine-mappings`
|
|
87342
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
87343
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
87344
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
87345
|
+
let baseOptions;
|
|
87346
|
+
if (configuration) {
|
|
87347
|
+
baseOptions = configuration.baseOptions;
|
|
87348
|
+
}
|
|
87349
|
+
|
|
87350
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...axiosOptions};
|
|
87351
|
+
const localVarHeaderParameter = {} as any;
|
|
87352
|
+
const localVarQueryParameter = {} as any;
|
|
87353
|
+
|
|
87354
|
+
// authentication userAuth required
|
|
87355
|
+
// oauth required
|
|
87356
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
87357
|
+
|
|
87358
|
+
// authentication userAuth required
|
|
87359
|
+
// oauth required
|
|
87360
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
87361
|
+
|
|
87362
|
+
|
|
87363
|
+
|
|
87364
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
87365
|
+
|
|
87366
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
87367
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
87368
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
87369
|
+
localVarRequestOptions.data = serializeDataIfNeeded(attributeMappingsV2025, localVarRequestOptions, configuration)
|
|
87370
|
+
|
|
87371
|
+
return {
|
|
87372
|
+
url: toPathString(localVarUrlObj),
|
|
87373
|
+
axiosOptions: localVarRequestOptions,
|
|
87374
|
+
};
|
|
87375
|
+
},
|
|
87376
|
+
}
|
|
87377
|
+
};
|
|
87378
|
+
|
|
87379
|
+
/**
|
|
87380
|
+
* MachineAccountMappingsV2025Api - functional programming interface
|
|
87381
|
+
* @export
|
|
87382
|
+
*/
|
|
87383
|
+
export const MachineAccountMappingsV2025ApiFp = function(configuration?: Configuration) {
|
|
87384
|
+
const localVarAxiosParamCreator = MachineAccountMappingsV2025ApiAxiosParamCreator(configuration)
|
|
87385
|
+
return {
|
|
87386
|
+
/**
|
|
87387
|
+
* 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.
|
|
87388
|
+
* @summary Create machine account mappings
|
|
87389
|
+
* @param {string} id Source ID.
|
|
87390
|
+
* @param {AttributeMappingsV2025} attributeMappingsV2025
|
|
87391
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87392
|
+
* @throws {RequiredError}
|
|
87393
|
+
*/
|
|
87394
|
+
async createMachineAccountMappings(id: string, attributeMappingsV2025: AttributeMappingsV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeMappingsV2025>>> {
|
|
87395
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createMachineAccountMappings(id, attributeMappingsV2025, axiosOptions);
|
|
87396
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
87397
|
+
const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsV2025Api.createMachineAccountMappings']?.[localVarOperationServerIndex]?.url;
|
|
87398
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
87399
|
+
},
|
|
87400
|
+
/**
|
|
87401
|
+
* 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.
|
|
87402
|
+
* @summary Delete source\'s machine account mappings
|
|
87403
|
+
* @param {string} id source ID.
|
|
87404
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87405
|
+
* @throws {RequiredError}
|
|
87406
|
+
*/
|
|
87407
|
+
async deleteMachineAccountMappings(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
87408
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteMachineAccountMappings(id, axiosOptions);
|
|
87409
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
87410
|
+
const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsV2025Api.deleteMachineAccountMappings']?.[localVarOperationServerIndex]?.url;
|
|
87411
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
87412
|
+
},
|
|
87413
|
+
/**
|
|
87414
|
+
* Retrieves Machine account mappings for a specified source using Source ID.
|
|
87415
|
+
* @summary Machine account mapping for source
|
|
87416
|
+
* @param {string} id Source ID
|
|
87417
|
+
* @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.
|
|
87418
|
+
* @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.
|
|
87419
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87420
|
+
* @throws {RequiredError}
|
|
87421
|
+
*/
|
|
87422
|
+
async listMachineAccountMappings(id: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeMappingsV2025>>> {
|
|
87423
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listMachineAccountMappings(id, limit, offset, axiosOptions);
|
|
87424
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
87425
|
+
const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsV2025Api.listMachineAccountMappings']?.[localVarOperationServerIndex]?.url;
|
|
87426
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
87427
|
+
},
|
|
87428
|
+
/**
|
|
87429
|
+
* 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.
|
|
87430
|
+
* @summary Update Source\'s Machine Account Mappings
|
|
87431
|
+
* @param {string} id Source ID.
|
|
87432
|
+
* @param {AttributeMappingsV2025} attributeMappingsV2025
|
|
87433
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87434
|
+
* @throws {RequiredError}
|
|
87435
|
+
*/
|
|
87436
|
+
async setMachineAccountMappings(id: string, attributeMappingsV2025: AttributeMappingsV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeMappingsV2025>>> {
|
|
87437
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.setMachineAccountMappings(id, attributeMappingsV2025, axiosOptions);
|
|
87438
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
87439
|
+
const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsV2025Api.setMachineAccountMappings']?.[localVarOperationServerIndex]?.url;
|
|
87440
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
87441
|
+
},
|
|
87442
|
+
}
|
|
87443
|
+
};
|
|
87444
|
+
|
|
87445
|
+
/**
|
|
87446
|
+
* MachineAccountMappingsV2025Api - factory interface
|
|
87447
|
+
* @export
|
|
87448
|
+
*/
|
|
87449
|
+
export const MachineAccountMappingsV2025ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
87450
|
+
const localVarFp = MachineAccountMappingsV2025ApiFp(configuration)
|
|
87451
|
+
return {
|
|
87452
|
+
/**
|
|
87453
|
+
* 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.
|
|
87454
|
+
* @summary Create machine account mappings
|
|
87455
|
+
* @param {MachineAccountMappingsV2025ApiCreateMachineAccountMappingsRequest} requestParameters Request parameters.
|
|
87456
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87457
|
+
* @throws {RequiredError}
|
|
87458
|
+
*/
|
|
87459
|
+
createMachineAccountMappings(requestParameters: MachineAccountMappingsV2025ApiCreateMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeMappingsV2025>> {
|
|
87460
|
+
return localVarFp.createMachineAccountMappings(requestParameters.id, requestParameters.attributeMappingsV2025, axiosOptions).then((request) => request(axios, basePath));
|
|
87461
|
+
},
|
|
87462
|
+
/**
|
|
87463
|
+
* 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.
|
|
87464
|
+
* @summary Delete source\'s machine account mappings
|
|
87465
|
+
* @param {MachineAccountMappingsV2025ApiDeleteMachineAccountMappingsRequest} requestParameters Request parameters.
|
|
87466
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87467
|
+
* @throws {RequiredError}
|
|
87468
|
+
*/
|
|
87469
|
+
deleteMachineAccountMappings(requestParameters: MachineAccountMappingsV2025ApiDeleteMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
87470
|
+
return localVarFp.deleteMachineAccountMappings(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
87471
|
+
},
|
|
87472
|
+
/**
|
|
87473
|
+
* Retrieves Machine account mappings for a specified source using Source ID.
|
|
87474
|
+
* @summary Machine account mapping for source
|
|
87475
|
+
* @param {MachineAccountMappingsV2025ApiListMachineAccountMappingsRequest} requestParameters Request parameters.
|
|
87476
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87477
|
+
* @throws {RequiredError}
|
|
87478
|
+
*/
|
|
87479
|
+
listMachineAccountMappings(requestParameters: MachineAccountMappingsV2025ApiListMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeMappingsV2025>> {
|
|
87480
|
+
return localVarFp.listMachineAccountMappings(requestParameters.id, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(axios, basePath));
|
|
87481
|
+
},
|
|
87482
|
+
/**
|
|
87483
|
+
* 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.
|
|
87484
|
+
* @summary Update Source\'s Machine Account Mappings
|
|
87485
|
+
* @param {MachineAccountMappingsV2025ApiSetMachineAccountMappingsRequest} requestParameters Request parameters.
|
|
87486
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87487
|
+
* @throws {RequiredError}
|
|
87488
|
+
*/
|
|
87489
|
+
setMachineAccountMappings(requestParameters: MachineAccountMappingsV2025ApiSetMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeMappingsV2025>> {
|
|
87490
|
+
return localVarFp.setMachineAccountMappings(requestParameters.id, requestParameters.attributeMappingsV2025, axiosOptions).then((request) => request(axios, basePath));
|
|
87491
|
+
},
|
|
87492
|
+
};
|
|
87493
|
+
};
|
|
87494
|
+
|
|
87495
|
+
/**
|
|
87496
|
+
* Request parameters for createMachineAccountMappings operation in MachineAccountMappingsV2025Api.
|
|
87497
|
+
* @export
|
|
87498
|
+
* @interface MachineAccountMappingsV2025ApiCreateMachineAccountMappingsRequest
|
|
87499
|
+
*/
|
|
87500
|
+
export interface MachineAccountMappingsV2025ApiCreateMachineAccountMappingsRequest {
|
|
87501
|
+
/**
|
|
87502
|
+
* Source ID.
|
|
87503
|
+
* @type {string}
|
|
87504
|
+
* @memberof MachineAccountMappingsV2025ApiCreateMachineAccountMappings
|
|
87505
|
+
*/
|
|
87506
|
+
readonly id: string
|
|
87507
|
+
|
|
87508
|
+
/**
|
|
87509
|
+
*
|
|
87510
|
+
* @type {AttributeMappingsV2025}
|
|
87511
|
+
* @memberof MachineAccountMappingsV2025ApiCreateMachineAccountMappings
|
|
87512
|
+
*/
|
|
87513
|
+
readonly attributeMappingsV2025: AttributeMappingsV2025
|
|
87514
|
+
}
|
|
87515
|
+
|
|
87516
|
+
/**
|
|
87517
|
+
* Request parameters for deleteMachineAccountMappings operation in MachineAccountMappingsV2025Api.
|
|
87518
|
+
* @export
|
|
87519
|
+
* @interface MachineAccountMappingsV2025ApiDeleteMachineAccountMappingsRequest
|
|
87520
|
+
*/
|
|
87521
|
+
export interface MachineAccountMappingsV2025ApiDeleteMachineAccountMappingsRequest {
|
|
87522
|
+
/**
|
|
87523
|
+
* source ID.
|
|
87524
|
+
* @type {string}
|
|
87525
|
+
* @memberof MachineAccountMappingsV2025ApiDeleteMachineAccountMappings
|
|
87526
|
+
*/
|
|
87527
|
+
readonly id: string
|
|
87528
|
+
}
|
|
87529
|
+
|
|
87530
|
+
/**
|
|
87531
|
+
* Request parameters for listMachineAccountMappings operation in MachineAccountMappingsV2025Api.
|
|
87532
|
+
* @export
|
|
87533
|
+
* @interface MachineAccountMappingsV2025ApiListMachineAccountMappingsRequest
|
|
87534
|
+
*/
|
|
87535
|
+
export interface MachineAccountMappingsV2025ApiListMachineAccountMappingsRequest {
|
|
87536
|
+
/**
|
|
87537
|
+
* Source ID
|
|
87538
|
+
* @type {string}
|
|
87539
|
+
* @memberof MachineAccountMappingsV2025ApiListMachineAccountMappings
|
|
87540
|
+
*/
|
|
87541
|
+
readonly id: string
|
|
87542
|
+
|
|
87543
|
+
/**
|
|
87544
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
87545
|
+
* @type {number}
|
|
87546
|
+
* @memberof MachineAccountMappingsV2025ApiListMachineAccountMappings
|
|
87547
|
+
*/
|
|
87548
|
+
readonly limit?: number
|
|
87549
|
+
|
|
87550
|
+
/**
|
|
87551
|
+
* 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.
|
|
87552
|
+
* @type {number}
|
|
87553
|
+
* @memberof MachineAccountMappingsV2025ApiListMachineAccountMappings
|
|
87554
|
+
*/
|
|
87555
|
+
readonly offset?: number
|
|
87556
|
+
}
|
|
87557
|
+
|
|
87558
|
+
/**
|
|
87559
|
+
* Request parameters for setMachineAccountMappings operation in MachineAccountMappingsV2025Api.
|
|
87560
|
+
* @export
|
|
87561
|
+
* @interface MachineAccountMappingsV2025ApiSetMachineAccountMappingsRequest
|
|
87562
|
+
*/
|
|
87563
|
+
export interface MachineAccountMappingsV2025ApiSetMachineAccountMappingsRequest {
|
|
87564
|
+
/**
|
|
87565
|
+
* Source ID.
|
|
87566
|
+
* @type {string}
|
|
87567
|
+
* @memberof MachineAccountMappingsV2025ApiSetMachineAccountMappings
|
|
87568
|
+
*/
|
|
87569
|
+
readonly id: string
|
|
87570
|
+
|
|
87571
|
+
/**
|
|
87572
|
+
*
|
|
87573
|
+
* @type {AttributeMappingsV2025}
|
|
87574
|
+
* @memberof MachineAccountMappingsV2025ApiSetMachineAccountMappings
|
|
87575
|
+
*/
|
|
87576
|
+
readonly attributeMappingsV2025: AttributeMappingsV2025
|
|
87577
|
+
}
|
|
87578
|
+
|
|
87579
|
+
/**
|
|
87580
|
+
* MachineAccountMappingsV2025Api - object-oriented interface
|
|
87581
|
+
* @export
|
|
87582
|
+
* @class MachineAccountMappingsV2025Api
|
|
87583
|
+
* @extends {BaseAPI}
|
|
87584
|
+
*/
|
|
87585
|
+
export class MachineAccountMappingsV2025Api extends BaseAPI {
|
|
87586
|
+
/**
|
|
87587
|
+
* 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.
|
|
87588
|
+
* @summary Create machine account mappings
|
|
87589
|
+
* @param {MachineAccountMappingsV2025ApiCreateMachineAccountMappingsRequest} requestParameters Request parameters.
|
|
87590
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87591
|
+
* @throws {RequiredError}
|
|
87592
|
+
* @memberof MachineAccountMappingsV2025Api
|
|
87593
|
+
*/
|
|
87594
|
+
public createMachineAccountMappings(requestParameters: MachineAccountMappingsV2025ApiCreateMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
87595
|
+
return MachineAccountMappingsV2025ApiFp(this.configuration).createMachineAccountMappings(requestParameters.id, requestParameters.attributeMappingsV2025, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
87596
|
+
}
|
|
87597
|
+
|
|
87598
|
+
/**
|
|
87599
|
+
* 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.
|
|
87600
|
+
* @summary Delete source\'s machine account mappings
|
|
87601
|
+
* @param {MachineAccountMappingsV2025ApiDeleteMachineAccountMappingsRequest} requestParameters Request parameters.
|
|
87602
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87603
|
+
* @throws {RequiredError}
|
|
87604
|
+
* @memberof MachineAccountMappingsV2025Api
|
|
87605
|
+
*/
|
|
87606
|
+
public deleteMachineAccountMappings(requestParameters: MachineAccountMappingsV2025ApiDeleteMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
87607
|
+
return MachineAccountMappingsV2025ApiFp(this.configuration).deleteMachineAccountMappings(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
87608
|
+
}
|
|
87609
|
+
|
|
87610
|
+
/**
|
|
87611
|
+
* Retrieves Machine account mappings for a specified source using Source ID.
|
|
87612
|
+
* @summary Machine account mapping for source
|
|
87613
|
+
* @param {MachineAccountMappingsV2025ApiListMachineAccountMappingsRequest} requestParameters Request parameters.
|
|
87614
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87615
|
+
* @throws {RequiredError}
|
|
87616
|
+
* @memberof MachineAccountMappingsV2025Api
|
|
87617
|
+
*/
|
|
87618
|
+
public listMachineAccountMappings(requestParameters: MachineAccountMappingsV2025ApiListMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
87619
|
+
return MachineAccountMappingsV2025ApiFp(this.configuration).listMachineAccountMappings(requestParameters.id, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
87620
|
+
}
|
|
87621
|
+
|
|
87622
|
+
/**
|
|
87623
|
+
* 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.
|
|
87624
|
+
* @summary Update Source\'s Machine Account Mappings
|
|
87625
|
+
* @param {MachineAccountMappingsV2025ApiSetMachineAccountMappingsRequest} requestParameters Request parameters.
|
|
87626
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
87627
|
+
* @throws {RequiredError}
|
|
87628
|
+
* @memberof MachineAccountMappingsV2025Api
|
|
87629
|
+
*/
|
|
87630
|
+
public setMachineAccountMappings(requestParameters: MachineAccountMappingsV2025ApiSetMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
87631
|
+
return MachineAccountMappingsV2025ApiFp(this.configuration).setMachineAccountMappings(requestParameters.id, requestParameters.attributeMappingsV2025, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
87632
|
+
}
|
|
87633
|
+
}
|
|
87634
|
+
|
|
87635
|
+
|
|
87636
|
+
|
|
86617
87637
|
/**
|
|
86618
87638
|
* MachineAccountsV2025Api - axios parameter creator
|
|
86619
87639
|
* @export
|
|
@@ -87043,6 +88063,332 @@ export class MachineAccountsV2025Api extends BaseAPI {
|
|
|
87043
88063
|
|
|
87044
88064
|
|
|
87045
88065
|
|
|
88066
|
+
/**
|
|
88067
|
+
* MachineClassificationConfigV2025Api - axios parameter creator
|
|
88068
|
+
* @export
|
|
88069
|
+
*/
|
|
88070
|
+
export const MachineClassificationConfigV2025ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
88071
|
+
return {
|
|
88072
|
+
/**
|
|
88073
|
+
* 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.
|
|
88074
|
+
* @summary Delete source\'s classification config
|
|
88075
|
+
* @param {string} id Source ID.
|
|
88076
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
88077
|
+
* @throws {RequiredError}
|
|
88078
|
+
*/
|
|
88079
|
+
deleteMachineClassificationConfig: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
88080
|
+
// verify required parameter 'id' is not null or undefined
|
|
88081
|
+
assertParamExists('deleteMachineClassificationConfig', 'id', id)
|
|
88082
|
+
const localVarPath = `/sources/{sourceId}/machine-classification-config`
|
|
88083
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
88084
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
88085
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
88086
|
+
let baseOptions;
|
|
88087
|
+
if (configuration) {
|
|
88088
|
+
baseOptions = configuration.baseOptions;
|
|
88089
|
+
}
|
|
88090
|
+
|
|
88091
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};
|
|
88092
|
+
const localVarHeaderParameter = {} as any;
|
|
88093
|
+
const localVarQueryParameter = {} as any;
|
|
88094
|
+
|
|
88095
|
+
// authentication userAuth required
|
|
88096
|
+
// oauth required
|
|
88097
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
88098
|
+
|
|
88099
|
+
// authentication userAuth required
|
|
88100
|
+
// oauth required
|
|
88101
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
88102
|
+
|
|
88103
|
+
|
|
88104
|
+
|
|
88105
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
88106
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
88107
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
88108
|
+
|
|
88109
|
+
return {
|
|
88110
|
+
url: toPathString(localVarUrlObj),
|
|
88111
|
+
axiosOptions: localVarRequestOptions,
|
|
88112
|
+
};
|
|
88113
|
+
},
|
|
88114
|
+
/**
|
|
88115
|
+
* This API returns a Machine Classification Config for a Source using Source ID.
|
|
88116
|
+
* @summary Machine classification config for source
|
|
88117
|
+
* @param {string} id Source ID
|
|
88118
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
88119
|
+
* @throws {RequiredError}
|
|
88120
|
+
*/
|
|
88121
|
+
getMachineClassificationConfig: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
88122
|
+
// verify required parameter 'id' is not null or undefined
|
|
88123
|
+
assertParamExists('getMachineClassificationConfig', 'id', id)
|
|
88124
|
+
const localVarPath = `/sources/{sourceId}/machine-classification-config`
|
|
88125
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
88126
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
88127
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
88128
|
+
let baseOptions;
|
|
88129
|
+
if (configuration) {
|
|
88130
|
+
baseOptions = configuration.baseOptions;
|
|
88131
|
+
}
|
|
88132
|
+
|
|
88133
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
88134
|
+
const localVarHeaderParameter = {} as any;
|
|
88135
|
+
const localVarQueryParameter = {} as any;
|
|
88136
|
+
|
|
88137
|
+
// authentication userAuth required
|
|
88138
|
+
// oauth required
|
|
88139
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
88140
|
+
|
|
88141
|
+
// authentication userAuth required
|
|
88142
|
+
// oauth required
|
|
88143
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
88144
|
+
|
|
88145
|
+
|
|
88146
|
+
|
|
88147
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
88148
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
88149
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
88150
|
+
|
|
88151
|
+
return {
|
|
88152
|
+
url: toPathString(localVarUrlObj),
|
|
88153
|
+
axiosOptions: localVarRequestOptions,
|
|
88154
|
+
};
|
|
88155
|
+
},
|
|
88156
|
+
/**
|
|
88157
|
+
* 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.
|
|
88158
|
+
* @summary Update source\'s classification config
|
|
88159
|
+
* @param {string} id Source ID.
|
|
88160
|
+
* @param {MachineClassificationConfigV2025} machineClassificationConfigV2025
|
|
88161
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
88162
|
+
* @throws {RequiredError}
|
|
88163
|
+
*/
|
|
88164
|
+
setMachineClassificationConfig: async (id: string, machineClassificationConfigV2025: MachineClassificationConfigV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
88165
|
+
// verify required parameter 'id' is not null or undefined
|
|
88166
|
+
assertParamExists('setMachineClassificationConfig', 'id', id)
|
|
88167
|
+
// verify required parameter 'machineClassificationConfigV2025' is not null or undefined
|
|
88168
|
+
assertParamExists('setMachineClassificationConfig', 'machineClassificationConfigV2025', machineClassificationConfigV2025)
|
|
88169
|
+
const localVarPath = `/sources/{sourceId}/machine-classification-config`
|
|
88170
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
88171
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
88172
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
88173
|
+
let baseOptions;
|
|
88174
|
+
if (configuration) {
|
|
88175
|
+
baseOptions = configuration.baseOptions;
|
|
88176
|
+
}
|
|
88177
|
+
|
|
88178
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...axiosOptions};
|
|
88179
|
+
const localVarHeaderParameter = {} as any;
|
|
88180
|
+
const localVarQueryParameter = {} as any;
|
|
88181
|
+
|
|
88182
|
+
// authentication userAuth required
|
|
88183
|
+
// oauth required
|
|
88184
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
88185
|
+
|
|
88186
|
+
// authentication userAuth required
|
|
88187
|
+
// oauth required
|
|
88188
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
88189
|
+
|
|
88190
|
+
|
|
88191
|
+
|
|
88192
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
88193
|
+
|
|
88194
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
88195
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
88196
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
88197
|
+
localVarRequestOptions.data = serializeDataIfNeeded(machineClassificationConfigV2025, localVarRequestOptions, configuration)
|
|
88198
|
+
|
|
88199
|
+
return {
|
|
88200
|
+
url: toPathString(localVarUrlObj),
|
|
88201
|
+
axiosOptions: localVarRequestOptions,
|
|
88202
|
+
};
|
|
88203
|
+
},
|
|
88204
|
+
}
|
|
88205
|
+
};
|
|
88206
|
+
|
|
88207
|
+
/**
|
|
88208
|
+
* MachineClassificationConfigV2025Api - functional programming interface
|
|
88209
|
+
* @export
|
|
88210
|
+
*/
|
|
88211
|
+
export const MachineClassificationConfigV2025ApiFp = function(configuration?: Configuration) {
|
|
88212
|
+
const localVarAxiosParamCreator = MachineClassificationConfigV2025ApiAxiosParamCreator(configuration)
|
|
88213
|
+
return {
|
|
88214
|
+
/**
|
|
88215
|
+
* 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.
|
|
88216
|
+
* @summary Delete source\'s classification config
|
|
88217
|
+
* @param {string} id Source ID.
|
|
88218
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
88219
|
+
* @throws {RequiredError}
|
|
88220
|
+
*/
|
|
88221
|
+
async deleteMachineClassificationConfig(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
88222
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteMachineClassificationConfig(id, axiosOptions);
|
|
88223
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
88224
|
+
const localVarOperationServerBasePath = operationServerMap['MachineClassificationConfigV2025Api.deleteMachineClassificationConfig']?.[localVarOperationServerIndex]?.url;
|
|
88225
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
88226
|
+
},
|
|
88227
|
+
/**
|
|
88228
|
+
* This API returns a Machine Classification Config for a Source using Source ID.
|
|
88229
|
+
* @summary Machine classification config for source
|
|
88230
|
+
* @param {string} id Source ID
|
|
88231
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
88232
|
+
* @throws {RequiredError}
|
|
88233
|
+
*/
|
|
88234
|
+
async getMachineClassificationConfig(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineClassificationConfigV2025>> {
|
|
88235
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getMachineClassificationConfig(id, axiosOptions);
|
|
88236
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
88237
|
+
const localVarOperationServerBasePath = operationServerMap['MachineClassificationConfigV2025Api.getMachineClassificationConfig']?.[localVarOperationServerIndex]?.url;
|
|
88238
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
88239
|
+
},
|
|
88240
|
+
/**
|
|
88241
|
+
* 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.
|
|
88242
|
+
* @summary Update source\'s classification config
|
|
88243
|
+
* @param {string} id Source ID.
|
|
88244
|
+
* @param {MachineClassificationConfigV2025} machineClassificationConfigV2025
|
|
88245
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
88246
|
+
* @throws {RequiredError}
|
|
88247
|
+
*/
|
|
88248
|
+
async setMachineClassificationConfig(id: string, machineClassificationConfigV2025: MachineClassificationConfigV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineClassificationConfigV2025>> {
|
|
88249
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.setMachineClassificationConfig(id, machineClassificationConfigV2025, axiosOptions);
|
|
88250
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
88251
|
+
const localVarOperationServerBasePath = operationServerMap['MachineClassificationConfigV2025Api.setMachineClassificationConfig']?.[localVarOperationServerIndex]?.url;
|
|
88252
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
88253
|
+
},
|
|
88254
|
+
}
|
|
88255
|
+
};
|
|
88256
|
+
|
|
88257
|
+
/**
|
|
88258
|
+
* MachineClassificationConfigV2025Api - factory interface
|
|
88259
|
+
* @export
|
|
88260
|
+
*/
|
|
88261
|
+
export const MachineClassificationConfigV2025ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
88262
|
+
const localVarFp = MachineClassificationConfigV2025ApiFp(configuration)
|
|
88263
|
+
return {
|
|
88264
|
+
/**
|
|
88265
|
+
* 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.
|
|
88266
|
+
* @summary Delete source\'s classification config
|
|
88267
|
+
* @param {MachineClassificationConfigV2025ApiDeleteMachineClassificationConfigRequest} requestParameters Request parameters.
|
|
88268
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
88269
|
+
* @throws {RequiredError}
|
|
88270
|
+
*/
|
|
88271
|
+
deleteMachineClassificationConfig(requestParameters: MachineClassificationConfigV2025ApiDeleteMachineClassificationConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
88272
|
+
return localVarFp.deleteMachineClassificationConfig(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
88273
|
+
},
|
|
88274
|
+
/**
|
|
88275
|
+
* This API returns a Machine Classification Config for a Source using Source ID.
|
|
88276
|
+
* @summary Machine classification config for source
|
|
88277
|
+
* @param {MachineClassificationConfigV2025ApiGetMachineClassificationConfigRequest} requestParameters Request parameters.
|
|
88278
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
88279
|
+
* @throws {RequiredError}
|
|
88280
|
+
*/
|
|
88281
|
+
getMachineClassificationConfig(requestParameters: MachineClassificationConfigV2025ApiGetMachineClassificationConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineClassificationConfigV2025> {
|
|
88282
|
+
return localVarFp.getMachineClassificationConfig(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
88283
|
+
},
|
|
88284
|
+
/**
|
|
88285
|
+
* 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.
|
|
88286
|
+
* @summary Update source\'s classification config
|
|
88287
|
+
* @param {MachineClassificationConfigV2025ApiSetMachineClassificationConfigRequest} requestParameters Request parameters.
|
|
88288
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
88289
|
+
* @throws {RequiredError}
|
|
88290
|
+
*/
|
|
88291
|
+
setMachineClassificationConfig(requestParameters: MachineClassificationConfigV2025ApiSetMachineClassificationConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineClassificationConfigV2025> {
|
|
88292
|
+
return localVarFp.setMachineClassificationConfig(requestParameters.id, requestParameters.machineClassificationConfigV2025, axiosOptions).then((request) => request(axios, basePath));
|
|
88293
|
+
},
|
|
88294
|
+
};
|
|
88295
|
+
};
|
|
88296
|
+
|
|
88297
|
+
/**
|
|
88298
|
+
* Request parameters for deleteMachineClassificationConfig operation in MachineClassificationConfigV2025Api.
|
|
88299
|
+
* @export
|
|
88300
|
+
* @interface MachineClassificationConfigV2025ApiDeleteMachineClassificationConfigRequest
|
|
88301
|
+
*/
|
|
88302
|
+
export interface MachineClassificationConfigV2025ApiDeleteMachineClassificationConfigRequest {
|
|
88303
|
+
/**
|
|
88304
|
+
* Source ID.
|
|
88305
|
+
* @type {string}
|
|
88306
|
+
* @memberof MachineClassificationConfigV2025ApiDeleteMachineClassificationConfig
|
|
88307
|
+
*/
|
|
88308
|
+
readonly id: string
|
|
88309
|
+
}
|
|
88310
|
+
|
|
88311
|
+
/**
|
|
88312
|
+
* Request parameters for getMachineClassificationConfig operation in MachineClassificationConfigV2025Api.
|
|
88313
|
+
* @export
|
|
88314
|
+
* @interface MachineClassificationConfigV2025ApiGetMachineClassificationConfigRequest
|
|
88315
|
+
*/
|
|
88316
|
+
export interface MachineClassificationConfigV2025ApiGetMachineClassificationConfigRequest {
|
|
88317
|
+
/**
|
|
88318
|
+
* Source ID
|
|
88319
|
+
* @type {string}
|
|
88320
|
+
* @memberof MachineClassificationConfigV2025ApiGetMachineClassificationConfig
|
|
88321
|
+
*/
|
|
88322
|
+
readonly id: string
|
|
88323
|
+
}
|
|
88324
|
+
|
|
88325
|
+
/**
|
|
88326
|
+
* Request parameters for setMachineClassificationConfig operation in MachineClassificationConfigV2025Api.
|
|
88327
|
+
* @export
|
|
88328
|
+
* @interface MachineClassificationConfigV2025ApiSetMachineClassificationConfigRequest
|
|
88329
|
+
*/
|
|
88330
|
+
export interface MachineClassificationConfigV2025ApiSetMachineClassificationConfigRequest {
|
|
88331
|
+
/**
|
|
88332
|
+
* Source ID.
|
|
88333
|
+
* @type {string}
|
|
88334
|
+
* @memberof MachineClassificationConfigV2025ApiSetMachineClassificationConfig
|
|
88335
|
+
*/
|
|
88336
|
+
readonly id: string
|
|
88337
|
+
|
|
88338
|
+
/**
|
|
88339
|
+
*
|
|
88340
|
+
* @type {MachineClassificationConfigV2025}
|
|
88341
|
+
* @memberof MachineClassificationConfigV2025ApiSetMachineClassificationConfig
|
|
88342
|
+
*/
|
|
88343
|
+
readonly machineClassificationConfigV2025: MachineClassificationConfigV2025
|
|
88344
|
+
}
|
|
88345
|
+
|
|
88346
|
+
/**
|
|
88347
|
+
* MachineClassificationConfigV2025Api - object-oriented interface
|
|
88348
|
+
* @export
|
|
88349
|
+
* @class MachineClassificationConfigV2025Api
|
|
88350
|
+
* @extends {BaseAPI}
|
|
88351
|
+
*/
|
|
88352
|
+
export class MachineClassificationConfigV2025Api extends BaseAPI {
|
|
88353
|
+
/**
|
|
88354
|
+
* 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.
|
|
88355
|
+
* @summary Delete source\'s classification config
|
|
88356
|
+
* @param {MachineClassificationConfigV2025ApiDeleteMachineClassificationConfigRequest} requestParameters Request parameters.
|
|
88357
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
88358
|
+
* @throws {RequiredError}
|
|
88359
|
+
* @memberof MachineClassificationConfigV2025Api
|
|
88360
|
+
*/
|
|
88361
|
+
public deleteMachineClassificationConfig(requestParameters: MachineClassificationConfigV2025ApiDeleteMachineClassificationConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
88362
|
+
return MachineClassificationConfigV2025ApiFp(this.configuration).deleteMachineClassificationConfig(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
88363
|
+
}
|
|
88364
|
+
|
|
88365
|
+
/**
|
|
88366
|
+
* This API returns a Machine Classification Config for a Source using Source ID.
|
|
88367
|
+
* @summary Machine classification config for source
|
|
88368
|
+
* @param {MachineClassificationConfigV2025ApiGetMachineClassificationConfigRequest} requestParameters Request parameters.
|
|
88369
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
88370
|
+
* @throws {RequiredError}
|
|
88371
|
+
* @memberof MachineClassificationConfigV2025Api
|
|
88372
|
+
*/
|
|
88373
|
+
public getMachineClassificationConfig(requestParameters: MachineClassificationConfigV2025ApiGetMachineClassificationConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
88374
|
+
return MachineClassificationConfigV2025ApiFp(this.configuration).getMachineClassificationConfig(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
88375
|
+
}
|
|
88376
|
+
|
|
88377
|
+
/**
|
|
88378
|
+
* 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.
|
|
88379
|
+
* @summary Update source\'s classification config
|
|
88380
|
+
* @param {MachineClassificationConfigV2025ApiSetMachineClassificationConfigRequest} requestParameters Request parameters.
|
|
88381
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
88382
|
+
* @throws {RequiredError}
|
|
88383
|
+
* @memberof MachineClassificationConfigV2025Api
|
|
88384
|
+
*/
|
|
88385
|
+
public setMachineClassificationConfig(requestParameters: MachineClassificationConfigV2025ApiSetMachineClassificationConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
88386
|
+
return MachineClassificationConfigV2025ApiFp(this.configuration).setMachineClassificationConfig(requestParameters.id, requestParameters.machineClassificationConfigV2025, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
88387
|
+
}
|
|
88388
|
+
}
|
|
88389
|
+
|
|
88390
|
+
|
|
88391
|
+
|
|
87046
88392
|
/**
|
|
87047
88393
|
* MachineIdentitiesV2025Api - axios parameter creator
|
|
87048
88394
|
* @export
|
|
@@ -87208,7 +88554,7 @@ export const MachineIdentitiesV2025ApiAxiosParamCreator = function (configuratio
|
|
|
87208
88554
|
/**
|
|
87209
88555
|
* This API returns a list of machine identities.
|
|
87210
88556
|
* @summary List machine identities
|
|
87211
|
-
* @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*
|
|
88557
|
+
* @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*
|
|
87212
88558
|
* @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**
|
|
87213
88559
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
87214
88560
|
* @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.
|
|
@@ -87389,7 +88735,7 @@ export const MachineIdentitiesV2025ApiFp = function(configuration?: Configuratio
|
|
|
87389
88735
|
/**
|
|
87390
88736
|
* This API returns a list of machine identities.
|
|
87391
88737
|
* @summary List machine identities
|
|
87392
|
-
* @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*
|
|
88738
|
+
* @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*
|
|
87393
88739
|
* @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**
|
|
87394
88740
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
87395
88741
|
* @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.
|
|
@@ -87552,7 +88898,7 @@ export interface MachineIdentitiesV2025ApiGetMachineIdentityRequest {
|
|
|
87552
88898
|
*/
|
|
87553
88899
|
export interface MachineIdentitiesV2025ApiListMachineIdentitiesRequest {
|
|
87554
88900
|
/**
|
|
87555
|
-
* 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*
|
|
88901
|
+
* 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*
|
|
87556
88902
|
* @type {string}
|
|
87557
88903
|
* @memberof MachineIdentitiesV2025ApiListMachineIdentities
|
|
87558
88904
|
*/
|
|
@@ -100498,7 +101844,7 @@ export const RequestableObjectsV2025ApiAxiosParamCreator = function (configurati
|
|
|
100498
101844
|
* 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.
|
|
100499
101845
|
* @summary Requestable objects list
|
|
100500
101846
|
* @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.
|
|
100501
|
-
* @param {Array<
|
|
101847
|
+
* @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.
|
|
100502
101848
|
* @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.
|
|
100503
101849
|
* @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.
|
|
100504
101850
|
* @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.
|
|
@@ -100509,7 +101855,7 @@ export const RequestableObjectsV2025ApiAxiosParamCreator = function (configurati
|
|
|
100509
101855
|
* @param {*} [axiosOptions] Override http request option.
|
|
100510
101856
|
* @throws {RequiredError}
|
|
100511
101857
|
*/
|
|
100512
|
-
listRequestableObjects: async (identityId?: string, types?: Array<
|
|
101858
|
+
listRequestableObjects: async (identityId?: string, types?: Array<ListRequestableObjectsTypesV2025>, term?: string, statuses?: Array<RequestableObjectRequestStatusV2025>, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
100513
101859
|
const localVarPath = `/requestable-objects`;
|
|
100514
101860
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
100515
101861
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -100591,7 +101937,7 @@ export const RequestableObjectsV2025ApiFp = function(configuration?: Configurati
|
|
|
100591
101937
|
* 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.
|
|
100592
101938
|
* @summary Requestable objects list
|
|
100593
101939
|
* @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.
|
|
100594
|
-
* @param {Array<
|
|
101940
|
+
* @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.
|
|
100595
101941
|
* @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.
|
|
100596
101942
|
* @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.
|
|
100597
101943
|
* @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.
|
|
@@ -100602,7 +101948,7 @@ export const RequestableObjectsV2025ApiFp = function(configuration?: Configurati
|
|
|
100602
101948
|
* @param {*} [axiosOptions] Override http request option.
|
|
100603
101949
|
* @throws {RequiredError}
|
|
100604
101950
|
*/
|
|
100605
|
-
async listRequestableObjects(identityId?: string, types?: Array<
|
|
101951
|
+
async 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>>> {
|
|
100606
101952
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listRequestableObjects(identityId, types, term, statuses, limit, offset, count, filters, sorters, axiosOptions);
|
|
100607
101953
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
100608
101954
|
const localVarOperationServerBasePath = operationServerMap['RequestableObjectsV2025Api.listRequestableObjects']?.[localVarOperationServerIndex]?.url;
|
|
@@ -100646,10 +101992,10 @@ export interface RequestableObjectsV2025ApiListRequestableObjectsRequest {
|
|
|
100646
101992
|
|
|
100647
101993
|
/**
|
|
100648
101994
|
* 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.
|
|
100649
|
-
* @type {Array<
|
|
101995
|
+
* @type {Array<'ACCESS_PROFILE' | 'ROLE'>}
|
|
100650
101996
|
* @memberof RequestableObjectsV2025ApiListRequestableObjects
|
|
100651
101997
|
*/
|
|
100652
|
-
readonly types?: Array<
|
|
101998
|
+
readonly types?: Array<ListRequestableObjectsTypesV2025>
|
|
100653
101999
|
|
|
100654
102000
|
/**
|
|
100655
102001
|
* 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.
|
|
@@ -100721,6 +102067,14 @@ export class RequestableObjectsV2025Api extends BaseAPI {
|
|
|
100721
102067
|
}
|
|
100722
102068
|
}
|
|
100723
102069
|
|
|
102070
|
+
/**
|
|
102071
|
+
* @export
|
|
102072
|
+
*/
|
|
102073
|
+
export const ListRequestableObjectsTypesV2025 = {
|
|
102074
|
+
AccessProfile: 'ACCESS_PROFILE',
|
|
102075
|
+
Role: 'ROLE'
|
|
102076
|
+
} as const;
|
|
102077
|
+
export type ListRequestableObjectsTypesV2025 = typeof ListRequestableObjectsTypesV2025[keyof typeof ListRequestableObjectsTypesV2025];
|
|
100724
102078
|
|
|
100725
102079
|
|
|
100726
102080
|
/**
|
|
@@ -111744,19 +113098,12 @@ export const SourcesV2025ApiAxiosParamCreator = function (configuration?: Config
|
|
|
111744
113098
|
* Deletes the native change detection configuration for the source specified by the given ID.
|
|
111745
113099
|
* @summary Delete native change detection configuration
|
|
111746
113100
|
* @param {string} id The source id
|
|
111747
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
111748
113101
|
* @param {*} [axiosOptions] Override http request option.
|
|
111749
113102
|
* @throws {RequiredError}
|
|
111750
113103
|
*/
|
|
111751
|
-
deleteNativeChangeDetectionConfig: async (id: string,
|
|
113104
|
+
deleteNativeChangeDetectionConfig: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
111752
113105
|
// verify required parameter 'id' is not null or undefined
|
|
111753
113106
|
assertParamExists('deleteNativeChangeDetectionConfig', 'id', id)
|
|
111754
|
-
if (xSailPointExperimental === undefined) {
|
|
111755
|
-
xSailPointExperimental = 'true';
|
|
111756
|
-
}
|
|
111757
|
-
|
|
111758
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
111759
|
-
assertParamExists('deleteNativeChangeDetectionConfig', 'xSailPointExperimental', xSailPointExperimental)
|
|
111760
113107
|
const localVarPath = `/sources/{sourceId}/native-change-detection-config`
|
|
111761
113108
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
111762
113109
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -111784,9 +113131,6 @@ export const SourcesV2025ApiAxiosParamCreator = function (configuration?: Config
|
|
|
111784
113131
|
|
|
111785
113132
|
|
|
111786
113133
|
|
|
111787
|
-
if (xSailPointExperimental != null) {
|
|
111788
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
111789
|
-
}
|
|
111790
113134
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
111791
113135
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
111792
113136
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -112115,17 +113459,12 @@ export const SourcesV2025ApiAxiosParamCreator = function (configuration?: Config
|
|
|
112115
113459
|
* This API returns the existing native change detection configuration for a source specified by the given ID.
|
|
112116
113460
|
* @summary Native change detection configuration
|
|
112117
113461
|
* @param {string} id The source id
|
|
112118
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
112119
113462
|
* @param {*} [axiosOptions] Override http request option.
|
|
112120
113463
|
* @throws {RequiredError}
|
|
112121
113464
|
*/
|
|
112122
|
-
getNativeChangeDetectionConfig: async (id: string,
|
|
113465
|
+
getNativeChangeDetectionConfig: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
112123
113466
|
// verify required parameter 'id' is not null or undefined
|
|
112124
113467
|
assertParamExists('getNativeChangeDetectionConfig', 'id', id)
|
|
112125
|
-
if (xSailPointExperimental === undefined) {
|
|
112126
|
-
xSailPointExperimental = 'true';
|
|
112127
|
-
}
|
|
112128
|
-
|
|
112129
113468
|
const localVarPath = `/sources/{sourceId}/native-change-detection-config`
|
|
112130
113469
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
112131
113470
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -112149,9 +113488,6 @@ export const SourcesV2025ApiAxiosParamCreator = function (configuration?: Config
|
|
|
112149
113488
|
|
|
112150
113489
|
|
|
112151
113490
|
|
|
112152
|
-
if (xSailPointExperimental != null) {
|
|
112153
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
112154
|
-
}
|
|
112155
113491
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
112156
113492
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
112157
113493
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -112824,6 +114160,65 @@ export const SourcesV2025ApiAxiosParamCreator = function (configuration?: Config
|
|
|
112824
114160
|
axiosOptions: localVarRequestOptions,
|
|
112825
114161
|
};
|
|
112826
114162
|
},
|
|
114163
|
+
/**
|
|
114164
|
+
* 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.
|
|
114165
|
+
* @summary Entitlement aggregation
|
|
114166
|
+
* @param {string} sourceId Source Id
|
|
114167
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
114168
|
+
* @param {File} [file] The CSV file containing the source entitlements to aggregate.
|
|
114169
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
114170
|
+
* @throws {RequiredError}
|
|
114171
|
+
*/
|
|
114172
|
+
importEntitlements: async (sourceId: string, xSailPointExperimental?: string, file?: File, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
114173
|
+
// verify required parameter 'sourceId' is not null or undefined
|
|
114174
|
+
assertParamExists('importEntitlements', 'sourceId', sourceId)
|
|
114175
|
+
if (xSailPointExperimental === undefined) {
|
|
114176
|
+
xSailPointExperimental = 'true';
|
|
114177
|
+
}
|
|
114178
|
+
|
|
114179
|
+
const localVarPath = `/sources/{sourceId}/load-entitlements`
|
|
114180
|
+
.replace(`{${"sourceId"}}`, encodeURIComponent(String(sourceId)));
|
|
114181
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
114182
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
114183
|
+
let baseOptions;
|
|
114184
|
+
if (configuration) {
|
|
114185
|
+
baseOptions = configuration.baseOptions;
|
|
114186
|
+
}
|
|
114187
|
+
|
|
114188
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
114189
|
+
const localVarHeaderParameter = {} as any;
|
|
114190
|
+
const localVarQueryParameter = {} as any;
|
|
114191
|
+
const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
|
|
114192
|
+
|
|
114193
|
+
// authentication userAuth required
|
|
114194
|
+
// oauth required
|
|
114195
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
114196
|
+
|
|
114197
|
+
// authentication userAuth required
|
|
114198
|
+
// oauth required
|
|
114199
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
114200
|
+
|
|
114201
|
+
|
|
114202
|
+
if (file !== undefined) {
|
|
114203
|
+
localVarFormParams.append('file', file as any);
|
|
114204
|
+
}
|
|
114205
|
+
|
|
114206
|
+
|
|
114207
|
+
localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
|
|
114208
|
+
|
|
114209
|
+
if (xSailPointExperimental != null) {
|
|
114210
|
+
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
114211
|
+
}
|
|
114212
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
114213
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
114214
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
114215
|
+
localVarRequestOptions.data = localVarFormParams;
|
|
114216
|
+
|
|
114217
|
+
return {
|
|
114218
|
+
url: toPathString(localVarUrlObj),
|
|
114219
|
+
axiosOptions: localVarRequestOptions,
|
|
114220
|
+
};
|
|
114221
|
+
},
|
|
112827
114222
|
/**
|
|
112828
114223
|
* 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.**
|
|
112829
114224
|
* @summary Uploads source entitlements schema template
|
|
@@ -113156,20 +114551,13 @@ export const SourcesV2025ApiAxiosParamCreator = function (configuration?: Config
|
|
|
113156
114551
|
* Replaces the native change detection configuration for the source specified by the given ID with the configuration provided in the request body.
|
|
113157
114552
|
* @summary Update native change detection configuration
|
|
113158
114553
|
* @param {string} id The source id
|
|
113159
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
113160
114554
|
* @param {NativeChangeDetectionConfigV2025} nativeChangeDetectionConfigV2025
|
|
113161
114555
|
* @param {*} [axiosOptions] Override http request option.
|
|
113162
114556
|
* @throws {RequiredError}
|
|
113163
114557
|
*/
|
|
113164
|
-
putNativeChangeDetectionConfig: async (id: string,
|
|
114558
|
+
putNativeChangeDetectionConfig: async (id: string, nativeChangeDetectionConfigV2025: NativeChangeDetectionConfigV2025, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
113165
114559
|
// verify required parameter 'id' is not null or undefined
|
|
113166
114560
|
assertParamExists('putNativeChangeDetectionConfig', 'id', id)
|
|
113167
|
-
if (xSailPointExperimental === undefined) {
|
|
113168
|
-
xSailPointExperimental = 'true';
|
|
113169
|
-
}
|
|
113170
|
-
|
|
113171
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
113172
|
-
assertParamExists('putNativeChangeDetectionConfig', 'xSailPointExperimental', xSailPointExperimental)
|
|
113173
114561
|
// verify required parameter 'nativeChangeDetectionConfigV2025' is not null or undefined
|
|
113174
114562
|
assertParamExists('putNativeChangeDetectionConfig', 'nativeChangeDetectionConfigV2025', nativeChangeDetectionConfigV2025)
|
|
113175
114563
|
const localVarPath = `/sources/{sourceId}/native-change-detection-config`
|
|
@@ -113197,9 +114585,6 @@ export const SourcesV2025ApiAxiosParamCreator = function (configuration?: Config
|
|
|
113197
114585
|
|
|
113198
114586
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
113199
114587
|
|
|
113200
|
-
if (xSailPointExperimental != null) {
|
|
113201
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
113202
|
-
}
|
|
113203
114588
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
113204
114589
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
113205
114590
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -114052,12 +115437,11 @@ export const SourcesV2025ApiFp = function(configuration?: Configuration) {
|
|
|
114052
115437
|
* Deletes the native change detection configuration for the source specified by the given ID.
|
|
114053
115438
|
* @summary Delete native change detection configuration
|
|
114054
115439
|
* @param {string} id The source id
|
|
114055
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
114056
115440
|
* @param {*} [axiosOptions] Override http request option.
|
|
114057
115441
|
* @throws {RequiredError}
|
|
114058
115442
|
*/
|
|
114059
|
-
async deleteNativeChangeDetectionConfig(id: string,
|
|
114060
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteNativeChangeDetectionConfig(id,
|
|
115443
|
+
async deleteNativeChangeDetectionConfig(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
115444
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteNativeChangeDetectionConfig(id, axiosOptions);
|
|
114061
115445
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
114062
115446
|
const localVarOperationServerBasePath = operationServerMap['SourcesV2025Api.deleteNativeChangeDetectionConfig']?.[localVarOperationServerIndex]?.url;
|
|
114063
115447
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -114161,12 +115545,11 @@ export const SourcesV2025ApiFp = function(configuration?: Configuration) {
|
|
|
114161
115545
|
* This API returns the existing native change detection configuration for a source specified by the given ID.
|
|
114162
115546
|
* @summary Native change detection configuration
|
|
114163
115547
|
* @param {string} id The source id
|
|
114164
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
114165
115548
|
* @param {*} [axiosOptions] Override http request option.
|
|
114166
115549
|
* @throws {RequiredError}
|
|
114167
115550
|
*/
|
|
114168
|
-
async getNativeChangeDetectionConfig(id: string,
|
|
114169
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getNativeChangeDetectionConfig(id,
|
|
115551
|
+
async getNativeChangeDetectionConfig(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NativeChangeDetectionConfigV2025>> {
|
|
115552
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getNativeChangeDetectionConfig(id, axiosOptions);
|
|
114170
115553
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
114171
115554
|
const localVarOperationServerBasePath = operationServerMap['SourcesV2025Api.getNativeChangeDetectionConfig']?.[localVarOperationServerIndex]?.url;
|
|
114172
115555
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -114364,6 +115747,21 @@ export const SourcesV2025ApiFp = function(configuration?: Configuration) {
|
|
|
114364
115747
|
const localVarOperationServerBasePath = operationServerMap['SourcesV2025Api.importConnectorFile']?.[localVarOperationServerIndex]?.url;
|
|
114365
115748
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
114366
115749
|
},
|
|
115750
|
+
/**
|
|
115751
|
+
* 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.
|
|
115752
|
+
* @summary Entitlement aggregation
|
|
115753
|
+
* @param {string} sourceId Source Id
|
|
115754
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
115755
|
+
* @param {File} [file] The CSV file containing the source entitlements to aggregate.
|
|
115756
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
115757
|
+
* @throws {RequiredError}
|
|
115758
|
+
*/
|
|
115759
|
+
async importEntitlements(sourceId: string, xSailPointExperimental?: string, file?: File, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoadEntitlementTaskV2025>> {
|
|
115760
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.importEntitlements(sourceId, xSailPointExperimental, file, axiosOptions);
|
|
115761
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
115762
|
+
const localVarOperationServerBasePath = operationServerMap['SourcesV2025Api.importEntitlements']?.[localVarOperationServerIndex]?.url;
|
|
115763
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
115764
|
+
},
|
|
114367
115765
|
/**
|
|
114368
115766
|
* 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.**
|
|
114369
115767
|
* @summary Uploads source entitlements schema template
|
|
@@ -114457,13 +115855,12 @@ export const SourcesV2025ApiFp = function(configuration?: Configuration) {
|
|
|
114457
115855
|
* Replaces the native change detection configuration for the source specified by the given ID with the configuration provided in the request body.
|
|
114458
115856
|
* @summary Update native change detection configuration
|
|
114459
115857
|
* @param {string} id The source id
|
|
114460
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
114461
115858
|
* @param {NativeChangeDetectionConfigV2025} nativeChangeDetectionConfigV2025
|
|
114462
115859
|
* @param {*} [axiosOptions] Override http request option.
|
|
114463
115860
|
* @throws {RequiredError}
|
|
114464
115861
|
*/
|
|
114465
|
-
async putNativeChangeDetectionConfig(id: string,
|
|
114466
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.putNativeChangeDetectionConfig(id,
|
|
115862
|
+
async putNativeChangeDetectionConfig(id: string, nativeChangeDetectionConfigV2025: NativeChangeDetectionConfigV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NativeChangeDetectionConfigV2025>> {
|
|
115863
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.putNativeChangeDetectionConfig(id, nativeChangeDetectionConfigV2025, axiosOptions);
|
|
114467
115864
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
114468
115865
|
const localVarOperationServerBasePath = operationServerMap['SourcesV2025Api.putNativeChangeDetectionConfig']?.[localVarOperationServerIndex]?.url;
|
|
114469
115866
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -114750,7 +116147,7 @@ export const SourcesV2025ApiFactory = function (configuration?: Configuration, b
|
|
|
114750
116147
|
* @throws {RequiredError}
|
|
114751
116148
|
*/
|
|
114752
116149
|
deleteNativeChangeDetectionConfig(requestParameters: SourcesV2025ApiDeleteNativeChangeDetectionConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
114753
|
-
return localVarFp.deleteNativeChangeDetectionConfig(requestParameters.id,
|
|
116150
|
+
return localVarFp.deleteNativeChangeDetectionConfig(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
114754
116151
|
},
|
|
114755
116152
|
/**
|
|
114756
116153
|
* Deletes the provisioning policy with the specified usage on an application.
|
|
@@ -114830,7 +116227,7 @@ export const SourcesV2025ApiFactory = function (configuration?: Configuration, b
|
|
|
114830
116227
|
* @throws {RequiredError}
|
|
114831
116228
|
*/
|
|
114832
116229
|
getNativeChangeDetectionConfig(requestParameters: SourcesV2025ApiGetNativeChangeDetectionConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NativeChangeDetectionConfigV2025> {
|
|
114833
|
-
return localVarFp.getNativeChangeDetectionConfig(requestParameters.id,
|
|
116230
|
+
return localVarFp.getNativeChangeDetectionConfig(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
114834
116231
|
},
|
|
114835
116232
|
/**
|
|
114836
116233
|
* This end-point retrieves the ProvisioningPolicy with the specified usage on the specified Source in IdentityNow.
|
|
@@ -114972,6 +116369,16 @@ export const SourcesV2025ApiFactory = function (configuration?: Configuration, b
|
|
|
114972
116369
|
importConnectorFile(requestParameters: SourcesV2025ApiImportConnectorFileRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceV2025> {
|
|
114973
116370
|
return localVarFp.importConnectorFile(requestParameters.sourceId, requestParameters.file, axiosOptions).then((request) => request(axios, basePath));
|
|
114974
116371
|
},
|
|
116372
|
+
/**
|
|
116373
|
+
* 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.
|
|
116374
|
+
* @summary Entitlement aggregation
|
|
116375
|
+
* @param {SourcesV2025ApiImportEntitlementsRequest} requestParameters Request parameters.
|
|
116376
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
116377
|
+
* @throws {RequiredError}
|
|
116378
|
+
*/
|
|
116379
|
+
importEntitlements(requestParameters: SourcesV2025ApiImportEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<LoadEntitlementTaskV2025> {
|
|
116380
|
+
return localVarFp.importEntitlements(requestParameters.sourceId, requestParameters.xSailPointExperimental, requestParameters.file, axiosOptions).then((request) => request(axios, basePath));
|
|
116381
|
+
},
|
|
114975
116382
|
/**
|
|
114976
116383
|
* 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.**
|
|
114977
116384
|
* @summary Uploads source entitlements schema template
|
|
@@ -115040,7 +116447,7 @@ export const SourcesV2025ApiFactory = function (configuration?: Configuration, b
|
|
|
115040
116447
|
* @throws {RequiredError}
|
|
115041
116448
|
*/
|
|
115042
116449
|
putNativeChangeDetectionConfig(requestParameters: SourcesV2025ApiPutNativeChangeDetectionConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NativeChangeDetectionConfigV2025> {
|
|
115043
|
-
return localVarFp.putNativeChangeDetectionConfig(requestParameters.id, requestParameters.
|
|
116450
|
+
return localVarFp.putNativeChangeDetectionConfig(requestParameters.id, requestParameters.nativeChangeDetectionConfigV2025, axiosOptions).then((request) => request(axios, basePath));
|
|
115044
116451
|
},
|
|
115045
116452
|
/**
|
|
115046
116453
|
* 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.
|
|
@@ -115312,13 +116719,6 @@ export interface SourcesV2025ApiDeleteNativeChangeDetectionConfigRequest {
|
|
|
115312
116719
|
* @memberof SourcesV2025ApiDeleteNativeChangeDetectionConfig
|
|
115313
116720
|
*/
|
|
115314
116721
|
readonly id: string
|
|
115315
|
-
|
|
115316
|
-
/**
|
|
115317
|
-
* Use this header to enable this experimental API.
|
|
115318
|
-
* @type {string}
|
|
115319
|
-
* @memberof SourcesV2025ApiDeleteNativeChangeDetectionConfig
|
|
115320
|
-
*/
|
|
115321
|
-
readonly xSailPointExperimental: string
|
|
115322
116722
|
}
|
|
115323
116723
|
|
|
115324
116724
|
/**
|
|
@@ -115459,13 +116859,6 @@ export interface SourcesV2025ApiGetNativeChangeDetectionConfigRequest {
|
|
|
115459
116859
|
* @memberof SourcesV2025ApiGetNativeChangeDetectionConfig
|
|
115460
116860
|
*/
|
|
115461
116861
|
readonly id: string
|
|
115462
|
-
|
|
115463
|
-
/**
|
|
115464
|
-
* Use this header to enable this experimental API.
|
|
115465
|
-
* @type {string}
|
|
115466
|
-
* @memberof SourcesV2025ApiGetNativeChangeDetectionConfig
|
|
115467
|
-
*/
|
|
115468
|
-
readonly xSailPointExperimental?: string
|
|
115469
116862
|
}
|
|
115470
116863
|
|
|
115471
116864
|
/**
|
|
@@ -115741,6 +117134,34 @@ export interface SourcesV2025ApiImportConnectorFileRequest {
|
|
|
115741
117134
|
readonly file?: File
|
|
115742
117135
|
}
|
|
115743
117136
|
|
|
117137
|
+
/**
|
|
117138
|
+
* Request parameters for importEntitlements operation in SourcesV2025Api.
|
|
117139
|
+
* @export
|
|
117140
|
+
* @interface SourcesV2025ApiImportEntitlementsRequest
|
|
117141
|
+
*/
|
|
117142
|
+
export interface SourcesV2025ApiImportEntitlementsRequest {
|
|
117143
|
+
/**
|
|
117144
|
+
* Source Id
|
|
117145
|
+
* @type {string}
|
|
117146
|
+
* @memberof SourcesV2025ApiImportEntitlements
|
|
117147
|
+
*/
|
|
117148
|
+
readonly sourceId: string
|
|
117149
|
+
|
|
117150
|
+
/**
|
|
117151
|
+
* Use this header to enable this experimental API.
|
|
117152
|
+
* @type {string}
|
|
117153
|
+
* @memberof SourcesV2025ApiImportEntitlements
|
|
117154
|
+
*/
|
|
117155
|
+
readonly xSailPointExperimental?: string
|
|
117156
|
+
|
|
117157
|
+
/**
|
|
117158
|
+
* The CSV file containing the source entitlements to aggregate.
|
|
117159
|
+
* @type {File}
|
|
117160
|
+
* @memberof SourcesV2025ApiImportEntitlements
|
|
117161
|
+
*/
|
|
117162
|
+
readonly file?: File
|
|
117163
|
+
}
|
|
117164
|
+
|
|
115744
117165
|
/**
|
|
115745
117166
|
* Request parameters for importEntitlementsSchema operation in SourcesV2025Api.
|
|
115746
117167
|
* @export
|
|
@@ -115915,13 +117336,6 @@ export interface SourcesV2025ApiPutNativeChangeDetectionConfigRequest {
|
|
|
115915
117336
|
*/
|
|
115916
117337
|
readonly id: string
|
|
115917
117338
|
|
|
115918
|
-
/**
|
|
115919
|
-
* Use this header to enable this experimental API.
|
|
115920
|
-
* @type {string}
|
|
115921
|
-
* @memberof SourcesV2025ApiPutNativeChangeDetectionConfig
|
|
115922
|
-
*/
|
|
115923
|
-
readonly xSailPointExperimental: string
|
|
115924
|
-
|
|
115925
117339
|
/**
|
|
115926
117340
|
*
|
|
115927
117341
|
* @type {NativeChangeDetectionConfigV2025}
|
|
@@ -116349,7 +117763,7 @@ export class SourcesV2025Api extends BaseAPI {
|
|
|
116349
117763
|
* @memberof SourcesV2025Api
|
|
116350
117764
|
*/
|
|
116351
117765
|
public deleteNativeChangeDetectionConfig(requestParameters: SourcesV2025ApiDeleteNativeChangeDetectionConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
116352
|
-
return SourcesV2025ApiFp(this.configuration).deleteNativeChangeDetectionConfig(requestParameters.id,
|
|
117766
|
+
return SourcesV2025ApiFp(this.configuration).deleteNativeChangeDetectionConfig(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
116353
117767
|
}
|
|
116354
117768
|
|
|
116355
117769
|
/**
|
|
@@ -116445,7 +117859,7 @@ export class SourcesV2025Api extends BaseAPI {
|
|
|
116445
117859
|
* @memberof SourcesV2025Api
|
|
116446
117860
|
*/
|
|
116447
117861
|
public getNativeChangeDetectionConfig(requestParameters: SourcesV2025ApiGetNativeChangeDetectionConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
116448
|
-
return SourcesV2025ApiFp(this.configuration).getNativeChangeDetectionConfig(requestParameters.id,
|
|
117862
|
+
return SourcesV2025ApiFp(this.configuration).getNativeChangeDetectionConfig(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
116449
117863
|
}
|
|
116450
117864
|
|
|
116451
117865
|
/**
|
|
@@ -116616,6 +118030,18 @@ export class SourcesV2025Api extends BaseAPI {
|
|
|
116616
118030
|
return SourcesV2025ApiFp(this.configuration).importConnectorFile(requestParameters.sourceId, requestParameters.file, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
116617
118031
|
}
|
|
116618
118032
|
|
|
118033
|
+
/**
|
|
118034
|
+
* 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.
|
|
118035
|
+
* @summary Entitlement aggregation
|
|
118036
|
+
* @param {SourcesV2025ApiImportEntitlementsRequest} requestParameters Request parameters.
|
|
118037
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
118038
|
+
* @throws {RequiredError}
|
|
118039
|
+
* @memberof SourcesV2025Api
|
|
118040
|
+
*/
|
|
118041
|
+
public importEntitlements(requestParameters: SourcesV2025ApiImportEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
118042
|
+
return SourcesV2025ApiFp(this.configuration).importEntitlements(requestParameters.sourceId, requestParameters.xSailPointExperimental, requestParameters.file, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
118043
|
+
}
|
|
118044
|
+
|
|
116619
118045
|
/**
|
|
116620
118046
|
* 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.**
|
|
116621
118047
|
* @summary Uploads source entitlements schema template
|
|
@@ -116697,7 +118123,7 @@ export class SourcesV2025Api extends BaseAPI {
|
|
|
116697
118123
|
* @memberof SourcesV2025Api
|
|
116698
118124
|
*/
|
|
116699
118125
|
public putNativeChangeDetectionConfig(requestParameters: SourcesV2025ApiPutNativeChangeDetectionConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
116700
|
-
return SourcesV2025ApiFp(this.configuration).putNativeChangeDetectionConfig(requestParameters.id, requestParameters.
|
|
118126
|
+
return SourcesV2025ApiFp(this.configuration).putNativeChangeDetectionConfig(requestParameters.id, requestParameters.nativeChangeDetectionConfigV2025, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
116701
118127
|
}
|
|
116702
118128
|
|
|
116703
118129
|
/**
|