sailpoint-api-client 1.6.8 → 1.6.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/beta/README.md +2 -2
  2. package/beta/api.ts +87 -577
  3. package/beta/common.ts +2 -2
  4. package/beta/package.json +1 -1
  5. package/dist/beta/api.d.ts +81 -452
  6. package/dist/beta/api.js +30 -300
  7. package/dist/beta/api.js.map +1 -1
  8. package/dist/beta/common.js +1 -1
  9. package/dist/generic/api.d.ts +386 -0
  10. package/dist/generic/api.js +689 -0
  11. package/dist/generic/api.js.map +1 -0
  12. package/dist/generic/base.d.ts +66 -0
  13. package/dist/generic/base.js +89 -0
  14. package/dist/generic/base.js.map +1 -0
  15. package/dist/generic/common.d.ts +65 -0
  16. package/dist/generic/common.js +260 -0
  17. package/dist/generic/common.js.map +1 -0
  18. package/dist/generic/configuration.d.ts +91 -0
  19. package/dist/generic/configuration.js +46 -0
  20. package/dist/generic/configuration.js.map +1 -0
  21. package/dist/generic/index.d.ts +13 -0
  22. package/dist/generic/index.js +32 -0
  23. package/dist/generic/index.js.map +1 -0
  24. package/dist/index.d.ts +5 -4
  25. package/dist/index.js +1 -0
  26. package/dist/index.js.map +1 -1
  27. package/dist/paginator.d.ts +3 -1
  28. package/dist/paginator.js +146 -0
  29. package/dist/paginator.js.map +1 -1
  30. package/dist/v2024/api.d.ts +1413 -150
  31. package/dist/v2024/api.js +1509 -126
  32. package/dist/v2024/api.js.map +1 -1
  33. package/dist/v2024/common.js +1 -1
  34. package/dist/v2025/api.d.ts +3480 -244
  35. package/dist/v2025/api.js +2638 -280
  36. package/dist/v2025/api.js.map +1 -1
  37. package/dist/v2025/common.js +1 -1
  38. package/dist/v3/api.d.ts +45 -83
  39. package/dist/v3/api.js +31 -30
  40. package/dist/v3/api.js.map +1 -1
  41. package/dist/v3/common.js +1 -1
  42. package/generic/.openapi-generator/FILES +11 -0
  43. package/generic/.openapi-generator/VERSION +1 -0
  44. package/generic/.openapi-generator-ignore +23 -0
  45. package/generic/README.md +46 -0
  46. package/generic/api.ts +681 -0
  47. package/generic/base.ts +86 -0
  48. package/generic/common.ts +159 -0
  49. package/generic/configuration.ts +110 -0
  50. package/generic/git_push.sh +57 -0
  51. package/generic/index.ts +18 -0
  52. package/generic/package.json +34 -0
  53. package/generic/tsconfig.json +21 -0
  54. package/index.ts +9 -7
  55. package/package.json +1 -1
  56. package/paginator.ts +137 -11
  57. package/v2024/README.md +2 -2
  58. package/v2024/api.ts +2110 -175
  59. package/v2024/common.ts +2 -2
  60. package/v2024/package.json +1 -1
  61. package/v2025/README.md +2 -2
  62. package/v2025/api.ts +5869 -1447
  63. package/v2025/common.ts +2 -2
  64. package/v2025/package.json +1 -1
  65. package/v3/README.md +2 -2
  66. package/v3/api.ts +61 -97
  67. package/v3/common.ts +2 -2
  68. package/v3/package.json +1 -1
package/v2024/api.ts CHANGED
@@ -15134,38 +15134,6 @@ export const EntitlementOwnerV2024TypeV2024 = {
15134
15134
 
15135
15135
  export type EntitlementOwnerV2024TypeV2024 = typeof EntitlementOwnerV2024TypeV2024[keyof typeof EntitlementOwnerV2024TypeV2024];
15136
15136
 
15137
- /**
15138
- * Entitlement including a specific set of access.
15139
- * @export
15140
- * @interface EntitlementRef1V2024
15141
- */
15142
- export interface EntitlementRef1V2024 {
15143
- /**
15144
- * Entitlement\'s DTO type.
15145
- * @type {string}
15146
- * @memberof EntitlementRef1V2024
15147
- */
15148
- 'type'?: EntitlementRef1V2024TypeV2024;
15149
- /**
15150
- * Entitlement\'s ID.
15151
- * @type {string}
15152
- * @memberof EntitlementRef1V2024
15153
- */
15154
- 'id'?: string;
15155
- /**
15156
- * Entitlement\'s display name.
15157
- * @type {string}
15158
- * @memberof EntitlementRef1V2024
15159
- */
15160
- 'name'?: string;
15161
- }
15162
-
15163
- export const EntitlementRef1V2024TypeV2024 = {
15164
- Entitlement: 'ENTITLEMENT'
15165
- } as const;
15166
-
15167
- export type EntitlementRef1V2024TypeV2024 = typeof EntitlementRef1V2024TypeV2024[keyof typeof EntitlementRef1V2024TypeV2024];
15168
-
15169
15137
  /**
15170
15138
  * Entitlement including a specific set of access.
15171
15139
  * @export
@@ -17413,47 +17381,65 @@ export type FormInstanceRecipientV2024TypeV2024 = typeof FormInstanceRecipientV2
17413
17381
  */
17414
17382
  export interface FormInstanceResponseV2024 {
17415
17383
  /**
17416
- * Created is the date the form instance was assigned
17384
+ * Unique guid identifying this form instance
17417
17385
  * @type {string}
17418
17386
  * @memberof FormInstanceResponseV2024
17419
17387
  */
17420
- 'created'?: string;
17388
+ 'id'?: string;
17421
17389
  /**
17422
- *
17423
- * @type {FormInstanceCreatedByV2024}
17390
+ * Expire is the maximum amount of time that a form can be in progress. After this time is reached then the form will be moved to a CANCELED state automatically. The user will no longer be able to complete the submission. When a form instance is expires an audit log will be generated for that record
17391
+ * @type {string}
17424
17392
  * @memberof FormInstanceResponseV2024
17425
17393
  */
17426
- 'createdBy'?: FormInstanceCreatedByV2024;
17394
+ 'expire'?: string;
17427
17395
  /**
17428
- * Expire is the maximum amount of time that a form can be in progress. After this time is reached then the form will be moved to a CANCELED state automatically. The user will no longer be able to complete the submission. When a form instance is expires an audit log will be generated for that record
17396
+ * State the state of the form instance ASSIGNED FormInstanceStateAssigned IN_PROGRESS FormInstanceStateInProgress SUBMITTED FormInstanceStateSubmitted COMPLETED FormInstanceStateCompleted CANCELLED FormInstanceStateCancelled
17429
17397
  * @type {string}
17430
17398
  * @memberof FormInstanceResponseV2024
17431
17399
  */
17432
- 'expire'?: string;
17400
+ 'state'?: FormInstanceResponseV2024StateV2024;
17433
17401
  /**
17434
- * FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form
17435
- * @type {Array<FormConditionV2024>}
17402
+ * StandAloneForm is a boolean flag to indicate if this form should be available for users to complete via the standalone form UI or should this only be available to be completed by as an embedded form
17403
+ * @type {boolean}
17436
17404
  * @memberof FormInstanceResponseV2024
17437
17405
  */
17438
- 'formConditions'?: Array<FormConditionV2024>;
17406
+ 'standAloneForm'?: boolean;
17439
17407
  /**
17440
- * FormData is the data provided by the form on submit. The data is in a key -> value map
17441
- * @type {{ [key: string]: any; }}
17408
+ * StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI
17409
+ * @type {string}
17442
17410
  * @memberof FormInstanceResponseV2024
17443
17411
  */
17444
- 'formData'?: { [key: string]: any; } | null;
17412
+ 'standAloneFormUrl'?: string;
17413
+ /**
17414
+ *
17415
+ * @type {FormInstanceCreatedByV2024}
17416
+ * @memberof FormInstanceResponseV2024
17417
+ */
17418
+ 'createdBy'?: FormInstanceCreatedByV2024;
17445
17419
  /**
17446
17420
  * FormDefinitionID is the id of the form definition that created this form
17447
17421
  * @type {string}
17448
17422
  * @memberof FormInstanceResponseV2024
17449
17423
  */
17450
17424
  'formDefinitionId'?: string;
17425
+ /**
17426
+ * FormInput is an object of form input labels to value
17427
+ * @type {{ [key: string]: object; }}
17428
+ * @memberof FormInstanceResponseV2024
17429
+ */
17430
+ 'formInput'?: { [key: string]: object; } | null;
17451
17431
  /**
17452
17432
  * FormElements is the configuration of the form, this would be a repeat of the fields from the form-config
17453
17433
  * @type {Array<FormElementV2024>}
17454
17434
  * @memberof FormInstanceResponseV2024
17455
17435
  */
17456
17436
  'formElements'?: Array<FormElementV2024>;
17437
+ /**
17438
+ * FormData is the data provided by the form on submit. The data is in a key -> value map
17439
+ * @type {{ [key: string]: any; }}
17440
+ * @memberof FormInstanceResponseV2024
17441
+ */
17442
+ 'formData'?: { [key: string]: any; } | null;
17457
17443
  /**
17458
17444
  * FormErrors is an array of form validation errors from the last time the form instance was transitioned to the SUBMITTED state. If the form instance had validation errors then it would be moved to the IN PROGRESS state where the client can retrieve these errors
17459
17445
  * @type {Array<FormErrorV2024>}
@@ -17461,17 +17447,17 @@ export interface FormInstanceResponseV2024 {
17461
17447
  */
17462
17448
  'formErrors'?: Array<FormErrorV2024>;
17463
17449
  /**
17464
- * FormInput is an object of form input labels to value
17465
- * @type {{ [key: string]: object; }}
17450
+ * FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form
17451
+ * @type {Array<FormConditionV2024>}
17466
17452
  * @memberof FormInstanceResponseV2024
17467
17453
  */
17468
- 'formInput'?: { [key: string]: object; } | null;
17454
+ 'formConditions'?: Array<FormConditionV2024>;
17469
17455
  /**
17470
- * Unique guid identifying this form instance
17456
+ * Created is the date the form instance was assigned
17471
17457
  * @type {string}
17472
17458
  * @memberof FormInstanceResponseV2024
17473
17459
  */
17474
- 'id'?: string;
17460
+ 'created'?: string;
17475
17461
  /**
17476
17462
  * Modified is the last date the form instance was modified
17477
17463
  * @type {string}
@@ -17484,24 +17470,6 @@ export interface FormInstanceResponseV2024 {
17484
17470
  * @memberof FormInstanceResponseV2024
17485
17471
  */
17486
17472
  'recipients'?: Array<FormInstanceRecipientV2024>;
17487
- /**
17488
- * StandAloneForm is a boolean flag to indicate if this form should be available for users to complete via the standalone form UI or should this only be available to be completed by as an embedded form
17489
- * @type {boolean}
17490
- * @memberof FormInstanceResponseV2024
17491
- */
17492
- 'standAloneForm'?: boolean;
17493
- /**
17494
- * StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI
17495
- * @type {string}
17496
- * @memberof FormInstanceResponseV2024
17497
- */
17498
- 'standAloneFormUrl'?: string;
17499
- /**
17500
- * State the state of the form instance ASSIGNED FormInstanceStateAssigned IN_PROGRESS FormInstanceStateInProgress SUBMITTED FormInstanceStateSubmitted COMPLETED FormInstanceStateCompleted CANCELLED FormInstanceStateCancelled
17501
- * @type {string}
17502
- * @memberof FormInstanceResponseV2024
17503
- */
17504
- 'state'?: FormInstanceResponseV2024StateV2024;
17505
17473
  }
17506
17474
 
17507
17475
  export const FormInstanceResponseV2024StateV2024 = {
@@ -18200,6 +18168,25 @@ export const GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024
18200
18168
 
18201
18169
  export type GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024 = typeof GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024[keyof typeof GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024];
18202
18170
 
18171
+ /**
18172
+ *
18173
+ * @export
18174
+ * @interface GetLaunchers200ResponseV2024
18175
+ */
18176
+ export interface GetLaunchers200ResponseV2024 {
18177
+ /**
18178
+ * Pagination marker
18179
+ * @type {string}
18180
+ * @memberof GetLaunchers200ResponseV2024
18181
+ */
18182
+ 'next'?: string;
18183
+ /**
18184
+ *
18185
+ * @type {Array<LauncherV2024>}
18186
+ * @memberof GetLaunchers200ResponseV2024
18187
+ */
18188
+ 'items'?: Array<LauncherV2024>;
18189
+ }
18203
18190
  /**
18204
18191
  *
18205
18192
  * @export
@@ -20002,6 +19989,184 @@ export interface IdentityEntitiesV2024 {
20002
19989
  */
20003
19990
  'identityEntity'?: IdentityEntitiesIdentityEntityV2024;
20004
19991
  }
19992
+ /**
19993
+ *
19994
+ * @export
19995
+ * @interface IdentityEntitlementDetailsAccountTargetV2024
19996
+ */
19997
+ export interface IdentityEntitlementDetailsAccountTargetV2024 {
19998
+ /**
19999
+ * The id of account
20000
+ * @type {string}
20001
+ * @memberof IdentityEntitlementDetailsAccountTargetV2024
20002
+ */
20003
+ 'accountId'?: string;
20004
+ /**
20005
+ * The name of account
20006
+ * @type {string}
20007
+ * @memberof IdentityEntitlementDetailsAccountTargetV2024
20008
+ */
20009
+ 'accountName'?: string;
20010
+ /**
20011
+ * The UUID representation of the account if available
20012
+ * @type {string}
20013
+ * @memberof IdentityEntitlementDetailsAccountTargetV2024
20014
+ */
20015
+ 'accountUUID'?: string | null;
20016
+ /**
20017
+ * The id of Source
20018
+ * @type {string}
20019
+ * @memberof IdentityEntitlementDetailsAccountTargetV2024
20020
+ */
20021
+ 'sourceId'?: string;
20022
+ /**
20023
+ * The name of Source
20024
+ * @type {string}
20025
+ * @memberof IdentityEntitlementDetailsAccountTargetV2024
20026
+ */
20027
+ 'sourceName'?: string;
20028
+ /**
20029
+ * The removal date scheduled for the entitlement on the Identity
20030
+ * @type {string}
20031
+ * @memberof IdentityEntitlementDetailsAccountTargetV2024
20032
+ */
20033
+ 'removeDate'?: string | null;
20034
+ /**
20035
+ * The assignmentId of the entitlement on the Identity
20036
+ * @type {string}
20037
+ * @memberof IdentityEntitlementDetailsAccountTargetV2024
20038
+ */
20039
+ 'assignmentId'?: string | null;
20040
+ /**
20041
+ * If the entitlement can be revoked
20042
+ * @type {boolean}
20043
+ * @memberof IdentityEntitlementDetailsAccountTargetV2024
20044
+ */
20045
+ 'revocable'?: boolean;
20046
+ }
20047
+ /**
20048
+ *
20049
+ * @export
20050
+ * @interface IdentityEntitlementDetailsEntitlementDtoV2024
20051
+ */
20052
+ export interface IdentityEntitlementDetailsEntitlementDtoV2024 {
20053
+ /**
20054
+ * The entitlement id
20055
+ * @type {string}
20056
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
20057
+ */
20058
+ 'id'?: string;
20059
+ /**
20060
+ * The entitlement name
20061
+ * @type {string}
20062
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
20063
+ */
20064
+ 'name'?: string;
20065
+ /**
20066
+ * Time when the entitlement was last modified
20067
+ * @type {string}
20068
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
20069
+ */
20070
+ 'created'?: string;
20071
+ /**
20072
+ * Time when the entitlement was last modified
20073
+ * @type {string}
20074
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
20075
+ */
20076
+ 'modified'?: string;
20077
+ /**
20078
+ * The description of the entitlement
20079
+ * @type {string}
20080
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
20081
+ */
20082
+ 'description'?: string | null;
20083
+ /**
20084
+ * The type of the object, will always be \"ENTITLEMENT\"
20085
+ * @type {string}
20086
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
20087
+ */
20088
+ 'type'?: string;
20089
+ /**
20090
+ * The source ID
20091
+ * @type {string}
20092
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
20093
+ */
20094
+ 'sourceId'?: string;
20095
+ /**
20096
+ * The source name
20097
+ * @type {string}
20098
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
20099
+ */
20100
+ 'sourceName'?: string;
20101
+ /**
20102
+ *
20103
+ * @type {OwnerDtoV2024}
20104
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
20105
+ */
20106
+ 'owner'?: OwnerDtoV2024;
20107
+ /**
20108
+ * The value of the entitlement
20109
+ * @type {string}
20110
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
20111
+ */
20112
+ 'value'?: string;
20113
+ /**
20114
+ * a list of properties informing the viewer about the entitlement
20115
+ * @type {Array<string>}
20116
+ * @memberof IdentityEntitlementDetailsEntitlementDtoV2024
20117
+ */
20118
+ 'flags'?: Array<string>;
20119
+ }
20120
+ /**
20121
+ *
20122
+ * @export
20123
+ * @interface IdentityEntitlementDetailsV2024
20124
+ */
20125
+ export interface IdentityEntitlementDetailsV2024 {
20126
+ /**
20127
+ * Id of Identity
20128
+ * @type {string}
20129
+ * @memberof IdentityEntitlementDetailsV2024
20130
+ */
20131
+ 'identityId'?: string;
20132
+ /**
20133
+ *
20134
+ * @type {IdentityEntitlementDetailsEntitlementDtoV2024}
20135
+ * @memberof IdentityEntitlementDetailsV2024
20136
+ */
20137
+ 'entitlement'?: IdentityEntitlementDetailsEntitlementDtoV2024;
20138
+ /**
20139
+ * Id of Source
20140
+ * @type {string}
20141
+ * @memberof IdentityEntitlementDetailsV2024
20142
+ */
20143
+ 'sourceId'?: string;
20144
+ /**
20145
+ * A list of account targets on the identity provisioned with the requested entitlement.
20146
+ * @type {Array<IdentityEntitlementDetailsAccountTargetV2024>}
20147
+ * @memberof IdentityEntitlementDetailsV2024
20148
+ */
20149
+ 'accountTargets'?: Array<IdentityEntitlementDetailsAccountTargetV2024>;
20150
+ }
20151
+ /**
20152
+ *
20153
+ * @export
20154
+ * @interface IdentityEntitlementsV2024
20155
+ */
20156
+ export interface IdentityEntitlementsV2024 {
20157
+ /**
20158
+ *
20159
+ * @type {TaggedObjectDtoV2024}
20160
+ * @memberof IdentityEntitlementsV2024
20161
+ */
20162
+ 'objectRef'?: TaggedObjectDtoV2024;
20163
+ /**
20164
+ * Labels to be applied to object.
20165
+ * @type {Array<string>}
20166
+ * @memberof IdentityEntitlementsV2024
20167
+ */
20168
+ 'tags'?: Array<string>;
20169
+ }
20005
20170
  /**
20006
20171
  *
20007
20172
  * @export
@@ -20790,31 +20955,6 @@ export const IdentityV2024IdentityStatusV2024 = {
20790
20955
 
20791
20956
  export type IdentityV2024IdentityStatusV2024 = typeof IdentityV2024IdentityStatusV2024[keyof typeof IdentityV2024IdentityStatusV2024];
20792
20957
 
20793
- /**
20794
- * An identity with a set of access to be added
20795
- * @export
20796
- * @interface IdentityWithNewAccess1V2024
20797
- */
20798
- export interface IdentityWithNewAccess1V2024 {
20799
- /**
20800
- * Set of identity IDs to be checked.
20801
- * @type {string}
20802
- * @memberof IdentityWithNewAccess1V2024
20803
- */
20804
- 'identityId': string;
20805
- /**
20806
- * The bundle of access profiles to be added to the identities specified. All references must be ENTITLEMENT type.
20807
- * @type {Array<EntitlementRef1V2024>}
20808
- * @memberof IdentityWithNewAccess1V2024
20809
- */
20810
- 'accessRefs': Array<EntitlementRef1V2024>;
20811
- /**
20812
- * Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on completion of the violation check.
20813
- * @type {{ [key: string]: string; }}
20814
- * @memberof IdentityWithNewAccess1V2024
20815
- */
20816
- 'clientMetadata'?: { [key: string]: string; };
20817
- }
20818
20958
  /**
20819
20959
  * Entitlement including a specific set of access.
20820
20960
  * @export
@@ -20833,12 +20973,6 @@ export interface IdentityWithNewAccessAccessRefsInnerV2024 {
20833
20973
  * @memberof IdentityWithNewAccessAccessRefsInnerV2024
20834
20974
  */
20835
20975
  'id'?: string;
20836
- /**
20837
- * Entitlement\'s display name.
20838
- * @type {string}
20839
- * @memberof IdentityWithNewAccessAccessRefsInnerV2024
20840
- */
20841
- 'name'?: string;
20842
20976
  }
20843
20977
 
20844
20978
  export const IdentityWithNewAccessAccessRefsInnerV2024TypeV2024 = {
@@ -21618,6 +21752,201 @@ export const LatestOutlierSummaryV2024TypeV2024 = {
21618
21752
 
21619
21753
  export type LatestOutlierSummaryV2024TypeV2024 = typeof LatestOutlierSummaryV2024TypeV2024[keyof typeof LatestOutlierSummaryV2024TypeV2024];
21620
21754
 
21755
+ /**
21756
+ * Owner of the Launcher
21757
+ * @export
21758
+ * @interface LauncherOwnerV2024
21759
+ */
21760
+ export interface LauncherOwnerV2024 {
21761
+ /**
21762
+ * Owner type
21763
+ * @type {string}
21764
+ * @memberof LauncherOwnerV2024
21765
+ */
21766
+ 'type': string;
21767
+ /**
21768
+ * Owner ID
21769
+ * @type {string}
21770
+ * @memberof LauncherOwnerV2024
21771
+ */
21772
+ 'id': string;
21773
+ }
21774
+ /**
21775
+ *
21776
+ * @export
21777
+ * @interface LauncherReferenceV2024
21778
+ */
21779
+ export interface LauncherReferenceV2024 {
21780
+ /**
21781
+ * Type of Launcher reference
21782
+ * @type {string}
21783
+ * @memberof LauncherReferenceV2024
21784
+ */
21785
+ 'type'?: LauncherReferenceV2024TypeV2024;
21786
+ /**
21787
+ * ID of Launcher reference
21788
+ * @type {string}
21789
+ * @memberof LauncherReferenceV2024
21790
+ */
21791
+ 'id'?: string;
21792
+ }
21793
+
21794
+ export const LauncherReferenceV2024TypeV2024 = {
21795
+ Workflow: 'WORKFLOW'
21796
+ } as const;
21797
+
21798
+ export type LauncherReferenceV2024TypeV2024 = typeof LauncherReferenceV2024TypeV2024[keyof typeof LauncherReferenceV2024TypeV2024];
21799
+
21800
+ /**
21801
+ *
21802
+ * @export
21803
+ * @interface LauncherRequestReferenceV2024
21804
+ */
21805
+ export interface LauncherRequestReferenceV2024 {
21806
+ /**
21807
+ * Type of Launcher reference
21808
+ * @type {string}
21809
+ * @memberof LauncherRequestReferenceV2024
21810
+ */
21811
+ 'type': LauncherRequestReferenceV2024TypeV2024;
21812
+ /**
21813
+ * ID of Launcher reference
21814
+ * @type {string}
21815
+ * @memberof LauncherRequestReferenceV2024
21816
+ */
21817
+ 'id': string;
21818
+ }
21819
+
21820
+ export const LauncherRequestReferenceV2024TypeV2024 = {
21821
+ Workflow: 'WORKFLOW'
21822
+ } as const;
21823
+
21824
+ export type LauncherRequestReferenceV2024TypeV2024 = typeof LauncherRequestReferenceV2024TypeV2024[keyof typeof LauncherRequestReferenceV2024TypeV2024];
21825
+
21826
+ /**
21827
+ *
21828
+ * @export
21829
+ * @interface LauncherRequestV2024
21830
+ */
21831
+ export interface LauncherRequestV2024 {
21832
+ /**
21833
+ * Name of the Launcher, limited to 255 characters
21834
+ * @type {string}
21835
+ * @memberof LauncherRequestV2024
21836
+ */
21837
+ 'name': string;
21838
+ /**
21839
+ * Description of the Launcher, limited to 2000 characters
21840
+ * @type {string}
21841
+ * @memberof LauncherRequestV2024
21842
+ */
21843
+ 'description': string;
21844
+ /**
21845
+ * Launcher type
21846
+ * @type {string}
21847
+ * @memberof LauncherRequestV2024
21848
+ */
21849
+ 'type': LauncherRequestV2024TypeV2024;
21850
+ /**
21851
+ * State of the Launcher
21852
+ * @type {boolean}
21853
+ * @memberof LauncherRequestV2024
21854
+ */
21855
+ 'disabled': boolean;
21856
+ /**
21857
+ *
21858
+ * @type {LauncherRequestReferenceV2024}
21859
+ * @memberof LauncherRequestV2024
21860
+ */
21861
+ 'reference'?: LauncherRequestReferenceV2024;
21862
+ /**
21863
+ * JSON configuration associated with this Launcher, restricted to a max size of 4KB
21864
+ * @type {string}
21865
+ * @memberof LauncherRequestV2024
21866
+ */
21867
+ 'config': string;
21868
+ }
21869
+
21870
+ export const LauncherRequestV2024TypeV2024 = {
21871
+ InteractiveProcess: 'INTERACTIVE_PROCESS'
21872
+ } as const;
21873
+
21874
+ export type LauncherRequestV2024TypeV2024 = typeof LauncherRequestV2024TypeV2024[keyof typeof LauncherRequestV2024TypeV2024];
21875
+
21876
+ /**
21877
+ *
21878
+ * @export
21879
+ * @interface LauncherV2024
21880
+ */
21881
+ export interface LauncherV2024 {
21882
+ /**
21883
+ * ID of the Launcher
21884
+ * @type {string}
21885
+ * @memberof LauncherV2024
21886
+ */
21887
+ 'id': string;
21888
+ /**
21889
+ * Date the Launcher was created
21890
+ * @type {string}
21891
+ * @memberof LauncherV2024
21892
+ */
21893
+ 'created': string;
21894
+ /**
21895
+ * Date the Launcher was last modified
21896
+ * @type {string}
21897
+ * @memberof LauncherV2024
21898
+ */
21899
+ 'modified': string;
21900
+ /**
21901
+ *
21902
+ * @type {LauncherOwnerV2024}
21903
+ * @memberof LauncherV2024
21904
+ */
21905
+ 'owner': LauncherOwnerV2024;
21906
+ /**
21907
+ * Name of the Launcher, limited to 255 characters
21908
+ * @type {string}
21909
+ * @memberof LauncherV2024
21910
+ */
21911
+ 'name': string;
21912
+ /**
21913
+ * Description of the Launcher, limited to 2000 characters
21914
+ * @type {string}
21915
+ * @memberof LauncherV2024
21916
+ */
21917
+ 'description': string;
21918
+ /**
21919
+ * Launcher type
21920
+ * @type {string}
21921
+ * @memberof LauncherV2024
21922
+ */
21923
+ 'type': LauncherV2024TypeV2024;
21924
+ /**
21925
+ * State of the Launcher
21926
+ * @type {boolean}
21927
+ * @memberof LauncherV2024
21928
+ */
21929
+ 'disabled': boolean;
21930
+ /**
21931
+ *
21932
+ * @type {LauncherReferenceV2024}
21933
+ * @memberof LauncherV2024
21934
+ */
21935
+ 'reference'?: LauncherReferenceV2024;
21936
+ /**
21937
+ * JSON configuration associated with this Launcher, restricted to a max size of 4KB
21938
+ * @type {string}
21939
+ * @memberof LauncherV2024
21940
+ */
21941
+ 'config': string;
21942
+ }
21943
+
21944
+ export const LauncherV2024TypeV2024 = {
21945
+ InteractiveProcess: 'INTERACTIVE_PROCESS'
21946
+ } as const;
21947
+
21948
+ export type LauncherV2024TypeV2024 = typeof LauncherV2024TypeV2024[keyof typeof LauncherV2024TypeV2024];
21949
+
21621
21950
  /**
21622
21951
  *
21623
21952
  * @export
@@ -21975,24 +22304,113 @@ export interface ListFormElementDataByElementIDResponseV2024 {
21975
22304
  'results'?: Array<FormElementDataSourceConfigOptionsV2024>;
21976
22305
  }
21977
22306
  /**
21978
- *
22307
+ * List of FormInstanceResponse items
21979
22308
  * @export
21980
22309
  * @interface ListFormInstancesByTenantResponseV2024
21981
22310
  */
21982
22311
  export interface ListFormInstancesByTenantResponseV2024 {
21983
22312
  /**
21984
- * Count number of Results
21985
- * @type {number}
22313
+ * Unique guid identifying this form instance
22314
+ * @type {string}
21986
22315
  * @memberof ListFormInstancesByTenantResponseV2024
21987
22316
  */
21988
- 'count'?: number;
22317
+ 'id'?: string;
21989
22318
  /**
21990
- * Results holds a list of FormInstanceResponse items
21991
- * @type {Array<FormInstanceResponseV2024>}
22319
+ * Expire is the maximum amount of time that a form can be in progress. After this time is reached then the form will be moved to a CANCELED state automatically. The user will no longer be able to complete the submission. When a form instance is expires an audit log will be generated for that record
22320
+ * @type {string}
21992
22321
  * @memberof ListFormInstancesByTenantResponseV2024
21993
22322
  */
21994
- 'results'?: Array<FormInstanceResponseV2024>;
22323
+ 'expire'?: string;
22324
+ /**
22325
+ * State the state of the form instance ASSIGNED FormInstanceStateAssigned IN_PROGRESS FormInstanceStateInProgress SUBMITTED FormInstanceStateSubmitted COMPLETED FormInstanceStateCompleted CANCELLED FormInstanceStateCancelled
22326
+ * @type {string}
22327
+ * @memberof ListFormInstancesByTenantResponseV2024
22328
+ */
22329
+ 'state'?: ListFormInstancesByTenantResponseV2024StateV2024;
22330
+ /**
22331
+ * StandAloneForm is a boolean flag to indicate if this form should be available for users to complete via the standalone form UI or should this only be available to be completed by as an embedded form
22332
+ * @type {boolean}
22333
+ * @memberof ListFormInstancesByTenantResponseV2024
22334
+ */
22335
+ 'standAloneForm'?: boolean;
22336
+ /**
22337
+ * StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI
22338
+ * @type {string}
22339
+ * @memberof ListFormInstancesByTenantResponseV2024
22340
+ */
22341
+ 'standAloneFormUrl'?: string;
22342
+ /**
22343
+ *
22344
+ * @type {FormInstanceCreatedByV2024}
22345
+ * @memberof ListFormInstancesByTenantResponseV2024
22346
+ */
22347
+ 'createdBy'?: FormInstanceCreatedByV2024;
22348
+ /**
22349
+ * FormDefinitionID is the id of the form definition that created this form
22350
+ * @type {string}
22351
+ * @memberof ListFormInstancesByTenantResponseV2024
22352
+ */
22353
+ 'formDefinitionId'?: string;
22354
+ /**
22355
+ * FormInput is an object of form input labels to value
22356
+ * @type {{ [key: string]: object; }}
22357
+ * @memberof ListFormInstancesByTenantResponseV2024
22358
+ */
22359
+ 'formInput'?: { [key: string]: object; } | null;
22360
+ /**
22361
+ * FormElements is the configuration of the form, this would be a repeat of the fields from the form-config
22362
+ * @type {Array<FormElementV2024>}
22363
+ * @memberof ListFormInstancesByTenantResponseV2024
22364
+ */
22365
+ 'formElements'?: Array<FormElementV2024>;
22366
+ /**
22367
+ * FormData is the data provided by the form on submit. The data is in a key -> value map
22368
+ * @type {{ [key: string]: any; }}
22369
+ * @memberof ListFormInstancesByTenantResponseV2024
22370
+ */
22371
+ 'formData'?: { [key: string]: any; } | null;
22372
+ /**
22373
+ * FormErrors is an array of form validation errors from the last time the form instance was transitioned to the SUBMITTED state. If the form instance had validation errors then it would be moved to the IN PROGRESS state where the client can retrieve these errors
22374
+ * @type {Array<FormErrorV2024>}
22375
+ * @memberof ListFormInstancesByTenantResponseV2024
22376
+ */
22377
+ 'formErrors'?: Array<FormErrorV2024>;
22378
+ /**
22379
+ * FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form
22380
+ * @type {Array<FormConditionV2024>}
22381
+ * @memberof ListFormInstancesByTenantResponseV2024
22382
+ */
22383
+ 'formConditions'?: Array<FormConditionV2024>;
22384
+ /**
22385
+ * Created is the date the form instance was assigned
22386
+ * @type {string}
22387
+ * @memberof ListFormInstancesByTenantResponseV2024
22388
+ */
22389
+ 'created'?: string;
22390
+ /**
22391
+ * Modified is the last date the form instance was modified
22392
+ * @type {string}
22393
+ * @memberof ListFormInstancesByTenantResponseV2024
22394
+ */
22395
+ 'modified'?: string;
22396
+ /**
22397
+ * Recipients references to the recipient of a form. The recipients are those who are responsible for filling out a form and completing it
22398
+ * @type {Array<FormInstanceRecipientV2024>}
22399
+ * @memberof ListFormInstancesByTenantResponseV2024
22400
+ */
22401
+ 'recipients'?: Array<FormInstanceRecipientV2024>;
21995
22402
  }
22403
+
22404
+ export const ListFormInstancesByTenantResponseV2024StateV2024 = {
22405
+ Assigned: 'ASSIGNED',
22406
+ InProgress: 'IN_PROGRESS',
22407
+ Submitted: 'SUBMITTED',
22408
+ Completed: 'COMPLETED',
22409
+ Cancelled: 'CANCELLED'
22410
+ } as const;
22411
+
22412
+ export type ListFormInstancesByTenantResponseV2024StateV2024 = typeof ListFormInstancesByTenantResponseV2024StateV2024[keyof typeof ListFormInstancesByTenantResponseV2024StateV2024];
22413
+
21996
22414
  /**
21997
22415
  *
21998
22416
  * @export
@@ -23504,6 +23922,27 @@ export interface ManagedClusterAttributesV2024 {
23504
23922
  */
23505
23923
  'keystore'?: string | null;
23506
23924
  }
23925
+ /**
23926
+ * Defines the encryption settings for a managed cluster, including the format used for storing and processing encrypted data.
23927
+ * @export
23928
+ * @interface ManagedClusterEncryptionConfigV2024
23929
+ */
23930
+ export interface ManagedClusterEncryptionConfigV2024 {
23931
+ /**
23932
+ * Specifies the format used for encrypted data, such as secrets. The format determines how the encrypted data is structured and processed.
23933
+ * @type {string}
23934
+ * @memberof ManagedClusterEncryptionConfigV2024
23935
+ */
23936
+ 'format'?: ManagedClusterEncryptionConfigV2024FormatV2024;
23937
+ }
23938
+
23939
+ export const ManagedClusterEncryptionConfigV2024FormatV2024 = {
23940
+ V2: 'V2',
23941
+ V3: 'V3'
23942
+ } as const;
23943
+
23944
+ export type ManagedClusterEncryptionConfigV2024FormatV2024 = typeof ManagedClusterEncryptionConfigV2024FormatV2024[keyof typeof ManagedClusterEncryptionConfigV2024FormatV2024];
23945
+
23507
23946
  /**
23508
23947
  * Managed Cluster key pair for Cluster
23509
23948
  * @export
@@ -23763,7 +24202,7 @@ export interface ManagedClusterV2024 {
23763
24202
  */
23764
24203
  'ccgVersion': string;
23765
24204
  /**
23766
- * boolean flag indiacting whether or not the cluster configuration is pinned
24205
+ * boolean flag indicating whether or not the cluster configuration is pinned
23767
24206
  * @type {boolean}
23768
24207
  * @memberof ManagedClusterV2024
23769
24208
  */
@@ -23804,6 +24243,12 @@ export interface ManagedClusterV2024 {
23804
24243
  * @memberof ManagedClusterV2024
23805
24244
  */
23806
24245
  'publicKey'?: string | null;
24246
+ /**
24247
+ *
24248
+ * @type {ManagedClusterEncryptionConfigV2024}
24249
+ * @memberof ManagedClusterV2024
24250
+ */
24251
+ 'encryptionConfiguration'?: ManagedClusterEncryptionConfigV2024;
23807
24252
  /**
23808
24253
  * Key describing any immediate cluster alerts
23809
24254
  * @type {string}
@@ -24625,10 +25070,10 @@ export interface MultiHostIntegrationsCreateV2024 {
24625
25070
  'description': string;
24626
25071
  /**
24627
25072
  *
24628
- * @type {SourceOwnerV2024}
25073
+ * @type {MultiHostIntegrationsOwnerV2024}
24629
25074
  * @memberof MultiHostIntegrationsCreateV2024
24630
25075
  */
24631
- 'owner': SourceOwnerV2024;
25076
+ 'owner': MultiHostIntegrationsOwnerV2024;
24632
25077
  /**
24633
25078
  *
24634
25079
  * @type {SourceClusterV2024}
@@ -24666,6 +25111,38 @@ export interface MultiHostIntegrationsCreateV2024 {
24666
25111
  */
24667
25112
  'modified'?: string;
24668
25113
  }
25114
+ /**
25115
+ * Reference to identity object who owns the source.
25116
+ * @export
25117
+ * @interface MultiHostIntegrationsOwnerV2024
25118
+ */
25119
+ export interface MultiHostIntegrationsOwnerV2024 {
25120
+ /**
25121
+ * Type of object being referenced.
25122
+ * @type {string}
25123
+ * @memberof MultiHostIntegrationsOwnerV2024
25124
+ */
25125
+ 'type'?: MultiHostIntegrationsOwnerV2024TypeV2024;
25126
+ /**
25127
+ * Owner identity\'s ID.
25128
+ * @type {string}
25129
+ * @memberof MultiHostIntegrationsOwnerV2024
25130
+ */
25131
+ 'id'?: string;
25132
+ /**
25133
+ * Owner identity\'s human-readable display name.
25134
+ * @type {string}
25135
+ * @memberof MultiHostIntegrationsOwnerV2024
25136
+ */
25137
+ 'name'?: string;
25138
+ }
25139
+
25140
+ export const MultiHostIntegrationsOwnerV2024TypeV2024 = {
25141
+ Identity: 'IDENTITY'
25142
+ } as const;
25143
+
25144
+ export type MultiHostIntegrationsOwnerV2024TypeV2024 = typeof MultiHostIntegrationsOwnerV2024TypeV2024[keyof typeof MultiHostIntegrationsOwnerV2024TypeV2024];
25145
+
24669
25146
  /**
24670
25147
  *
24671
25148
  * @export
@@ -24692,10 +25169,10 @@ export interface MultiHostIntegrationsV2024 {
24692
25169
  'description': string;
24693
25170
  /**
24694
25171
  *
24695
- * @type {SourceOwnerV2024}
25172
+ * @type {MultiHostIntegrationsOwnerV2024}
24696
25173
  * @memberof MultiHostIntegrationsV2024
24697
25174
  */
24698
- 'owner': SourceOwnerV2024;
25175
+ 'owner': MultiHostIntegrationsOwnerV2024;
24699
25176
  /**
24700
25177
  *
24701
25178
  * @type {SourceClusterV2024}
@@ -24950,10 +25427,10 @@ export interface MultiHostSourcesV2024 {
24950
25427
  'description'?: string;
24951
25428
  /**
24952
25429
  *
24953
- * @type {SourceOwnerV2024}
25430
+ * @type {MultiHostIntegrationsOwnerV2024}
24954
25431
  * @memberof MultiHostSourcesV2024
24955
25432
  */
24956
- 'owner': SourceOwnerV2024;
25433
+ 'owner': MultiHostIntegrationsOwnerV2024;
24957
25434
  /**
24958
25435
  *
24959
25436
  * @type {SourceClusterV2024}
@@ -39763,7 +40240,7 @@ export interface SourceV2024 {
39763
40240
  * @type {SourceOwnerV2024}
39764
40241
  * @memberof SourceV2024
39765
40242
  */
39766
- 'owner': SourceOwnerV2024;
40243
+ 'owner': SourceOwnerV2024 | null;
39767
40244
  /**
39768
40245
  *
39769
40246
  * @type {SourceClusterV2024}
@@ -40609,6 +41086,19 @@ export interface StartInvocationInputV2024 {
40609
41086
  */
40610
41087
  'contentJson'?: object;
40611
41088
  }
41089
+ /**
41090
+ *
41091
+ * @export
41092
+ * @interface StartLauncher200ResponseV2024
41093
+ */
41094
+ export interface StartLauncher200ResponseV2024 {
41095
+ /**
41096
+ * ID of the Interactive Process that was launched
41097
+ * @type {string}
41098
+ * @memberof StartLauncher200ResponseV2024
41099
+ */
41100
+ 'interactiveProcessId': string;
41101
+ }
40612
41102
  /**
40613
41103
  *
40614
41104
  * @export
@@ -41015,6 +41505,82 @@ export interface SubstringV2024 {
41015
41505
  */
41016
41506
  'input'?: { [key: string]: any; };
41017
41507
  }
41508
+ /**
41509
+ * Tagged object\'s category.
41510
+ * @export
41511
+ * @interface TagTagCategoryRefsInnerV2024
41512
+ */
41513
+ export interface TagTagCategoryRefsInnerV2024 {
41514
+ /**
41515
+ * DTO type of the tagged object\'s category.
41516
+ * @type {string}
41517
+ * @memberof TagTagCategoryRefsInnerV2024
41518
+ */
41519
+ 'type'?: TagTagCategoryRefsInnerV2024TypeV2024;
41520
+ /**
41521
+ * Tagged object\'s ID.
41522
+ * @type {string}
41523
+ * @memberof TagTagCategoryRefsInnerV2024
41524
+ */
41525
+ 'id'?: string;
41526
+ /**
41527
+ * Tagged object\'s display name.
41528
+ * @type {string}
41529
+ * @memberof TagTagCategoryRefsInnerV2024
41530
+ */
41531
+ 'name'?: string;
41532
+ }
41533
+
41534
+ export const TagTagCategoryRefsInnerV2024TypeV2024 = {
41535
+ AccessProfile: 'ACCESS_PROFILE',
41536
+ Application: 'APPLICATION',
41537
+ Campaign: 'CAMPAIGN',
41538
+ Entitlement: 'ENTITLEMENT',
41539
+ Identity: 'IDENTITY',
41540
+ Role: 'ROLE',
41541
+ SodPolicy: 'SOD_POLICY',
41542
+ Source: 'SOURCE'
41543
+ } as const;
41544
+
41545
+ export type TagTagCategoryRefsInnerV2024TypeV2024 = typeof TagTagCategoryRefsInnerV2024TypeV2024[keyof typeof TagTagCategoryRefsInnerV2024TypeV2024];
41546
+
41547
+ /**
41548
+ *
41549
+ * @export
41550
+ * @interface TagV2024
41551
+ */
41552
+ export interface TagV2024 {
41553
+ /**
41554
+ * Tag id
41555
+ * @type {string}
41556
+ * @memberof TagV2024
41557
+ */
41558
+ 'id': string;
41559
+ /**
41560
+ * Name of the tag.
41561
+ * @type {string}
41562
+ * @memberof TagV2024
41563
+ */
41564
+ 'name': string;
41565
+ /**
41566
+ * Date the tag was created.
41567
+ * @type {string}
41568
+ * @memberof TagV2024
41569
+ */
41570
+ 'created': string;
41571
+ /**
41572
+ * Date the tag was last modified.
41573
+ * @type {string}
41574
+ * @memberof TagV2024
41575
+ */
41576
+ 'modified': string;
41577
+ /**
41578
+ *
41579
+ * @type {Array<TagTagCategoryRefsInnerV2024>}
41580
+ * @memberof TagV2024
41581
+ */
41582
+ 'tagCategoryRefs': Array<TagTagCategoryRefsInnerV2024>;
41583
+ }
41018
41584
  /**
41019
41585
  *
41020
41586
  * @export
@@ -47894,6 +48460,60 @@ export const AccessRequestsV2024ApiAxiosParamCreator = function (configuration?:
47894
48460
 
47895
48461
 
47896
48462
 
48463
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
48464
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
48465
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
48466
+
48467
+ return {
48468
+ url: toPathString(localVarUrlObj),
48469
+ axiosOptions: localVarRequestOptions,
48470
+ };
48471
+ },
48472
+ /**
48473
+ * Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
48474
+ * @summary Identity entitlement details
48475
+ * @param {string} identityId The identity ID.
48476
+ * @param {string} entitlementId The entitlement ID
48477
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
48478
+ * @param {*} [axiosOptions] Override http request option.
48479
+ * @throws {RequiredError}
48480
+ */
48481
+ getEntitlementDetailsForIdentity: async (identityId: string, entitlementId: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
48482
+ // verify required parameter 'identityId' is not null or undefined
48483
+ assertParamExists('getEntitlementDetailsForIdentity', 'identityId', identityId)
48484
+ // verify required parameter 'entitlementId' is not null or undefined
48485
+ assertParamExists('getEntitlementDetailsForIdentity', 'entitlementId', entitlementId)
48486
+ if (xSailPointExperimental === undefined) {
48487
+ xSailPointExperimental = 'true';
48488
+ }
48489
+
48490
+ const localVarPath = `/revocable-objects`
48491
+ .replace(`{${"identityId"}}`, encodeURIComponent(String(identityId)))
48492
+ .replace(`{${"entitlementId"}}`, encodeURIComponent(String(entitlementId)));
48493
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
48494
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
48495
+ let baseOptions;
48496
+ if (configuration) {
48497
+ baseOptions = configuration.baseOptions;
48498
+ }
48499
+
48500
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
48501
+ const localVarHeaderParameter = {} as any;
48502
+ const localVarQueryParameter = {} as any;
48503
+
48504
+ // authentication userAuth required
48505
+ // oauth required
48506
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
48507
+
48508
+ // authentication userAuth required
48509
+ // oauth required
48510
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
48511
+
48512
+
48513
+
48514
+ if (xSailPointExperimental != null) {
48515
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
48516
+ }
47897
48517
  setSearchParams(localVarUrlObj, localVarQueryParameter);
47898
48518
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
47899
48519
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
@@ -47994,6 +48614,7 @@ export const AccessRequestsV2024ApiAxiosParamCreator = function (configuration?:
47994
48614
  /**
47995
48615
  * Use this API to get access request statuses of all the access requests in the org based on the specified query parameters. Any user with user level ORG_ADMIN or scope idn:access-request-administration:read can access this endpoint to get the access request statuses
47996
48616
  * @summary Access request status for administrators
48617
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
47997
48618
  * @param {string} [requestedFor] Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
47998
48619
  * @param {string} [requestedBy] Filter the results by the identity who made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
47999
48620
  * @param {string} [regardingIdentity] Filter the results by the specified identity who is either the requester or target of the requests. *me* indicates the current user. Mutually exclusive with *requested-for* and *requested-by*.
@@ -48007,7 +48628,13 @@ export const AccessRequestsV2024ApiAxiosParamCreator = function (configuration?:
48007
48628
  * @param {*} [axiosOptions] Override http request option.
48008
48629
  * @throws {RequiredError}
48009
48630
  */
48010
- listAdministratorsAccessRequestStatus: async (requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
48631
+ listAdministratorsAccessRequestStatus: async (xSailPointExperimental: string, requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
48632
+ if (xSailPointExperimental === undefined) {
48633
+ xSailPointExperimental = 'true';
48634
+ }
48635
+
48636
+ // verify required parameter 'xSailPointExperimental' is not null or undefined
48637
+ assertParamExists('listAdministratorsAccessRequestStatus', 'xSailPointExperimental', xSailPointExperimental)
48011
48638
  const localVarPath = `/access-request-administration`;
48012
48639
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
48013
48640
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -48070,6 +48697,9 @@ export const AccessRequestsV2024ApiAxiosParamCreator = function (configuration?:
48070
48697
 
48071
48698
 
48072
48699
 
48700
+ if (xSailPointExperimental != null) {
48701
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
48702
+ }
48073
48703
  setSearchParams(localVarUrlObj, localVarQueryParameter);
48074
48704
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
48075
48705
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
@@ -48083,12 +48713,17 @@ export const AccessRequestsV2024ApiAxiosParamCreator = function (configuration?:
48083
48713
  * Use this API to fetch account information for an identity against the items in an access request. Used to fetch accountSelection for the AccessRequest prior to submitting for async processing.
48084
48714
  * @summary Get accounts selections for identity
48085
48715
  * @param {AccountsSelectionRequestV2024} accountsSelectionRequestV2024
48716
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
48086
48717
  * @param {*} [axiosOptions] Override http request option.
48087
48718
  * @throws {RequiredError}
48088
48719
  */
48089
- loadAccountSelections: async (accountsSelectionRequestV2024: AccountsSelectionRequestV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
48720
+ loadAccountSelections: async (accountsSelectionRequestV2024: AccountsSelectionRequestV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
48090
48721
  // verify required parameter 'accountsSelectionRequestV2024' is not null or undefined
48091
48722
  assertParamExists('loadAccountSelections', 'accountsSelectionRequestV2024', accountsSelectionRequestV2024)
48723
+ if (xSailPointExperimental === undefined) {
48724
+ xSailPointExperimental = 'true';
48725
+ }
48726
+
48092
48727
  const localVarPath = `/access-requests/accounts-selection`;
48093
48728
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
48094
48729
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -48113,6 +48748,9 @@ export const AccessRequestsV2024ApiAxiosParamCreator = function (configuration?:
48113
48748
 
48114
48749
  localVarHeaderParameter['Content-Type'] = 'application/json';
48115
48750
 
48751
+ if (xSailPointExperimental != null) {
48752
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
48753
+ }
48116
48754
  setSearchParams(localVarUrlObj, localVarQueryParameter);
48117
48755
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
48118
48756
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
@@ -48254,6 +48892,21 @@ export const AccessRequestsV2024ApiFp = function(configuration?: Configuration)
48254
48892
  const localVarOperationServerBasePath = operationServerMap['AccessRequestsV2024Api.getAccessRequestConfig']?.[localVarOperationServerIndex]?.url;
48255
48893
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
48256
48894
  },
48895
+ /**
48896
+ * Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
48897
+ * @summary Identity entitlement details
48898
+ * @param {string} identityId The identity ID.
48899
+ * @param {string} entitlementId The entitlement ID
48900
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
48901
+ * @param {*} [axiosOptions] Override http request option.
48902
+ * @throws {RequiredError}
48903
+ */
48904
+ async getEntitlementDetailsForIdentity(identityId: string, entitlementId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityEntitlementDetailsV2024>> {
48905
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getEntitlementDetailsForIdentity(identityId, entitlementId, xSailPointExperimental, axiosOptions);
48906
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
48907
+ const localVarOperationServerBasePath = operationServerMap['AccessRequestsV2024Api.getEntitlementDetailsForIdentity']?.[localVarOperationServerIndex]?.url;
48908
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
48909
+ },
48257
48910
  /**
48258
48911
  * Use this API to return a list of access request statuses based on the specified query parameters. If an access request was made for access that an identity already has, the API ignores the access request. These ignored requests do not display in the list of access request statuses. Any user with any user level can get the status of their own access requests. A user with ORG_ADMIN is required to call this API to get a list of statuses for other users.
48259
48912
  * @summary Access request status
@@ -48279,6 +48932,7 @@ export const AccessRequestsV2024ApiFp = function(configuration?: Configuration)
48279
48932
  /**
48280
48933
  * Use this API to get access request statuses of all the access requests in the org based on the specified query parameters. Any user with user level ORG_ADMIN or scope idn:access-request-administration:read can access this endpoint to get the access request statuses
48281
48934
  * @summary Access request status for administrators
48935
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
48282
48936
  * @param {string} [requestedFor] Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
48283
48937
  * @param {string} [requestedBy] Filter the results by the identity who made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
48284
48938
  * @param {string} [regardingIdentity] Filter the results by the specified identity who is either the requester or target of the requests. *me* indicates the current user. Mutually exclusive with *requested-for* and *requested-by*.
@@ -48292,8 +48946,8 @@ export const AccessRequestsV2024ApiFp = function(configuration?: Configuration)
48292
48946
  * @param {*} [axiosOptions] Override http request option.
48293
48947
  * @throws {RequiredError}
48294
48948
  */
48295
- async listAdministratorsAccessRequestStatus(requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestAdminItemStatusV2024>>> {
48296
- const localVarAxiosArgs = await localVarAxiosParamCreator.listAdministratorsAccessRequestStatus(requestedFor, requestedBy, regardingIdentity, assignedTo, count, limit, offset, filters, sorters, requestState, axiosOptions);
48949
+ async listAdministratorsAccessRequestStatus(xSailPointExperimental: string, requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestAdminItemStatusV2024>>> {
48950
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listAdministratorsAccessRequestStatus(xSailPointExperimental, requestedFor, requestedBy, regardingIdentity, assignedTo, count, limit, offset, filters, sorters, requestState, axiosOptions);
48297
48951
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
48298
48952
  const localVarOperationServerBasePath = operationServerMap['AccessRequestsV2024Api.listAdministratorsAccessRequestStatus']?.[localVarOperationServerIndex]?.url;
48299
48953
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -48302,11 +48956,12 @@ export const AccessRequestsV2024ApiFp = function(configuration?: Configuration)
48302
48956
  * Use this API to fetch account information for an identity against the items in an access request. Used to fetch accountSelection for the AccessRequest prior to submitting for async processing.
48303
48957
  * @summary Get accounts selections for identity
48304
48958
  * @param {AccountsSelectionRequestV2024} accountsSelectionRequestV2024
48959
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
48305
48960
  * @param {*} [axiosOptions] Override http request option.
48306
48961
  * @throws {RequiredError}
48307
48962
  */
48308
- async loadAccountSelections(accountsSelectionRequestV2024: AccountsSelectionRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountsSelectionResponseV2024>> {
48309
- const localVarAxiosArgs = await localVarAxiosParamCreator.loadAccountSelections(accountsSelectionRequestV2024, axiosOptions);
48963
+ async loadAccountSelections(accountsSelectionRequestV2024: AccountsSelectionRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountsSelectionResponseV2024>> {
48964
+ const localVarAxiosArgs = await localVarAxiosParamCreator.loadAccountSelections(accountsSelectionRequestV2024, xSailPointExperimental, axiosOptions);
48310
48965
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
48311
48966
  const localVarOperationServerBasePath = operationServerMap['AccessRequestsV2024Api.loadAccountSelections']?.[localVarOperationServerIndex]?.url;
48312
48967
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -48393,6 +49048,16 @@ export const AccessRequestsV2024ApiFactory = function (configuration?: Configura
48393
49048
  getAccessRequestConfig(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessRequestConfigV2024> {
48394
49049
  return localVarFp.getAccessRequestConfig(axiosOptions).then((request) => request(axios, basePath));
48395
49050
  },
49051
+ /**
49052
+ * Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
49053
+ * @summary Identity entitlement details
49054
+ * @param {AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest} requestParameters Request parameters.
49055
+ * @param {*} [axiosOptions] Override http request option.
49056
+ * @throws {RequiredError}
49057
+ */
49058
+ getEntitlementDetailsForIdentity(requestParameters: AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityEntitlementDetailsV2024> {
49059
+ return localVarFp.getEntitlementDetailsForIdentity(requestParameters.identityId, requestParameters.entitlementId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
49060
+ },
48396
49061
  /**
48397
49062
  * Use this API to return a list of access request statuses based on the specified query parameters. If an access request was made for access that an identity already has, the API ignores the access request. These ignored requests do not display in the list of access request statuses. Any user with any user level can get the status of their own access requests. A user with ORG_ADMIN is required to call this API to get a list of statuses for other users.
48398
49063
  * @summary Access request status
@@ -48410,8 +49075,8 @@ export const AccessRequestsV2024ApiFactory = function (configuration?: Configura
48410
49075
  * @param {*} [axiosOptions] Override http request option.
48411
49076
  * @throws {RequiredError}
48412
49077
  */
48413
- listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestAdminItemStatusV2024>> {
48414
- return localVarFp.listAdministratorsAccessRequestStatus(requestParameters.requestedFor, requestParameters.requestedBy, requestParameters.regardingIdentity, requestParameters.assignedTo, requestParameters.count, requestParameters.limit, requestParameters.offset, requestParameters.filters, requestParameters.sorters, requestParameters.requestState, axiosOptions).then((request) => request(axios, basePath));
49078
+ listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestAdminItemStatusV2024>> {
49079
+ return localVarFp.listAdministratorsAccessRequestStatus(requestParameters.xSailPointExperimental, requestParameters.requestedFor, requestParameters.requestedBy, requestParameters.regardingIdentity, requestParameters.assignedTo, requestParameters.count, requestParameters.limit, requestParameters.offset, requestParameters.filters, requestParameters.sorters, requestParameters.requestState, axiosOptions).then((request) => request(axios, basePath));
48415
49080
  },
48416
49081
  /**
48417
49082
  * Use this API to fetch account information for an identity against the items in an access request. Used to fetch accountSelection for the AccessRequest prior to submitting for async processing.
@@ -48421,7 +49086,7 @@ export const AccessRequestsV2024ApiFactory = function (configuration?: Configura
48421
49086
  * @throws {RequiredError}
48422
49087
  */
48423
49088
  loadAccountSelections(requestParameters: AccessRequestsV2024ApiLoadAccountSelectionsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountsSelectionResponseV2024> {
48424
- return localVarFp.loadAccountSelections(requestParameters.accountsSelectionRequestV2024, axiosOptions).then((request) => request(axios, basePath));
49089
+ return localVarFp.loadAccountSelections(requestParameters.accountsSelectionRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
48425
49090
  },
48426
49091
  /**
48427
49092
  * This endpoint replaces the current access-request configuration.
@@ -48506,6 +49171,34 @@ export interface AccessRequestsV2024ApiCreateAccessRequestRequest {
48506
49171
  readonly accessRequestV2024: AccessRequestV2024
48507
49172
  }
48508
49173
 
49174
+ /**
49175
+ * Request parameters for getEntitlementDetailsForIdentity operation in AccessRequestsV2024Api.
49176
+ * @export
49177
+ * @interface AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest
49178
+ */
49179
+ export interface AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest {
49180
+ /**
49181
+ * The identity ID.
49182
+ * @type {string}
49183
+ * @memberof AccessRequestsV2024ApiGetEntitlementDetailsForIdentity
49184
+ */
49185
+ readonly identityId: string
49186
+
49187
+ /**
49188
+ * The entitlement ID
49189
+ * @type {string}
49190
+ * @memberof AccessRequestsV2024ApiGetEntitlementDetailsForIdentity
49191
+ */
49192
+ readonly entitlementId: string
49193
+
49194
+ /**
49195
+ * Use this header to enable this experimental API.
49196
+ * @type {string}
49197
+ * @memberof AccessRequestsV2024ApiGetEntitlementDetailsForIdentity
49198
+ */
49199
+ readonly xSailPointExperimental?: string
49200
+ }
49201
+
48509
49202
  /**
48510
49203
  * Request parameters for listAccessRequestStatus operation in AccessRequestsV2024Api.
48511
49204
  * @export
@@ -48589,6 +49282,13 @@ export interface AccessRequestsV2024ApiListAccessRequestStatusRequest {
48589
49282
  * @interface AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest
48590
49283
  */
48591
49284
  export interface AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest {
49285
+ /**
49286
+ * Use this header to enable this experimental API.
49287
+ * @type {string}
49288
+ * @memberof AccessRequestsV2024ApiListAdministratorsAccessRequestStatus
49289
+ */
49290
+ readonly xSailPointExperimental: string
49291
+
48592
49292
  /**
48593
49293
  * Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
48594
49294
  * @type {string}
@@ -48672,6 +49372,13 @@ export interface AccessRequestsV2024ApiLoadAccountSelectionsRequest {
48672
49372
  * @memberof AccessRequestsV2024ApiLoadAccountSelections
48673
49373
  */
48674
49374
  readonly accountsSelectionRequestV2024: AccountsSelectionRequestV2024
49375
+
49376
+ /**
49377
+ * Use this header to enable this experimental API.
49378
+ * @type {string}
49379
+ * @memberof AccessRequestsV2024ApiLoadAccountSelections
49380
+ */
49381
+ readonly xSailPointExperimental?: string
48675
49382
  }
48676
49383
 
48677
49384
  /**
@@ -48766,6 +49473,18 @@ export class AccessRequestsV2024Api extends BaseAPI {
48766
49473
  return AccessRequestsV2024ApiFp(this.configuration).getAccessRequestConfig(axiosOptions).then((request) => request(this.axios, this.basePath));
48767
49474
  }
48768
49475
 
49476
+ /**
49477
+ * Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
49478
+ * @summary Identity entitlement details
49479
+ * @param {AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest} requestParameters Request parameters.
49480
+ * @param {*} [axiosOptions] Override http request option.
49481
+ * @throws {RequiredError}
49482
+ * @memberof AccessRequestsV2024Api
49483
+ */
49484
+ public getEntitlementDetailsForIdentity(requestParameters: AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest, axiosOptions?: RawAxiosRequestConfig) {
49485
+ return AccessRequestsV2024ApiFp(this.configuration).getEntitlementDetailsForIdentity(requestParameters.identityId, requestParameters.entitlementId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
49486
+ }
49487
+
48769
49488
  /**
48770
49489
  * Use this API to return a list of access request statuses based on the specified query parameters. If an access request was made for access that an identity already has, the API ignores the access request. These ignored requests do not display in the list of access request statuses. Any user with any user level can get the status of their own access requests. A user with ORG_ADMIN is required to call this API to get a list of statuses for other users.
48771
49490
  * @summary Access request status
@@ -48786,8 +49505,8 @@ export class AccessRequestsV2024Api extends BaseAPI {
48786
49505
  * @throws {RequiredError}
48787
49506
  * @memberof AccessRequestsV2024Api
48788
49507
  */
48789
- public listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
48790
- return AccessRequestsV2024ApiFp(this.configuration).listAdministratorsAccessRequestStatus(requestParameters.requestedFor, requestParameters.requestedBy, requestParameters.regardingIdentity, requestParameters.assignedTo, requestParameters.count, requestParameters.limit, requestParameters.offset, requestParameters.filters, requestParameters.sorters, requestParameters.requestState, axiosOptions).then((request) => request(this.axios, this.basePath));
49508
+ public listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig) {
49509
+ return AccessRequestsV2024ApiFp(this.configuration).listAdministratorsAccessRequestStatus(requestParameters.xSailPointExperimental, requestParameters.requestedFor, requestParameters.requestedBy, requestParameters.regardingIdentity, requestParameters.assignedTo, requestParameters.count, requestParameters.limit, requestParameters.offset, requestParameters.filters, requestParameters.sorters, requestParameters.requestState, axiosOptions).then((request) => request(this.axios, this.basePath));
48791
49510
  }
48792
49511
 
48793
49512
  /**
@@ -48799,7 +49518,7 @@ export class AccessRequestsV2024Api extends BaseAPI {
48799
49518
  * @memberof AccessRequestsV2024Api
48800
49519
  */
48801
49520
  public loadAccountSelections(requestParameters: AccessRequestsV2024ApiLoadAccountSelectionsRequest, axiosOptions?: RawAxiosRequestConfig) {
48802
- return AccessRequestsV2024ApiFp(this.configuration).loadAccountSelections(requestParameters.accountsSelectionRequestV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
49521
+ return AccessRequestsV2024ApiFp(this.configuration).loadAccountSelections(requestParameters.accountsSelectionRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
48803
49522
  }
48804
49523
 
48805
49524
  /**
@@ -80229,6 +80948,63 @@ export const IdentitiesV2024ApiAxiosParamCreator = function (configuration?: Con
80229
80948
 
80230
80949
 
80231
80950
 
80951
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
80952
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
80953
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
80954
+
80955
+ return {
80956
+ url: toPathString(localVarUrlObj),
80957
+ axiosOptions: localVarRequestOptions,
80958
+ };
80959
+ },
80960
+ /**
80961
+ * The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
80962
+ * @summary List of entitlements by identity.
80963
+ * @param {string} id Identity Id
80964
+ * @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.
80965
+ * @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.
80966
+ * @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&#x3D;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.
80967
+ * @param {*} [axiosOptions] Override http request option.
80968
+ * @throws {RequiredError}
80969
+ */
80970
+ listEntitlementsByIdentity: async (id: string, limit?: number, offset?: number, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
80971
+ // verify required parameter 'id' is not null or undefined
80972
+ assertParamExists('listEntitlementsByIdentity', 'id', id)
80973
+ const localVarPath = `/entitlements/identities/{id}/entitlements`
80974
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
80975
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
80976
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
80977
+ let baseOptions;
80978
+ if (configuration) {
80979
+ baseOptions = configuration.baseOptions;
80980
+ }
80981
+
80982
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
80983
+ const localVarHeaderParameter = {} as any;
80984
+ const localVarQueryParameter = {} as any;
80985
+
80986
+ // authentication userAuth required
80987
+ // oauth required
80988
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
80989
+
80990
+ // authentication userAuth required
80991
+ // oauth required
80992
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
80993
+
80994
+ if (limit !== undefined) {
80995
+ localVarQueryParameter['limit'] = limit;
80996
+ }
80997
+
80998
+ if (offset !== undefined) {
80999
+ localVarQueryParameter['offset'] = offset;
81000
+ }
81001
+
81002
+ if (count !== undefined) {
81003
+ localVarQueryParameter['count'] = count;
81004
+ }
81005
+
81006
+
81007
+
80232
81008
  setSearchParams(localVarUrlObj, localVarQueryParameter);
80233
81009
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
80234
81010
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
@@ -80408,12 +81184,17 @@ export const IdentitiesV2024ApiAxiosParamCreator = function (configuration?: Con
80408
81184
  * 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).
80409
81185
  * @summary Invite identities to register
80410
81186
  * @param {InviteIdentitiesRequestV2024} inviteIdentitiesRequestV2024
81187
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
80411
81188
  * @param {*} [axiosOptions] Override http request option.
80412
81189
  * @throws {RequiredError}
80413
81190
  */
80414
- startIdentitiesInvite: async (inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
81191
+ startIdentitiesInvite: async (inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
80415
81192
  // verify required parameter 'inviteIdentitiesRequestV2024' is not null or undefined
80416
81193
  assertParamExists('startIdentitiesInvite', 'inviteIdentitiesRequestV2024', inviteIdentitiesRequestV2024)
81194
+ if (xSailPointExperimental === undefined) {
81195
+ xSailPointExperimental = 'true';
81196
+ }
81197
+
80417
81198
  const localVarPath = `/identities/invite`;
80418
81199
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
80419
81200
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -80428,16 +81209,19 @@ export const IdentitiesV2024ApiAxiosParamCreator = function (configuration?: Con
80428
81209
 
80429
81210
  // authentication userAuth required
80430
81211
  // oauth required
80431
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
81212
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
80432
81213
 
80433
81214
  // authentication userAuth required
80434
81215
  // oauth required
80435
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
81216
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
80436
81217
 
80437
81218
 
80438
81219
 
80439
81220
  localVarHeaderParameter['Content-Type'] = 'application/json';
80440
81221
 
81222
+ if (xSailPointExperimental != null) {
81223
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
81224
+ }
80441
81225
  setSearchParams(localVarUrlObj, localVarQueryParameter);
80442
81226
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
80443
81227
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
@@ -80632,6 +81416,22 @@ export const IdentitiesV2024ApiFp = function(configuration?: Configuration) {
80632
81416
  const localVarOperationServerBasePath = operationServerMap['IdentitiesV2024Api.getRoleAssignments']?.[localVarOperationServerIndex]?.url;
80633
81417
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
80634
81418
  },
81419
+ /**
81420
+ * The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
81421
+ * @summary List of entitlements by identity.
81422
+ * @param {string} id Identity Id
81423
+ * @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.
81424
+ * @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.
81425
+ * @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&#x3D;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.
81426
+ * @param {*} [axiosOptions] Override http request option.
81427
+ * @throws {RequiredError}
81428
+ */
81429
+ async listEntitlementsByIdentity(id: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IdentityEntitlementsV2024>>> {
81430
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listEntitlementsByIdentity(id, limit, offset, count, axiosOptions);
81431
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
81432
+ const localVarOperationServerBasePath = operationServerMap['IdentitiesV2024Api.listEntitlementsByIdentity']?.[localVarOperationServerIndex]?.url;
81433
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
81434
+ },
80635
81435
  /**
80636
81436
  * This API returns a list of identities.
80637
81437
  * @summary List identities
@@ -80682,11 +81482,12 @@ export const IdentitiesV2024ApiFp = function(configuration?: Configuration) {
80682
81482
  * 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).
80683
81483
  * @summary Invite identities to register
80684
81484
  * @param {InviteIdentitiesRequestV2024} inviteIdentitiesRequestV2024
81485
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
80685
81486
  * @param {*} [axiosOptions] Override http request option.
80686
81487
  * @throws {RequiredError}
80687
81488
  */
80688
- async startIdentitiesInvite(inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2024>> {
80689
- const localVarAxiosArgs = await localVarAxiosParamCreator.startIdentitiesInvite(inviteIdentitiesRequestV2024, axiosOptions);
81489
+ async startIdentitiesInvite(inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2024>> {
81490
+ const localVarAxiosArgs = await localVarAxiosParamCreator.startIdentitiesInvite(inviteIdentitiesRequestV2024, xSailPointExperimental, axiosOptions);
80690
81491
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
80691
81492
  const localVarOperationServerBasePath = operationServerMap['IdentitiesV2024Api.startIdentitiesInvite']?.[localVarOperationServerIndex]?.url;
80692
81493
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -80779,6 +81580,16 @@ export const IdentitiesV2024ApiFactory = function (configuration?: Configuration
80779
81580
  getRoleAssignments(requestParameters: IdentitiesV2024ApiGetRoleAssignmentsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<GetRoleAssignments200ResponseInnerV2024>> {
80780
81581
  return localVarFp.getRoleAssignments(requestParameters.identityId, requestParameters.roleId, requestParameters.roleName, axiosOptions).then((request) => request(axios, basePath));
80781
81582
  },
81583
+ /**
81584
+ * The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
81585
+ * @summary List of entitlements by identity.
81586
+ * @param {IdentitiesV2024ApiListEntitlementsByIdentityRequest} requestParameters Request parameters.
81587
+ * @param {*} [axiosOptions] Override http request option.
81588
+ * @throws {RequiredError}
81589
+ */
81590
+ listEntitlementsByIdentity(requestParameters: IdentitiesV2024ApiListEntitlementsByIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<IdentityEntitlementsV2024>> {
81591
+ return localVarFp.listEntitlementsByIdentity(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
81592
+ },
80782
81593
  /**
80783
81594
  * This API returns a list of identities.
80784
81595
  * @summary List identities
@@ -80817,7 +81628,7 @@ export const IdentitiesV2024ApiFactory = function (configuration?: Configuration
80817
81628
  * @throws {RequiredError}
80818
81629
  */
80819
81630
  startIdentitiesInvite(requestParameters: IdentitiesV2024ApiStartIdentitiesInviteRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TaskStatusV2024> {
80820
- return localVarFp.startIdentitiesInvite(requestParameters.inviteIdentitiesRequestV2024, axiosOptions).then((request) => request(axios, basePath));
81631
+ return localVarFp.startIdentitiesInvite(requestParameters.inviteIdentitiesRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
80821
81632
  },
80822
81633
  /**
80823
81634
  * 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.
@@ -80933,6 +81744,41 @@ export interface IdentitiesV2024ApiGetRoleAssignmentsRequest {
80933
81744
  readonly roleName?: string
80934
81745
  }
80935
81746
 
81747
+ /**
81748
+ * Request parameters for listEntitlementsByIdentity operation in IdentitiesV2024Api.
81749
+ * @export
81750
+ * @interface IdentitiesV2024ApiListEntitlementsByIdentityRequest
81751
+ */
81752
+ export interface IdentitiesV2024ApiListEntitlementsByIdentityRequest {
81753
+ /**
81754
+ * Identity Id
81755
+ * @type {string}
81756
+ * @memberof IdentitiesV2024ApiListEntitlementsByIdentity
81757
+ */
81758
+ readonly id: string
81759
+
81760
+ /**
81761
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
81762
+ * @type {number}
81763
+ * @memberof IdentitiesV2024ApiListEntitlementsByIdentity
81764
+ */
81765
+ readonly limit?: number
81766
+
81767
+ /**
81768
+ * 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.
81769
+ * @type {number}
81770
+ * @memberof IdentitiesV2024ApiListEntitlementsByIdentity
81771
+ */
81772
+ readonly offset?: number
81773
+
81774
+ /**
81775
+ * 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&#x3D;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.
81776
+ * @type {boolean}
81777
+ * @memberof IdentitiesV2024ApiListEntitlementsByIdentity
81778
+ */
81779
+ readonly count?: boolean
81780
+ }
81781
+
80936
81782
  /**
80937
81783
  * Request parameters for listIdentities operation in IdentitiesV2024Api.
80938
81784
  * @export
@@ -81036,6 +81882,13 @@ export interface IdentitiesV2024ApiStartIdentitiesInviteRequest {
81036
81882
  * @memberof IdentitiesV2024ApiStartIdentitiesInvite
81037
81883
  */
81038
81884
  readonly inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024
81885
+
81886
+ /**
81887
+ * Use this header to enable this experimental API.
81888
+ * @type {string}
81889
+ * @memberof IdentitiesV2024ApiStartIdentitiesInvite
81890
+ */
81891
+ readonly xSailPointExperimental?: string
81039
81892
  }
81040
81893
 
81041
81894
  /**
@@ -81147,6 +82000,18 @@ export class IdentitiesV2024Api extends BaseAPI {
81147
82000
  return IdentitiesV2024ApiFp(this.configuration).getRoleAssignments(requestParameters.identityId, requestParameters.roleId, requestParameters.roleName, axiosOptions).then((request) => request(this.axios, this.basePath));
81148
82001
  }
81149
82002
 
82003
+ /**
82004
+ * The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
82005
+ * @summary List of entitlements by identity.
82006
+ * @param {IdentitiesV2024ApiListEntitlementsByIdentityRequest} requestParameters Request parameters.
82007
+ * @param {*} [axiosOptions] Override http request option.
82008
+ * @throws {RequiredError}
82009
+ * @memberof IdentitiesV2024Api
82010
+ */
82011
+ public listEntitlementsByIdentity(requestParameters: IdentitiesV2024ApiListEntitlementsByIdentityRequest, axiosOptions?: RawAxiosRequestConfig) {
82012
+ return IdentitiesV2024ApiFp(this.configuration).listEntitlementsByIdentity(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
82013
+ }
82014
+
81150
82015
  /**
81151
82016
  * This API returns a list of identities.
81152
82017
  * @summary List identities
@@ -81192,7 +82057,7 @@ export class IdentitiesV2024Api extends BaseAPI {
81192
82057
  * @memberof IdentitiesV2024Api
81193
82058
  */
81194
82059
  public startIdentitiesInvite(requestParameters: IdentitiesV2024ApiStartIdentitiesInviteRequest, axiosOptions?: RawAxiosRequestConfig) {
81195
- return IdentitiesV2024ApiFp(this.configuration).startIdentitiesInvite(requestParameters.inviteIdentitiesRequestV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
82060
+ return IdentitiesV2024ApiFp(this.configuration).startIdentitiesInvite(requestParameters.inviteIdentitiesRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
81196
82061
  }
81197
82062
 
81198
82063
  /**
@@ -83861,17 +84726,12 @@ export const IdentityProfilesV2024ApiAxiosParamCreator = function (configuration
83861
84726
  * This generates a non-persisted IdentityDetails object that will represent as the preview of the identities attribute when the given policy\'\'s attribute config is applied.
83862
84727
  * @summary Generate identity profile preview
83863
84728
  * @param {IdentityPreviewRequestV2024} identityPreviewRequestV2024 Identity Preview request body.
83864
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
83865
84729
  * @param {*} [axiosOptions] Override http request option.
83866
84730
  * @throws {RequiredError}
83867
84731
  */
83868
- generateIdentityPreview: async (identityPreviewRequestV2024: IdentityPreviewRequestV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
84732
+ generateIdentityPreview: async (identityPreviewRequestV2024: IdentityPreviewRequestV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
83869
84733
  // verify required parameter 'identityPreviewRequestV2024' is not null or undefined
83870
84734
  assertParamExists('generateIdentityPreview', 'identityPreviewRequestV2024', identityPreviewRequestV2024)
83871
- if (xSailPointExperimental === undefined) {
83872
- xSailPointExperimental = 'true';
83873
- }
83874
-
83875
84735
  const localVarPath = `/identity-profiles/identity-preview`;
83876
84736
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
83877
84737
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -83896,9 +84756,6 @@ export const IdentityProfilesV2024ApiAxiosParamCreator = function (configuration
83896
84756
 
83897
84757
  localVarHeaderParameter['Content-Type'] = 'application/json';
83898
84758
 
83899
- if (xSailPointExperimental != null) {
83900
- localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
83901
- }
83902
84759
  setSearchParams(localVarUrlObj, localVarQueryParameter);
83903
84760
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
83904
84761
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
@@ -84268,12 +85125,11 @@ export const IdentityProfilesV2024ApiFp = function(configuration?: Configuration
84268
85125
  * This generates a non-persisted IdentityDetails object that will represent as the preview of the identities attribute when the given policy\'\'s attribute config is applied.
84269
85126
  * @summary Generate identity profile preview
84270
85127
  * @param {IdentityPreviewRequestV2024} identityPreviewRequestV2024 Identity Preview request body.
84271
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
84272
85128
  * @param {*} [axiosOptions] Override http request option.
84273
85129
  * @throws {RequiredError}
84274
85130
  */
84275
- async generateIdentityPreview(identityPreviewRequestV2024: IdentityPreviewRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityPreviewResponseV2024>> {
84276
- const localVarAxiosArgs = await localVarAxiosParamCreator.generateIdentityPreview(identityPreviewRequestV2024, xSailPointExperimental, axiosOptions);
85131
+ async generateIdentityPreview(identityPreviewRequestV2024: IdentityPreviewRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityPreviewResponseV2024>> {
85132
+ const localVarAxiosArgs = await localVarAxiosParamCreator.generateIdentityPreview(identityPreviewRequestV2024, axiosOptions);
84277
85133
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
84278
85134
  const localVarOperationServerBasePath = operationServerMap['IdentityProfilesV2024Api.generateIdentityPreview']?.[localVarOperationServerIndex]?.url;
84279
85135
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -84419,7 +85275,7 @@ export const IdentityProfilesV2024ApiFactory = function (configuration?: Configu
84419
85275
  * @throws {RequiredError}
84420
85276
  */
84421
85277
  generateIdentityPreview(requestParameters: IdentityProfilesV2024ApiGenerateIdentityPreviewRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityPreviewResponseV2024> {
84422
- return localVarFp.generateIdentityPreview(requestParameters.identityPreviewRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
85278
+ return localVarFp.generateIdentityPreview(requestParameters.identityPreviewRequestV2024, axiosOptions).then((request) => request(axios, basePath));
84423
85279
  },
84424
85280
  /**
84425
85281
  * This returns the default identity attribute config.
@@ -84580,13 +85436,6 @@ export interface IdentityProfilesV2024ApiGenerateIdentityPreviewRequest {
84580
85436
  * @memberof IdentityProfilesV2024ApiGenerateIdentityPreview
84581
85437
  */
84582
85438
  readonly identityPreviewRequestV2024: IdentityPreviewRequestV2024
84583
-
84584
- /**
84585
- * Use this header to enable this experimental API.
84586
- * @type {string}
84587
- * @memberof IdentityProfilesV2024ApiGenerateIdentityPreview
84588
- */
84589
- readonly xSailPointExperimental?: string
84590
85439
  }
84591
85440
 
84592
85441
  /**
@@ -84772,7 +85621,7 @@ export class IdentityProfilesV2024Api extends BaseAPI {
84772
85621
  * @memberof IdentityProfilesV2024Api
84773
85622
  */
84774
85623
  public generateIdentityPreview(requestParameters: IdentityProfilesV2024ApiGenerateIdentityPreviewRequest, axiosOptions?: RawAxiosRequestConfig) {
84775
- return IdentityProfilesV2024ApiFp(this.configuration).generateIdentityPreview(requestParameters.identityPreviewRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
85624
+ return IdentityProfilesV2024ApiFp(this.configuration).generateIdentityPreview(requestParameters.identityPreviewRequestV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
84776
85625
  }
84777
85626
 
84778
85627
  /**
@@ -84850,6 +85699,634 @@ export class IdentityProfilesV2024Api extends BaseAPI {
84850
85699
 
84851
85700
 
84852
85701
 
85702
+ /**
85703
+ * LaunchersV2024Api - axios parameter creator
85704
+ * @export
85705
+ */
85706
+ export const LaunchersV2024ApiAxiosParamCreator = function (configuration?: Configuration) {
85707
+ return {
85708
+ /**
85709
+ * Create a Launcher with given information
85710
+ * @summary Create launcher
85711
+ * @param {LauncherRequestV2024} launcherRequestV2024 Payload to create a Launcher
85712
+ * @param {*} [axiosOptions] Override http request option.
85713
+ * @throws {RequiredError}
85714
+ */
85715
+ createLauncher: async (launcherRequestV2024: LauncherRequestV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
85716
+ // verify required parameter 'launcherRequestV2024' is not null or undefined
85717
+ assertParamExists('createLauncher', 'launcherRequestV2024', launcherRequestV2024)
85718
+ const localVarPath = `/launchers`;
85719
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
85720
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
85721
+ let baseOptions;
85722
+ if (configuration) {
85723
+ baseOptions = configuration.baseOptions;
85724
+ }
85725
+
85726
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
85727
+ const localVarHeaderParameter = {} as any;
85728
+ const localVarQueryParameter = {} as any;
85729
+
85730
+ // authentication userAuth required
85731
+ // oauth required
85732
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
85733
+
85734
+ // authentication userAuth required
85735
+ // oauth required
85736
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
85737
+
85738
+
85739
+
85740
+ localVarHeaderParameter['Content-Type'] = 'application/json';
85741
+
85742
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
85743
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
85744
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
85745
+ localVarRequestOptions.data = serializeDataIfNeeded(launcherRequestV2024, localVarRequestOptions, configuration)
85746
+
85747
+ return {
85748
+ url: toPathString(localVarUrlObj),
85749
+ axiosOptions: localVarRequestOptions,
85750
+ };
85751
+ },
85752
+ /**
85753
+ * Delete the given Launcher ID
85754
+ * @summary Delete launcher
85755
+ * @param {string} launcherID ID of the Launcher to be deleted
85756
+ * @param {*} [axiosOptions] Override http request option.
85757
+ * @throws {RequiredError}
85758
+ */
85759
+ deleteLauncher: async (launcherID: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
85760
+ // verify required parameter 'launcherID' is not null or undefined
85761
+ assertParamExists('deleteLauncher', 'launcherID', launcherID)
85762
+ const localVarPath = `/launchers/{launcherID}`
85763
+ .replace(`{${"launcherID"}}`, encodeURIComponent(String(launcherID)));
85764
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
85765
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
85766
+ let baseOptions;
85767
+ if (configuration) {
85768
+ baseOptions = configuration.baseOptions;
85769
+ }
85770
+
85771
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};
85772
+ const localVarHeaderParameter = {} as any;
85773
+ const localVarQueryParameter = {} as any;
85774
+
85775
+ // authentication userAuth required
85776
+ // oauth required
85777
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
85778
+
85779
+ // authentication userAuth required
85780
+ // oauth required
85781
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
85782
+
85783
+
85784
+
85785
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
85786
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
85787
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
85788
+
85789
+ return {
85790
+ url: toPathString(localVarUrlObj),
85791
+ axiosOptions: localVarRequestOptions,
85792
+ };
85793
+ },
85794
+ /**
85795
+ * Get details for the given Launcher ID
85796
+ * @summary Get launcher by id
85797
+ * @param {string} launcherID ID of the Launcher to be retrieved
85798
+ * @param {*} [axiosOptions] Override http request option.
85799
+ * @throws {RequiredError}
85800
+ */
85801
+ getLauncher: async (launcherID: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
85802
+ // verify required parameter 'launcherID' is not null or undefined
85803
+ assertParamExists('getLauncher', 'launcherID', launcherID)
85804
+ const localVarPath = `/launchers/{launcherID}`
85805
+ .replace(`{${"launcherID"}}`, encodeURIComponent(String(launcherID)));
85806
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
85807
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
85808
+ let baseOptions;
85809
+ if (configuration) {
85810
+ baseOptions = configuration.baseOptions;
85811
+ }
85812
+
85813
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
85814
+ const localVarHeaderParameter = {} as any;
85815
+ const localVarQueryParameter = {} as any;
85816
+
85817
+ // authentication userAuth required
85818
+ // oauth required
85819
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
85820
+
85821
+ // authentication userAuth required
85822
+ // oauth required
85823
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
85824
+
85825
+
85826
+
85827
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
85828
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
85829
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
85830
+
85831
+ return {
85832
+ url: toPathString(localVarUrlObj),
85833
+ axiosOptions: localVarRequestOptions,
85834
+ };
85835
+ },
85836
+ /**
85837
+ * Return a list of Launchers for the authenticated tenant
85838
+ * @summary List all launchers for tenant
85839
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **description**: *sw* **disabled**: *eq* **name**: *sw*
85840
+ * @param {string} [next] Pagination marker
85841
+ * @param {number} [limit] Number of Launchers to return
85842
+ * @param {*} [axiosOptions] Override http request option.
85843
+ * @throws {RequiredError}
85844
+ */
85845
+ getLaunchers: async (filters?: string, next?: string, limit?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
85846
+ const localVarPath = `/launchers`;
85847
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
85848
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
85849
+ let baseOptions;
85850
+ if (configuration) {
85851
+ baseOptions = configuration.baseOptions;
85852
+ }
85853
+
85854
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
85855
+ const localVarHeaderParameter = {} as any;
85856
+ const localVarQueryParameter = {} as any;
85857
+
85858
+ // authentication userAuth required
85859
+ // oauth required
85860
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
85861
+
85862
+ // authentication userAuth required
85863
+ // oauth required
85864
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
85865
+
85866
+ if (filters !== undefined) {
85867
+ localVarQueryParameter['filters'] = filters;
85868
+ }
85869
+
85870
+ if (next !== undefined) {
85871
+ localVarQueryParameter['next'] = next;
85872
+ }
85873
+
85874
+ if (limit !== undefined) {
85875
+ localVarQueryParameter['limit'] = limit;
85876
+ }
85877
+
85878
+
85879
+
85880
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
85881
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
85882
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
85883
+
85884
+ return {
85885
+ url: toPathString(localVarUrlObj),
85886
+ axiosOptions: localVarRequestOptions,
85887
+ };
85888
+ },
85889
+ /**
85890
+ * Replace the given Launcher ID with given payload
85891
+ * @summary Replace launcher
85892
+ * @param {string} launcherID ID of the Launcher to be replaced
85893
+ * @param {LauncherRequestV2024} launcherRequestV2024 Payload to replace Launcher
85894
+ * @param {*} [axiosOptions] Override http request option.
85895
+ * @throws {RequiredError}
85896
+ */
85897
+ putLauncher: async (launcherID: string, launcherRequestV2024: LauncherRequestV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
85898
+ // verify required parameter 'launcherID' is not null or undefined
85899
+ assertParamExists('putLauncher', 'launcherID', launcherID)
85900
+ // verify required parameter 'launcherRequestV2024' is not null or undefined
85901
+ assertParamExists('putLauncher', 'launcherRequestV2024', launcherRequestV2024)
85902
+ const localVarPath = `/launchers/{launcherID}`
85903
+ .replace(`{${"launcherID"}}`, encodeURIComponent(String(launcherID)));
85904
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
85905
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
85906
+ let baseOptions;
85907
+ if (configuration) {
85908
+ baseOptions = configuration.baseOptions;
85909
+ }
85910
+
85911
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...axiosOptions};
85912
+ const localVarHeaderParameter = {} as any;
85913
+ const localVarQueryParameter = {} as any;
85914
+
85915
+ // authentication userAuth required
85916
+ // oauth required
85917
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
85918
+
85919
+ // authentication userAuth required
85920
+ // oauth required
85921
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
85922
+
85923
+
85924
+
85925
+ localVarHeaderParameter['Content-Type'] = 'application/json';
85926
+
85927
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
85928
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
85929
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
85930
+ localVarRequestOptions.data = serializeDataIfNeeded(launcherRequestV2024, localVarRequestOptions, configuration)
85931
+
85932
+ return {
85933
+ url: toPathString(localVarUrlObj),
85934
+ axiosOptions: localVarRequestOptions,
85935
+ };
85936
+ },
85937
+ /**
85938
+ * Launch the given Launcher ID
85939
+ * @summary Launch a launcher
85940
+ * @param {string} launcherID ID of the Launcher to be launched
85941
+ * @param {*} [axiosOptions] Override http request option.
85942
+ * @throws {RequiredError}
85943
+ */
85944
+ startLauncher: async (launcherID: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
85945
+ // verify required parameter 'launcherID' is not null or undefined
85946
+ assertParamExists('startLauncher', 'launcherID', launcherID)
85947
+ const localVarPath = `/launchers/{launcherID}/launch`
85948
+ .replace(`{${"launcherID"}}`, encodeURIComponent(String(launcherID)));
85949
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
85950
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
85951
+ let baseOptions;
85952
+ if (configuration) {
85953
+ baseOptions = configuration.baseOptions;
85954
+ }
85955
+
85956
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
85957
+ const localVarHeaderParameter = {} as any;
85958
+ const localVarQueryParameter = {} as any;
85959
+
85960
+ // authentication userAuth required
85961
+ // oauth required
85962
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
85963
+
85964
+ // authentication userAuth required
85965
+ // oauth required
85966
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
85967
+
85968
+
85969
+
85970
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
85971
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
85972
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
85973
+
85974
+ return {
85975
+ url: toPathString(localVarUrlObj),
85976
+ axiosOptions: localVarRequestOptions,
85977
+ };
85978
+ },
85979
+ }
85980
+ };
85981
+
85982
+ /**
85983
+ * LaunchersV2024Api - functional programming interface
85984
+ * @export
85985
+ */
85986
+ export const LaunchersV2024ApiFp = function(configuration?: Configuration) {
85987
+ const localVarAxiosParamCreator = LaunchersV2024ApiAxiosParamCreator(configuration)
85988
+ return {
85989
+ /**
85990
+ * Create a Launcher with given information
85991
+ * @summary Create launcher
85992
+ * @param {LauncherRequestV2024} launcherRequestV2024 Payload to create a Launcher
85993
+ * @param {*} [axiosOptions] Override http request option.
85994
+ * @throws {RequiredError}
85995
+ */
85996
+ async createLauncher(launcherRequestV2024: LauncherRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LauncherV2024>> {
85997
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createLauncher(launcherRequestV2024, axiosOptions);
85998
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
85999
+ const localVarOperationServerBasePath = operationServerMap['LaunchersV2024Api.createLauncher']?.[localVarOperationServerIndex]?.url;
86000
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
86001
+ },
86002
+ /**
86003
+ * Delete the given Launcher ID
86004
+ * @summary Delete launcher
86005
+ * @param {string} launcherID ID of the Launcher to be deleted
86006
+ * @param {*} [axiosOptions] Override http request option.
86007
+ * @throws {RequiredError}
86008
+ */
86009
+ async deleteLauncher(launcherID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
86010
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteLauncher(launcherID, axiosOptions);
86011
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
86012
+ const localVarOperationServerBasePath = operationServerMap['LaunchersV2024Api.deleteLauncher']?.[localVarOperationServerIndex]?.url;
86013
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
86014
+ },
86015
+ /**
86016
+ * Get details for the given Launcher ID
86017
+ * @summary Get launcher by id
86018
+ * @param {string} launcherID ID of the Launcher to be retrieved
86019
+ * @param {*} [axiosOptions] Override http request option.
86020
+ * @throws {RequiredError}
86021
+ */
86022
+ async getLauncher(launcherID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LauncherV2024>> {
86023
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getLauncher(launcherID, axiosOptions);
86024
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
86025
+ const localVarOperationServerBasePath = operationServerMap['LaunchersV2024Api.getLauncher']?.[localVarOperationServerIndex]?.url;
86026
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
86027
+ },
86028
+ /**
86029
+ * Return a list of Launchers for the authenticated tenant
86030
+ * @summary List all launchers for tenant
86031
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **description**: *sw* **disabled**: *eq* **name**: *sw*
86032
+ * @param {string} [next] Pagination marker
86033
+ * @param {number} [limit] Number of Launchers to return
86034
+ * @param {*} [axiosOptions] Override http request option.
86035
+ * @throws {RequiredError}
86036
+ */
86037
+ async getLaunchers(filters?: string, next?: string, limit?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetLaunchers200ResponseV2024>> {
86038
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getLaunchers(filters, next, limit, axiosOptions);
86039
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
86040
+ const localVarOperationServerBasePath = operationServerMap['LaunchersV2024Api.getLaunchers']?.[localVarOperationServerIndex]?.url;
86041
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
86042
+ },
86043
+ /**
86044
+ * Replace the given Launcher ID with given payload
86045
+ * @summary Replace launcher
86046
+ * @param {string} launcherID ID of the Launcher to be replaced
86047
+ * @param {LauncherRequestV2024} launcherRequestV2024 Payload to replace Launcher
86048
+ * @param {*} [axiosOptions] Override http request option.
86049
+ * @throws {RequiredError}
86050
+ */
86051
+ async putLauncher(launcherID: string, launcherRequestV2024: LauncherRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LauncherV2024>> {
86052
+ const localVarAxiosArgs = await localVarAxiosParamCreator.putLauncher(launcherID, launcherRequestV2024, axiosOptions);
86053
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
86054
+ const localVarOperationServerBasePath = operationServerMap['LaunchersV2024Api.putLauncher']?.[localVarOperationServerIndex]?.url;
86055
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
86056
+ },
86057
+ /**
86058
+ * Launch the given Launcher ID
86059
+ * @summary Launch a launcher
86060
+ * @param {string} launcherID ID of the Launcher to be launched
86061
+ * @param {*} [axiosOptions] Override http request option.
86062
+ * @throws {RequiredError}
86063
+ */
86064
+ async startLauncher(launcherID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StartLauncher200ResponseV2024>> {
86065
+ const localVarAxiosArgs = await localVarAxiosParamCreator.startLauncher(launcherID, axiosOptions);
86066
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
86067
+ const localVarOperationServerBasePath = operationServerMap['LaunchersV2024Api.startLauncher']?.[localVarOperationServerIndex]?.url;
86068
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
86069
+ },
86070
+ }
86071
+ };
86072
+
86073
+ /**
86074
+ * LaunchersV2024Api - factory interface
86075
+ * @export
86076
+ */
86077
+ export const LaunchersV2024ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
86078
+ const localVarFp = LaunchersV2024ApiFp(configuration)
86079
+ return {
86080
+ /**
86081
+ * Create a Launcher with given information
86082
+ * @summary Create launcher
86083
+ * @param {LaunchersV2024ApiCreateLauncherRequest} requestParameters Request parameters.
86084
+ * @param {*} [axiosOptions] Override http request option.
86085
+ * @throws {RequiredError}
86086
+ */
86087
+ createLauncher(requestParameters: LaunchersV2024ApiCreateLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<LauncherV2024> {
86088
+ return localVarFp.createLauncher(requestParameters.launcherRequestV2024, axiosOptions).then((request) => request(axios, basePath));
86089
+ },
86090
+ /**
86091
+ * Delete the given Launcher ID
86092
+ * @summary Delete launcher
86093
+ * @param {LaunchersV2024ApiDeleteLauncherRequest} requestParameters Request parameters.
86094
+ * @param {*} [axiosOptions] Override http request option.
86095
+ * @throws {RequiredError}
86096
+ */
86097
+ deleteLauncher(requestParameters: LaunchersV2024ApiDeleteLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
86098
+ return localVarFp.deleteLauncher(requestParameters.launcherID, axiosOptions).then((request) => request(axios, basePath));
86099
+ },
86100
+ /**
86101
+ * Get details for the given Launcher ID
86102
+ * @summary Get launcher by id
86103
+ * @param {LaunchersV2024ApiGetLauncherRequest} requestParameters Request parameters.
86104
+ * @param {*} [axiosOptions] Override http request option.
86105
+ * @throws {RequiredError}
86106
+ */
86107
+ getLauncher(requestParameters: LaunchersV2024ApiGetLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<LauncherV2024> {
86108
+ return localVarFp.getLauncher(requestParameters.launcherID, axiosOptions).then((request) => request(axios, basePath));
86109
+ },
86110
+ /**
86111
+ * Return a list of Launchers for the authenticated tenant
86112
+ * @summary List all launchers for tenant
86113
+ * @param {LaunchersV2024ApiGetLaunchersRequest} requestParameters Request parameters.
86114
+ * @param {*} [axiosOptions] Override http request option.
86115
+ * @throws {RequiredError}
86116
+ */
86117
+ getLaunchers(requestParameters: LaunchersV2024ApiGetLaunchersRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetLaunchers200ResponseV2024> {
86118
+ return localVarFp.getLaunchers(requestParameters.filters, requestParameters.next, requestParameters.limit, axiosOptions).then((request) => request(axios, basePath));
86119
+ },
86120
+ /**
86121
+ * Replace the given Launcher ID with given payload
86122
+ * @summary Replace launcher
86123
+ * @param {LaunchersV2024ApiPutLauncherRequest} requestParameters Request parameters.
86124
+ * @param {*} [axiosOptions] Override http request option.
86125
+ * @throws {RequiredError}
86126
+ */
86127
+ putLauncher(requestParameters: LaunchersV2024ApiPutLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<LauncherV2024> {
86128
+ return localVarFp.putLauncher(requestParameters.launcherID, requestParameters.launcherRequestV2024, axiosOptions).then((request) => request(axios, basePath));
86129
+ },
86130
+ /**
86131
+ * Launch the given Launcher ID
86132
+ * @summary Launch a launcher
86133
+ * @param {LaunchersV2024ApiStartLauncherRequest} requestParameters Request parameters.
86134
+ * @param {*} [axiosOptions] Override http request option.
86135
+ * @throws {RequiredError}
86136
+ */
86137
+ startLauncher(requestParameters: LaunchersV2024ApiStartLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<StartLauncher200ResponseV2024> {
86138
+ return localVarFp.startLauncher(requestParameters.launcherID, axiosOptions).then((request) => request(axios, basePath));
86139
+ },
86140
+ };
86141
+ };
86142
+
86143
+ /**
86144
+ * Request parameters for createLauncher operation in LaunchersV2024Api.
86145
+ * @export
86146
+ * @interface LaunchersV2024ApiCreateLauncherRequest
86147
+ */
86148
+ export interface LaunchersV2024ApiCreateLauncherRequest {
86149
+ /**
86150
+ * Payload to create a Launcher
86151
+ * @type {LauncherRequestV2024}
86152
+ * @memberof LaunchersV2024ApiCreateLauncher
86153
+ */
86154
+ readonly launcherRequestV2024: LauncherRequestV2024
86155
+ }
86156
+
86157
+ /**
86158
+ * Request parameters for deleteLauncher operation in LaunchersV2024Api.
86159
+ * @export
86160
+ * @interface LaunchersV2024ApiDeleteLauncherRequest
86161
+ */
86162
+ export interface LaunchersV2024ApiDeleteLauncherRequest {
86163
+ /**
86164
+ * ID of the Launcher to be deleted
86165
+ * @type {string}
86166
+ * @memberof LaunchersV2024ApiDeleteLauncher
86167
+ */
86168
+ readonly launcherID: string
86169
+ }
86170
+
86171
+ /**
86172
+ * Request parameters for getLauncher operation in LaunchersV2024Api.
86173
+ * @export
86174
+ * @interface LaunchersV2024ApiGetLauncherRequest
86175
+ */
86176
+ export interface LaunchersV2024ApiGetLauncherRequest {
86177
+ /**
86178
+ * ID of the Launcher to be retrieved
86179
+ * @type {string}
86180
+ * @memberof LaunchersV2024ApiGetLauncher
86181
+ */
86182
+ readonly launcherID: string
86183
+ }
86184
+
86185
+ /**
86186
+ * Request parameters for getLaunchers operation in LaunchersV2024Api.
86187
+ * @export
86188
+ * @interface LaunchersV2024ApiGetLaunchersRequest
86189
+ */
86190
+ export interface LaunchersV2024ApiGetLaunchersRequest {
86191
+ /**
86192
+ * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **description**: *sw* **disabled**: *eq* **name**: *sw*
86193
+ * @type {string}
86194
+ * @memberof LaunchersV2024ApiGetLaunchers
86195
+ */
86196
+ readonly filters?: string
86197
+
86198
+ /**
86199
+ * Pagination marker
86200
+ * @type {string}
86201
+ * @memberof LaunchersV2024ApiGetLaunchers
86202
+ */
86203
+ readonly next?: string
86204
+
86205
+ /**
86206
+ * Number of Launchers to return
86207
+ * @type {number}
86208
+ * @memberof LaunchersV2024ApiGetLaunchers
86209
+ */
86210
+ readonly limit?: number
86211
+ }
86212
+
86213
+ /**
86214
+ * Request parameters for putLauncher operation in LaunchersV2024Api.
86215
+ * @export
86216
+ * @interface LaunchersV2024ApiPutLauncherRequest
86217
+ */
86218
+ export interface LaunchersV2024ApiPutLauncherRequest {
86219
+ /**
86220
+ * ID of the Launcher to be replaced
86221
+ * @type {string}
86222
+ * @memberof LaunchersV2024ApiPutLauncher
86223
+ */
86224
+ readonly launcherID: string
86225
+
86226
+ /**
86227
+ * Payload to replace Launcher
86228
+ * @type {LauncherRequestV2024}
86229
+ * @memberof LaunchersV2024ApiPutLauncher
86230
+ */
86231
+ readonly launcherRequestV2024: LauncherRequestV2024
86232
+ }
86233
+
86234
+ /**
86235
+ * Request parameters for startLauncher operation in LaunchersV2024Api.
86236
+ * @export
86237
+ * @interface LaunchersV2024ApiStartLauncherRequest
86238
+ */
86239
+ export interface LaunchersV2024ApiStartLauncherRequest {
86240
+ /**
86241
+ * ID of the Launcher to be launched
86242
+ * @type {string}
86243
+ * @memberof LaunchersV2024ApiStartLauncher
86244
+ */
86245
+ readonly launcherID: string
86246
+ }
86247
+
86248
+ /**
86249
+ * LaunchersV2024Api - object-oriented interface
86250
+ * @export
86251
+ * @class LaunchersV2024Api
86252
+ * @extends {BaseAPI}
86253
+ */
86254
+ export class LaunchersV2024Api extends BaseAPI {
86255
+ /**
86256
+ * Create a Launcher with given information
86257
+ * @summary Create launcher
86258
+ * @param {LaunchersV2024ApiCreateLauncherRequest} requestParameters Request parameters.
86259
+ * @param {*} [axiosOptions] Override http request option.
86260
+ * @throws {RequiredError}
86261
+ * @memberof LaunchersV2024Api
86262
+ */
86263
+ public createLauncher(requestParameters: LaunchersV2024ApiCreateLauncherRequest, axiosOptions?: RawAxiosRequestConfig) {
86264
+ return LaunchersV2024ApiFp(this.configuration).createLauncher(requestParameters.launcherRequestV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
86265
+ }
86266
+
86267
+ /**
86268
+ * Delete the given Launcher ID
86269
+ * @summary Delete launcher
86270
+ * @param {LaunchersV2024ApiDeleteLauncherRequest} requestParameters Request parameters.
86271
+ * @param {*} [axiosOptions] Override http request option.
86272
+ * @throws {RequiredError}
86273
+ * @memberof LaunchersV2024Api
86274
+ */
86275
+ public deleteLauncher(requestParameters: LaunchersV2024ApiDeleteLauncherRequest, axiosOptions?: RawAxiosRequestConfig) {
86276
+ return LaunchersV2024ApiFp(this.configuration).deleteLauncher(requestParameters.launcherID, axiosOptions).then((request) => request(this.axios, this.basePath));
86277
+ }
86278
+
86279
+ /**
86280
+ * Get details for the given Launcher ID
86281
+ * @summary Get launcher by id
86282
+ * @param {LaunchersV2024ApiGetLauncherRequest} requestParameters Request parameters.
86283
+ * @param {*} [axiosOptions] Override http request option.
86284
+ * @throws {RequiredError}
86285
+ * @memberof LaunchersV2024Api
86286
+ */
86287
+ public getLauncher(requestParameters: LaunchersV2024ApiGetLauncherRequest, axiosOptions?: RawAxiosRequestConfig) {
86288
+ return LaunchersV2024ApiFp(this.configuration).getLauncher(requestParameters.launcherID, axiosOptions).then((request) => request(this.axios, this.basePath));
86289
+ }
86290
+
86291
+ /**
86292
+ * Return a list of Launchers for the authenticated tenant
86293
+ * @summary List all launchers for tenant
86294
+ * @param {LaunchersV2024ApiGetLaunchersRequest} requestParameters Request parameters.
86295
+ * @param {*} [axiosOptions] Override http request option.
86296
+ * @throws {RequiredError}
86297
+ * @memberof LaunchersV2024Api
86298
+ */
86299
+ public getLaunchers(requestParameters: LaunchersV2024ApiGetLaunchersRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
86300
+ return LaunchersV2024ApiFp(this.configuration).getLaunchers(requestParameters.filters, requestParameters.next, requestParameters.limit, axiosOptions).then((request) => request(this.axios, this.basePath));
86301
+ }
86302
+
86303
+ /**
86304
+ * Replace the given Launcher ID with given payload
86305
+ * @summary Replace launcher
86306
+ * @param {LaunchersV2024ApiPutLauncherRequest} requestParameters Request parameters.
86307
+ * @param {*} [axiosOptions] Override http request option.
86308
+ * @throws {RequiredError}
86309
+ * @memberof LaunchersV2024Api
86310
+ */
86311
+ public putLauncher(requestParameters: LaunchersV2024ApiPutLauncherRequest, axiosOptions?: RawAxiosRequestConfig) {
86312
+ return LaunchersV2024ApiFp(this.configuration).putLauncher(requestParameters.launcherID, requestParameters.launcherRequestV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
86313
+ }
86314
+
86315
+ /**
86316
+ * Launch the given Launcher ID
86317
+ * @summary Launch a launcher
86318
+ * @param {LaunchersV2024ApiStartLauncherRequest} requestParameters Request parameters.
86319
+ * @param {*} [axiosOptions] Override http request option.
86320
+ * @throws {RequiredError}
86321
+ * @memberof LaunchersV2024Api
86322
+ */
86323
+ public startLauncher(requestParameters: LaunchersV2024ApiStartLauncherRequest, axiosOptions?: RawAxiosRequestConfig) {
86324
+ return LaunchersV2024ApiFp(this.configuration).startLauncher(requestParameters.launcherID, axiosOptions).then((request) => request(this.axios, this.basePath));
86325
+ }
86326
+ }
86327
+
86328
+
86329
+
84853
86330
  /**
84854
86331
  * LifecycleStatesV2024Api - axios parameter creator
84855
86332
  * @export
@@ -85011,7 +86488,7 @@ export const LifecycleStatesV2024ApiAxiosParamCreator = function (configuration?
85011
86488
  * @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.
85012
86489
  * @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.
85013
86490
  * @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&#x3D;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.
85014
- * @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**
86491
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
85015
86492
  * @param {*} [axiosOptions] Override http request option.
85016
86493
  * @throws {RequiredError}
85017
86494
  */
@@ -85233,7 +86710,7 @@ export const LifecycleStatesV2024ApiFp = function(configuration?: Configuration)
85233
86710
  * @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.
85234
86711
  * @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.
85235
86712
  * @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&#x3D;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.
85236
- * @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**
86713
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
85237
86714
  * @param {*} [axiosOptions] Override http request option.
85238
86715
  * @throws {RequiredError}
85239
86716
  */
@@ -85443,7 +86920,7 @@ export interface LifecycleStatesV2024ApiGetLifecycleStatesRequest {
85443
86920
  readonly count?: boolean
85444
86921
 
85445
86922
  /**
85446
- * 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**
86923
+ * Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
85447
86924
  * @type {string}
85448
86925
  * @memberof LifecycleStatesV2024ApiGetLifecycleStates
85449
86926
  */
@@ -87754,8 +89231,8 @@ export const MachineIdentitiesV2024ApiAxiosParamCreator = function (configuratio
87754
89231
  /**
87755
89232
  * This API returns a list of machine identities.
87756
89233
  * @summary List machine identities
87757
- * @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*
87758
- * @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**
89234
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
89235
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name, owners.primaryIdentity.name, source.name, created, modified**
87759
89236
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
87760
89237
  * @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&#x3D;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.
87761
89238
  * @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.
@@ -87933,8 +89410,8 @@ export const MachineIdentitiesV2024ApiFp = function(configuration?: Configuratio
87933
89410
  /**
87934
89411
  * This API returns a list of machine identities.
87935
89412
  * @summary List machine identities
87936
- * @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*
87937
- * @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**
89413
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
89414
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name, owners.primaryIdentity.name, source.name, created, modified**
87938
89415
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
87939
89416
  * @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&#x3D;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.
87940
89417
  * @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.
@@ -88096,14 +89573,14 @@ export interface MachineIdentitiesV2024ApiGetMachineIdentityRequest {
88096
89573
  */
88097
89574
  export interface MachineIdentitiesV2024ApiListMachineIdentitiesRequest {
88098
89575
  /**
88099
- * 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*
89576
+ * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
88100
89577
  * @type {string}
88101
89578
  * @memberof MachineIdentitiesV2024ApiListMachineIdentities
88102
89579
  */
88103
89580
  readonly filters?: string
88104
89581
 
88105
89582
  /**
88106
- * 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**
89583
+ * Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name, owners.primaryIdentity.name, source.name, created, modified**
88107
89584
  * @type {string}
88108
89585
  * @memberof MachineIdentitiesV2024ApiListMachineIdentities
88109
89586
  */
@@ -106925,13 +108402,13 @@ export const SODViolationsV2024ApiAxiosParamCreator = function (configuration?:
106925
108402
  /**
106926
108403
  * This API initiates a SOD policy verification asynchronously.
106927
108404
  * @summary Check sod violations
106928
- * @param {IdentityWithNewAccess1V2024} identityWithNewAccess1V2024
108405
+ * @param {IdentityWithNewAccessV2024} identityWithNewAccessV2024
106929
108406
  * @param {*} [axiosOptions] Override http request option.
106930
108407
  * @throws {RequiredError}
106931
108408
  */
106932
- startViolationCheck: async (identityWithNewAccess1V2024: IdentityWithNewAccess1V2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
106933
- // verify required parameter 'identityWithNewAccess1V2024' is not null or undefined
106934
- assertParamExists('startViolationCheck', 'identityWithNewAccess1V2024', identityWithNewAccess1V2024)
108409
+ startViolationCheck: async (identityWithNewAccessV2024: IdentityWithNewAccessV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
108410
+ // verify required parameter 'identityWithNewAccessV2024' is not null or undefined
108411
+ assertParamExists('startViolationCheck', 'identityWithNewAccessV2024', identityWithNewAccessV2024)
106935
108412
  const localVarPath = `/sod-violations/check`;
106936
108413
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
106937
108414
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -106959,7 +108436,7 @@ export const SODViolationsV2024ApiAxiosParamCreator = function (configuration?:
106959
108436
  setSearchParams(localVarUrlObj, localVarQueryParameter);
106960
108437
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
106961
108438
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
106962
- localVarRequestOptions.data = serializeDataIfNeeded(identityWithNewAccess1V2024, localVarRequestOptions, configuration)
108439
+ localVarRequestOptions.data = serializeDataIfNeeded(identityWithNewAccessV2024, localVarRequestOptions, configuration)
106963
108440
 
106964
108441
  return {
106965
108442
  url: toPathString(localVarUrlObj),
@@ -106992,12 +108469,12 @@ export const SODViolationsV2024ApiFp = function(configuration?: Configuration) {
106992
108469
  /**
106993
108470
  * This API initiates a SOD policy verification asynchronously.
106994
108471
  * @summary Check sod violations
106995
- * @param {IdentityWithNewAccess1V2024} identityWithNewAccess1V2024
108472
+ * @param {IdentityWithNewAccessV2024} identityWithNewAccessV2024
106996
108473
  * @param {*} [axiosOptions] Override http request option.
106997
108474
  * @throws {RequiredError}
106998
108475
  */
106999
- async startViolationCheck(identityWithNewAccess1V2024: IdentityWithNewAccess1V2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SodViolationCheckV2024>> {
107000
- const localVarAxiosArgs = await localVarAxiosParamCreator.startViolationCheck(identityWithNewAccess1V2024, axiosOptions);
108476
+ async startViolationCheck(identityWithNewAccessV2024: IdentityWithNewAccessV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SodViolationCheckV2024>> {
108477
+ const localVarAxiosArgs = await localVarAxiosParamCreator.startViolationCheck(identityWithNewAccessV2024, axiosOptions);
107001
108478
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
107002
108479
  const localVarOperationServerBasePath = operationServerMap['SODViolationsV2024Api.startViolationCheck']?.[localVarOperationServerIndex]?.url;
107003
108480
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -107030,7 +108507,7 @@ export const SODViolationsV2024ApiFactory = function (configuration?: Configurat
107030
108507
  * @throws {RequiredError}
107031
108508
  */
107032
108509
  startViolationCheck(requestParameters: SODViolationsV2024ApiStartViolationCheckRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SodViolationCheckV2024> {
107033
- return localVarFp.startViolationCheck(requestParameters.identityWithNewAccess1V2024, axiosOptions).then((request) => request(axios, basePath));
108510
+ return localVarFp.startViolationCheck(requestParameters.identityWithNewAccessV2024, axiosOptions).then((request) => request(axios, basePath));
107034
108511
  },
107035
108512
  };
107036
108513
  };
@@ -107057,10 +108534,10 @@ export interface SODViolationsV2024ApiStartPredictSodViolationsRequest {
107057
108534
  export interface SODViolationsV2024ApiStartViolationCheckRequest {
107058
108535
  /**
107059
108536
  *
107060
- * @type {IdentityWithNewAccess1V2024}
108537
+ * @type {IdentityWithNewAccessV2024}
107061
108538
  * @memberof SODViolationsV2024ApiStartViolationCheck
107062
108539
  */
107063
- readonly identityWithNewAccess1V2024: IdentityWithNewAccess1V2024
108540
+ readonly identityWithNewAccessV2024: IdentityWithNewAccessV2024
107064
108541
  }
107065
108542
 
107066
108543
  /**
@@ -107091,7 +108568,7 @@ export class SODViolationsV2024Api extends BaseAPI {
107091
108568
  * @memberof SODViolationsV2024Api
107092
108569
  */
107093
108570
  public startViolationCheck(requestParameters: SODViolationsV2024ApiStartViolationCheckRequest, axiosOptions?: RawAxiosRequestConfig) {
107094
- return SODViolationsV2024ApiFp(this.configuration).startViolationCheck(requestParameters.identityWithNewAccess1V2024, axiosOptions).then((request) => request(this.axios, this.basePath));
108571
+ return SODViolationsV2024ApiFp(this.configuration).startViolationCheck(requestParameters.identityWithNewAccessV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
107095
108572
  }
107096
108573
  }
107097
108574
 
@@ -119329,6 +120806,464 @@ export const PutTaggedObjectTypeV2024 = {
119329
120806
  export type PutTaggedObjectTypeV2024 = typeof PutTaggedObjectTypeV2024[keyof typeof PutTaggedObjectTypeV2024];
119330
120807
 
119331
120808
 
120809
+ /**
120810
+ * TagsV2024Api - axios parameter creator
120811
+ * @export
120812
+ */
120813
+ export const TagsV2024ApiAxiosParamCreator = function (configuration?: Configuration) {
120814
+ return {
120815
+ /**
120816
+ * This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
120817
+ * @summary Create tag
120818
+ * @param {TagV2024} tagV2024
120819
+ * @param {*} [axiosOptions] Override http request option.
120820
+ * @throws {RequiredError}
120821
+ */
120822
+ createTag: async (tagV2024: TagV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
120823
+ // verify required parameter 'tagV2024' is not null or undefined
120824
+ assertParamExists('createTag', 'tagV2024', tagV2024)
120825
+ const localVarPath = `/tags`;
120826
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
120827
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
120828
+ let baseOptions;
120829
+ if (configuration) {
120830
+ baseOptions = configuration.baseOptions;
120831
+ }
120832
+
120833
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
120834
+ const localVarHeaderParameter = {} as any;
120835
+ const localVarQueryParameter = {} as any;
120836
+
120837
+ // authentication userAuth required
120838
+ // oauth required
120839
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
120840
+
120841
+ // authentication userAuth required
120842
+ // oauth required
120843
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
120844
+
120845
+
120846
+
120847
+ localVarHeaderParameter['Content-Type'] = 'application/json';
120848
+
120849
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
120850
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
120851
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
120852
+ localVarRequestOptions.data = serializeDataIfNeeded(tagV2024, localVarRequestOptions, configuration)
120853
+
120854
+ return {
120855
+ url: toPathString(localVarUrlObj),
120856
+ axiosOptions: localVarRequestOptions,
120857
+ };
120858
+ },
120859
+ /**
120860
+ * This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
120861
+ * @summary Delete tag
120862
+ * @param {string} id The ID of the object reference to delete.
120863
+ * @param {*} [axiosOptions] Override http request option.
120864
+ * @throws {RequiredError}
120865
+ */
120866
+ deleteTagById: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
120867
+ // verify required parameter 'id' is not null or undefined
120868
+ assertParamExists('deleteTagById', 'id', id)
120869
+ const localVarPath = `/tags/{id}`
120870
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
120871
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
120872
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
120873
+ let baseOptions;
120874
+ if (configuration) {
120875
+ baseOptions = configuration.baseOptions;
120876
+ }
120877
+
120878
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};
120879
+ const localVarHeaderParameter = {} as any;
120880
+ const localVarQueryParameter = {} as any;
120881
+
120882
+ // authentication userAuth required
120883
+ // oauth required
120884
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
120885
+
120886
+ // authentication userAuth required
120887
+ // oauth required
120888
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
120889
+
120890
+
120891
+
120892
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
120893
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
120894
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
120895
+
120896
+ return {
120897
+ url: toPathString(localVarUrlObj),
120898
+ axiosOptions: localVarRequestOptions,
120899
+ };
120900
+ },
120901
+ /**
120902
+ * Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
120903
+ * @summary Get tag by id
120904
+ * @param {string} id The ID of the object reference to retrieve.
120905
+ * @param {*} [axiosOptions] Override http request option.
120906
+ * @throws {RequiredError}
120907
+ */
120908
+ getTagById: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
120909
+ // verify required parameter 'id' is not null or undefined
120910
+ assertParamExists('getTagById', 'id', id)
120911
+ const localVarPath = `/tags/{id}`
120912
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
120913
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
120914
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
120915
+ let baseOptions;
120916
+ if (configuration) {
120917
+ baseOptions = configuration.baseOptions;
120918
+ }
120919
+
120920
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
120921
+ const localVarHeaderParameter = {} as any;
120922
+ const localVarQueryParameter = {} as any;
120923
+
120924
+ // authentication userAuth required
120925
+ // oauth required
120926
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
120927
+
120928
+ // authentication userAuth required
120929
+ // oauth required
120930
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
120931
+
120932
+
120933
+
120934
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
120935
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
120936
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
120937
+
120938
+ return {
120939
+ url: toPathString(localVarUrlObj),
120940
+ axiosOptions: localVarRequestOptions,
120941
+ };
120942
+ },
120943
+ /**
120944
+ * This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
120945
+ * @summary List tags
120946
+ * @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.
120947
+ * @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.
120948
+ * @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&#x3D;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.
120949
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw*
120950
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, created, modified**
120951
+ * @param {*} [axiosOptions] Override http request option.
120952
+ * @throws {RequiredError}
120953
+ */
120954
+ listTags: async (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
120955
+ const localVarPath = `/tags`;
120956
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
120957
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
120958
+ let baseOptions;
120959
+ if (configuration) {
120960
+ baseOptions = configuration.baseOptions;
120961
+ }
120962
+
120963
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
120964
+ const localVarHeaderParameter = {} as any;
120965
+ const localVarQueryParameter = {} as any;
120966
+
120967
+ // authentication userAuth required
120968
+ // oauth required
120969
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
120970
+
120971
+ // authentication userAuth required
120972
+ // oauth required
120973
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
120974
+
120975
+ if (limit !== undefined) {
120976
+ localVarQueryParameter['limit'] = limit;
120977
+ }
120978
+
120979
+ if (offset !== undefined) {
120980
+ localVarQueryParameter['offset'] = offset;
120981
+ }
120982
+
120983
+ if (count !== undefined) {
120984
+ localVarQueryParameter['count'] = count;
120985
+ }
120986
+
120987
+ if (filters !== undefined) {
120988
+ localVarQueryParameter['filters'] = filters;
120989
+ }
120990
+
120991
+ if (sorters !== undefined) {
120992
+ localVarQueryParameter['sorters'] = sorters;
120993
+ }
120994
+
120995
+
120996
+
120997
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
120998
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
120999
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
121000
+
121001
+ return {
121002
+ url: toPathString(localVarUrlObj),
121003
+ axiosOptions: localVarRequestOptions,
121004
+ };
121005
+ },
121006
+ }
121007
+ };
121008
+
121009
+ /**
121010
+ * TagsV2024Api - functional programming interface
121011
+ * @export
121012
+ */
121013
+ export const TagsV2024ApiFp = function(configuration?: Configuration) {
121014
+ const localVarAxiosParamCreator = TagsV2024ApiAxiosParamCreator(configuration)
121015
+ return {
121016
+ /**
121017
+ * This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
121018
+ * @summary Create tag
121019
+ * @param {TagV2024} tagV2024
121020
+ * @param {*} [axiosOptions] Override http request option.
121021
+ * @throws {RequiredError}
121022
+ */
121023
+ async createTag(tagV2024: TagV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagV2024>> {
121024
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createTag(tagV2024, axiosOptions);
121025
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
121026
+ const localVarOperationServerBasePath = operationServerMap['TagsV2024Api.createTag']?.[localVarOperationServerIndex]?.url;
121027
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
121028
+ },
121029
+ /**
121030
+ * This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
121031
+ * @summary Delete tag
121032
+ * @param {string} id The ID of the object reference to delete.
121033
+ * @param {*} [axiosOptions] Override http request option.
121034
+ * @throws {RequiredError}
121035
+ */
121036
+ async deleteTagById(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
121037
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteTagById(id, axiosOptions);
121038
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
121039
+ const localVarOperationServerBasePath = operationServerMap['TagsV2024Api.deleteTagById']?.[localVarOperationServerIndex]?.url;
121040
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
121041
+ },
121042
+ /**
121043
+ * Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
121044
+ * @summary Get tag by id
121045
+ * @param {string} id The ID of the object reference to retrieve.
121046
+ * @param {*} [axiosOptions] Override http request option.
121047
+ * @throws {RequiredError}
121048
+ */
121049
+ async getTagById(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagV2024>> {
121050
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getTagById(id, axiosOptions);
121051
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
121052
+ const localVarOperationServerBasePath = operationServerMap['TagsV2024Api.getTagById']?.[localVarOperationServerIndex]?.url;
121053
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
121054
+ },
121055
+ /**
121056
+ * This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
121057
+ * @summary List tags
121058
+ * @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.
121059
+ * @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.
121060
+ * @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&#x3D;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.
121061
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw*
121062
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, created, modified**
121063
+ * @param {*} [axiosOptions] Override http request option.
121064
+ * @throws {RequiredError}
121065
+ */
121066
+ async listTags(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TagV2024>>> {
121067
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listTags(limit, offset, count, filters, sorters, axiosOptions);
121068
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
121069
+ const localVarOperationServerBasePath = operationServerMap['TagsV2024Api.listTags']?.[localVarOperationServerIndex]?.url;
121070
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
121071
+ },
121072
+ }
121073
+ };
121074
+
121075
+ /**
121076
+ * TagsV2024Api - factory interface
121077
+ * @export
121078
+ */
121079
+ export const TagsV2024ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
121080
+ const localVarFp = TagsV2024ApiFp(configuration)
121081
+ return {
121082
+ /**
121083
+ * This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
121084
+ * @summary Create tag
121085
+ * @param {TagsV2024ApiCreateTagRequest} requestParameters Request parameters.
121086
+ * @param {*} [axiosOptions] Override http request option.
121087
+ * @throws {RequiredError}
121088
+ */
121089
+ createTag(requestParameters: TagsV2024ApiCreateTagRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TagV2024> {
121090
+ return localVarFp.createTag(requestParameters.tagV2024, axiosOptions).then((request) => request(axios, basePath));
121091
+ },
121092
+ /**
121093
+ * This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
121094
+ * @summary Delete tag
121095
+ * @param {TagsV2024ApiDeleteTagByIdRequest} requestParameters Request parameters.
121096
+ * @param {*} [axiosOptions] Override http request option.
121097
+ * @throws {RequiredError}
121098
+ */
121099
+ deleteTagById(requestParameters: TagsV2024ApiDeleteTagByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
121100
+ return localVarFp.deleteTagById(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
121101
+ },
121102
+ /**
121103
+ * Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
121104
+ * @summary Get tag by id
121105
+ * @param {TagsV2024ApiGetTagByIdRequest} requestParameters Request parameters.
121106
+ * @param {*} [axiosOptions] Override http request option.
121107
+ * @throws {RequiredError}
121108
+ */
121109
+ getTagById(requestParameters: TagsV2024ApiGetTagByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TagV2024> {
121110
+ return localVarFp.getTagById(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
121111
+ },
121112
+ /**
121113
+ * This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
121114
+ * @summary List tags
121115
+ * @param {TagsV2024ApiListTagsRequest} requestParameters Request parameters.
121116
+ * @param {*} [axiosOptions] Override http request option.
121117
+ * @throws {RequiredError}
121118
+ */
121119
+ listTags(requestParameters: TagsV2024ApiListTagsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TagV2024>> {
121120
+ return localVarFp.listTags(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(axios, basePath));
121121
+ },
121122
+ };
121123
+ };
121124
+
121125
+ /**
121126
+ * Request parameters for createTag operation in TagsV2024Api.
121127
+ * @export
121128
+ * @interface TagsV2024ApiCreateTagRequest
121129
+ */
121130
+ export interface TagsV2024ApiCreateTagRequest {
121131
+ /**
121132
+ *
121133
+ * @type {TagV2024}
121134
+ * @memberof TagsV2024ApiCreateTag
121135
+ */
121136
+ readonly tagV2024: TagV2024
121137
+ }
121138
+
121139
+ /**
121140
+ * Request parameters for deleteTagById operation in TagsV2024Api.
121141
+ * @export
121142
+ * @interface TagsV2024ApiDeleteTagByIdRequest
121143
+ */
121144
+ export interface TagsV2024ApiDeleteTagByIdRequest {
121145
+ /**
121146
+ * The ID of the object reference to delete.
121147
+ * @type {string}
121148
+ * @memberof TagsV2024ApiDeleteTagById
121149
+ */
121150
+ readonly id: string
121151
+ }
121152
+
121153
+ /**
121154
+ * Request parameters for getTagById operation in TagsV2024Api.
121155
+ * @export
121156
+ * @interface TagsV2024ApiGetTagByIdRequest
121157
+ */
121158
+ export interface TagsV2024ApiGetTagByIdRequest {
121159
+ /**
121160
+ * The ID of the object reference to retrieve.
121161
+ * @type {string}
121162
+ * @memberof TagsV2024ApiGetTagById
121163
+ */
121164
+ readonly id: string
121165
+ }
121166
+
121167
+ /**
121168
+ * Request parameters for listTags operation in TagsV2024Api.
121169
+ * @export
121170
+ * @interface TagsV2024ApiListTagsRequest
121171
+ */
121172
+ export interface TagsV2024ApiListTagsRequest {
121173
+ /**
121174
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
121175
+ * @type {number}
121176
+ * @memberof TagsV2024ApiListTags
121177
+ */
121178
+ readonly limit?: number
121179
+
121180
+ /**
121181
+ * 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.
121182
+ * @type {number}
121183
+ * @memberof TagsV2024ApiListTags
121184
+ */
121185
+ readonly offset?: number
121186
+
121187
+ /**
121188
+ * 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&#x3D;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.
121189
+ * @type {boolean}
121190
+ * @memberof TagsV2024ApiListTags
121191
+ */
121192
+ readonly count?: boolean
121193
+
121194
+ /**
121195
+ * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw*
121196
+ * @type {string}
121197
+ * @memberof TagsV2024ApiListTags
121198
+ */
121199
+ readonly filters?: string
121200
+
121201
+ /**
121202
+ * Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, created, modified**
121203
+ * @type {string}
121204
+ * @memberof TagsV2024ApiListTags
121205
+ */
121206
+ readonly sorters?: string
121207
+ }
121208
+
121209
+ /**
121210
+ * TagsV2024Api - object-oriented interface
121211
+ * @export
121212
+ * @class TagsV2024Api
121213
+ * @extends {BaseAPI}
121214
+ */
121215
+ export class TagsV2024Api extends BaseAPI {
121216
+ /**
121217
+ * This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
121218
+ * @summary Create tag
121219
+ * @param {TagsV2024ApiCreateTagRequest} requestParameters Request parameters.
121220
+ * @param {*} [axiosOptions] Override http request option.
121221
+ * @throws {RequiredError}
121222
+ * @memberof TagsV2024Api
121223
+ */
121224
+ public createTag(requestParameters: TagsV2024ApiCreateTagRequest, axiosOptions?: RawAxiosRequestConfig) {
121225
+ return TagsV2024ApiFp(this.configuration).createTag(requestParameters.tagV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
121226
+ }
121227
+
121228
+ /**
121229
+ * This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
121230
+ * @summary Delete tag
121231
+ * @param {TagsV2024ApiDeleteTagByIdRequest} requestParameters Request parameters.
121232
+ * @param {*} [axiosOptions] Override http request option.
121233
+ * @throws {RequiredError}
121234
+ * @memberof TagsV2024Api
121235
+ */
121236
+ public deleteTagById(requestParameters: TagsV2024ApiDeleteTagByIdRequest, axiosOptions?: RawAxiosRequestConfig) {
121237
+ return TagsV2024ApiFp(this.configuration).deleteTagById(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
121238
+ }
121239
+
121240
+ /**
121241
+ * Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
121242
+ * @summary Get tag by id
121243
+ * @param {TagsV2024ApiGetTagByIdRequest} requestParameters Request parameters.
121244
+ * @param {*} [axiosOptions] Override http request option.
121245
+ * @throws {RequiredError}
121246
+ * @memberof TagsV2024Api
121247
+ */
121248
+ public getTagById(requestParameters: TagsV2024ApiGetTagByIdRequest, axiosOptions?: RawAxiosRequestConfig) {
121249
+ return TagsV2024ApiFp(this.configuration).getTagById(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
121250
+ }
121251
+
121252
+ /**
121253
+ * This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
121254
+ * @summary List tags
121255
+ * @param {TagsV2024ApiListTagsRequest} requestParameters Request parameters.
121256
+ * @param {*} [axiosOptions] Override http request option.
121257
+ * @throws {RequiredError}
121258
+ * @memberof TagsV2024Api
121259
+ */
121260
+ public listTags(requestParameters: TagsV2024ApiListTagsRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
121261
+ return TagsV2024ApiFp(this.configuration).listTags(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(this.axios, this.basePath));
121262
+ }
121263
+ }
121264
+
121265
+
121266
+
119332
121267
  /**
119333
121268
  * TaskManagementV2024Api - axios parameter creator
119334
121269
  * @export