sailpoint-api-client 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/beta/.openapi-generator/FILES +1 -0
- package/beta/README.md +2 -2
- package/beta/api.ts +1675 -614
- package/beta/common.ts +2 -1
- package/beta/package.json +1 -1
- package/cc/.openapi-generator/FILES +1 -0
- package/cc/README.md +2 -2
- package/cc/api.ts +56 -46
- package/cc/common.ts +2 -1
- package/cc/package.json +1 -1
- package/configuration.ts +3 -3
- package/dist/beta/api.d.ts +1213 -499
- package/dist/beta/api.js +1258 -490
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +2 -1
- package/dist/beta/common.js.map +1 -1
- package/dist/cc/api.d.ts +40 -40
- package/dist/cc/api.js +31 -26
- package/dist/cc/api.js.map +1 -1
- package/dist/cc/common.js +2 -1
- package/dist/cc/common.js.map +1 -1
- package/dist/configuration.js +3 -3
- package/dist/configuration.js.map +1 -1
- package/dist/index.spec.d.ts +1 -0
- package/dist/index.spec.js +217 -0
- package/dist/index.spec.js.map +1 -0
- package/dist/paginator.js +2 -2
- package/dist/paginator.js.map +1 -1
- package/dist/v2/common.js +2 -1
- package/dist/v2/common.js.map +1 -1
- package/dist/v3/api.d.ts +2929 -594
- package/dist/v3/api.js +4168 -1698
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +2 -1
- package/dist/v3/common.js.map +1 -1
- package/index.spec.ts +119 -0
- package/package.json +12 -2
- package/paginator.ts +2 -2
- package/readme.md +1 -1
- package/tsconfig.json +2 -1
- package/v2/.openapi-generator/FILES +1 -0
- package/v2/README.md +2 -2
- package/v2/common.ts +2 -1
- package/v2/package.json +1 -1
- package/v3/.openapi-generator/FILES +1 -0
- package/v3/README.md +2 -2
- package/v3/api.ts +5722 -2238
- package/v3/common.ts +2 -1
- package/v3/package.json +1 -1
package/beta/api.ts
CHANGED
|
@@ -822,10 +822,10 @@ export interface AccessRequestConfigBeta {
|
|
|
822
822
|
'approvalReminderAndEscalationConfig'?: ApprovalReminderAndEscalationConfigBeta;
|
|
823
823
|
/**
|
|
824
824
|
*
|
|
825
|
-
* @type {
|
|
825
|
+
* @type {EntitlementRequestConfig1Beta}
|
|
826
826
|
* @memberof AccessRequestConfigBeta
|
|
827
827
|
*/
|
|
828
|
-
'entitlementRequestConfig'?:
|
|
828
|
+
'entitlementRequestConfig'?: EntitlementRequestConfig1Beta;
|
|
829
829
|
}
|
|
830
830
|
/**
|
|
831
831
|
*
|
|
@@ -922,7 +922,7 @@ export interface AccessRequestItemBeta {
|
|
|
922
922
|
*/
|
|
923
923
|
'clientMetadata'?: { [key: string]: string; };
|
|
924
924
|
/**
|
|
925
|
-
* The date the role or access profile is no longer assigned to the specified identity. * Specify a date in the future. * The current SLA for the deprovisioning is 24 hours. * This date can be modified to either extend or decrease the duration of access item assignments for the specified identity. * Currently it is not supported for entitlements.
|
|
925
|
+
* The date the role or access profile is no longer assigned to the specified identity. * Specify a date in the future. * The current SLA for the deprovisioning is 24 hours. * This date can be modified to either extend or decrease the duration of access item assignments for the specified identity. * Currently it is not supported for entitlements. * If sunset date for role or access profile specified, removeDate cannot be established. This rule doesn\'t apply for entitlements.
|
|
926
926
|
* @type {string}
|
|
927
927
|
* @memberof AccessRequestItemBeta
|
|
928
928
|
*/
|
|
@@ -1329,7 +1329,7 @@ export interface AccessRequestResponseBeta {
|
|
|
1329
1329
|
'items'?: Array<AccessRequestItemResponseBeta>;
|
|
1330
1330
|
}
|
|
1331
1331
|
/**
|
|
1332
|
-
* Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field.
|
|
1332
|
+
* Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field.
|
|
1333
1333
|
* @export
|
|
1334
1334
|
* @enum {string}
|
|
1335
1335
|
*/
|
|
@@ -2320,7 +2320,7 @@ export type AdminReviewReassignReassignToBetaTypeEnum = typeof AdminReviewReassi
|
|
|
2320
2320
|
*/
|
|
2321
2321
|
export interface ApprovalForwardHistoryBeta {
|
|
2322
2322
|
/**
|
|
2323
|
-
* Display name of approver
|
|
2323
|
+
* Display name of approver from whom the approval was forwarded.
|
|
2324
2324
|
* @type {string}
|
|
2325
2325
|
* @memberof ApprovalForwardHistoryBeta
|
|
2326
2326
|
*/
|
|
@@ -2332,17 +2332,29 @@ export interface ApprovalForwardHistoryBeta {
|
|
|
2332
2332
|
*/
|
|
2333
2333
|
'newApproverName'?: string;
|
|
2334
2334
|
/**
|
|
2335
|
-
* Comment made
|
|
2335
|
+
* Comment made while forwarding.
|
|
2336
2336
|
* @type {string}
|
|
2337
2337
|
* @memberof ApprovalForwardHistoryBeta
|
|
2338
2338
|
*/
|
|
2339
|
-
'comment'?: string;
|
|
2339
|
+
'comment'?: string | null;
|
|
2340
2340
|
/**
|
|
2341
2341
|
* Time at which approval was forwarded.
|
|
2342
2342
|
* @type {string}
|
|
2343
2343
|
* @memberof ApprovalForwardHistoryBeta
|
|
2344
2344
|
*/
|
|
2345
2345
|
'modified'?: string;
|
|
2346
|
+
/**
|
|
2347
|
+
* Display name of forwarder who forwarded the approval.
|
|
2348
|
+
* @type {string}
|
|
2349
|
+
* @memberof ApprovalForwardHistoryBeta
|
|
2350
|
+
*/
|
|
2351
|
+
'forwarderName'?: string | null;
|
|
2352
|
+
/**
|
|
2353
|
+
*
|
|
2354
|
+
* @type {ReassignmentTypeBeta}
|
|
2355
|
+
* @memberof ApprovalForwardHistoryBeta
|
|
2356
|
+
*/
|
|
2357
|
+
'reassignmentType'?: ReassignmentTypeBeta;
|
|
2346
2358
|
}
|
|
2347
2359
|
/**
|
|
2348
2360
|
*
|
|
@@ -2510,6 +2522,7 @@ export const ApprovalSchemeBeta = {
|
|
|
2510
2522
|
Manager: 'MANAGER',
|
|
2511
2523
|
RoleOwner: 'ROLE_OWNER',
|
|
2512
2524
|
AccessProfileOwner: 'ACCESS_PROFILE_OWNER',
|
|
2525
|
+
EntitlementOwner: 'ENTITLEMENT_OWNER',
|
|
2513
2526
|
GovernanceGroup: 'GOVERNANCE_GROUP'
|
|
2514
2527
|
} as const;
|
|
2515
2528
|
|
|
@@ -3969,13 +3982,13 @@ export interface CertifierResponseBeta {
|
|
|
3969
3982
|
*/
|
|
3970
3983
|
export interface ClientLogConfigurationBeta {
|
|
3971
3984
|
/**
|
|
3972
|
-
* client ID
|
|
3985
|
+
* Log configuration\'s client ID
|
|
3973
3986
|
* @type {string}
|
|
3974
3987
|
* @memberof ClientLogConfigurationBeta
|
|
3975
3988
|
*/
|
|
3976
3989
|
'clientId'?: string;
|
|
3977
3990
|
/**
|
|
3978
|
-
*
|
|
3991
|
+
* Duration in minutes for log configuration to remain in effect before resetting to defaults
|
|
3979
3992
|
* @type {number}
|
|
3980
3993
|
* @memberof ClientLogConfigurationBeta
|
|
3981
3994
|
*/
|
|
@@ -5640,6 +5653,60 @@ export const EmailStatusDtoBetaVerificationStatusEnum = {
|
|
|
5640
5653
|
|
|
5641
5654
|
export type EmailStatusDtoBetaVerificationStatusEnum = typeof EmailStatusDtoBetaVerificationStatusEnum[keyof typeof EmailStatusDtoBetaVerificationStatusEnum];
|
|
5642
5655
|
|
|
5656
|
+
/**
|
|
5657
|
+
*
|
|
5658
|
+
* @export
|
|
5659
|
+
* @interface EntitlementAccessRequestConfigBeta
|
|
5660
|
+
*/
|
|
5661
|
+
export interface EntitlementAccessRequestConfigBeta {
|
|
5662
|
+
/**
|
|
5663
|
+
* Ordered list of approval steps for the access request. Empty when no approval is required.
|
|
5664
|
+
* @type {Array<EntitlementApprovalSchemeBeta>}
|
|
5665
|
+
* @memberof EntitlementAccessRequestConfigBeta
|
|
5666
|
+
*/
|
|
5667
|
+
'approvalSchemes'?: Array<EntitlementApprovalSchemeBeta>;
|
|
5668
|
+
/**
|
|
5669
|
+
* If the requester must provide a comment during access request.
|
|
5670
|
+
* @type {boolean}
|
|
5671
|
+
* @memberof EntitlementAccessRequestConfigBeta
|
|
5672
|
+
*/
|
|
5673
|
+
'requestCommentRequired'?: boolean;
|
|
5674
|
+
/**
|
|
5675
|
+
* If the reviewer must provide a comment when denying the access request.
|
|
5676
|
+
* @type {boolean}
|
|
5677
|
+
* @memberof EntitlementAccessRequestConfigBeta
|
|
5678
|
+
*/
|
|
5679
|
+
'denialCommentRequired'?: boolean;
|
|
5680
|
+
}
|
|
5681
|
+
/**
|
|
5682
|
+
*
|
|
5683
|
+
* @export
|
|
5684
|
+
* @interface EntitlementApprovalSchemeBeta
|
|
5685
|
+
*/
|
|
5686
|
+
export interface EntitlementApprovalSchemeBeta {
|
|
5687
|
+
/**
|
|
5688
|
+
* Describes the individual or group that is responsible for an approval step. Values are as follows. **ENTITLEMENT_OWNER**: Owner of the associated Entitlement **SOURCE_OWNER**: Owner of the associated Source **MANAGER**: Manager of the Identity for whom the request is being made **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field
|
|
5689
|
+
* @type {string}
|
|
5690
|
+
* @memberof EntitlementApprovalSchemeBeta
|
|
5691
|
+
*/
|
|
5692
|
+
'approverType'?: EntitlementApprovalSchemeBetaApproverTypeEnum;
|
|
5693
|
+
/**
|
|
5694
|
+
* Id of the specific approver, used only when approverType is GOVERNANCE_GROUP
|
|
5695
|
+
* @type {string}
|
|
5696
|
+
* @memberof EntitlementApprovalSchemeBeta
|
|
5697
|
+
*/
|
|
5698
|
+
'approverId'?: string | null;
|
|
5699
|
+
}
|
|
5700
|
+
|
|
5701
|
+
export const EntitlementApprovalSchemeBetaApproverTypeEnum = {
|
|
5702
|
+
EntitlementOwner: 'ENTITLEMENT_OWNER',
|
|
5703
|
+
SourceOwner: 'SOURCE_OWNER',
|
|
5704
|
+
Manager: 'MANAGER',
|
|
5705
|
+
GovernanceGroup: 'GOVERNANCE_GROUP'
|
|
5706
|
+
} as const;
|
|
5707
|
+
|
|
5708
|
+
export type EntitlementApprovalSchemeBetaApproverTypeEnum = typeof EntitlementApprovalSchemeBetaApproverTypeEnum[keyof typeof EntitlementApprovalSchemeBetaApproverTypeEnum];
|
|
5709
|
+
|
|
5643
5710
|
/**
|
|
5644
5711
|
*
|
|
5645
5712
|
* @export
|
|
@@ -5730,6 +5797,12 @@ export interface EntitlementBeta {
|
|
|
5730
5797
|
* @memberof EntitlementBeta
|
|
5731
5798
|
*/
|
|
5732
5799
|
'directPermissions'?: Array<PermissionDtoBeta>;
|
|
5800
|
+
/**
|
|
5801
|
+
*
|
|
5802
|
+
* @type {OwnerReferenceDtoBeta}
|
|
5803
|
+
* @memberof EntitlementBeta
|
|
5804
|
+
*/
|
|
5805
|
+
'owner'?: OwnerReferenceDtoBeta;
|
|
5733
5806
|
}
|
|
5734
5807
|
/**
|
|
5735
5808
|
*
|
|
@@ -5785,34 +5858,47 @@ export type EntitlementRefBetaTypeEnum = typeof EntitlementRefBetaTypeEnum[keyof
|
|
|
5785
5858
|
/**
|
|
5786
5859
|
*
|
|
5787
5860
|
* @export
|
|
5788
|
-
* @interface
|
|
5861
|
+
* @interface EntitlementRequestConfig1Beta
|
|
5789
5862
|
*/
|
|
5790
|
-
export interface
|
|
5863
|
+
export interface EntitlementRequestConfig1Beta {
|
|
5791
5864
|
/**
|
|
5792
5865
|
* Flag for allowing entitlement request.
|
|
5793
5866
|
* @type {boolean}
|
|
5794
|
-
* @memberof
|
|
5867
|
+
* @memberof EntitlementRequestConfig1Beta
|
|
5795
5868
|
*/
|
|
5796
5869
|
'allowEntitlementRequest'?: boolean;
|
|
5797
5870
|
/**
|
|
5798
5871
|
* Flag for requiring comments while submitting an entitlement request.
|
|
5799
5872
|
* @type {boolean}
|
|
5800
|
-
* @memberof
|
|
5873
|
+
* @memberof EntitlementRequestConfig1Beta
|
|
5801
5874
|
*/
|
|
5802
5875
|
'requestCommentsRequired'?: boolean;
|
|
5803
5876
|
/**
|
|
5804
5877
|
* Flag for requiring comments while rejecting an entitlement request.
|
|
5805
5878
|
* @type {boolean}
|
|
5806
|
-
* @memberof
|
|
5879
|
+
* @memberof EntitlementRequestConfig1Beta
|
|
5807
5880
|
*/
|
|
5808
5881
|
'deniedCommentsRequired'?: boolean;
|
|
5809
5882
|
/**
|
|
5810
|
-
* Approval schemes for granting entitlement request. This can be empty if no approval is needed. Multiple schemes must be comma-separated. The valid schemes are \"sourceOwner\", \"manager\" and \"workgroup:{id}\". Multiple workgroups (governance groups) can be used.
|
|
5883
|
+
* Approval schemes for granting entitlement request. This can be empty if no approval is needed. Multiple schemes must be comma-separated. The valid schemes are \"entitlementOwner\", \"sourceOwner\", \"manager\" and \"workgroup:{id}\". Multiple workgroups (governance groups) can be used.
|
|
5811
5884
|
* @type {string}
|
|
5812
|
-
* @memberof
|
|
5885
|
+
* @memberof EntitlementRequestConfig1Beta
|
|
5813
5886
|
*/
|
|
5814
5887
|
'grantRequestApprovalSchemes'?: string;
|
|
5815
5888
|
}
|
|
5889
|
+
/**
|
|
5890
|
+
*
|
|
5891
|
+
* @export
|
|
5892
|
+
* @interface EntitlementRequestConfigBeta
|
|
5893
|
+
*/
|
|
5894
|
+
export interface EntitlementRequestConfigBeta {
|
|
5895
|
+
/**
|
|
5896
|
+
*
|
|
5897
|
+
* @type {EntitlementAccessRequestConfigBeta}
|
|
5898
|
+
* @memberof EntitlementRequestConfigBeta
|
|
5899
|
+
*/
|
|
5900
|
+
'accessRequestConfig'?: EntitlementAccessRequestConfigBeta;
|
|
5901
|
+
}
|
|
5816
5902
|
/**
|
|
5817
5903
|
*
|
|
5818
5904
|
* @export
|
|
@@ -6591,7 +6677,7 @@ export interface FullAccountBeta {
|
|
|
6591
6677
|
* @type {string}
|
|
6592
6678
|
* @memberof FullAccountBeta
|
|
6593
6679
|
*/
|
|
6594
|
-
'uuid'?: string;
|
|
6680
|
+
'uuid'?: string | null;
|
|
6595
6681
|
/**
|
|
6596
6682
|
* The native identifier of the account
|
|
6597
6683
|
* @type {string}
|
|
@@ -6603,7 +6689,7 @@ export interface FullAccountBeta {
|
|
|
6603
6689
|
* @type {string}
|
|
6604
6690
|
* @memberof FullAccountBeta
|
|
6605
6691
|
*/
|
|
6606
|
-
'description'?: string;
|
|
6692
|
+
'description'?: string | null;
|
|
6607
6693
|
/**
|
|
6608
6694
|
* Whether the account is disabled
|
|
6609
6695
|
* @type {boolean}
|
|
@@ -6634,6 +6720,12 @@ export interface FullAccountBeta {
|
|
|
6634
6720
|
* @memberof FullAccountBeta
|
|
6635
6721
|
*/
|
|
6636
6722
|
'sourceId'?: string;
|
|
6723
|
+
/**
|
|
6724
|
+
* The name of the source
|
|
6725
|
+
* @type {string}
|
|
6726
|
+
* @memberof FullAccountBeta
|
|
6727
|
+
*/
|
|
6728
|
+
'sourceName'?: string;
|
|
6637
6729
|
/**
|
|
6638
6730
|
* The ID of the identity for which this account is correlated to if not uncorrelated
|
|
6639
6731
|
* @type {string}
|
|
@@ -7606,6 +7698,107 @@ export interface IdentityAttributesChangedBeta {
|
|
|
7606
7698
|
*/
|
|
7607
7699
|
'changes': Array<TriggerInputIdentityAttributesChangedChangesInnerBeta>;
|
|
7608
7700
|
}
|
|
7701
|
+
/**
|
|
7702
|
+
*
|
|
7703
|
+
* @export
|
|
7704
|
+
* @interface IdentityBeta
|
|
7705
|
+
*/
|
|
7706
|
+
export interface IdentityBeta {
|
|
7707
|
+
/**
|
|
7708
|
+
* System-generated unique ID of the Object
|
|
7709
|
+
* @type {string}
|
|
7710
|
+
* @memberof IdentityBeta
|
|
7711
|
+
*/
|
|
7712
|
+
'id'?: string;
|
|
7713
|
+
/**
|
|
7714
|
+
* Name of the Object
|
|
7715
|
+
* @type {string}
|
|
7716
|
+
* @memberof IdentityBeta
|
|
7717
|
+
*/
|
|
7718
|
+
'name': string;
|
|
7719
|
+
/**
|
|
7720
|
+
* Creation date of the Object
|
|
7721
|
+
* @type {string}
|
|
7722
|
+
* @memberof IdentityBeta
|
|
7723
|
+
*/
|
|
7724
|
+
'created'?: string;
|
|
7725
|
+
/**
|
|
7726
|
+
* Last modification date of the Object
|
|
7727
|
+
* @type {string}
|
|
7728
|
+
* @memberof IdentityBeta
|
|
7729
|
+
*/
|
|
7730
|
+
'modified'?: string;
|
|
7731
|
+
/**
|
|
7732
|
+
* Alternate unique identifier for the identity
|
|
7733
|
+
* @type {string}
|
|
7734
|
+
* @memberof IdentityBeta
|
|
7735
|
+
*/
|
|
7736
|
+
'alias'?: string;
|
|
7737
|
+
/**
|
|
7738
|
+
* The email address of the identity
|
|
7739
|
+
* @type {string}
|
|
7740
|
+
* @memberof IdentityBeta
|
|
7741
|
+
*/
|
|
7742
|
+
'emailAddress'?: string;
|
|
7743
|
+
/**
|
|
7744
|
+
* The processing state of the identity
|
|
7745
|
+
* @type {string}
|
|
7746
|
+
* @memberof IdentityBeta
|
|
7747
|
+
*/
|
|
7748
|
+
'processingState'?: IdentityBetaProcessingStateEnum;
|
|
7749
|
+
/**
|
|
7750
|
+
* The identity\'s status in the system
|
|
7751
|
+
* @type {string}
|
|
7752
|
+
* @memberof IdentityBeta
|
|
7753
|
+
*/
|
|
7754
|
+
'identityStatus'?: IdentityBetaIdentityStatusEnum;
|
|
7755
|
+
/**
|
|
7756
|
+
*
|
|
7757
|
+
* @type {BaseReferenceDtoBeta}
|
|
7758
|
+
* @memberof IdentityBeta
|
|
7759
|
+
*/
|
|
7760
|
+
'managerRef'?: BaseReferenceDtoBeta;
|
|
7761
|
+
/**
|
|
7762
|
+
* Whether this identity is a manager of another identity
|
|
7763
|
+
* @type {boolean}
|
|
7764
|
+
* @memberof IdentityBeta
|
|
7765
|
+
*/
|
|
7766
|
+
'isManager'?: boolean;
|
|
7767
|
+
/**
|
|
7768
|
+
* The last time the identity was refreshed by the system
|
|
7769
|
+
* @type {string}
|
|
7770
|
+
* @memberof IdentityBeta
|
|
7771
|
+
*/
|
|
7772
|
+
'lastRefresh'?: string;
|
|
7773
|
+
/**
|
|
7774
|
+
* A map with the identity attributes for the identity
|
|
7775
|
+
* @type {object}
|
|
7776
|
+
* @memberof IdentityBeta
|
|
7777
|
+
*/
|
|
7778
|
+
'attributes'?: object;
|
|
7779
|
+
}
|
|
7780
|
+
|
|
7781
|
+
export const IdentityBetaProcessingStateEnum = {
|
|
7782
|
+
Error: 'ERROR',
|
|
7783
|
+
Ok: 'OK'
|
|
7784
|
+
} as const;
|
|
7785
|
+
|
|
7786
|
+
export type IdentityBetaProcessingStateEnum = typeof IdentityBetaProcessingStateEnum[keyof typeof IdentityBetaProcessingStateEnum];
|
|
7787
|
+
export const IdentityBetaIdentityStatusEnum = {
|
|
7788
|
+
Unregistered: 'UNREGISTERED',
|
|
7789
|
+
Registered: 'REGISTERED',
|
|
7790
|
+
Pending: 'PENDING',
|
|
7791
|
+
Warning: 'WARNING',
|
|
7792
|
+
Disabled: 'DISABLED',
|
|
7793
|
+
Active: 'ACTIVE',
|
|
7794
|
+
Deactivated: 'DEACTIVATED',
|
|
7795
|
+
Terminated: 'TERMINATED',
|
|
7796
|
+
Error: 'ERROR',
|
|
7797
|
+
Locked: 'LOCKED'
|
|
7798
|
+
} as const;
|
|
7799
|
+
|
|
7800
|
+
export type IdentityBetaIdentityStatusEnum = typeof IdentityBetaIdentityStatusEnum[keyof typeof IdentityBetaIdentityStatusEnum];
|
|
7801
|
+
|
|
7609
7802
|
/**
|
|
7610
7803
|
*
|
|
7611
7804
|
* @export
|
|
@@ -7764,6 +7957,83 @@ export interface IdentityDeletedBeta {
|
|
|
7764
7957
|
*/
|
|
7765
7958
|
'attributes': { [key: string]: any; };
|
|
7766
7959
|
}
|
|
7960
|
+
/**
|
|
7961
|
+
*
|
|
7962
|
+
* @export
|
|
7963
|
+
* @interface IdentityDtoBeta
|
|
7964
|
+
*/
|
|
7965
|
+
export interface IdentityDtoBeta {
|
|
7966
|
+
/**
|
|
7967
|
+
* Alternate unique identifier for the identity
|
|
7968
|
+
* @type {string}
|
|
7969
|
+
* @memberof IdentityDtoBeta
|
|
7970
|
+
*/
|
|
7971
|
+
'alias'?: string;
|
|
7972
|
+
/**
|
|
7973
|
+
* The email address of the identity
|
|
7974
|
+
* @type {string}
|
|
7975
|
+
* @memberof IdentityDtoBeta
|
|
7976
|
+
*/
|
|
7977
|
+
'emailAddress'?: string;
|
|
7978
|
+
/**
|
|
7979
|
+
* The processing state of the identity
|
|
7980
|
+
* @type {string}
|
|
7981
|
+
* @memberof IdentityDtoBeta
|
|
7982
|
+
*/
|
|
7983
|
+
'processingState'?: IdentityDtoBetaProcessingStateEnum;
|
|
7984
|
+
/**
|
|
7985
|
+
* The identity\'s status in the system
|
|
7986
|
+
* @type {string}
|
|
7987
|
+
* @memberof IdentityDtoBeta
|
|
7988
|
+
*/
|
|
7989
|
+
'identityStatus'?: IdentityDtoBetaIdentityStatusEnum;
|
|
7990
|
+
/**
|
|
7991
|
+
*
|
|
7992
|
+
* @type {BaseReferenceDtoBeta}
|
|
7993
|
+
* @memberof IdentityDtoBeta
|
|
7994
|
+
*/
|
|
7995
|
+
'managerRef'?: BaseReferenceDtoBeta;
|
|
7996
|
+
/**
|
|
7997
|
+
* Whether this identity is a manager of another identity
|
|
7998
|
+
* @type {boolean}
|
|
7999
|
+
* @memberof IdentityDtoBeta
|
|
8000
|
+
*/
|
|
8001
|
+
'isManager'?: boolean;
|
|
8002
|
+
/**
|
|
8003
|
+
* The last time the identity was refreshed by the system
|
|
8004
|
+
* @type {string}
|
|
8005
|
+
* @memberof IdentityDtoBeta
|
|
8006
|
+
*/
|
|
8007
|
+
'lastRefresh'?: string;
|
|
8008
|
+
/**
|
|
8009
|
+
* A map with the identity attributes for the identity
|
|
8010
|
+
* @type {object}
|
|
8011
|
+
* @memberof IdentityDtoBeta
|
|
8012
|
+
*/
|
|
8013
|
+
'attributes'?: object;
|
|
8014
|
+
}
|
|
8015
|
+
|
|
8016
|
+
export const IdentityDtoBetaProcessingStateEnum = {
|
|
8017
|
+
Error: 'ERROR',
|
|
8018
|
+
Ok: 'OK'
|
|
8019
|
+
} as const;
|
|
8020
|
+
|
|
8021
|
+
export type IdentityDtoBetaProcessingStateEnum = typeof IdentityDtoBetaProcessingStateEnum[keyof typeof IdentityDtoBetaProcessingStateEnum];
|
|
8022
|
+
export const IdentityDtoBetaIdentityStatusEnum = {
|
|
8023
|
+
Unregistered: 'UNREGISTERED',
|
|
8024
|
+
Registered: 'REGISTERED',
|
|
8025
|
+
Pending: 'PENDING',
|
|
8026
|
+
Warning: 'WARNING',
|
|
8027
|
+
Disabled: 'DISABLED',
|
|
8028
|
+
Active: 'ACTIVE',
|
|
8029
|
+
Deactivated: 'DEACTIVATED',
|
|
8030
|
+
Terminated: 'TERMINATED',
|
|
8031
|
+
Error: 'ERROR',
|
|
8032
|
+
Locked: 'LOCKED'
|
|
8033
|
+
} as const;
|
|
8034
|
+
|
|
8035
|
+
export type IdentityDtoBetaIdentityStatusEnum = typeof IdentityDtoBetaIdentityStatusEnum[keyof typeof IdentityDtoBetaIdentityStatusEnum];
|
|
8036
|
+
|
|
7767
8037
|
/**
|
|
7768
8038
|
*
|
|
7769
8039
|
* @export
|
|
@@ -7886,7 +8156,7 @@ export interface IdentityListItemBeta {
|
|
|
7886
8156
|
* @type {string}
|
|
7887
8157
|
* @memberof IdentityListItemBeta
|
|
7888
8158
|
*/
|
|
7889
|
-
'deletedDate'?: string;
|
|
8159
|
+
'deletedDate'?: string | null;
|
|
7890
8160
|
}
|
|
7891
8161
|
/**
|
|
7892
8162
|
*
|
|
@@ -8607,11 +8877,11 @@ export interface ImportOptionsBeta {
|
|
|
8607
8877
|
*/
|
|
8608
8878
|
export interface ImportSpConfigRequestBeta {
|
|
8609
8879
|
/**
|
|
8610
|
-
*
|
|
8611
|
-
* @type {
|
|
8880
|
+
* JSON file containing the objects to be imported.
|
|
8881
|
+
* @type {any}
|
|
8612
8882
|
* @memberof ImportSpConfigRequestBeta
|
|
8613
8883
|
*/
|
|
8614
|
-
'data':
|
|
8884
|
+
'data': any;
|
|
8615
8885
|
/**
|
|
8616
8886
|
*
|
|
8617
8887
|
* @type {ImportOptionsBeta}
|
|
@@ -8951,6 +9221,12 @@ export interface ListCompleteWorkflowLibrary200ResponseInnerBeta {
|
|
|
8951
9221
|
* @memberof ListCompleteWorkflowLibrary200ResponseInnerBeta
|
|
8952
9222
|
*/
|
|
8953
9223
|
'name'?: string;
|
|
9224
|
+
/**
|
|
9225
|
+
* Operator type
|
|
9226
|
+
* @type {string}
|
|
9227
|
+
* @memberof ListCompleteWorkflowLibrary200ResponseInnerBeta
|
|
9228
|
+
*/
|
|
9229
|
+
'type'?: string;
|
|
8954
9230
|
/**
|
|
8955
9231
|
* Description of the operator
|
|
8956
9232
|
* @type {string}
|
|
@@ -8964,33 +9240,24 @@ export interface ListCompleteWorkflowLibrary200ResponseInnerBeta {
|
|
|
8964
9240
|
*/
|
|
8965
9241
|
'formFields'?: Array<WorkflowLibraryFormFieldsBeta>;
|
|
8966
9242
|
/**
|
|
8967
|
-
*
|
|
8968
|
-
* @type {
|
|
9243
|
+
* Determines whether the dynamic output schema is returned in place of the action\'s output schema. The dynamic schema lists non-static properties, like properties of a workflow form where each form has different fields. These will be provided dynamically based on available form fields.
|
|
9244
|
+
* @type {boolean}
|
|
8969
9245
|
* @memberof ListCompleteWorkflowLibrary200ResponseInnerBeta
|
|
8970
9246
|
*/
|
|
8971
|
-
'
|
|
9247
|
+
'isDynamicSchema'?: boolean;
|
|
8972
9248
|
/**
|
|
8973
|
-
*
|
|
9249
|
+
* Defines the output schema, if any, that this action produces.
|
|
8974
9250
|
* @type {object}
|
|
8975
9251
|
* @memberof ListCompleteWorkflowLibrary200ResponseInnerBeta
|
|
8976
9252
|
*/
|
|
8977
|
-
'
|
|
9253
|
+
'outputSchema'?: object;
|
|
8978
9254
|
/**
|
|
8979
9255
|
* Example trigger payload if applicable
|
|
8980
9256
|
* @type {object}
|
|
8981
9257
|
* @memberof ListCompleteWorkflowLibrary200ResponseInnerBeta
|
|
8982
9258
|
*/
|
|
8983
|
-
'inputExample'?: object;
|
|
9259
|
+
'inputExample'?: object | null;
|
|
8984
9260
|
}
|
|
8985
|
-
|
|
8986
|
-
export const ListCompleteWorkflowLibrary200ResponseInnerBetaTypeEnum = {
|
|
8987
|
-
Event: 'EVENT',
|
|
8988
|
-
Scheduled: 'SCHEDULED',
|
|
8989
|
-
External: 'EXTERNAL'
|
|
8990
|
-
} as const;
|
|
8991
|
-
|
|
8992
|
-
export type ListCompleteWorkflowLibrary200ResponseInnerBetaTypeEnum = typeof ListCompleteWorkflowLibrary200ResponseInnerBetaTypeEnum[keyof typeof ListCompleteWorkflowLibrary200ResponseInnerBetaTypeEnum];
|
|
8993
|
-
|
|
8994
9261
|
/**
|
|
8995
9262
|
* @type ListIdentityAccessItems200ResponseInnerBeta
|
|
8996
9263
|
* @export
|
|
@@ -9531,6 +9798,12 @@ export interface ManualWorkItemDetailsBeta {
|
|
|
9531
9798
|
* @memberof ManualWorkItemDetailsBeta
|
|
9532
9799
|
*/
|
|
9533
9800
|
'status'?: ManualWorkItemStateBeta;
|
|
9801
|
+
/**
|
|
9802
|
+
* The history of approval forward action.
|
|
9803
|
+
* @type {Array<ApprovalForwardHistoryBeta>}
|
|
9804
|
+
* @memberof ManualWorkItemDetailsBeta
|
|
9805
|
+
*/
|
|
9806
|
+
'forwardHistory'?: Array<ApprovalForwardHistoryBeta>;
|
|
9534
9807
|
}
|
|
9535
9808
|
/**
|
|
9536
9809
|
* Indicates the state of the request processing for this item: * PENDING: The request for this item is awaiting processing. * APPROVED: The request for this item has been approved. * REJECTED: The request for this item was rejected. * EXPIRED: The request for this item expired with no action taken. * CANCELLED: The request for this item was cancelled with no user action. * ARCHIVED: The request for this item has been archived after completion.
|
|
@@ -11256,31 +11529,31 @@ export interface OrgConfigBeta {
|
|
|
11256
11529
|
* @type {string}
|
|
11257
11530
|
* @memberof OrgConfigBeta
|
|
11258
11531
|
*/
|
|
11259
|
-
'armCustomerId'?: string;
|
|
11532
|
+
'armCustomerId'?: string | null;
|
|
11260
11533
|
/**
|
|
11261
11534
|
* A list of IDN::sourceId to ARM::systemId mappings.
|
|
11262
11535
|
* @type {string}
|
|
11263
11536
|
* @memberof OrgConfigBeta
|
|
11264
11537
|
*/
|
|
11265
|
-
'armSapSystemIdMappings'?: string;
|
|
11538
|
+
'armSapSystemIdMappings'?: string | null;
|
|
11266
11539
|
/**
|
|
11267
11540
|
* ARM authentication string
|
|
11268
11541
|
* @type {string}
|
|
11269
11542
|
* @memberof OrgConfigBeta
|
|
11270
11543
|
*/
|
|
11271
|
-
'armAuth'?: string;
|
|
11544
|
+
'armAuth'?: string | null;
|
|
11272
11545
|
/**
|
|
11273
11546
|
* ARM database name
|
|
11274
11547
|
* @type {string}
|
|
11275
11548
|
* @memberof OrgConfigBeta
|
|
11276
11549
|
*/
|
|
11277
|
-
'armDb'?: string;
|
|
11550
|
+
'armDb'?: string | null;
|
|
11278
11551
|
/**
|
|
11279
11552
|
* ARM SSO URL
|
|
11280
11553
|
* @type {string}
|
|
11281
11554
|
* @memberof OrgConfigBeta
|
|
11282
11555
|
*/
|
|
11283
|
-
'armSsoUrl'?: string;
|
|
11556
|
+
'armSsoUrl'?: string | null;
|
|
11284
11557
|
/**
|
|
11285
11558
|
* Flag to determine whether IAI Certification Recommendations are enabled for the current org
|
|
11286
11559
|
* @type {boolean}
|
|
@@ -11528,6 +11801,38 @@ export interface OwnerReferenceBeta {
|
|
|
11528
11801
|
*/
|
|
11529
11802
|
'name'?: string;
|
|
11530
11803
|
}
|
|
11804
|
+
/**
|
|
11805
|
+
* Simplified DTO for the owner object of the entitlement
|
|
11806
|
+
* @export
|
|
11807
|
+
* @interface OwnerReferenceDtoBeta
|
|
11808
|
+
*/
|
|
11809
|
+
export interface OwnerReferenceDtoBeta {
|
|
11810
|
+
/**
|
|
11811
|
+
* The owner id for the entitlement
|
|
11812
|
+
* @type {string}
|
|
11813
|
+
* @memberof OwnerReferenceDtoBeta
|
|
11814
|
+
*/
|
|
11815
|
+
'id'?: string;
|
|
11816
|
+
/**
|
|
11817
|
+
* The owner name for the entitlement
|
|
11818
|
+
* @type {string}
|
|
11819
|
+
* @memberof OwnerReferenceDtoBeta
|
|
11820
|
+
*/
|
|
11821
|
+
'name'?: string;
|
|
11822
|
+
/**
|
|
11823
|
+
* The type of the owner. Initially only type IDENTITY is supported
|
|
11824
|
+
* @type {string}
|
|
11825
|
+
* @memberof OwnerReferenceDtoBeta
|
|
11826
|
+
*/
|
|
11827
|
+
'type'?: OwnerReferenceDtoBetaTypeEnum;
|
|
11828
|
+
}
|
|
11829
|
+
|
|
11830
|
+
export const OwnerReferenceDtoBetaTypeEnum = {
|
|
11831
|
+
Identity: 'IDENTITY'
|
|
11832
|
+
} as const;
|
|
11833
|
+
|
|
11834
|
+
export type OwnerReferenceDtoBetaTypeEnum = typeof OwnerReferenceDtoBetaTypeEnum[keyof typeof OwnerReferenceDtoBetaTypeEnum];
|
|
11835
|
+
|
|
11531
11836
|
/**
|
|
11532
11837
|
*
|
|
11533
11838
|
* @export
|
|
@@ -11808,7 +12113,7 @@ export interface PasswordSyncGroupBeta {
|
|
|
11808
12113
|
*/
|
|
11809
12114
|
'name'?: string;
|
|
11810
12115
|
/**
|
|
11811
|
-
*
|
|
12116
|
+
* ID of the password policy
|
|
11812
12117
|
* @type {string}
|
|
11813
12118
|
* @memberof PasswordSyncGroupBeta
|
|
11814
12119
|
*/
|
|
@@ -12208,6 +12513,18 @@ export interface ProvisioningConfigBeta {
|
|
|
12208
12513
|
* @memberof ProvisioningConfigBeta
|
|
12209
12514
|
*/
|
|
12210
12515
|
'planInitializerScript'?: ProvisioningConfigPlanInitializerScriptBeta;
|
|
12516
|
+
/**
|
|
12517
|
+
* Name of an attribute that when true disables the saving of ProvisioningRequest objects whenever plans are sent through this integration.
|
|
12518
|
+
* @type {boolean}
|
|
12519
|
+
* @memberof ProvisioningConfigBeta
|
|
12520
|
+
*/
|
|
12521
|
+
'noProvisioningRequests'?: boolean;
|
|
12522
|
+
/**
|
|
12523
|
+
* When saving pending requests is enabled, this defines the number of hours the request is allowed to live before it is considered expired and no longer affects plan compilation.
|
|
12524
|
+
* @type {number}
|
|
12525
|
+
* @memberof ProvisioningConfigBeta
|
|
12526
|
+
*/
|
|
12527
|
+
'provisioningRequestExpiration'?: number;
|
|
12211
12528
|
}
|
|
12212
12529
|
/**
|
|
12213
12530
|
*
|
|
@@ -12217,22 +12534,22 @@ export interface ProvisioningConfigBeta {
|
|
|
12217
12534
|
export interface ProvisioningConfigManagedResourceRefsInnerBeta {
|
|
12218
12535
|
/**
|
|
12219
12536
|
* The type of object being referenced
|
|
12220
|
-
* @type {
|
|
12537
|
+
* @type {object}
|
|
12221
12538
|
* @memberof ProvisioningConfigManagedResourceRefsInnerBeta
|
|
12222
12539
|
*/
|
|
12223
12540
|
'type'?: ProvisioningConfigManagedResourceRefsInnerBetaTypeEnum;
|
|
12224
12541
|
/**
|
|
12225
12542
|
* ID of the source
|
|
12226
|
-
* @type {
|
|
12543
|
+
* @type {object}
|
|
12227
12544
|
* @memberof ProvisioningConfigManagedResourceRefsInnerBeta
|
|
12228
12545
|
*/
|
|
12229
|
-
'id'?:
|
|
12546
|
+
'id'?: object;
|
|
12230
12547
|
/**
|
|
12231
12548
|
* Human-readable display name of the source
|
|
12232
|
-
* @type {
|
|
12549
|
+
* @type {object}
|
|
12233
12550
|
* @memberof ProvisioningConfigManagedResourceRefsInnerBeta
|
|
12234
12551
|
*/
|
|
12235
|
-
'name'?:
|
|
12552
|
+
'name'?: object;
|
|
12236
12553
|
}
|
|
12237
12554
|
|
|
12238
12555
|
export const ProvisioningConfigManagedResourceRefsInnerBetaTypeEnum = {
|
|
@@ -12531,6 +12848,22 @@ export interface ReassignmentBeta {
|
|
|
12531
12848
|
*/
|
|
12532
12849
|
'comment'?: string;
|
|
12533
12850
|
}
|
|
12851
|
+
/**
|
|
12852
|
+
* Type of approval reassignment.
|
|
12853
|
+
* @export
|
|
12854
|
+
* @enum {string}
|
|
12855
|
+
*/
|
|
12856
|
+
|
|
12857
|
+
export const ReassignmentTypeBeta = {
|
|
12858
|
+
ManualReassignment: 'MANUAL_REASSIGNMENT',
|
|
12859
|
+
AutomaticReassignment: 'AUTOMATIC_REASSIGNMENT',
|
|
12860
|
+
AutoEscalation: 'AUTO_ESCALATION',
|
|
12861
|
+
SelfReviewDelegation: 'SELF_REVIEW_DELEGATION'
|
|
12862
|
+
} as const;
|
|
12863
|
+
|
|
12864
|
+
export type ReassignmentTypeBeta = typeof ReassignmentTypeBeta[keyof typeof ReassignmentTypeBeta];
|
|
12865
|
+
|
|
12866
|
+
|
|
12534
12867
|
/**
|
|
12535
12868
|
*
|
|
12536
12869
|
* @export
|
|
@@ -15602,38 +15935,6 @@ export const SendTestNotificationRequestDtoBetaMediumEnum = {
|
|
|
15602
15935
|
|
|
15603
15936
|
export type SendTestNotificationRequestDtoBetaMediumEnum = typeof SendTestNotificationRequestDtoBetaMediumEnum[keyof typeof SendTestNotificationRequestDtoBetaMediumEnum];
|
|
15604
15937
|
|
|
15605
|
-
/**
|
|
15606
|
-
* Reference to beforeProvisioningRule for this Service Desk integration
|
|
15607
|
-
* @export
|
|
15608
|
-
* @interface ServiceDeskIntegrationDtoAllOfBeforeProvisioningRuleBeta
|
|
15609
|
-
*/
|
|
15610
|
-
export interface ServiceDeskIntegrationDtoAllOfBeforeProvisioningRuleBeta {
|
|
15611
|
-
/**
|
|
15612
|
-
* The type of object being referenced
|
|
15613
|
-
* @type {string}
|
|
15614
|
-
* @memberof ServiceDeskIntegrationDtoAllOfBeforeProvisioningRuleBeta
|
|
15615
|
-
*/
|
|
15616
|
-
'type'?: ServiceDeskIntegrationDtoAllOfBeforeProvisioningRuleBetaTypeEnum;
|
|
15617
|
-
/**
|
|
15618
|
-
* ID of the rule
|
|
15619
|
-
* @type {string}
|
|
15620
|
-
* @memberof ServiceDeskIntegrationDtoAllOfBeforeProvisioningRuleBeta
|
|
15621
|
-
*/
|
|
15622
|
-
'id'?: string;
|
|
15623
|
-
/**
|
|
15624
|
-
* Human-readable display name of the rule
|
|
15625
|
-
* @type {string}
|
|
15626
|
-
* @memberof ServiceDeskIntegrationDtoAllOfBeforeProvisioningRuleBeta
|
|
15627
|
-
*/
|
|
15628
|
-
'name'?: string;
|
|
15629
|
-
}
|
|
15630
|
-
|
|
15631
|
-
export const ServiceDeskIntegrationDtoAllOfBeforeProvisioningRuleBetaTypeEnum = {
|
|
15632
|
-
Rule: 'RULE'
|
|
15633
|
-
} as const;
|
|
15634
|
-
|
|
15635
|
-
export type ServiceDeskIntegrationDtoAllOfBeforeProvisioningRuleBetaTypeEnum = typeof ServiceDeskIntegrationDtoAllOfBeforeProvisioningRuleBetaTypeEnum[keyof typeof ServiceDeskIntegrationDtoAllOfBeforeProvisioningRuleBetaTypeEnum];
|
|
15636
|
-
|
|
15637
15938
|
/**
|
|
15638
15939
|
* Specification of a Service Desk integration
|
|
15639
15940
|
* @export
|
|
@@ -15653,17 +15954,17 @@ export interface ServiceDeskIntegrationDtoAllOfBeta {
|
|
|
15653
15954
|
*/
|
|
15654
15955
|
'type': string;
|
|
15655
15956
|
/**
|
|
15656
|
-
*
|
|
15657
|
-
* @type {
|
|
15957
|
+
* Reference to the identity that is the owner of this Service Desk integration
|
|
15958
|
+
* @type {BaseReferenceDtoBeta}
|
|
15658
15959
|
* @memberof ServiceDeskIntegrationDtoAllOfBeta
|
|
15659
15960
|
*/
|
|
15660
|
-
'ownerRef'?:
|
|
15961
|
+
'ownerRef'?: BaseReferenceDtoBeta;
|
|
15661
15962
|
/**
|
|
15662
|
-
*
|
|
15663
|
-
* @type {
|
|
15963
|
+
* Reference to the source cluster for this Service Desk integration
|
|
15964
|
+
* @type {BaseReferenceDtoBeta}
|
|
15664
15965
|
* @memberof ServiceDeskIntegrationDtoAllOfBeta
|
|
15665
15966
|
*/
|
|
15666
|
-
'clusterRef'?:
|
|
15967
|
+
'clusterRef'?: BaseReferenceDtoBeta;
|
|
15667
15968
|
/**
|
|
15668
15969
|
* ID of the cluster for the Service Desk integration (replaced by clusterRef, retained for backward compatibility)
|
|
15669
15970
|
* @type {string}
|
|
@@ -15691,76 +15992,12 @@ export interface ServiceDeskIntegrationDtoAllOfBeta {
|
|
|
15691
15992
|
*/
|
|
15692
15993
|
'attributes': { [key: string]: any; };
|
|
15693
15994
|
/**
|
|
15694
|
-
*
|
|
15695
|
-
* @type {
|
|
15995
|
+
* Reference to beforeProvisioningRule for this Service Desk integration
|
|
15996
|
+
* @type {BaseReferenceDtoBeta}
|
|
15696
15997
|
* @memberof ServiceDeskIntegrationDtoAllOfBeta
|
|
15697
15998
|
*/
|
|
15698
|
-
'beforeProvisioningRule'?:
|
|
15699
|
-
}
|
|
15700
|
-
/**
|
|
15701
|
-
* Reference to the source cluster for this Service Desk integration
|
|
15702
|
-
* @export
|
|
15703
|
-
* @interface ServiceDeskIntegrationDtoAllOfClusterRefBeta
|
|
15704
|
-
*/
|
|
15705
|
-
export interface ServiceDeskIntegrationDtoAllOfClusterRefBeta {
|
|
15706
|
-
/**
|
|
15707
|
-
* The type of object being referenced
|
|
15708
|
-
* @type {string}
|
|
15709
|
-
* @memberof ServiceDeskIntegrationDtoAllOfClusterRefBeta
|
|
15710
|
-
*/
|
|
15711
|
-
'type'?: ServiceDeskIntegrationDtoAllOfClusterRefBetaTypeEnum;
|
|
15712
|
-
/**
|
|
15713
|
-
* ID of the cluster
|
|
15714
|
-
* @type {string}
|
|
15715
|
-
* @memberof ServiceDeskIntegrationDtoAllOfClusterRefBeta
|
|
15716
|
-
*/
|
|
15717
|
-
'id'?: string;
|
|
15718
|
-
/**
|
|
15719
|
-
* Human-readable display name of the cluster
|
|
15720
|
-
* @type {string}
|
|
15721
|
-
* @memberof ServiceDeskIntegrationDtoAllOfClusterRefBeta
|
|
15722
|
-
*/
|
|
15723
|
-
'name'?: string;
|
|
15724
|
-
}
|
|
15725
|
-
|
|
15726
|
-
export const ServiceDeskIntegrationDtoAllOfClusterRefBetaTypeEnum = {
|
|
15727
|
-
Cluster: 'CLUSTER'
|
|
15728
|
-
} as const;
|
|
15729
|
-
|
|
15730
|
-
export type ServiceDeskIntegrationDtoAllOfClusterRefBetaTypeEnum = typeof ServiceDeskIntegrationDtoAllOfClusterRefBetaTypeEnum[keyof typeof ServiceDeskIntegrationDtoAllOfClusterRefBetaTypeEnum];
|
|
15731
|
-
|
|
15732
|
-
/**
|
|
15733
|
-
* Reference to the identity that is the owner of this Service Desk integration
|
|
15734
|
-
* @export
|
|
15735
|
-
* @interface ServiceDeskIntegrationDtoAllOfOwnerRefBeta
|
|
15736
|
-
*/
|
|
15737
|
-
export interface ServiceDeskIntegrationDtoAllOfOwnerRefBeta {
|
|
15738
|
-
/**
|
|
15739
|
-
* The type of object being referenced
|
|
15740
|
-
* @type {string}
|
|
15741
|
-
* @memberof ServiceDeskIntegrationDtoAllOfOwnerRefBeta
|
|
15742
|
-
*/
|
|
15743
|
-
'type'?: ServiceDeskIntegrationDtoAllOfOwnerRefBetaTypeEnum;
|
|
15744
|
-
/**
|
|
15745
|
-
* ID of the identity
|
|
15746
|
-
* @type {string}
|
|
15747
|
-
* @memberof ServiceDeskIntegrationDtoAllOfOwnerRefBeta
|
|
15748
|
-
*/
|
|
15749
|
-
'id'?: string;
|
|
15750
|
-
/**
|
|
15751
|
-
* Human-readable display name of the identity
|
|
15752
|
-
* @type {string}
|
|
15753
|
-
* @memberof ServiceDeskIntegrationDtoAllOfOwnerRefBeta
|
|
15754
|
-
*/
|
|
15755
|
-
'name'?: string;
|
|
15999
|
+
'beforeProvisioningRule'?: BaseReferenceDtoBeta;
|
|
15756
16000
|
}
|
|
15757
|
-
|
|
15758
|
-
export const ServiceDeskIntegrationDtoAllOfOwnerRefBetaTypeEnum = {
|
|
15759
|
-
Identity: 'IDENTITY'
|
|
15760
|
-
} as const;
|
|
15761
|
-
|
|
15762
|
-
export type ServiceDeskIntegrationDtoAllOfOwnerRefBetaTypeEnum = typeof ServiceDeskIntegrationDtoAllOfOwnerRefBetaTypeEnum[keyof typeof ServiceDeskIntegrationDtoAllOfOwnerRefBetaTypeEnum];
|
|
15763
|
-
|
|
15764
16001
|
/**
|
|
15765
16002
|
*
|
|
15766
16003
|
* @export
|
|
@@ -15804,17 +16041,17 @@ export interface ServiceDeskIntegrationDtoBeta {
|
|
|
15804
16041
|
*/
|
|
15805
16042
|
'type': string;
|
|
15806
16043
|
/**
|
|
15807
|
-
*
|
|
15808
|
-
* @type {
|
|
16044
|
+
* Reference to the identity that is the owner of this Service Desk integration
|
|
16045
|
+
* @type {BaseReferenceDtoBeta}
|
|
15809
16046
|
* @memberof ServiceDeskIntegrationDtoBeta
|
|
15810
16047
|
*/
|
|
15811
|
-
'ownerRef'?:
|
|
16048
|
+
'ownerRef'?: BaseReferenceDtoBeta;
|
|
15812
16049
|
/**
|
|
15813
|
-
*
|
|
15814
|
-
* @type {
|
|
16050
|
+
* Reference to the source cluster for this Service Desk integration
|
|
16051
|
+
* @type {BaseReferenceDtoBeta}
|
|
15815
16052
|
* @memberof ServiceDeskIntegrationDtoBeta
|
|
15816
16053
|
*/
|
|
15817
|
-
'clusterRef'?:
|
|
16054
|
+
'clusterRef'?: BaseReferenceDtoBeta;
|
|
15818
16055
|
/**
|
|
15819
16056
|
* ID of the cluster for the Service Desk integration (replaced by clusterRef, retained for backward compatibility)
|
|
15820
16057
|
* @type {string}
|
|
@@ -15842,11 +16079,11 @@ export interface ServiceDeskIntegrationDtoBeta {
|
|
|
15842
16079
|
*/
|
|
15843
16080
|
'attributes': { [key: string]: any; };
|
|
15844
16081
|
/**
|
|
15845
|
-
*
|
|
15846
|
-
* @type {
|
|
16082
|
+
* Reference to beforeProvisioningRule for this Service Desk integration
|
|
16083
|
+
* @type {BaseReferenceDtoBeta}
|
|
15847
16084
|
* @memberof ServiceDeskIntegrationDtoBeta
|
|
15848
16085
|
*/
|
|
15849
|
-
'beforeProvisioningRule'?:
|
|
16086
|
+
'beforeProvisioningRule'?: BaseReferenceDtoBeta;
|
|
15850
16087
|
}
|
|
15851
16088
|
/**
|
|
15852
16089
|
* This is the model for a Service Desk integration template, used to create and edit Service Desk Integrations.
|
|
@@ -15958,7 +16195,7 @@ export interface SlimAccountAllOfBeta {
|
|
|
15958
16195
|
* @type {string}
|
|
15959
16196
|
* @memberof SlimAccountAllOfBeta
|
|
15960
16197
|
*/
|
|
15961
|
-
'uuid'?: string;
|
|
16198
|
+
'uuid'?: string | null;
|
|
15962
16199
|
/**
|
|
15963
16200
|
* The native identifier of the account
|
|
15964
16201
|
* @type {string}
|
|
@@ -15970,7 +16207,7 @@ export interface SlimAccountAllOfBeta {
|
|
|
15970
16207
|
* @type {string}
|
|
15971
16208
|
* @memberof SlimAccountAllOfBeta
|
|
15972
16209
|
*/
|
|
15973
|
-
'description'?: string;
|
|
16210
|
+
'description'?: string | null;
|
|
15974
16211
|
/**
|
|
15975
16212
|
* Whether the account is disabled
|
|
15976
16213
|
* @type {boolean}
|
|
@@ -16001,6 +16238,12 @@ export interface SlimAccountAllOfBeta {
|
|
|
16001
16238
|
* @memberof SlimAccountAllOfBeta
|
|
16002
16239
|
*/
|
|
16003
16240
|
'sourceId'?: string;
|
|
16241
|
+
/**
|
|
16242
|
+
* The name of the source
|
|
16243
|
+
* @type {string}
|
|
16244
|
+
* @memberof SlimAccountAllOfBeta
|
|
16245
|
+
*/
|
|
16246
|
+
'sourceName'?: string;
|
|
16004
16247
|
/**
|
|
16005
16248
|
* The ID of the identity for which this account is correlated to if not uncorrelated
|
|
16006
16249
|
* @type {string}
|
|
@@ -16049,7 +16292,7 @@ export interface SlimAccountBeta {
|
|
|
16049
16292
|
* @type {string}
|
|
16050
16293
|
* @memberof SlimAccountBeta
|
|
16051
16294
|
*/
|
|
16052
|
-
'uuid'?: string;
|
|
16295
|
+
'uuid'?: string | null;
|
|
16053
16296
|
/**
|
|
16054
16297
|
* The native identifier of the account
|
|
16055
16298
|
* @type {string}
|
|
@@ -16061,7 +16304,7 @@ export interface SlimAccountBeta {
|
|
|
16061
16304
|
* @type {string}
|
|
16062
16305
|
* @memberof SlimAccountBeta
|
|
16063
16306
|
*/
|
|
16064
|
-
'description'?: string;
|
|
16307
|
+
'description'?: string | null;
|
|
16065
16308
|
/**
|
|
16066
16309
|
* Whether the account is disabled
|
|
16067
16310
|
* @type {boolean}
|
|
@@ -16092,6 +16335,12 @@ export interface SlimAccountBeta {
|
|
|
16092
16335
|
* @memberof SlimAccountBeta
|
|
16093
16336
|
*/
|
|
16094
16337
|
'sourceId'?: string;
|
|
16338
|
+
/**
|
|
16339
|
+
* The name of the source
|
|
16340
|
+
* @type {string}
|
|
16341
|
+
* @memberof SlimAccountBeta
|
|
16342
|
+
*/
|
|
16343
|
+
'sourceName'?: string;
|
|
16095
16344
|
/**
|
|
16096
16345
|
* The ID of the identity for which this account is correlated to if not uncorrelated
|
|
16097
16346
|
* @type {string}
|
|
@@ -16846,6 +17095,12 @@ export interface SourceBeta {
|
|
|
16846
17095
|
* @memberof SourceBeta
|
|
16847
17096
|
*/
|
|
16848
17097
|
'id'?: string;
|
|
17098
|
+
/**
|
|
17099
|
+
* Human-readable name of the source
|
|
17100
|
+
* @type {string}
|
|
17101
|
+
* @memberof SourceBeta
|
|
17102
|
+
*/
|
|
17103
|
+
'name': string;
|
|
16849
17104
|
/**
|
|
16850
17105
|
* Human-readable description of the source
|
|
16851
17106
|
* @type {string}
|
|
@@ -16857,7 +17112,7 @@ export interface SourceBeta {
|
|
|
16857
17112
|
* @type {SourceOwnerBeta}
|
|
16858
17113
|
* @memberof SourceBeta
|
|
16859
17114
|
*/
|
|
16860
|
-
'owner'
|
|
17115
|
+
'owner': SourceOwnerBeta;
|
|
16861
17116
|
/**
|
|
16862
17117
|
*
|
|
16863
17118
|
* @type {SourceClusterBeta}
|
|
@@ -16923,7 +17178,7 @@ export interface SourceBeta {
|
|
|
16923
17178
|
* @type {string}
|
|
16924
17179
|
* @memberof SourceBeta
|
|
16925
17180
|
*/
|
|
16926
|
-
'connector'
|
|
17181
|
+
'connector': string;
|
|
16927
17182
|
/**
|
|
16928
17183
|
* The fully qualified name of the Java class that implements the connector interface.
|
|
16929
17184
|
* @type {string}
|
|
@@ -17134,6 +17389,19 @@ export interface SourceDeletedBeta {
|
|
|
17134
17389
|
*/
|
|
17135
17390
|
'actor': TriggerInputSourceDeletedActorBeta;
|
|
17136
17391
|
}
|
|
17392
|
+
/**
|
|
17393
|
+
* Entitlement Request Configuration
|
|
17394
|
+
* @export
|
|
17395
|
+
* @interface SourceEntitlementRequestConfigBeta
|
|
17396
|
+
*/
|
|
17397
|
+
export interface SourceEntitlementRequestConfigBeta {
|
|
17398
|
+
/**
|
|
17399
|
+
*
|
|
17400
|
+
* @type {EntitlementAccessRequestConfigBeta}
|
|
17401
|
+
* @memberof SourceEntitlementRequestConfigBeta
|
|
17402
|
+
*/
|
|
17403
|
+
'accessRequestConfig'?: EntitlementAccessRequestConfigBeta;
|
|
17404
|
+
}
|
|
17137
17405
|
/**
|
|
17138
17406
|
* Optional features that can be supported by an source. * AUTHENTICATE: The source supports pass-through authentication. * COMPOSITE: The source supports composite source creation. * DIRECT_PERMISSIONS: The source supports returning DirectPermissions. * DISCOVER_SCHEMA: The source supports discovering schemas for users and groups. * ENABLE The source supports reading if an account is enabled or disabled. * MANAGER_LOOKUP: The source supports looking up managers as they are encountered in a feed. This is the opposite of NO_RANDOM_ACCESS. * NO_RANDOM_ACCESS: The source does not support random access and the getObject() methods should not be called and expected to perform. * PROXY: The source can serve as a proxy for another source. When an source has a proxy, all connector calls made with that source are redirected through the connector for the proxy source. * SEARCH * TEMPLATE * UNLOCK: The source supports reading if an account is locked or unlocked. * UNSTRUCTURED_TARGETS: The source supports returning unstructured Targets. * SHAREPOINT_TARGET: The source supports returning unstructured Target data for SharePoint. It will be typically used by AD, LDAP sources. * PROVISIONING: The source can both read and write accounts. Having this feature implies that the provision() method is implemented. It also means that direct and target permissions can also be provisioned if they can be returned by aggregation. * GROUP_PROVISIONING: The source can both read and write groups. Having this feature implies that the provision() method is implemented. * SYNC_PROVISIONING: The source can provision accounts synchronously. * PASSWORD: The source can provision password changes. Since sources can never read passwords, this is should only be used in conjunction with the PROVISIONING feature. * CURRENT_PASSWORD: Some source types support verification of the current password * ACCOUNT_ONLY_REQUEST: The source supports requesting accounts without entitlements. * ADDITIONAL_ACCOUNT_REQUEST: The source supports requesting additional accounts. * NO_AGGREGATION: A source that does not support aggregation. * GROUPS_HAVE_MEMBERS: The source models group memberships with a member attribute on the group object rather than a groups attribute on the account object. This effects the implementation of delta account aggregation. * NO_PERMISSIONS_PROVISIONING: Indicates that the connector cannot provision direct or target permissions for accounts. When DIRECT_PERMISSIONS and PROVISIONING features are present, it is assumed that the connector can also provision direct permissions. This feature disables that assumption and causes permission request to be converted to work items for accounts. * NO_GROUP_PERMISSIONS_PROVISIONING: Indicates that the connector cannot provision direct or target permissions for groups. When DIRECT_PERMISSIONS and PROVISIONING features are present, it is assumed that the connector can also provision direct permissions. This feature disables that assumption and causes permission request to be converted to work items for groups. * NO_UNSTRUCTURED_TARGETS_PROVISIONING: This string will be replaced by NO_GROUP_PERMISSIONS_PROVISIONING and NO_PERMISSIONS_PROVISIONING. * NO_DIRECT_PERMISSIONS_PROVISIONING: This string will be replaced by NO_GROUP_PERMISSIONS_PROVISIONING and NO_PERMISSIONS_PROVISIONING.
|
|
17139
17407
|
* @export
|
|
@@ -21670,6 +21938,31 @@ export interface VisibilityCriteriaBeta {
|
|
|
21670
21938
|
*/
|
|
21671
21939
|
'expression'?: ExpressionBeta;
|
|
21672
21940
|
}
|
|
21941
|
+
/**
|
|
21942
|
+
*
|
|
21943
|
+
* @export
|
|
21944
|
+
* @interface WorkItemForwardBeta
|
|
21945
|
+
*/
|
|
21946
|
+
export interface WorkItemForwardBeta {
|
|
21947
|
+
/**
|
|
21948
|
+
* The ID of the identity to forward this work item to.
|
|
21949
|
+
* @type {string}
|
|
21950
|
+
* @memberof WorkItemForwardBeta
|
|
21951
|
+
*/
|
|
21952
|
+
'targetOwnerId': string;
|
|
21953
|
+
/**
|
|
21954
|
+
* Comments to send to the target owner
|
|
21955
|
+
* @type {string}
|
|
21956
|
+
* @memberof WorkItemForwardBeta
|
|
21957
|
+
*/
|
|
21958
|
+
'comment': string;
|
|
21959
|
+
/**
|
|
21960
|
+
* If true, send a notification to the target owner.
|
|
21961
|
+
* @type {boolean}
|
|
21962
|
+
* @memberof WorkItemForwardBeta
|
|
21963
|
+
*/
|
|
21964
|
+
'sendNotifications'?: boolean;
|
|
21965
|
+
}
|
|
21673
21966
|
/**
|
|
21674
21967
|
* The state of a work item
|
|
21675
21968
|
* @export
|
|
@@ -22174,6 +22467,12 @@ export interface WorkflowLibraryActionBeta {
|
|
|
22174
22467
|
* @memberof WorkflowLibraryActionBeta
|
|
22175
22468
|
*/
|
|
22176
22469
|
'name'?: string;
|
|
22470
|
+
/**
|
|
22471
|
+
* Action type
|
|
22472
|
+
* @type {string}
|
|
22473
|
+
* @memberof WorkflowLibraryActionBeta
|
|
22474
|
+
*/
|
|
22475
|
+
'type'?: string;
|
|
22177
22476
|
/**
|
|
22178
22477
|
* Action Description
|
|
22179
22478
|
* @type {string}
|
|
@@ -22186,6 +22485,12 @@ export interface WorkflowLibraryActionBeta {
|
|
|
22186
22485
|
* @memberof WorkflowLibraryActionBeta
|
|
22187
22486
|
*/
|
|
22188
22487
|
'formFields'?: Array<WorkflowLibraryFormFieldsBeta>;
|
|
22488
|
+
/**
|
|
22489
|
+
* Determines whether the dynamic output schema is returned in place of the action\'s output schema. The dynamic schema lists non-static properties, like properties of a workflow form where each form has different fields. These will be provided dynamically based on available form fields.
|
|
22490
|
+
* @type {boolean}
|
|
22491
|
+
* @memberof WorkflowLibraryActionBeta
|
|
22492
|
+
*/
|
|
22493
|
+
'isDynamicSchema'?: boolean;
|
|
22189
22494
|
/**
|
|
22190
22495
|
* Defines the output schema, if any, that this action produces.
|
|
22191
22496
|
* @type {object}
|
|
@@ -22239,7 +22544,21 @@ export const WorkflowLibraryFormFieldsBetaTypeEnum = {
|
|
|
22239
22544
|
Url: 'url',
|
|
22240
22545
|
Number: 'number',
|
|
22241
22546
|
Json: 'json',
|
|
22242
|
-
Checkbox: 'checkbox'
|
|
22547
|
+
Checkbox: 'checkbox',
|
|
22548
|
+
Jsonpath: 'jsonpath',
|
|
22549
|
+
Select: 'select',
|
|
22550
|
+
MultiType: 'multiType',
|
|
22551
|
+
Duration: 'duration',
|
|
22552
|
+
Toggle: 'toggle',
|
|
22553
|
+
IdentityPicker: 'identityPicker',
|
|
22554
|
+
GovernanceGroupPicker: 'governanceGroupPicker',
|
|
22555
|
+
String: 'string',
|
|
22556
|
+
Object: 'object',
|
|
22557
|
+
Array: 'array',
|
|
22558
|
+
Secret: 'secret',
|
|
22559
|
+
KeyValuePairs: 'keyValuePairs',
|
|
22560
|
+
EmailPicker: 'emailPicker',
|
|
22561
|
+
AdvancedToggle: 'advancedToggle'
|
|
22243
22562
|
} as const;
|
|
22244
22563
|
|
|
22245
22564
|
export type WorkflowLibraryFormFieldsBetaTypeEnum = typeof WorkflowLibraryFormFieldsBetaTypeEnum[keyof typeof WorkflowLibraryFormFieldsBetaTypeEnum];
|
|
@@ -22262,6 +22581,12 @@ export interface WorkflowLibraryOperatorBeta {
|
|
|
22262
22581
|
* @memberof WorkflowLibraryOperatorBeta
|
|
22263
22582
|
*/
|
|
22264
22583
|
'name'?: string;
|
|
22584
|
+
/**
|
|
22585
|
+
* Operator type
|
|
22586
|
+
* @type {string}
|
|
22587
|
+
* @memberof WorkflowLibraryOperatorBeta
|
|
22588
|
+
*/
|
|
22589
|
+
'type'?: string;
|
|
22265
22590
|
/**
|
|
22266
22591
|
* Description of the operator
|
|
22267
22592
|
* @type {string}
|
|
@@ -22305,18 +22630,24 @@ export interface WorkflowLibraryTriggerBeta {
|
|
|
22305
22630
|
* @memberof WorkflowLibraryTriggerBeta
|
|
22306
22631
|
*/
|
|
22307
22632
|
'description'?: string;
|
|
22633
|
+
/**
|
|
22634
|
+
* Determines whether the dynamic output schema is returned in place of the action\'s output schema. The dynamic schema lists non-static properties, like properties of a workflow form where each form has different fields. These will be provided dynamically based on available form fields.
|
|
22635
|
+
* @type {boolean}
|
|
22636
|
+
* @memberof WorkflowLibraryTriggerBeta
|
|
22637
|
+
*/
|
|
22638
|
+
'isDynamicSchema'?: boolean;
|
|
22308
22639
|
/**
|
|
22309
22640
|
* Example trigger payload if applicable
|
|
22310
22641
|
* @type {object}
|
|
22311
22642
|
* @memberof WorkflowLibraryTriggerBeta
|
|
22312
22643
|
*/
|
|
22313
|
-
'inputExample'?: object;
|
|
22644
|
+
'inputExample'?: object | null;
|
|
22314
22645
|
/**
|
|
22315
22646
|
* One or more inputs that the trigger accepts
|
|
22316
22647
|
* @type {Array<WorkflowLibraryFormFieldsBeta>}
|
|
22317
22648
|
* @memberof WorkflowLibraryTriggerBeta
|
|
22318
22649
|
*/
|
|
22319
|
-
'formFields'?: Array<WorkflowLibraryFormFieldsBeta
|
|
22650
|
+
'formFields'?: Array<WorkflowLibraryFormFieldsBeta> | null;
|
|
22320
22651
|
}
|
|
22321
22652
|
|
|
22322
22653
|
export const WorkflowLibraryTriggerBetaTypeEnum = {
|
|
@@ -22787,7 +23118,7 @@ export const AccessProfilesBetaApiFp = function(configuration?: Configuration) {
|
|
|
22787
23118
|
* @param {*} [axiosOptions] Override http request option.
|
|
22788
23119
|
* @throws {RequiredError}
|
|
22789
23120
|
*/
|
|
22790
|
-
async deleteAccessProfile(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
23121
|
+
async deleteAccessProfile(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
22791
23122
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAccessProfile(id, axiosOptions);
|
|
22792
23123
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
22793
23124
|
},
|
|
@@ -22886,7 +23217,7 @@ export const AccessProfilesBetaApiFactory = function (configuration?: Configurat
|
|
|
22886
23217
|
* @param {*} [axiosOptions] Override http request option.
|
|
22887
23218
|
* @throws {RequiredError}
|
|
22888
23219
|
*/
|
|
22889
|
-
deleteAccessProfile(id: string, axiosOptions?: any): AxiosPromise<
|
|
23220
|
+
deleteAccessProfile(id: string, axiosOptions?: any): AxiosPromise<void> {
|
|
22890
23221
|
return localVarFp.deleteAccessProfile(id, axiosOptions).then((request) => request(axios, basePath));
|
|
22891
23222
|
},
|
|
22892
23223
|
/**
|
|
@@ -24102,7 +24433,7 @@ export const AccessRequestsBetaApiAxiosParamCreator = function (configuration?:
|
|
|
24102
24433
|
};
|
|
24103
24434
|
},
|
|
24104
24435
|
/**
|
|
24105
|
-
* This submits the access request into IdentityNow, where it will follow any IdentityNow approval processes. Access requests are processed asynchronously by IdentityNow. A success response from this endpoint means the request has been submitted to IDN and is queued for processing. Because this endpoint is asynchronous, it will not return an error if you submit duplicate access requests in quick succession, or you submit an access request for access that is already in progress, approved, or rejected. It is best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [access request status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [pending access request approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) endpoints. You can also use the [search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items that an identity has before submitting an access request to ensure you are not requesting access that is already granted. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users, see \'/beta/access-request-config\' endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, Access Profiles and Entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If removeDate is specified, then the access will be removed on that date and time. *
|
|
24436
|
+
* This submits the access request into IdentityNow, where it will follow any IdentityNow approval processes. Access requests are processed asynchronously by IdentityNow. A success response from this endpoint means the request has been submitted to IDN and is queued for processing. Because this endpoint is asynchronous, it will not return an error if you submit duplicate access requests in quick succession, or you submit an access request for access that is already in progress, approved, or rejected. It is best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [access request status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [pending access request approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) endpoints. You can also use the [search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items that an identity has before submitting an access request to ensure you are not requesting access that is already granted. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users, see \'/beta/access-request-config\' endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, Access Profiles and Entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If removeDate is specified, then the access will be removed on that date and time only for Roles and Access Profiles. Entitlements are currently unsupported for removeDate. * Roles, Access Profiles, and Entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * [Roles, Access Profiles] RemoveData can be specified only if access don\'t have a sunset date. * Allows a manager to request to revoke access for direct employees. A token with ORG_ADMIN authority can also request to revoke access from anyone. NOTE: There is no indication to the approver in the IdentityNow UI that the approval request is for a revoke action. Take this into consideration when calling this API. A token with API authority cannot be used to call this endpoint.
|
|
24106
24437
|
* @summary Submit an Access Request
|
|
24107
24438
|
* @param {AccessRequestBeta} accessRequestBeta
|
|
24108
24439
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -24338,7 +24669,7 @@ export const AccessRequestsBetaApiFp = function(configuration?: Configuration) {
|
|
|
24338
24669
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24339
24670
|
},
|
|
24340
24671
|
/**
|
|
24341
|
-
* This submits the access request into IdentityNow, where it will follow any IdentityNow approval processes. Access requests are processed asynchronously by IdentityNow. A success response from this endpoint means the request has been submitted to IDN and is queued for processing. Because this endpoint is asynchronous, it will not return an error if you submit duplicate access requests in quick succession, or you submit an access request for access that is already in progress, approved, or rejected. It is best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [access request status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [pending access request approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) endpoints. You can also use the [search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items that an identity has before submitting an access request to ensure you are not requesting access that is already granted. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users, see \'/beta/access-request-config\' endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, Access Profiles and Entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If removeDate is specified, then the access will be removed on that date and time. *
|
|
24672
|
+
* This submits the access request into IdentityNow, where it will follow any IdentityNow approval processes. Access requests are processed asynchronously by IdentityNow. A success response from this endpoint means the request has been submitted to IDN and is queued for processing. Because this endpoint is asynchronous, it will not return an error if you submit duplicate access requests in quick succession, or you submit an access request for access that is already in progress, approved, or rejected. It is best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [access request status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [pending access request approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) endpoints. You can also use the [search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items that an identity has before submitting an access request to ensure you are not requesting access that is already granted. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users, see \'/beta/access-request-config\' endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, Access Profiles and Entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If removeDate is specified, then the access will be removed on that date and time only for Roles and Access Profiles. Entitlements are currently unsupported for removeDate. * Roles, Access Profiles, and Entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * [Roles, Access Profiles] RemoveData can be specified only if access don\'t have a sunset date. * Allows a manager to request to revoke access for direct employees. A token with ORG_ADMIN authority can also request to revoke access from anyone. NOTE: There is no indication to the approver in the IdentityNow UI that the approval request is for a revoke action. Take this into consideration when calling this API. A token with API authority cannot be used to call this endpoint.
|
|
24342
24673
|
* @summary Submit an Access Request
|
|
24343
24674
|
* @param {AccessRequestBeta} accessRequestBeta
|
|
24344
24675
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -24418,7 +24749,7 @@ export const AccessRequestsBetaApiFactory = function (configuration?: Configurat
|
|
|
24418
24749
|
return localVarFp.closeAccessRequest(closeAccessRequestBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
24419
24750
|
},
|
|
24420
24751
|
/**
|
|
24421
|
-
* This submits the access request into IdentityNow, where it will follow any IdentityNow approval processes. Access requests are processed asynchronously by IdentityNow. A success response from this endpoint means the request has been submitted to IDN and is queued for processing. Because this endpoint is asynchronous, it will not return an error if you submit duplicate access requests in quick succession, or you submit an access request for access that is already in progress, approved, or rejected. It is best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [access request status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [pending access request approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) endpoints. You can also use the [search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items that an identity has before submitting an access request to ensure you are not requesting access that is already granted. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users, see \'/beta/access-request-config\' endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, Access Profiles and Entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If removeDate is specified, then the access will be removed on that date and time. *
|
|
24752
|
+
* This submits the access request into IdentityNow, where it will follow any IdentityNow approval processes. Access requests are processed asynchronously by IdentityNow. A success response from this endpoint means the request has been submitted to IDN and is queued for processing. Because this endpoint is asynchronous, it will not return an error if you submit duplicate access requests in quick succession, or you submit an access request for access that is already in progress, approved, or rejected. It is best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [access request status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [pending access request approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) endpoints. You can also use the [search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items that an identity has before submitting an access request to ensure you are not requesting access that is already granted. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users, see \'/beta/access-request-config\' endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, Access Profiles and Entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If removeDate is specified, then the access will be removed on that date and time only for Roles and Access Profiles. Entitlements are currently unsupported for removeDate. * Roles, Access Profiles, and Entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * [Roles, Access Profiles] RemoveData can be specified only if access don\'t have a sunset date. * Allows a manager to request to revoke access for direct employees. A token with ORG_ADMIN authority can also request to revoke access from anyone. NOTE: There is no indication to the approver in the IdentityNow UI that the approval request is for a revoke action. Take this into consideration when calling this API. A token with API authority cannot be used to call this endpoint.
|
|
24422
24753
|
* @summary Submit an Access Request
|
|
24423
24754
|
* @param {AccessRequestBeta} accessRequestBeta
|
|
24424
24755
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -24617,7 +24948,7 @@ export class AccessRequestsBetaApi extends BaseAPI {
|
|
|
24617
24948
|
}
|
|
24618
24949
|
|
|
24619
24950
|
/**
|
|
24620
|
-
* This submits the access request into IdentityNow, where it will follow any IdentityNow approval processes. Access requests are processed asynchronously by IdentityNow. A success response from this endpoint means the request has been submitted to IDN and is queued for processing. Because this endpoint is asynchronous, it will not return an error if you submit duplicate access requests in quick succession, or you submit an access request for access that is already in progress, approved, or rejected. It is best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [access request status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [pending access request approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) endpoints. You can also use the [search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items that an identity has before submitting an access request to ensure you are not requesting access that is already granted. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users, see \'/beta/access-request-config\' endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, Access Profiles and Entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If removeDate is specified, then the access will be removed on that date and time. *
|
|
24951
|
+
* This submits the access request into IdentityNow, where it will follow any IdentityNow approval processes. Access requests are processed asynchronously by IdentityNow. A success response from this endpoint means the request has been submitted to IDN and is queued for processing. Because this endpoint is asynchronous, it will not return an error if you submit duplicate access requests in quick succession, or you submit an access request for access that is already in progress, approved, or rejected. It is best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [access request status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [pending access request approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) endpoints. You can also use the [search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items that an identity has before submitting an access request to ensure you are not requesting access that is already granted. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users, see \'/beta/access-request-config\' endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, Access Profiles and Entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If removeDate is specified, then the access will be removed on that date and time only for Roles and Access Profiles. Entitlements are currently unsupported for removeDate. * Roles, Access Profiles, and Entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * [Roles, Access Profiles] RemoveData can be specified only if access don\'t have a sunset date. * Allows a manager to request to revoke access for direct employees. A token with ORG_ADMIN authority can also request to revoke access from anyone. NOTE: There is no indication to the approver in the IdentityNow UI that the approval request is for a revoke action. Take this into consideration when calling this API. A token with API authority cannot be used to call this endpoint.
|
|
24621
24952
|
* @summary Submit an Access Request
|
|
24622
24953
|
* @param {AccessRequestsBetaApiCreateAccessRequestRequest} requestParameters Request parameters.
|
|
24623
24954
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -30190,7 +30521,7 @@ export const ConnectorsBetaApiFp = function(configuration?: Configuration) {
|
|
|
30190
30521
|
* @param {*} [axiosOptions] Override http request option.
|
|
30191
30522
|
* @throws {RequiredError}
|
|
30192
30523
|
*/
|
|
30193
|
-
async getConnectorList(filters?: string, limit?: number, offset?: number, count?: boolean, locale?: 'de' | 'false' | 'fi' | 'sv' | 'ru' | 'pt' | 'ko' | 'zh-TW' | 'en' | 'it' | 'fr' | 'zh-CN' | 'hu' | 'es' | 'cs' | 'ja' | 'pl' | 'da' | 'nl', axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V3ConnectorDtoBeta
|
|
30524
|
+
async getConnectorList(filters?: string, limit?: number, offset?: number, count?: boolean, locale?: 'de' | 'false' | 'fi' | 'sv' | 'ru' | 'pt' | 'ko' | 'zh-TW' | 'en' | 'it' | 'fr' | 'zh-CN' | 'hu' | 'es' | 'cs' | 'ja' | 'pl' | 'da' | 'nl', axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V3ConnectorDtoBeta>>> {
|
|
30194
30525
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getConnectorList(filters, limit, offset, count, locale, axiosOptions);
|
|
30195
30526
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
30196
30527
|
},
|
|
@@ -30215,7 +30546,7 @@ export const ConnectorsBetaApiFactory = function (configuration?: Configuration,
|
|
|
30215
30546
|
* @param {*} [axiosOptions] Override http request option.
|
|
30216
30547
|
* @throws {RequiredError}
|
|
30217
30548
|
*/
|
|
30218
|
-
getConnectorList(filters?: string, limit?: number, offset?: number, count?: boolean, locale?: 'de' | 'false' | 'fi' | 'sv' | 'ru' | 'pt' | 'ko' | 'zh-TW' | 'en' | 'it' | 'fr' | 'zh-CN' | 'hu' | 'es' | 'cs' | 'ja' | 'pl' | 'da' | 'nl', axiosOptions?: any): AxiosPromise<V3ConnectorDtoBeta
|
|
30549
|
+
getConnectorList(filters?: string, limit?: number, offset?: number, count?: boolean, locale?: 'de' | 'false' | 'fi' | 'sv' | 'ru' | 'pt' | 'ko' | 'zh-TW' | 'en' | 'it' | 'fr' | 'zh-CN' | 'hu' | 'es' | 'cs' | 'ja' | 'pl' | 'da' | 'nl', axiosOptions?: any): AxiosPromise<Array<V3ConnectorDtoBeta>> {
|
|
30219
30550
|
return localVarFp.getConnectorList(filters, limit, offset, count, locale, axiosOptions).then((request) => request(axios, basePath));
|
|
30220
30551
|
},
|
|
30221
30552
|
};
|
|
@@ -30626,9 +30957,9 @@ export class CustomPasswordInstructionsBetaApi extends BaseAPI {
|
|
|
30626
30957
|
export const EntitlementsBetaApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
30627
30958
|
return {
|
|
30628
30959
|
/**
|
|
30629
|
-
* This API returns an
|
|
30630
|
-
* @summary Get an
|
|
30631
|
-
* @param {string} id
|
|
30960
|
+
* This API returns an entitlement by its ID.
|
|
30961
|
+
* @summary Get an entitlement
|
|
30962
|
+
* @param {string} id The entitlement ID
|
|
30632
30963
|
* @param {*} [axiosOptions] Override http request option.
|
|
30633
30964
|
* @throws {RequiredError}
|
|
30634
30965
|
*/
|
|
@@ -30658,6 +30989,48 @@ export const EntitlementsBetaApiAxiosParamCreator = function (configuration?: Co
|
|
|
30658
30989
|
|
|
30659
30990
|
|
|
30660
30991
|
|
|
30992
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
30993
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
30994
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
30995
|
+
|
|
30996
|
+
return {
|
|
30997
|
+
url: toPathString(localVarUrlObj),
|
|
30998
|
+
axiosOptions: localVarRequestOptions,
|
|
30999
|
+
};
|
|
31000
|
+
},
|
|
31001
|
+
/**
|
|
31002
|
+
* This API returns the entitlement request config for a specified entitlement.
|
|
31003
|
+
* @summary Get Entitlement Request Config
|
|
31004
|
+
* @param {string} id Entitlement Id
|
|
31005
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
31006
|
+
* @throws {RequiredError}
|
|
31007
|
+
*/
|
|
31008
|
+
getEntitlementRequestConfig: async (id: string, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
31009
|
+
// verify required parameter 'id' is not null or undefined
|
|
31010
|
+
assertParamExists('getEntitlementRequestConfig', 'id', id)
|
|
31011
|
+
const localVarPath = `/entitlements/{id}/entitlement-request-config`
|
|
31012
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
31013
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
31014
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
31015
|
+
let baseOptions;
|
|
31016
|
+
if (configuration) {
|
|
31017
|
+
baseOptions = configuration.baseOptions;
|
|
31018
|
+
}
|
|
31019
|
+
|
|
31020
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
31021
|
+
const localVarHeaderParameter = {} as any;
|
|
31022
|
+
const localVarQueryParameter = {} as any;
|
|
31023
|
+
|
|
31024
|
+
// authentication oauth2 required
|
|
31025
|
+
// oauth required
|
|
31026
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
31027
|
+
|
|
31028
|
+
// authentication oauth2 required
|
|
31029
|
+
// oauth required
|
|
31030
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
31031
|
+
|
|
31032
|
+
|
|
31033
|
+
|
|
30661
31034
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
30662
31035
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
30663
31036
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -30865,9 +31238,9 @@ export const EntitlementsBetaApiAxiosParamCreator = function (configuration?: Co
|
|
|
30865
31238
|
};
|
|
30866
31239
|
},
|
|
30867
31240
|
/**
|
|
30868
|
-
* This API updates an existing
|
|
30869
|
-
* @summary Patch
|
|
30870
|
-
* @param {string} id ID of the
|
|
31241
|
+
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**. When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
31242
|
+
* @summary Patch an entitlement
|
|
31243
|
+
* @param {string} id ID of the entitlement to patch
|
|
30871
31244
|
* @param {Array<JsonPatchOperationBeta>} [jsonPatchOperationBeta]
|
|
30872
31245
|
* @param {*} [axiosOptions] Override http request option.
|
|
30873
31246
|
* @throws {RequiredError}
|
|
@@ -30910,6 +31283,54 @@ export const EntitlementsBetaApiAxiosParamCreator = function (configuration?: Co
|
|
|
30910
31283
|
axiosOptions: localVarRequestOptions,
|
|
30911
31284
|
};
|
|
30912
31285
|
},
|
|
31286
|
+
/**
|
|
31287
|
+
* This API replaces the entitlement request config for a specified entitlement.
|
|
31288
|
+
* @summary Replace Entitlement Request Config
|
|
31289
|
+
* @param {string} id Entitlement ID
|
|
31290
|
+
* @param {EntitlementRequestConfigBeta} entitlementRequestConfigBeta
|
|
31291
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
31292
|
+
* @throws {RequiredError}
|
|
31293
|
+
*/
|
|
31294
|
+
putEntitlementRequestConfig: async (id: string, entitlementRequestConfigBeta: EntitlementRequestConfigBeta, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
31295
|
+
// verify required parameter 'id' is not null or undefined
|
|
31296
|
+
assertParamExists('putEntitlementRequestConfig', 'id', id)
|
|
31297
|
+
// verify required parameter 'entitlementRequestConfigBeta' is not null or undefined
|
|
31298
|
+
assertParamExists('putEntitlementRequestConfig', 'entitlementRequestConfigBeta', entitlementRequestConfigBeta)
|
|
31299
|
+
const localVarPath = `/entitlements/{id}/entitlement-request-config`
|
|
31300
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
31301
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
31302
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
31303
|
+
let baseOptions;
|
|
31304
|
+
if (configuration) {
|
|
31305
|
+
baseOptions = configuration.baseOptions;
|
|
31306
|
+
}
|
|
31307
|
+
|
|
31308
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...axiosOptions};
|
|
31309
|
+
const localVarHeaderParameter = {} as any;
|
|
31310
|
+
const localVarQueryParameter = {} as any;
|
|
31311
|
+
|
|
31312
|
+
// authentication oauth2 required
|
|
31313
|
+
// oauth required
|
|
31314
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
31315
|
+
|
|
31316
|
+
// authentication oauth2 required
|
|
31317
|
+
// oauth required
|
|
31318
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
31319
|
+
|
|
31320
|
+
|
|
31321
|
+
|
|
31322
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
31323
|
+
|
|
31324
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
31325
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
31326
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
31327
|
+
localVarRequestOptions.data = serializeDataIfNeeded(entitlementRequestConfigBeta, localVarRequestOptions, configuration)
|
|
31328
|
+
|
|
31329
|
+
return {
|
|
31330
|
+
url: toPathString(localVarUrlObj),
|
|
31331
|
+
axiosOptions: localVarRequestOptions,
|
|
31332
|
+
};
|
|
31333
|
+
},
|
|
30913
31334
|
/**
|
|
30914
31335
|
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. allowed operations : **{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }** **{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }** A token with ORG_ADMIN or API authority is required to call this API.
|
|
30915
31336
|
* @summary Bulk update an entitlement list
|
|
@@ -30965,9 +31386,9 @@ export const EntitlementsBetaApiFp = function(configuration?: Configuration) {
|
|
|
30965
31386
|
const localVarAxiosParamCreator = EntitlementsBetaApiAxiosParamCreator(configuration)
|
|
30966
31387
|
return {
|
|
30967
31388
|
/**
|
|
30968
|
-
* This API returns an
|
|
30969
|
-
* @summary Get an
|
|
30970
|
-
* @param {string} id
|
|
31389
|
+
* This API returns an entitlement by its ID.
|
|
31390
|
+
* @summary Get an entitlement
|
|
31391
|
+
* @param {string} id The entitlement ID
|
|
30971
31392
|
* @param {*} [axiosOptions] Override http request option.
|
|
30972
31393
|
* @throws {RequiredError}
|
|
30973
31394
|
*/
|
|
@@ -30975,6 +31396,17 @@ export const EntitlementsBetaApiFp = function(configuration?: Configuration) {
|
|
|
30975
31396
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getEntitlement(id, axiosOptions);
|
|
30976
31397
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
30977
31398
|
},
|
|
31399
|
+
/**
|
|
31400
|
+
* This API returns the entitlement request config for a specified entitlement.
|
|
31401
|
+
* @summary Get Entitlement Request Config
|
|
31402
|
+
* @param {string} id Entitlement Id
|
|
31403
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
31404
|
+
* @throws {RequiredError}
|
|
31405
|
+
*/
|
|
31406
|
+
async getEntitlementRequestConfig(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementRequestConfigBeta>> {
|
|
31407
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getEntitlementRequestConfig(id, axiosOptions);
|
|
31408
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
31409
|
+
},
|
|
30978
31410
|
/**
|
|
30979
31411
|
* This API returns a list of all child entitlements of a given entitlement.
|
|
30980
31412
|
* @summary List of entitlements children
|
|
@@ -31023,9 +31455,9 @@ export const EntitlementsBetaApiFp = function(configuration?: Configuration) {
|
|
|
31023
31455
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
31024
31456
|
},
|
|
31025
31457
|
/**
|
|
31026
|
-
* This API updates an existing
|
|
31027
|
-
* @summary Patch
|
|
31028
|
-
* @param {string} id ID of the
|
|
31458
|
+
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**. When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
31459
|
+
* @summary Patch an entitlement
|
|
31460
|
+
* @param {string} id ID of the entitlement to patch
|
|
31029
31461
|
* @param {Array<JsonPatchOperationBeta>} [jsonPatchOperationBeta]
|
|
31030
31462
|
* @param {*} [axiosOptions] Override http request option.
|
|
31031
31463
|
* @throws {RequiredError}
|
|
@@ -31034,6 +31466,18 @@ export const EntitlementsBetaApiFp = function(configuration?: Configuration) {
|
|
|
31034
31466
|
const localVarAxiosArgs = await localVarAxiosParamCreator.patchEntitlement(id, jsonPatchOperationBeta, axiosOptions);
|
|
31035
31467
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
31036
31468
|
},
|
|
31469
|
+
/**
|
|
31470
|
+
* This API replaces the entitlement request config for a specified entitlement.
|
|
31471
|
+
* @summary Replace Entitlement Request Config
|
|
31472
|
+
* @param {string} id Entitlement ID
|
|
31473
|
+
* @param {EntitlementRequestConfigBeta} entitlementRequestConfigBeta
|
|
31474
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
31475
|
+
* @throws {RequiredError}
|
|
31476
|
+
*/
|
|
31477
|
+
async putEntitlementRequestConfig(id: string, entitlementRequestConfigBeta: EntitlementRequestConfigBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementRequestConfigBeta>> {
|
|
31478
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.putEntitlementRequestConfig(id, entitlementRequestConfigBeta, axiosOptions);
|
|
31479
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
31480
|
+
},
|
|
31037
31481
|
/**
|
|
31038
31482
|
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. allowed operations : **{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }** **{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }** A token with ORG_ADMIN or API authority is required to call this API.
|
|
31039
31483
|
* @summary Bulk update an entitlement list
|
|
@@ -31056,15 +31500,25 @@ export const EntitlementsBetaApiFactory = function (configuration?: Configuratio
|
|
|
31056
31500
|
const localVarFp = EntitlementsBetaApiFp(configuration)
|
|
31057
31501
|
return {
|
|
31058
31502
|
/**
|
|
31059
|
-
* This API returns an
|
|
31060
|
-
* @summary Get an
|
|
31061
|
-
* @param {string} id
|
|
31503
|
+
* This API returns an entitlement by its ID.
|
|
31504
|
+
* @summary Get an entitlement
|
|
31505
|
+
* @param {string} id The entitlement ID
|
|
31062
31506
|
* @param {*} [axiosOptions] Override http request option.
|
|
31063
31507
|
* @throws {RequiredError}
|
|
31064
31508
|
*/
|
|
31065
31509
|
getEntitlement(id: string, axiosOptions?: any): AxiosPromise<EntitlementBeta> {
|
|
31066
31510
|
return localVarFp.getEntitlement(id, axiosOptions).then((request) => request(axios, basePath));
|
|
31067
31511
|
},
|
|
31512
|
+
/**
|
|
31513
|
+
* This API returns the entitlement request config for a specified entitlement.
|
|
31514
|
+
* @summary Get Entitlement Request Config
|
|
31515
|
+
* @param {string} id Entitlement Id
|
|
31516
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
31517
|
+
* @throws {RequiredError}
|
|
31518
|
+
*/
|
|
31519
|
+
getEntitlementRequestConfig(id: string, axiosOptions?: any): AxiosPromise<EntitlementRequestConfigBeta> {
|
|
31520
|
+
return localVarFp.getEntitlementRequestConfig(id, axiosOptions).then((request) => request(axios, basePath));
|
|
31521
|
+
},
|
|
31068
31522
|
/**
|
|
31069
31523
|
* This API returns a list of all child entitlements of a given entitlement.
|
|
31070
31524
|
* @summary List of entitlements children
|
|
@@ -31110,9 +31564,9 @@ export const EntitlementsBetaApiFactory = function (configuration?: Configuratio
|
|
|
31110
31564
|
return localVarFp.listEntitlements(accountId, segmentedForIdentity, forSegmentIds, includeUnsegmented, offset, limit, count, sorters, filters, axiosOptions).then((request) => request(axios, basePath));
|
|
31111
31565
|
},
|
|
31112
31566
|
/**
|
|
31113
|
-
* This API updates an existing
|
|
31114
|
-
* @summary Patch
|
|
31115
|
-
* @param {string} id ID of the
|
|
31567
|
+
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**. When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
31568
|
+
* @summary Patch an entitlement
|
|
31569
|
+
* @param {string} id ID of the entitlement to patch
|
|
31116
31570
|
* @param {Array<JsonPatchOperationBeta>} [jsonPatchOperationBeta]
|
|
31117
31571
|
* @param {*} [axiosOptions] Override http request option.
|
|
31118
31572
|
* @throws {RequiredError}
|
|
@@ -31120,6 +31574,17 @@ export const EntitlementsBetaApiFactory = function (configuration?: Configuratio
|
|
|
31120
31574
|
patchEntitlement(id: string, jsonPatchOperationBeta?: Array<JsonPatchOperationBeta>, axiosOptions?: any): AxiosPromise<EntitlementBeta> {
|
|
31121
31575
|
return localVarFp.patchEntitlement(id, jsonPatchOperationBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
31122
31576
|
},
|
|
31577
|
+
/**
|
|
31578
|
+
* This API replaces the entitlement request config for a specified entitlement.
|
|
31579
|
+
* @summary Replace Entitlement Request Config
|
|
31580
|
+
* @param {string} id Entitlement ID
|
|
31581
|
+
* @param {EntitlementRequestConfigBeta} entitlementRequestConfigBeta
|
|
31582
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
31583
|
+
* @throws {RequiredError}
|
|
31584
|
+
*/
|
|
31585
|
+
putEntitlementRequestConfig(id: string, entitlementRequestConfigBeta: EntitlementRequestConfigBeta, axiosOptions?: any): AxiosPromise<EntitlementRequestConfigBeta> {
|
|
31586
|
+
return localVarFp.putEntitlementRequestConfig(id, entitlementRequestConfigBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
31587
|
+
},
|
|
31123
31588
|
/**
|
|
31124
31589
|
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. allowed operations : **{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }** **{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }** A token with ORG_ADMIN or API authority is required to call this API.
|
|
31125
31590
|
* @summary Bulk update an entitlement list
|
|
@@ -31140,13 +31605,27 @@ export const EntitlementsBetaApiFactory = function (configuration?: Configuratio
|
|
|
31140
31605
|
*/
|
|
31141
31606
|
export interface EntitlementsBetaApiGetEntitlementRequest {
|
|
31142
31607
|
/**
|
|
31143
|
-
*
|
|
31608
|
+
* The entitlement ID
|
|
31144
31609
|
* @type {string}
|
|
31145
31610
|
* @memberof EntitlementsBetaApiGetEntitlement
|
|
31146
31611
|
*/
|
|
31147
31612
|
readonly id: string
|
|
31148
31613
|
}
|
|
31149
31614
|
|
|
31615
|
+
/**
|
|
31616
|
+
* Request parameters for getEntitlementRequestConfig operation in EntitlementsBetaApi.
|
|
31617
|
+
* @export
|
|
31618
|
+
* @interface EntitlementsBetaApiGetEntitlementRequestConfigRequest
|
|
31619
|
+
*/
|
|
31620
|
+
export interface EntitlementsBetaApiGetEntitlementRequestConfigRequest {
|
|
31621
|
+
/**
|
|
31622
|
+
* Entitlement Id
|
|
31623
|
+
* @type {string}
|
|
31624
|
+
* @memberof EntitlementsBetaApiGetEntitlementRequestConfig
|
|
31625
|
+
*/
|
|
31626
|
+
readonly id: string
|
|
31627
|
+
}
|
|
31628
|
+
|
|
31150
31629
|
/**
|
|
31151
31630
|
* Request parameters for listEntitlementChildren operation in EntitlementsBetaApi.
|
|
31152
31631
|
* @export
|
|
@@ -31294,7 +31773,7 @@ export interface EntitlementsBetaApiListEntitlementsRequest {
|
|
|
31294
31773
|
*/
|
|
31295
31774
|
export interface EntitlementsBetaApiPatchEntitlementRequest {
|
|
31296
31775
|
/**
|
|
31297
|
-
* ID of the
|
|
31776
|
+
* ID of the entitlement to patch
|
|
31298
31777
|
* @type {string}
|
|
31299
31778
|
* @memberof EntitlementsBetaApiPatchEntitlement
|
|
31300
31779
|
*/
|
|
@@ -31308,6 +31787,27 @@ export interface EntitlementsBetaApiPatchEntitlementRequest {
|
|
|
31308
31787
|
readonly jsonPatchOperationBeta?: Array<JsonPatchOperationBeta>
|
|
31309
31788
|
}
|
|
31310
31789
|
|
|
31790
|
+
/**
|
|
31791
|
+
* Request parameters for putEntitlementRequestConfig operation in EntitlementsBetaApi.
|
|
31792
|
+
* @export
|
|
31793
|
+
* @interface EntitlementsBetaApiPutEntitlementRequestConfigRequest
|
|
31794
|
+
*/
|
|
31795
|
+
export interface EntitlementsBetaApiPutEntitlementRequestConfigRequest {
|
|
31796
|
+
/**
|
|
31797
|
+
* Entitlement ID
|
|
31798
|
+
* @type {string}
|
|
31799
|
+
* @memberof EntitlementsBetaApiPutEntitlementRequestConfig
|
|
31800
|
+
*/
|
|
31801
|
+
readonly id: string
|
|
31802
|
+
|
|
31803
|
+
/**
|
|
31804
|
+
*
|
|
31805
|
+
* @type {EntitlementRequestConfigBeta}
|
|
31806
|
+
* @memberof EntitlementsBetaApiPutEntitlementRequestConfig
|
|
31807
|
+
*/
|
|
31808
|
+
readonly entitlementRequestConfigBeta: EntitlementRequestConfigBeta
|
|
31809
|
+
}
|
|
31810
|
+
|
|
31311
31811
|
/**
|
|
31312
31812
|
* Request parameters for updateEntitlementsInBulk operation in EntitlementsBetaApi.
|
|
31313
31813
|
* @export
|
|
@@ -31330,8 +31830,8 @@ export interface EntitlementsBetaApiUpdateEntitlementsInBulkRequest {
|
|
|
31330
31830
|
*/
|
|
31331
31831
|
export class EntitlementsBetaApi extends BaseAPI {
|
|
31332
31832
|
/**
|
|
31333
|
-
* This API returns an
|
|
31334
|
-
* @summary Get an
|
|
31833
|
+
* This API returns an entitlement by its ID.
|
|
31834
|
+
* @summary Get an entitlement
|
|
31335
31835
|
* @param {EntitlementsBetaApiGetEntitlementRequest} requestParameters Request parameters.
|
|
31336
31836
|
* @param {*} [axiosOptions] Override http request option.
|
|
31337
31837
|
* @throws {RequiredError}
|
|
@@ -31341,6 +31841,18 @@ export class EntitlementsBetaApi extends BaseAPI {
|
|
|
31341
31841
|
return EntitlementsBetaApiFp(this.configuration).getEntitlement(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
31342
31842
|
}
|
|
31343
31843
|
|
|
31844
|
+
/**
|
|
31845
|
+
* This API returns the entitlement request config for a specified entitlement.
|
|
31846
|
+
* @summary Get Entitlement Request Config
|
|
31847
|
+
* @param {EntitlementsBetaApiGetEntitlementRequestConfigRequest} requestParameters Request parameters.
|
|
31848
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
31849
|
+
* @throws {RequiredError}
|
|
31850
|
+
* @memberof EntitlementsBetaApi
|
|
31851
|
+
*/
|
|
31852
|
+
public getEntitlementRequestConfig(requestParameters: EntitlementsBetaApiGetEntitlementRequestConfigRequest, axiosOptions?: AxiosRequestConfig) {
|
|
31853
|
+
return EntitlementsBetaApiFp(this.configuration).getEntitlementRequestConfig(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
31854
|
+
}
|
|
31855
|
+
|
|
31344
31856
|
/**
|
|
31345
31857
|
* This API returns a list of all child entitlements of a given entitlement.
|
|
31346
31858
|
* @summary List of entitlements children
|
|
@@ -31378,8 +31890,8 @@ export class EntitlementsBetaApi extends BaseAPI {
|
|
|
31378
31890
|
}
|
|
31379
31891
|
|
|
31380
31892
|
/**
|
|
31381
|
-
* This API updates an existing
|
|
31382
|
-
* @summary Patch
|
|
31893
|
+
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**. When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
31894
|
+
* @summary Patch an entitlement
|
|
31383
31895
|
* @param {EntitlementsBetaApiPatchEntitlementRequest} requestParameters Request parameters.
|
|
31384
31896
|
* @param {*} [axiosOptions] Override http request option.
|
|
31385
31897
|
* @throws {RequiredError}
|
|
@@ -31389,6 +31901,18 @@ export class EntitlementsBetaApi extends BaseAPI {
|
|
|
31389
31901
|
return EntitlementsBetaApiFp(this.configuration).patchEntitlement(requestParameters.id, requestParameters.jsonPatchOperationBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
31390
31902
|
}
|
|
31391
31903
|
|
|
31904
|
+
/**
|
|
31905
|
+
* This API replaces the entitlement request config for a specified entitlement.
|
|
31906
|
+
* @summary Replace Entitlement Request Config
|
|
31907
|
+
* @param {EntitlementsBetaApiPutEntitlementRequestConfigRequest} requestParameters Request parameters.
|
|
31908
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
31909
|
+
* @throws {RequiredError}
|
|
31910
|
+
* @memberof EntitlementsBetaApi
|
|
31911
|
+
*/
|
|
31912
|
+
public putEntitlementRequestConfig(requestParameters: EntitlementsBetaApiPutEntitlementRequestConfigRequest, axiosOptions?: AxiosRequestConfig) {
|
|
31913
|
+
return EntitlementsBetaApiFp(this.configuration).putEntitlementRequestConfig(requestParameters.id, requestParameters.entitlementRequestConfigBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
31914
|
+
}
|
|
31915
|
+
|
|
31392
31916
|
/**
|
|
31393
31917
|
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. allowed operations : **{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }** **{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }** A token with ORG_ADMIN or API authority is required to call this API.
|
|
31394
31918
|
* @summary Bulk update an entitlement list
|
|
@@ -33097,13 +33621,13 @@ export const IAIOutliersBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
33097
33621
|
},
|
|
33098
33622
|
/**
|
|
33099
33623
|
* This API returns a list of contributing feature objects for a single outlier. The object contains: feature name, feature value type, value, importance, display name (translated text or message key), description (translated text or message key), translation messages object Requires authorization scope of \'iai:outliers-management:read\'
|
|
33100
|
-
* @summary
|
|
33624
|
+
* @summary Get identity outlier\'s contibuting features
|
|
33101
33625
|
* @param {string} outlierId The outlier id
|
|
33102
33626
|
* @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.
|
|
33103
33627
|
* @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.
|
|
33104
33628
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
33105
33629
|
* @param {string} [includeTranslationMessages] Whether or not to include translation messages object in returned response
|
|
33106
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/
|
|
33630
|
+
* @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: **importance**
|
|
33107
33631
|
* @param {*} [axiosOptions] Override http request option.
|
|
33108
33632
|
* @throws {RequiredError}
|
|
33109
33633
|
*/
|
|
@@ -33315,13 +33839,13 @@ export const IAIOutliersBetaApiFp = function(configuration?: Configuration) {
|
|
|
33315
33839
|
},
|
|
33316
33840
|
/**
|
|
33317
33841
|
* This API returns a list of contributing feature objects for a single outlier. The object contains: feature name, feature value type, value, importance, display name (translated text or message key), description (translated text or message key), translation messages object Requires authorization scope of \'iai:outliers-management:read\'
|
|
33318
|
-
* @summary
|
|
33842
|
+
* @summary Get identity outlier\'s contibuting features
|
|
33319
33843
|
* @param {string} outlierId The outlier id
|
|
33320
33844
|
* @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.
|
|
33321
33845
|
* @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.
|
|
33322
33846
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
33323
33847
|
* @param {string} [includeTranslationMessages] Whether or not to include translation messages object in returned response
|
|
33324
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/
|
|
33848
|
+
* @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: **importance**
|
|
33325
33849
|
* @param {*} [axiosOptions] Override http request option.
|
|
33326
33850
|
* @throws {RequiredError}
|
|
33327
33851
|
*/
|
|
@@ -33412,13 +33936,13 @@ export const IAIOutliersBetaApiFactory = function (configuration?: Configuration
|
|
|
33412
33936
|
},
|
|
33413
33937
|
/**
|
|
33414
33938
|
* This API returns a list of contributing feature objects for a single outlier. The object contains: feature name, feature value type, value, importance, display name (translated text or message key), description (translated text or message key), translation messages object Requires authorization scope of \'iai:outliers-management:read\'
|
|
33415
|
-
* @summary
|
|
33939
|
+
* @summary Get identity outlier\'s contibuting features
|
|
33416
33940
|
* @param {string} outlierId The outlier id
|
|
33417
33941
|
* @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.
|
|
33418
33942
|
* @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.
|
|
33419
33943
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
33420
33944
|
* @param {string} [includeTranslationMessages] Whether or not to include translation messages object in returned response
|
|
33421
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/
|
|
33945
|
+
* @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: **importance**
|
|
33422
33946
|
* @param {*} [axiosOptions] Override http request option.
|
|
33423
33947
|
* @throws {RequiredError}
|
|
33424
33948
|
*/
|
|
@@ -33609,7 +34133,7 @@ export interface IAIOutliersBetaApiGetPeerGroupOutliersContributingFeaturesReque
|
|
|
33609
34133
|
readonly includeTranslationMessages?: string
|
|
33610
34134
|
|
|
33611
34135
|
/**
|
|
33612
|
-
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/
|
|
34136
|
+
* 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: **importance**
|
|
33613
34137
|
* @type {string}
|
|
33614
34138
|
* @memberof IAIOutliersBetaApiGetPeerGroupOutliersContributingFeatures
|
|
33615
34139
|
*/
|
|
@@ -33701,7 +34225,7 @@ export class IAIOutliersBetaApi extends BaseAPI {
|
|
|
33701
34225
|
|
|
33702
34226
|
/**
|
|
33703
34227
|
* This API returns a list of contributing feature objects for a single outlier. The object contains: feature name, feature value type, value, importance, display name (translated text or message key), description (translated text or message key), translation messages object Requires authorization scope of \'iai:outliers-management:read\'
|
|
33704
|
-
* @summary
|
|
34228
|
+
* @summary Get identity outlier\'s contibuting features
|
|
33705
34229
|
* @param {IAIOutliersBetaApiGetPeerGroupOutliersContributingFeaturesRequest} requestParameters Request parameters.
|
|
33706
34230
|
* @param {*} [axiosOptions] Override http request option.
|
|
33707
34231
|
* @throws {RequiredError}
|
|
@@ -33744,13 +34268,14 @@ export class IAIOutliersBetaApi extends BaseAPI {
|
|
|
33744
34268
|
export const IAIPeerGroupStrategiesBetaApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
33745
34269
|
return {
|
|
33746
34270
|
/**
|
|
33747
|
-
* This API will be used by Identity Governance systems to identify identities that are not included in an organization\'s peer groups. By default, 250 identities are returned. You can specify between 1 and 1000 number of identities that can be returned.
|
|
34271
|
+
* -- Deprecated : See \'IAI Outliers\' This API will be used by Identity Governance systems to identify identities that are not included in an organization\'s peer groups. By default, 250 identities are returned. You can specify between 1 and 1000 number of identities that can be returned.
|
|
33748
34272
|
* @summary Identity Outliers List
|
|
33749
34273
|
* @param {string} strategy The strategy used to create peer groups. Currently, \'entitlement\' is supported.
|
|
33750
34274
|
* @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.
|
|
33751
34275
|
* @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.
|
|
33752
34276
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
33753
34277
|
* @param {*} [axiosOptions] Override http request option.
|
|
34278
|
+
* @deprecated
|
|
33754
34279
|
* @throws {RequiredError}
|
|
33755
34280
|
*/
|
|
33756
34281
|
getPeerGroupOutliers: async (strategy: string, limit?: number, offset?: number, count?: boolean, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -33811,13 +34336,14 @@ export const IAIPeerGroupStrategiesBetaApiFp = function(configuration?: Configur
|
|
|
33811
34336
|
const localVarAxiosParamCreator = IAIPeerGroupStrategiesBetaApiAxiosParamCreator(configuration)
|
|
33812
34337
|
return {
|
|
33813
34338
|
/**
|
|
33814
|
-
* This API will be used by Identity Governance systems to identify identities that are not included in an organization\'s peer groups. By default, 250 identities are returned. You can specify between 1 and 1000 number of identities that can be returned.
|
|
34339
|
+
* -- Deprecated : See \'IAI Outliers\' This API will be used by Identity Governance systems to identify identities that are not included in an organization\'s peer groups. By default, 250 identities are returned. You can specify between 1 and 1000 number of identities that can be returned.
|
|
33815
34340
|
* @summary Identity Outliers List
|
|
33816
34341
|
* @param {string} strategy The strategy used to create peer groups. Currently, \'entitlement\' is supported.
|
|
33817
34342
|
* @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.
|
|
33818
34343
|
* @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.
|
|
33819
34344
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
33820
34345
|
* @param {*} [axiosOptions] Override http request option.
|
|
34346
|
+
* @deprecated
|
|
33821
34347
|
* @throws {RequiredError}
|
|
33822
34348
|
*/
|
|
33823
34349
|
async getPeerGroupOutliers(strategy: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PeerGroupMemberBeta>>> {
|
|
@@ -33835,13 +34361,14 @@ export const IAIPeerGroupStrategiesBetaApiFactory = function (configuration?: Co
|
|
|
33835
34361
|
const localVarFp = IAIPeerGroupStrategiesBetaApiFp(configuration)
|
|
33836
34362
|
return {
|
|
33837
34363
|
/**
|
|
33838
|
-
* This API will be used by Identity Governance systems to identify identities that are not included in an organization\'s peer groups. By default, 250 identities are returned. You can specify between 1 and 1000 number of identities that can be returned.
|
|
34364
|
+
* -- Deprecated : See \'IAI Outliers\' This API will be used by Identity Governance systems to identify identities that are not included in an organization\'s peer groups. By default, 250 identities are returned. You can specify between 1 and 1000 number of identities that can be returned.
|
|
33839
34365
|
* @summary Identity Outliers List
|
|
33840
34366
|
* @param {string} strategy The strategy used to create peer groups. Currently, \'entitlement\' is supported.
|
|
33841
34367
|
* @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.
|
|
33842
34368
|
* @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.
|
|
33843
34369
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
33844
34370
|
* @param {*} [axiosOptions] Override http request option.
|
|
34371
|
+
* @deprecated
|
|
33845
34372
|
* @throws {RequiredError}
|
|
33846
34373
|
*/
|
|
33847
34374
|
getPeerGroupOutliers(strategy: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: any): AxiosPromise<Array<PeerGroupMemberBeta>> {
|
|
@@ -33893,10 +34420,11 @@ export interface IAIPeerGroupStrategiesBetaApiGetPeerGroupOutliersRequest {
|
|
|
33893
34420
|
*/
|
|
33894
34421
|
export class IAIPeerGroupStrategiesBetaApi extends BaseAPI {
|
|
33895
34422
|
/**
|
|
33896
|
-
* This API will be used by Identity Governance systems to identify identities that are not included in an organization\'s peer groups. By default, 250 identities are returned. You can specify between 1 and 1000 number of identities that can be returned.
|
|
34423
|
+
* -- Deprecated : See \'IAI Outliers\' This API will be used by Identity Governance systems to identify identities that are not included in an organization\'s peer groups. By default, 250 identities are returned. You can specify between 1 and 1000 number of identities that can be returned.
|
|
33897
34424
|
* @summary Identity Outliers List
|
|
33898
34425
|
* @param {IAIPeerGroupStrategiesBetaApiGetPeerGroupOutliersRequest} requestParameters Request parameters.
|
|
33899
34426
|
* @param {*} [axiosOptions] Override http request option.
|
|
34427
|
+
* @deprecated
|
|
33900
34428
|
* @throws {RequiredError}
|
|
33901
34429
|
* @memberof IAIPeerGroupStrategiesBetaApi
|
|
33902
34430
|
*/
|
|
@@ -36721,6 +37249,158 @@ export class IAIRoleMiningBetaApi extends BaseAPI {
|
|
|
36721
37249
|
*/
|
|
36722
37250
|
export const IdentitiesBetaApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
36723
37251
|
return {
|
|
37252
|
+
/**
|
|
37253
|
+
* The API returns successful response if the requested identity was deleted.
|
|
37254
|
+
* @summary Deletes an identity.
|
|
37255
|
+
* @param {string} identityId Identity Id
|
|
37256
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
37257
|
+
* @throws {RequiredError}
|
|
37258
|
+
*/
|
|
37259
|
+
deleteIdentity: async (identityId: string, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
37260
|
+
// verify required parameter 'identityId' is not null or undefined
|
|
37261
|
+
assertParamExists('deleteIdentity', 'identityId', identityId)
|
|
37262
|
+
const localVarPath = `/identities/{id}`
|
|
37263
|
+
.replace(`{${"identityId"}}`, encodeURIComponent(String(identityId)));
|
|
37264
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
37265
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
37266
|
+
let baseOptions;
|
|
37267
|
+
if (configuration) {
|
|
37268
|
+
baseOptions = configuration.baseOptions;
|
|
37269
|
+
}
|
|
37270
|
+
|
|
37271
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};
|
|
37272
|
+
const localVarHeaderParameter = {} as any;
|
|
37273
|
+
const localVarQueryParameter = {} as any;
|
|
37274
|
+
|
|
37275
|
+
// authentication oauth2 required
|
|
37276
|
+
// oauth required
|
|
37277
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
37278
|
+
|
|
37279
|
+
// authentication oauth2 required
|
|
37280
|
+
// oauth required
|
|
37281
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
37282
|
+
|
|
37283
|
+
|
|
37284
|
+
|
|
37285
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
37286
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
37287
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
37288
|
+
|
|
37289
|
+
return {
|
|
37290
|
+
url: toPathString(localVarUrlObj),
|
|
37291
|
+
axiosOptions: localVarRequestOptions,
|
|
37292
|
+
};
|
|
37293
|
+
},
|
|
37294
|
+
/**
|
|
37295
|
+
* This API returns a single identity using the Identity ID.
|
|
37296
|
+
* @summary Identity Details
|
|
37297
|
+
* @param {string} identityId Identity Id
|
|
37298
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
37299
|
+
* @throws {RequiredError}
|
|
37300
|
+
*/
|
|
37301
|
+
getIdentity: async (identityId: string, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
37302
|
+
// verify required parameter 'identityId' is not null or undefined
|
|
37303
|
+
assertParamExists('getIdentity', 'identityId', identityId)
|
|
37304
|
+
const localVarPath = `/identities/{id}`
|
|
37305
|
+
.replace(`{${"identityId"}}`, encodeURIComponent(String(identityId)));
|
|
37306
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
37307
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
37308
|
+
let baseOptions;
|
|
37309
|
+
if (configuration) {
|
|
37310
|
+
baseOptions = configuration.baseOptions;
|
|
37311
|
+
}
|
|
37312
|
+
|
|
37313
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
37314
|
+
const localVarHeaderParameter = {} as any;
|
|
37315
|
+
const localVarQueryParameter = {} as any;
|
|
37316
|
+
|
|
37317
|
+
// authentication oauth2 required
|
|
37318
|
+
// oauth required
|
|
37319
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
37320
|
+
|
|
37321
|
+
// authentication oauth2 required
|
|
37322
|
+
// oauth required
|
|
37323
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
37324
|
+
|
|
37325
|
+
|
|
37326
|
+
|
|
37327
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
37328
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
37329
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
37330
|
+
|
|
37331
|
+
return {
|
|
37332
|
+
url: toPathString(localVarUrlObj),
|
|
37333
|
+
axiosOptions: localVarRequestOptions,
|
|
37334
|
+
};
|
|
37335
|
+
},
|
|
37336
|
+
/**
|
|
37337
|
+
* This API returns a list of identities.
|
|
37338
|
+
* @summary List Identities
|
|
37339
|
+
* @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 is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **alias**: *eq, sw* **firstname**: *eq, sw* **lastname**: *eq, sw* **email**: *eq, sw* **cloudStatus**: *eq* **processingState**: *eq* **correlated**: *eq* **protected**: *eq*
|
|
37340
|
+
* @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, alias, cloudStatus**
|
|
37341
|
+
* @param {'CORRELATED_ONLY' | 'NONE'} [defaultFilter] Adds additional filter to filters query parameter. CORRELATED_ONLY adds correlated=true and returns only identities that are correlated. NONE does not add any and returns all identities that satisfy filters query parameter.
|
|
37342
|
+
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
37343
|
+
* @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.
|
|
37344
|
+
* @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.
|
|
37345
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
37346
|
+
* @throws {RequiredError}
|
|
37347
|
+
*/
|
|
37348
|
+
listIdentities: async (filters?: string, sorters?: string, defaultFilter?: 'CORRELATED_ONLY' | 'NONE', count?: boolean, limit?: number, offset?: number, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
37349
|
+
const localVarPath = `/identities`;
|
|
37350
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
37351
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
37352
|
+
let baseOptions;
|
|
37353
|
+
if (configuration) {
|
|
37354
|
+
baseOptions = configuration.baseOptions;
|
|
37355
|
+
}
|
|
37356
|
+
|
|
37357
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
37358
|
+
const localVarHeaderParameter = {} as any;
|
|
37359
|
+
const localVarQueryParameter = {} as any;
|
|
37360
|
+
|
|
37361
|
+
// authentication oauth2 required
|
|
37362
|
+
// oauth required
|
|
37363
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
37364
|
+
|
|
37365
|
+
// authentication oauth2 required
|
|
37366
|
+
// oauth required
|
|
37367
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
37368
|
+
|
|
37369
|
+
if (filters !== undefined) {
|
|
37370
|
+
localVarQueryParameter['filters'] = filters;
|
|
37371
|
+
}
|
|
37372
|
+
|
|
37373
|
+
if (sorters !== undefined) {
|
|
37374
|
+
localVarQueryParameter['sorters'] = sorters;
|
|
37375
|
+
}
|
|
37376
|
+
|
|
37377
|
+
if (defaultFilter !== undefined) {
|
|
37378
|
+
localVarQueryParameter['defaultFilter'] = defaultFilter;
|
|
37379
|
+
}
|
|
37380
|
+
|
|
37381
|
+
if (count !== undefined) {
|
|
37382
|
+
localVarQueryParameter['count'] = count;
|
|
37383
|
+
}
|
|
37384
|
+
|
|
37385
|
+
if (limit !== undefined) {
|
|
37386
|
+
localVarQueryParameter['limit'] = limit;
|
|
37387
|
+
}
|
|
37388
|
+
|
|
37389
|
+
if (offset !== undefined) {
|
|
37390
|
+
localVarQueryParameter['offset'] = offset;
|
|
37391
|
+
}
|
|
37392
|
+
|
|
37393
|
+
|
|
37394
|
+
|
|
37395
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
37396
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
37397
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
37398
|
+
|
|
37399
|
+
return {
|
|
37400
|
+
url: toPathString(localVarUrlObj),
|
|
37401
|
+
axiosOptions: localVarRequestOptions,
|
|
37402
|
+
};
|
|
37403
|
+
},
|
|
36724
37404
|
/**
|
|
36725
37405
|
* This end-point performs attribute synchronization for a selected identity. The endpoint can be called once in 10 seconds per identity. A token with ORG_ADMIN or API authority is required to call this API.
|
|
36726
37406
|
* @summary Attribute synchronization for single identity.
|
|
@@ -36773,6 +37453,44 @@ export const IdentitiesBetaApiAxiosParamCreator = function (configuration?: Conf
|
|
|
36773
37453
|
export const IdentitiesBetaApiFp = function(configuration?: Configuration) {
|
|
36774
37454
|
const localVarAxiosParamCreator = IdentitiesBetaApiAxiosParamCreator(configuration)
|
|
36775
37455
|
return {
|
|
37456
|
+
/**
|
|
37457
|
+
* The API returns successful response if the requested identity was deleted.
|
|
37458
|
+
* @summary Deletes an identity.
|
|
37459
|
+
* @param {string} identityId Identity Id
|
|
37460
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
37461
|
+
* @throws {RequiredError}
|
|
37462
|
+
*/
|
|
37463
|
+
async deleteIdentity(identityId: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
37464
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteIdentity(identityId, axiosOptions);
|
|
37465
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
37466
|
+
},
|
|
37467
|
+
/**
|
|
37468
|
+
* This API returns a single identity using the Identity ID.
|
|
37469
|
+
* @summary Identity Details
|
|
37470
|
+
* @param {string} identityId Identity Id
|
|
37471
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
37472
|
+
* @throws {RequiredError}
|
|
37473
|
+
*/
|
|
37474
|
+
async getIdentity(identityId: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityBeta>> {
|
|
37475
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getIdentity(identityId, axiosOptions);
|
|
37476
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
37477
|
+
},
|
|
37478
|
+
/**
|
|
37479
|
+
* This API returns a list of identities.
|
|
37480
|
+
* @summary List Identities
|
|
37481
|
+
* @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 is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **alias**: *eq, sw* **firstname**: *eq, sw* **lastname**: *eq, sw* **email**: *eq, sw* **cloudStatus**: *eq* **processingState**: *eq* **correlated**: *eq* **protected**: *eq*
|
|
37482
|
+
* @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, alias, cloudStatus**
|
|
37483
|
+
* @param {'CORRELATED_ONLY' | 'NONE'} [defaultFilter] Adds additional filter to filters query parameter. CORRELATED_ONLY adds correlated=true and returns only identities that are correlated. NONE does not add any and returns all identities that satisfy filters query parameter.
|
|
37484
|
+
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
37485
|
+
* @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.
|
|
37486
|
+
* @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.
|
|
37487
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
37488
|
+
* @throws {RequiredError}
|
|
37489
|
+
*/
|
|
37490
|
+
async listIdentities(filters?: string, sorters?: string, defaultFilter?: 'CORRELATED_ONLY' | 'NONE', count?: boolean, limit?: number, offset?: number, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IdentityBeta>>> {
|
|
37491
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listIdentities(filters, sorters, defaultFilter, count, limit, offset, axiosOptions);
|
|
37492
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
37493
|
+
},
|
|
36776
37494
|
/**
|
|
36777
37495
|
* This end-point performs attribute synchronization for a selected identity. The endpoint can be called once in 10 seconds per identity. A token with ORG_ADMIN or API authority is required to call this API.
|
|
36778
37496
|
* @summary Attribute synchronization for single identity.
|
|
@@ -36794,6 +37512,41 @@ export const IdentitiesBetaApiFp = function(configuration?: Configuration) {
|
|
|
36794
37512
|
export const IdentitiesBetaApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
36795
37513
|
const localVarFp = IdentitiesBetaApiFp(configuration)
|
|
36796
37514
|
return {
|
|
37515
|
+
/**
|
|
37516
|
+
* The API returns successful response if the requested identity was deleted.
|
|
37517
|
+
* @summary Deletes an identity.
|
|
37518
|
+
* @param {string} identityId Identity Id
|
|
37519
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
37520
|
+
* @throws {RequiredError}
|
|
37521
|
+
*/
|
|
37522
|
+
deleteIdentity(identityId: string, axiosOptions?: any): AxiosPromise<void> {
|
|
37523
|
+
return localVarFp.deleteIdentity(identityId, axiosOptions).then((request) => request(axios, basePath));
|
|
37524
|
+
},
|
|
37525
|
+
/**
|
|
37526
|
+
* This API returns a single identity using the Identity ID.
|
|
37527
|
+
* @summary Identity Details
|
|
37528
|
+
* @param {string} identityId Identity Id
|
|
37529
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
37530
|
+
* @throws {RequiredError}
|
|
37531
|
+
*/
|
|
37532
|
+
getIdentity(identityId: string, axiosOptions?: any): AxiosPromise<IdentityBeta> {
|
|
37533
|
+
return localVarFp.getIdentity(identityId, axiosOptions).then((request) => request(axios, basePath));
|
|
37534
|
+
},
|
|
37535
|
+
/**
|
|
37536
|
+
* This API returns a list of identities.
|
|
37537
|
+
* @summary List Identities
|
|
37538
|
+
* @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 is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **alias**: *eq, sw* **firstname**: *eq, sw* **lastname**: *eq, sw* **email**: *eq, sw* **cloudStatus**: *eq* **processingState**: *eq* **correlated**: *eq* **protected**: *eq*
|
|
37539
|
+
* @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, alias, cloudStatus**
|
|
37540
|
+
* @param {'CORRELATED_ONLY' | 'NONE'} [defaultFilter] Adds additional filter to filters query parameter. CORRELATED_ONLY adds correlated=true and returns only identities that are correlated. NONE does not add any and returns all identities that satisfy filters query parameter.
|
|
37541
|
+
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
37542
|
+
* @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.
|
|
37543
|
+
* @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.
|
|
37544
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
37545
|
+
* @throws {RequiredError}
|
|
37546
|
+
*/
|
|
37547
|
+
listIdentities(filters?: string, sorters?: string, defaultFilter?: 'CORRELATED_ONLY' | 'NONE', count?: boolean, limit?: number, offset?: number, axiosOptions?: any): AxiosPromise<Array<IdentityBeta>> {
|
|
37548
|
+
return localVarFp.listIdentities(filters, sorters, defaultFilter, count, limit, offset, axiosOptions).then((request) => request(axios, basePath));
|
|
37549
|
+
},
|
|
36797
37550
|
/**
|
|
36798
37551
|
* This end-point performs attribute synchronization for a selected identity. The endpoint can be called once in 10 seconds per identity. A token with ORG_ADMIN or API authority is required to call this API.
|
|
36799
37552
|
* @summary Attribute synchronization for single identity.
|
|
@@ -36807,6 +37560,83 @@ export const IdentitiesBetaApiFactory = function (configuration?: Configuration,
|
|
|
36807
37560
|
};
|
|
36808
37561
|
};
|
|
36809
37562
|
|
|
37563
|
+
/**
|
|
37564
|
+
* Request parameters for deleteIdentity operation in IdentitiesBetaApi.
|
|
37565
|
+
* @export
|
|
37566
|
+
* @interface IdentitiesBetaApiDeleteIdentityRequest
|
|
37567
|
+
*/
|
|
37568
|
+
export interface IdentitiesBetaApiDeleteIdentityRequest {
|
|
37569
|
+
/**
|
|
37570
|
+
* Identity Id
|
|
37571
|
+
* @type {string}
|
|
37572
|
+
* @memberof IdentitiesBetaApiDeleteIdentity
|
|
37573
|
+
*/
|
|
37574
|
+
readonly identityId: string
|
|
37575
|
+
}
|
|
37576
|
+
|
|
37577
|
+
/**
|
|
37578
|
+
* Request parameters for getIdentity operation in IdentitiesBetaApi.
|
|
37579
|
+
* @export
|
|
37580
|
+
* @interface IdentitiesBetaApiGetIdentityRequest
|
|
37581
|
+
*/
|
|
37582
|
+
export interface IdentitiesBetaApiGetIdentityRequest {
|
|
37583
|
+
/**
|
|
37584
|
+
* Identity Id
|
|
37585
|
+
* @type {string}
|
|
37586
|
+
* @memberof IdentitiesBetaApiGetIdentity
|
|
37587
|
+
*/
|
|
37588
|
+
readonly identityId: string
|
|
37589
|
+
}
|
|
37590
|
+
|
|
37591
|
+
/**
|
|
37592
|
+
* Request parameters for listIdentities operation in IdentitiesBetaApi.
|
|
37593
|
+
* @export
|
|
37594
|
+
* @interface IdentitiesBetaApiListIdentitiesRequest
|
|
37595
|
+
*/
|
|
37596
|
+
export interface IdentitiesBetaApiListIdentitiesRequest {
|
|
37597
|
+
/**
|
|
37598
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **alias**: *eq, sw* **firstname**: *eq, sw* **lastname**: *eq, sw* **email**: *eq, sw* **cloudStatus**: *eq* **processingState**: *eq* **correlated**: *eq* **protected**: *eq*
|
|
37599
|
+
* @type {string}
|
|
37600
|
+
* @memberof IdentitiesBetaApiListIdentities
|
|
37601
|
+
*/
|
|
37602
|
+
readonly filters?: string
|
|
37603
|
+
|
|
37604
|
+
/**
|
|
37605
|
+
* 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, alias, cloudStatus**
|
|
37606
|
+
* @type {string}
|
|
37607
|
+
* @memberof IdentitiesBetaApiListIdentities
|
|
37608
|
+
*/
|
|
37609
|
+
readonly sorters?: string
|
|
37610
|
+
|
|
37611
|
+
/**
|
|
37612
|
+
* Adds additional filter to filters query parameter. CORRELATED_ONLY adds correlated=true and returns only identities that are correlated. NONE does not add any and returns all identities that satisfy filters query parameter.
|
|
37613
|
+
* @type {'CORRELATED_ONLY' | 'NONE'}
|
|
37614
|
+
* @memberof IdentitiesBetaApiListIdentities
|
|
37615
|
+
*/
|
|
37616
|
+
readonly defaultFilter?: 'CORRELATED_ONLY' | 'NONE'
|
|
37617
|
+
|
|
37618
|
+
/**
|
|
37619
|
+
* If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
37620
|
+
* @type {boolean}
|
|
37621
|
+
* @memberof IdentitiesBetaApiListIdentities
|
|
37622
|
+
*/
|
|
37623
|
+
readonly count?: boolean
|
|
37624
|
+
|
|
37625
|
+
/**
|
|
37626
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
37627
|
+
* @type {number}
|
|
37628
|
+
* @memberof IdentitiesBetaApiListIdentities
|
|
37629
|
+
*/
|
|
37630
|
+
readonly limit?: number
|
|
37631
|
+
|
|
37632
|
+
/**
|
|
37633
|
+
* 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.
|
|
37634
|
+
* @type {number}
|
|
37635
|
+
* @memberof IdentitiesBetaApiListIdentities
|
|
37636
|
+
*/
|
|
37637
|
+
readonly offset?: number
|
|
37638
|
+
}
|
|
37639
|
+
|
|
36810
37640
|
/**
|
|
36811
37641
|
* Request parameters for synchronizeAttributesForIdentity operation in IdentitiesBetaApi.
|
|
36812
37642
|
* @export
|
|
@@ -36828,6 +37658,42 @@ export interface IdentitiesBetaApiSynchronizeAttributesForIdentityRequest {
|
|
|
36828
37658
|
* @extends {BaseAPI}
|
|
36829
37659
|
*/
|
|
36830
37660
|
export class IdentitiesBetaApi extends BaseAPI {
|
|
37661
|
+
/**
|
|
37662
|
+
* The API returns successful response if the requested identity was deleted.
|
|
37663
|
+
* @summary Deletes an identity.
|
|
37664
|
+
* @param {IdentitiesBetaApiDeleteIdentityRequest} requestParameters Request parameters.
|
|
37665
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
37666
|
+
* @throws {RequiredError}
|
|
37667
|
+
* @memberof IdentitiesBetaApi
|
|
37668
|
+
*/
|
|
37669
|
+
public deleteIdentity(requestParameters: IdentitiesBetaApiDeleteIdentityRequest, axiosOptions?: AxiosRequestConfig) {
|
|
37670
|
+
return IdentitiesBetaApiFp(this.configuration).deleteIdentity(requestParameters.identityId, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
37671
|
+
}
|
|
37672
|
+
|
|
37673
|
+
/**
|
|
37674
|
+
* This API returns a single identity using the Identity ID.
|
|
37675
|
+
* @summary Identity Details
|
|
37676
|
+
* @param {IdentitiesBetaApiGetIdentityRequest} requestParameters Request parameters.
|
|
37677
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
37678
|
+
* @throws {RequiredError}
|
|
37679
|
+
* @memberof IdentitiesBetaApi
|
|
37680
|
+
*/
|
|
37681
|
+
public getIdentity(requestParameters: IdentitiesBetaApiGetIdentityRequest, axiosOptions?: AxiosRequestConfig) {
|
|
37682
|
+
return IdentitiesBetaApiFp(this.configuration).getIdentity(requestParameters.identityId, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
37683
|
+
}
|
|
37684
|
+
|
|
37685
|
+
/**
|
|
37686
|
+
* This API returns a list of identities.
|
|
37687
|
+
* @summary List Identities
|
|
37688
|
+
* @param {IdentitiesBetaApiListIdentitiesRequest} requestParameters Request parameters.
|
|
37689
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
37690
|
+
* @throws {RequiredError}
|
|
37691
|
+
* @memberof IdentitiesBetaApi
|
|
37692
|
+
*/
|
|
37693
|
+
public listIdentities(requestParameters: IdentitiesBetaApiListIdentitiesRequest = {}, axiosOptions?: AxiosRequestConfig) {
|
|
37694
|
+
return IdentitiesBetaApiFp(this.configuration).listIdentities(requestParameters.filters, requestParameters.sorters, requestParameters.defaultFilter, requestParameters.count, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
37695
|
+
}
|
|
37696
|
+
|
|
36831
37697
|
/**
|
|
36832
37698
|
* This end-point performs attribute synchronization for a selected identity. The endpoint can be called once in 10 seconds per identity. A token with ORG_ADMIN or API authority is required to call this API.
|
|
36833
37699
|
* @summary Attribute synchronization for single identity.
|
|
@@ -36997,22 +37863,16 @@ export const IdentityHistoryBetaApiAxiosParamCreator = function (configuration?:
|
|
|
36997
37863
|
};
|
|
36998
37864
|
},
|
|
36999
37865
|
/**
|
|
37000
|
-
* This method retrieves
|
|
37001
|
-
* @summary
|
|
37866
|
+
* This method retrieves a specified identity Requires authorization scope of \'idn:identity-history:read\'
|
|
37867
|
+
* @summary Get latest snapshot of identity
|
|
37002
37868
|
* @param {string} id The identity id
|
|
37003
|
-
* @param {string} [from] The optional instant from which to return the access events
|
|
37004
|
-
* @param {Array<string>} [eventTypes] An optional list of event types to return. If null or empty, all events are returned
|
|
37005
|
-
* @param {Array<string>} [accessItemTypes] An optional list of access item types (app, account, entitlement, etc...) to return. If null or empty, all access items types are returned
|
|
37006
|
-
* @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.
|
|
37007
|
-
* @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.
|
|
37008
|
-
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
37009
37869
|
* @param {*} [axiosOptions] Override http request option.
|
|
37010
37870
|
* @throws {RequiredError}
|
|
37011
37871
|
*/
|
|
37012
|
-
|
|
37872
|
+
getHistoricalIdentity: async (id: string, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
37013
37873
|
// verify required parameter 'id' is not null or undefined
|
|
37014
|
-
assertParamExists('
|
|
37015
|
-
const localVarPath = `/historical-identities/{id}
|
|
37874
|
+
assertParamExists('getHistoricalIdentity', 'id', id)
|
|
37875
|
+
const localVarPath = `/historical-identities/{id}`
|
|
37016
37876
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
37017
37877
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
37018
37878
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -37033,30 +37893,6 @@ export const IdentityHistoryBetaApiAxiosParamCreator = function (configuration?:
|
|
|
37033
37893
|
// oauth required
|
|
37034
37894
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
37035
37895
|
|
|
37036
|
-
if (from !== undefined) {
|
|
37037
|
-
localVarQueryParameter['from'] = from;
|
|
37038
|
-
}
|
|
37039
|
-
|
|
37040
|
-
if (eventTypes) {
|
|
37041
|
-
localVarQueryParameter['eventTypes'] = eventTypes.join(COLLECTION_FORMATS.csv);
|
|
37042
|
-
}
|
|
37043
|
-
|
|
37044
|
-
if (accessItemTypes) {
|
|
37045
|
-
localVarQueryParameter['accessItemTypes'] = accessItemTypes.join(COLLECTION_FORMATS.csv);
|
|
37046
|
-
}
|
|
37047
|
-
|
|
37048
|
-
if (limit !== undefined) {
|
|
37049
|
-
localVarQueryParameter['limit'] = limit;
|
|
37050
|
-
}
|
|
37051
|
-
|
|
37052
|
-
if (offset !== undefined) {
|
|
37053
|
-
localVarQueryParameter['offset'] = offset;
|
|
37054
|
-
}
|
|
37055
|
-
|
|
37056
|
-
if (count !== undefined) {
|
|
37057
|
-
localVarQueryParameter['count'] = count;
|
|
37058
|
-
}
|
|
37059
|
-
|
|
37060
37896
|
|
|
37061
37897
|
|
|
37062
37898
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -37069,16 +37905,22 @@ export const IdentityHistoryBetaApiAxiosParamCreator = function (configuration?:
|
|
|
37069
37905
|
};
|
|
37070
37906
|
},
|
|
37071
37907
|
/**
|
|
37072
|
-
* This method retrieves
|
|
37073
|
-
* @summary
|
|
37908
|
+
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
37909
|
+
* @summary Lists all events for the given identity
|
|
37074
37910
|
* @param {string} id The identity id
|
|
37911
|
+
* @param {string} [from] The optional instant from which to return the access events
|
|
37912
|
+
* @param {Array<string>} [eventTypes] An optional list of event types to return. If null or empty, all events are returned
|
|
37913
|
+
* @param {Array<string>} [accessItemTypes] An optional list of access item types (app, account, entitlement, etc...) to return. If null or empty, all access items types are returned
|
|
37914
|
+
* @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.
|
|
37915
|
+
* @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.
|
|
37916
|
+
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
37075
37917
|
* @param {*} [axiosOptions] Override http request option.
|
|
37076
37918
|
* @throws {RequiredError}
|
|
37077
37919
|
*/
|
|
37078
|
-
|
|
37920
|
+
getHistoricalIdentityEvents: async (id: string, from?: string, eventTypes?: Array<string>, accessItemTypes?: Array<string>, limit?: number, offset?: number, count?: boolean, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
37079
37921
|
// verify required parameter 'id' is not null or undefined
|
|
37080
|
-
assertParamExists('
|
|
37081
|
-
const localVarPath = `/historical-identities/{id}`
|
|
37922
|
+
assertParamExists('getHistoricalIdentityEvents', 'id', id)
|
|
37923
|
+
const localVarPath = `/historical-identities/{id}/events`
|
|
37082
37924
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
37083
37925
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
37084
37926
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -37099,6 +37941,30 @@ export const IdentityHistoryBetaApiAxiosParamCreator = function (configuration?:
|
|
|
37099
37941
|
// oauth required
|
|
37100
37942
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
37101
37943
|
|
|
37944
|
+
if (from !== undefined) {
|
|
37945
|
+
localVarQueryParameter['from'] = from;
|
|
37946
|
+
}
|
|
37947
|
+
|
|
37948
|
+
if (eventTypes) {
|
|
37949
|
+
localVarQueryParameter['eventTypes'] = eventTypes.join(COLLECTION_FORMATS.csv);
|
|
37950
|
+
}
|
|
37951
|
+
|
|
37952
|
+
if (accessItemTypes) {
|
|
37953
|
+
localVarQueryParameter['accessItemTypes'] = accessItemTypes.join(COLLECTION_FORMATS.csv);
|
|
37954
|
+
}
|
|
37955
|
+
|
|
37956
|
+
if (limit !== undefined) {
|
|
37957
|
+
localVarQueryParameter['limit'] = limit;
|
|
37958
|
+
}
|
|
37959
|
+
|
|
37960
|
+
if (offset !== undefined) {
|
|
37961
|
+
localVarQueryParameter['offset'] = offset;
|
|
37962
|
+
}
|
|
37963
|
+
|
|
37964
|
+
if (count !== undefined) {
|
|
37965
|
+
localVarQueryParameter['count'] = count;
|
|
37966
|
+
}
|
|
37967
|
+
|
|
37102
37968
|
|
|
37103
37969
|
|
|
37104
37970
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -37271,7 +38137,7 @@ export const IdentityHistoryBetaApiAxiosParamCreator = function (configuration?:
|
|
|
37271
38137
|
};
|
|
37272
38138
|
},
|
|
37273
38139
|
/**
|
|
37274
|
-
* This gets the list of identities for the customer. This list end point does not support count=true request param. The total count of identities would never be returned even if the count param is specified in the request Requires authorization scope of \'idn:identity-history:read\'
|
|
38140
|
+
* This gets the list of identities for the customer. This list end point does not support count=true request param. The total count of identities would never be returned even if the count param is specified in the request Requires authorization scope of \'idn:identity-history:read\'
|
|
37275
38141
|
* @summary Lists all the identities
|
|
37276
38142
|
* @param {string} [startsWithQuery] This param is used for starts-with search for first, last and display name of the identity
|
|
37277
38143
|
* @param {boolean} [isDeleted] Indicates if we want to only list down deleted identities or not.
|
|
@@ -37281,7 +38147,7 @@ export const IdentityHistoryBetaApiAxiosParamCreator = function (configuration?:
|
|
|
37281
38147
|
* @param {*} [axiosOptions] Override http request option.
|
|
37282
38148
|
* @throws {RequiredError}
|
|
37283
38149
|
*/
|
|
37284
|
-
|
|
38150
|
+
listHistoricalIdentities: async (startsWithQuery?: string, isDeleted?: boolean, isActive?: boolean, limit?: number, offset?: number, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
37285
38151
|
const localVarPath = `/historical-identities`;
|
|
37286
38152
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
37287
38153
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -37543,6 +38409,17 @@ export const IdentityHistoryBetaApiFp = function(configuration?: Configuration)
|
|
|
37543
38409
|
const localVarAxiosArgs = await localVarAxiosParamCreator.compareIdentitySnapshotsAccessType(id, accessType, accessAssociated, snapshot1, snapshot2, limit, offset, count, axiosOptions);
|
|
37544
38410
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
37545
38411
|
},
|
|
38412
|
+
/**
|
|
38413
|
+
* This method retrieves a specified identity Requires authorization scope of \'idn:identity-history:read\'
|
|
38414
|
+
* @summary Get latest snapshot of identity
|
|
38415
|
+
* @param {string} id The identity id
|
|
38416
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
38417
|
+
* @throws {RequiredError}
|
|
38418
|
+
*/
|
|
38419
|
+
async getHistoricalIdentity(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityHistoryResponseBeta>> {
|
|
38420
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getHistoricalIdentity(id, axiosOptions);
|
|
38421
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
38422
|
+
},
|
|
37546
38423
|
/**
|
|
37547
38424
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
37548
38425
|
* @summary Lists all events for the given identity
|
|
@@ -37560,17 +38437,6 @@ export const IdentityHistoryBetaApiFp = function(configuration?: Configuration)
|
|
|
37560
38437
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getHistoricalIdentityEvents(id, from, eventTypes, accessItemTypes, limit, offset, count, axiosOptions);
|
|
37561
38438
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
37562
38439
|
},
|
|
37563
|
-
/**
|
|
37564
|
-
* This method retrieves a specified identity Requires authorization scope of \'idn:identity-history:read\'
|
|
37565
|
-
* @summary Gets the most recent snapshot of a specific identity
|
|
37566
|
-
* @param {string} id The identity id
|
|
37567
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
37568
|
-
* @throws {RequiredError}
|
|
37569
|
-
*/
|
|
37570
|
-
async getIdentity(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityHistoryResponseBeta>> {
|
|
37571
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getIdentity(id, axiosOptions);
|
|
37572
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
37573
|
-
},
|
|
37574
38440
|
/**
|
|
37575
38441
|
* This method retrieves a specified identity snapshot at a given date Requires authorization scope of \'idn:identity-history:read\'
|
|
37576
38442
|
* @summary Gets an identity snapshot at a given date
|
|
@@ -37612,7 +38478,7 @@ export const IdentityHistoryBetaApiFp = function(configuration?: Configuration)
|
|
|
37612
38478
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
37613
38479
|
},
|
|
37614
38480
|
/**
|
|
37615
|
-
* This gets the list of identities for the customer. This list end point does not support count=true request param. The total count of identities would never be returned even if the count param is specified in the request Requires authorization scope of \'idn:identity-history:read\'
|
|
38481
|
+
* This gets the list of identities for the customer. This list end point does not support count=true request param. The total count of identities would never be returned even if the count param is specified in the request Requires authorization scope of \'idn:identity-history:read\'
|
|
37616
38482
|
* @summary Lists all the identities
|
|
37617
38483
|
* @param {string} [startsWithQuery] This param is used for starts-with search for first, last and display name of the identity
|
|
37618
38484
|
* @param {boolean} [isDeleted] Indicates if we want to only list down deleted identities or not.
|
|
@@ -37622,8 +38488,8 @@ export const IdentityHistoryBetaApiFp = function(configuration?: Configuration)
|
|
|
37622
38488
|
* @param {*} [axiosOptions] Override http request option.
|
|
37623
38489
|
* @throws {RequiredError}
|
|
37624
38490
|
*/
|
|
37625
|
-
async
|
|
37626
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
38491
|
+
async listHistoricalIdentities(startsWithQuery?: string, isDeleted?: boolean, isActive?: boolean, limit?: number, offset?: number, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IdentityListItemBeta>>> {
|
|
38492
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listHistoricalIdentities(startsWithQuery, isDeleted, isActive, limit, offset, axiosOptions);
|
|
37627
38493
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
37628
38494
|
},
|
|
37629
38495
|
/**
|
|
@@ -37710,6 +38576,16 @@ export const IdentityHistoryBetaApiFactory = function (configuration?: Configura
|
|
|
37710
38576
|
compareIdentitySnapshotsAccessType(id: string, accessType: string, accessAssociated?: boolean, snapshot1?: string, snapshot2?: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: any): AxiosPromise<Array<AccessItemDiffBeta>> {
|
|
37711
38577
|
return localVarFp.compareIdentitySnapshotsAccessType(id, accessType, accessAssociated, snapshot1, snapshot2, limit, offset, count, axiosOptions).then((request) => request(axios, basePath));
|
|
37712
38578
|
},
|
|
38579
|
+
/**
|
|
38580
|
+
* This method retrieves a specified identity Requires authorization scope of \'idn:identity-history:read\'
|
|
38581
|
+
* @summary Get latest snapshot of identity
|
|
38582
|
+
* @param {string} id The identity id
|
|
38583
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
38584
|
+
* @throws {RequiredError}
|
|
38585
|
+
*/
|
|
38586
|
+
getHistoricalIdentity(id: string, axiosOptions?: any): AxiosPromise<IdentityHistoryResponseBeta> {
|
|
38587
|
+
return localVarFp.getHistoricalIdentity(id, axiosOptions).then((request) => request(axios, basePath));
|
|
38588
|
+
},
|
|
37713
38589
|
/**
|
|
37714
38590
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
37715
38591
|
* @summary Lists all events for the given identity
|
|
@@ -37726,16 +38602,6 @@ export const IdentityHistoryBetaApiFactory = function (configuration?: Configura
|
|
|
37726
38602
|
getHistoricalIdentityEvents(id: string, from?: string, eventTypes?: Array<string>, accessItemTypes?: Array<string>, limit?: number, offset?: number, count?: boolean, axiosOptions?: any): AxiosPromise<Array<GetHistoricalIdentityEvents200ResponseInnerBeta>> {
|
|
37727
38603
|
return localVarFp.getHistoricalIdentityEvents(id, from, eventTypes, accessItemTypes, limit, offset, count, axiosOptions).then((request) => request(axios, basePath));
|
|
37728
38604
|
},
|
|
37729
|
-
/**
|
|
37730
|
-
* This method retrieves a specified identity Requires authorization scope of \'idn:identity-history:read\'
|
|
37731
|
-
* @summary Gets the most recent snapshot of a specific identity
|
|
37732
|
-
* @param {string} id The identity id
|
|
37733
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
37734
|
-
* @throws {RequiredError}
|
|
37735
|
-
*/
|
|
37736
|
-
getIdentity(id: string, axiosOptions?: any): AxiosPromise<IdentityHistoryResponseBeta> {
|
|
37737
|
-
return localVarFp.getIdentity(id, axiosOptions).then((request) => request(axios, basePath));
|
|
37738
|
-
},
|
|
37739
38605
|
/**
|
|
37740
38606
|
* This method retrieves a specified identity snapshot at a given date Requires authorization scope of \'idn:identity-history:read\'
|
|
37741
38607
|
* @summary Gets an identity snapshot at a given date
|
|
@@ -37774,7 +38640,7 @@ export const IdentityHistoryBetaApiFactory = function (configuration?: Configura
|
|
|
37774
38640
|
return localVarFp.getIdentityStartDate(id, axiosOptions).then((request) => request(axios, basePath));
|
|
37775
38641
|
},
|
|
37776
38642
|
/**
|
|
37777
|
-
* This gets the list of identities for the customer. This list end point does not support count=true request param. The total count of identities would never be returned even if the count param is specified in the request Requires authorization scope of \'idn:identity-history:read\'
|
|
38643
|
+
* This gets the list of identities for the customer. This list end point does not support count=true request param. The total count of identities would never be returned even if the count param is specified in the request Requires authorization scope of \'idn:identity-history:read\'
|
|
37778
38644
|
* @summary Lists all the identities
|
|
37779
38645
|
* @param {string} [startsWithQuery] This param is used for starts-with search for first, last and display name of the identity
|
|
37780
38646
|
* @param {boolean} [isDeleted] Indicates if we want to only list down deleted identities or not.
|
|
@@ -37784,8 +38650,8 @@ export const IdentityHistoryBetaApiFactory = function (configuration?: Configura
|
|
|
37784
38650
|
* @param {*} [axiosOptions] Override http request option.
|
|
37785
38651
|
* @throws {RequiredError}
|
|
37786
38652
|
*/
|
|
37787
|
-
|
|
37788
|
-
return localVarFp.
|
|
38653
|
+
listHistoricalIdentities(startsWithQuery?: string, isDeleted?: boolean, isActive?: boolean, limit?: number, offset?: number, axiosOptions?: any): AxiosPromise<Array<IdentityListItemBeta>> {
|
|
38654
|
+
return localVarFp.listHistoricalIdentities(startsWithQuery, isDeleted, isActive, limit, offset, axiosOptions).then((request) => request(axios, basePath));
|
|
37789
38655
|
},
|
|
37790
38656
|
/**
|
|
37791
38657
|
* This method retrieves a list of access item for the identity filtered by the access item type Requires authorization scope of \'idn:identity-history:read\'
|
|
@@ -37947,6 +38813,20 @@ export interface IdentityHistoryBetaApiCompareIdentitySnapshotsAccessTypeRequest
|
|
|
37947
38813
|
readonly count?: boolean
|
|
37948
38814
|
}
|
|
37949
38815
|
|
|
38816
|
+
/**
|
|
38817
|
+
* Request parameters for getHistoricalIdentity operation in IdentityHistoryBetaApi.
|
|
38818
|
+
* @export
|
|
38819
|
+
* @interface IdentityHistoryBetaApiGetHistoricalIdentityRequest
|
|
38820
|
+
*/
|
|
38821
|
+
export interface IdentityHistoryBetaApiGetHistoricalIdentityRequest {
|
|
38822
|
+
/**
|
|
38823
|
+
* The identity id
|
|
38824
|
+
* @type {string}
|
|
38825
|
+
* @memberof IdentityHistoryBetaApiGetHistoricalIdentity
|
|
38826
|
+
*/
|
|
38827
|
+
readonly id: string
|
|
38828
|
+
}
|
|
38829
|
+
|
|
37950
38830
|
/**
|
|
37951
38831
|
* Request parameters for getHistoricalIdentityEvents operation in IdentityHistoryBetaApi.
|
|
37952
38832
|
* @export
|
|
@@ -38003,20 +38883,6 @@ export interface IdentityHistoryBetaApiGetHistoricalIdentityEventsRequest {
|
|
|
38003
38883
|
readonly count?: boolean
|
|
38004
38884
|
}
|
|
38005
38885
|
|
|
38006
|
-
/**
|
|
38007
|
-
* Request parameters for getIdentity operation in IdentityHistoryBetaApi.
|
|
38008
|
-
* @export
|
|
38009
|
-
* @interface IdentityHistoryBetaApiGetIdentityRequest
|
|
38010
|
-
*/
|
|
38011
|
-
export interface IdentityHistoryBetaApiGetIdentityRequest {
|
|
38012
|
-
/**
|
|
38013
|
-
* The identity id
|
|
38014
|
-
* @type {string}
|
|
38015
|
-
* @memberof IdentityHistoryBetaApiGetIdentity
|
|
38016
|
-
*/
|
|
38017
|
-
readonly id: string
|
|
38018
|
-
}
|
|
38019
|
-
|
|
38020
38886
|
/**
|
|
38021
38887
|
* Request parameters for getIdentitySnapshot operation in IdentityHistoryBetaApi.
|
|
38022
38888
|
* @export
|
|
@@ -38109,43 +38975,43 @@ export interface IdentityHistoryBetaApiGetIdentityStartDateRequest {
|
|
|
38109
38975
|
}
|
|
38110
38976
|
|
|
38111
38977
|
/**
|
|
38112
|
-
* Request parameters for
|
|
38978
|
+
* Request parameters for listHistoricalIdentities operation in IdentityHistoryBetaApi.
|
|
38113
38979
|
* @export
|
|
38114
|
-
* @interface
|
|
38980
|
+
* @interface IdentityHistoryBetaApiListHistoricalIdentitiesRequest
|
|
38115
38981
|
*/
|
|
38116
|
-
export interface
|
|
38982
|
+
export interface IdentityHistoryBetaApiListHistoricalIdentitiesRequest {
|
|
38117
38983
|
/**
|
|
38118
38984
|
* This param is used for starts-with search for first, last and display name of the identity
|
|
38119
38985
|
* @type {string}
|
|
38120
|
-
* @memberof
|
|
38986
|
+
* @memberof IdentityHistoryBetaApiListHistoricalIdentities
|
|
38121
38987
|
*/
|
|
38122
38988
|
readonly startsWithQuery?: string
|
|
38123
38989
|
|
|
38124
38990
|
/**
|
|
38125
38991
|
* Indicates if we want to only list down deleted identities or not.
|
|
38126
38992
|
* @type {boolean}
|
|
38127
|
-
* @memberof
|
|
38993
|
+
* @memberof IdentityHistoryBetaApiListHistoricalIdentities
|
|
38128
38994
|
*/
|
|
38129
38995
|
readonly isDeleted?: boolean
|
|
38130
38996
|
|
|
38131
38997
|
/**
|
|
38132
38998
|
* Indicates if we want to only list active or inactive identities.
|
|
38133
38999
|
* @type {boolean}
|
|
38134
|
-
* @memberof
|
|
39000
|
+
* @memberof IdentityHistoryBetaApiListHistoricalIdentities
|
|
38135
39001
|
*/
|
|
38136
39002
|
readonly isActive?: boolean
|
|
38137
39003
|
|
|
38138
39004
|
/**
|
|
38139
39005
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
38140
39006
|
* @type {number}
|
|
38141
|
-
* @memberof
|
|
39007
|
+
* @memberof IdentityHistoryBetaApiListHistoricalIdentities
|
|
38142
39008
|
*/
|
|
38143
39009
|
readonly limit?: number
|
|
38144
39010
|
|
|
38145
39011
|
/**
|
|
38146
39012
|
* 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.
|
|
38147
39013
|
* @type {number}
|
|
38148
|
-
* @memberof
|
|
39014
|
+
* @memberof IdentityHistoryBetaApiListHistoricalIdentities
|
|
38149
39015
|
*/
|
|
38150
39016
|
readonly offset?: number
|
|
38151
39017
|
}
|
|
@@ -38280,27 +39146,27 @@ export class IdentityHistoryBetaApi extends BaseAPI {
|
|
|
38280
39146
|
}
|
|
38281
39147
|
|
|
38282
39148
|
/**
|
|
38283
|
-
* This method retrieves
|
|
38284
|
-
* @summary
|
|
38285
|
-
* @param {
|
|
39149
|
+
* This method retrieves a specified identity Requires authorization scope of \'idn:identity-history:read\'
|
|
39150
|
+
* @summary Get latest snapshot of identity
|
|
39151
|
+
* @param {IdentityHistoryBetaApiGetHistoricalIdentityRequest} requestParameters Request parameters.
|
|
38286
39152
|
* @param {*} [axiosOptions] Override http request option.
|
|
38287
39153
|
* @throws {RequiredError}
|
|
38288
39154
|
* @memberof IdentityHistoryBetaApi
|
|
38289
39155
|
*/
|
|
38290
|
-
public
|
|
38291
|
-
return IdentityHistoryBetaApiFp(this.configuration).
|
|
39156
|
+
public getHistoricalIdentity(requestParameters: IdentityHistoryBetaApiGetHistoricalIdentityRequest, axiosOptions?: AxiosRequestConfig) {
|
|
39157
|
+
return IdentityHistoryBetaApiFp(this.configuration).getHistoricalIdentity(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
38292
39158
|
}
|
|
38293
39159
|
|
|
38294
39160
|
/**
|
|
38295
|
-
* This method retrieves
|
|
38296
|
-
* @summary
|
|
38297
|
-
* @param {
|
|
39161
|
+
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
39162
|
+
* @summary Lists all events for the given identity
|
|
39163
|
+
* @param {IdentityHistoryBetaApiGetHistoricalIdentityEventsRequest} requestParameters Request parameters.
|
|
38298
39164
|
* @param {*} [axiosOptions] Override http request option.
|
|
38299
39165
|
* @throws {RequiredError}
|
|
38300
39166
|
* @memberof IdentityHistoryBetaApi
|
|
38301
39167
|
*/
|
|
38302
|
-
public
|
|
38303
|
-
return IdentityHistoryBetaApiFp(this.configuration).
|
|
39168
|
+
public getHistoricalIdentityEvents(requestParameters: IdentityHistoryBetaApiGetHistoricalIdentityEventsRequest, axiosOptions?: AxiosRequestConfig) {
|
|
39169
|
+
return IdentityHistoryBetaApiFp(this.configuration).getHistoricalIdentityEvents(requestParameters.id, requestParameters.from, requestParameters.eventTypes, requestParameters.accessItemTypes, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
38304
39170
|
}
|
|
38305
39171
|
|
|
38306
39172
|
/**
|
|
@@ -38340,15 +39206,15 @@ export class IdentityHistoryBetaApi extends BaseAPI {
|
|
|
38340
39206
|
}
|
|
38341
39207
|
|
|
38342
39208
|
/**
|
|
38343
|
-
* This gets the list of identities for the customer. This list end point does not support count=true request param. The total count of identities would never be returned even if the count param is specified in the request Requires authorization scope of \'idn:identity-history:read\'
|
|
39209
|
+
* This gets the list of identities for the customer. This list end point does not support count=true request param. The total count of identities would never be returned even if the count param is specified in the request Requires authorization scope of \'idn:identity-history:read\'
|
|
38344
39210
|
* @summary Lists all the identities
|
|
38345
|
-
* @param {
|
|
39211
|
+
* @param {IdentityHistoryBetaApiListHistoricalIdentitiesRequest} requestParameters Request parameters.
|
|
38346
39212
|
* @param {*} [axiosOptions] Override http request option.
|
|
38347
39213
|
* @throws {RequiredError}
|
|
38348
39214
|
* @memberof IdentityHistoryBetaApi
|
|
38349
39215
|
*/
|
|
38350
|
-
public
|
|
38351
|
-
return IdentityHistoryBetaApiFp(this.configuration).
|
|
39216
|
+
public listHistoricalIdentities(requestParameters: IdentityHistoryBetaApiListHistoricalIdentitiesRequest = {}, axiosOptions?: AxiosRequestConfig) {
|
|
39217
|
+
return IdentityHistoryBetaApiFp(this.configuration).listHistoricalIdentities(requestParameters.startsWithQuery, requestParameters.isDeleted, requestParameters.isActive, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
38352
39218
|
}
|
|
38353
39219
|
|
|
38354
39220
|
/**
|
|
@@ -40374,9 +41240,9 @@ export class ManagedClientsBetaApi extends BaseAPI {
|
|
|
40374
41240
|
export const ManagedClustersBetaApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
40375
41241
|
return {
|
|
40376
41242
|
/**
|
|
40377
|
-
* Get log configuration
|
|
40378
|
-
* @summary
|
|
40379
|
-
* @param {string} id ID of
|
|
41243
|
+
* Get managed cluster\'s log configuration.
|
|
41244
|
+
* @summary Get managed cluster\'s log configuration
|
|
41245
|
+
* @param {string} id ID of ManagedCluster to get log configuration for
|
|
40380
41246
|
* @param {*} [axiosOptions] Override http request option.
|
|
40381
41247
|
* @throws {RequiredError}
|
|
40382
41248
|
*/
|
|
@@ -40516,10 +41382,10 @@ export const ManagedClustersBetaApiAxiosParamCreator = function (configuration?:
|
|
|
40516
41382
|
};
|
|
40517
41383
|
},
|
|
40518
41384
|
/**
|
|
40519
|
-
* Update log configuration
|
|
40520
|
-
* @summary Update log configuration
|
|
40521
|
-
* @param {string} id ID of
|
|
40522
|
-
* @param {ClientLogConfigurationBeta} clientLogConfigurationBeta ClientLogConfiguration for
|
|
41385
|
+
* Update managed cluster\'s log configuration
|
|
41386
|
+
* @summary Update managed cluster\'s log configuration
|
|
41387
|
+
* @param {string} id ID of ManagedCluster to update log configuration for
|
|
41388
|
+
* @param {ClientLogConfigurationBeta} clientLogConfigurationBeta ClientLogConfiguration for given ManagedCluster
|
|
40523
41389
|
* @param {*} [axiosOptions] Override http request option.
|
|
40524
41390
|
* @throws {RequiredError}
|
|
40525
41391
|
*/
|
|
@@ -40574,9 +41440,9 @@ export const ManagedClustersBetaApiFp = function(configuration?: Configuration)
|
|
|
40574
41440
|
const localVarAxiosParamCreator = ManagedClustersBetaApiAxiosParamCreator(configuration)
|
|
40575
41441
|
return {
|
|
40576
41442
|
/**
|
|
40577
|
-
* Get log configuration
|
|
40578
|
-
* @summary
|
|
40579
|
-
* @param {string} id ID of
|
|
41443
|
+
* Get managed cluster\'s log configuration.
|
|
41444
|
+
* @summary Get managed cluster\'s log configuration
|
|
41445
|
+
* @param {string} id ID of ManagedCluster to get log configuration for
|
|
40580
41446
|
* @param {*} [axiosOptions] Override http request option.
|
|
40581
41447
|
* @throws {RequiredError}
|
|
40582
41448
|
*/
|
|
@@ -40610,10 +41476,10 @@ export const ManagedClustersBetaApiFp = function(configuration?: Configuration)
|
|
|
40610
41476
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
40611
41477
|
},
|
|
40612
41478
|
/**
|
|
40613
|
-
* Update log configuration
|
|
40614
|
-
* @summary Update log configuration
|
|
40615
|
-
* @param {string} id ID of
|
|
40616
|
-
* @param {ClientLogConfigurationBeta} clientLogConfigurationBeta ClientLogConfiguration for
|
|
41479
|
+
* Update managed cluster\'s log configuration
|
|
41480
|
+
* @summary Update managed cluster\'s log configuration
|
|
41481
|
+
* @param {string} id ID of ManagedCluster to update log configuration for
|
|
41482
|
+
* @param {ClientLogConfigurationBeta} clientLogConfigurationBeta ClientLogConfiguration for given ManagedCluster
|
|
40617
41483
|
* @param {*} [axiosOptions] Override http request option.
|
|
40618
41484
|
* @throws {RequiredError}
|
|
40619
41485
|
*/
|
|
@@ -40632,9 +41498,9 @@ export const ManagedClustersBetaApiFactory = function (configuration?: Configura
|
|
|
40632
41498
|
const localVarFp = ManagedClustersBetaApiFp(configuration)
|
|
40633
41499
|
return {
|
|
40634
41500
|
/**
|
|
40635
|
-
* Get log configuration
|
|
40636
|
-
* @summary
|
|
40637
|
-
* @param {string} id ID of
|
|
41501
|
+
* Get managed cluster\'s log configuration.
|
|
41502
|
+
* @summary Get managed cluster\'s log configuration
|
|
41503
|
+
* @param {string} id ID of ManagedCluster to get log configuration for
|
|
40638
41504
|
* @param {*} [axiosOptions] Override http request option.
|
|
40639
41505
|
* @throws {RequiredError}
|
|
40640
41506
|
*/
|
|
@@ -40665,10 +41531,10 @@ export const ManagedClustersBetaApiFactory = function (configuration?: Configura
|
|
|
40665
41531
|
return localVarFp.getManagedClusters(offset, limit, count, filters, axiosOptions).then((request) => request(axios, basePath));
|
|
40666
41532
|
},
|
|
40667
41533
|
/**
|
|
40668
|
-
* Update log configuration
|
|
40669
|
-
* @summary Update log configuration
|
|
40670
|
-
* @param {string} id ID of
|
|
40671
|
-
* @param {ClientLogConfigurationBeta} clientLogConfigurationBeta ClientLogConfiguration for
|
|
41534
|
+
* Update managed cluster\'s log configuration
|
|
41535
|
+
* @summary Update managed cluster\'s log configuration
|
|
41536
|
+
* @param {string} id ID of ManagedCluster to update log configuration for
|
|
41537
|
+
* @param {ClientLogConfigurationBeta} clientLogConfigurationBeta ClientLogConfiguration for given ManagedCluster
|
|
40672
41538
|
* @param {*} [axiosOptions] Override http request option.
|
|
40673
41539
|
* @throws {RequiredError}
|
|
40674
41540
|
*/
|
|
@@ -40685,7 +41551,7 @@ export const ManagedClustersBetaApiFactory = function (configuration?: Configura
|
|
|
40685
41551
|
*/
|
|
40686
41552
|
export interface ManagedClustersBetaApiGetClientLogConfigurationRequest {
|
|
40687
41553
|
/**
|
|
40688
|
-
* ID of
|
|
41554
|
+
* ID of ManagedCluster to get log configuration for
|
|
40689
41555
|
* @type {string}
|
|
40690
41556
|
* @memberof ManagedClustersBetaApiGetClientLogConfiguration
|
|
40691
41557
|
*/
|
|
@@ -40748,14 +41614,14 @@ export interface ManagedClustersBetaApiGetManagedClustersRequest {
|
|
|
40748
41614
|
*/
|
|
40749
41615
|
export interface ManagedClustersBetaApiUpdateClientLogConfigurationRequest {
|
|
40750
41616
|
/**
|
|
40751
|
-
* ID of
|
|
41617
|
+
* ID of ManagedCluster to update log configuration for
|
|
40752
41618
|
* @type {string}
|
|
40753
41619
|
* @memberof ManagedClustersBetaApiUpdateClientLogConfiguration
|
|
40754
41620
|
*/
|
|
40755
41621
|
readonly id: string
|
|
40756
41622
|
|
|
40757
41623
|
/**
|
|
40758
|
-
* ClientLogConfiguration for
|
|
41624
|
+
* ClientLogConfiguration for given ManagedCluster
|
|
40759
41625
|
* @type {ClientLogConfigurationBeta}
|
|
40760
41626
|
* @memberof ManagedClustersBetaApiUpdateClientLogConfiguration
|
|
40761
41627
|
*/
|
|
@@ -40770,8 +41636,8 @@ export interface ManagedClustersBetaApiUpdateClientLogConfigurationRequest {
|
|
|
40770
41636
|
*/
|
|
40771
41637
|
export class ManagedClustersBetaApi extends BaseAPI {
|
|
40772
41638
|
/**
|
|
40773
|
-
* Get log configuration
|
|
40774
|
-
* @summary
|
|
41639
|
+
* Get managed cluster\'s log configuration.
|
|
41640
|
+
* @summary Get managed cluster\'s log configuration
|
|
40775
41641
|
* @param {ManagedClustersBetaApiGetClientLogConfigurationRequest} requestParameters Request parameters.
|
|
40776
41642
|
* @param {*} [axiosOptions] Override http request option.
|
|
40777
41643
|
* @throws {RequiredError}
|
|
@@ -40806,8 +41672,8 @@ export class ManagedClustersBetaApi extends BaseAPI {
|
|
|
40806
41672
|
}
|
|
40807
41673
|
|
|
40808
41674
|
/**
|
|
40809
|
-
* Update log configuration
|
|
40810
|
-
* @summary Update log configuration
|
|
41675
|
+
* Update managed cluster\'s log configuration
|
|
41676
|
+
* @summary Update managed cluster\'s log configuration
|
|
40811
41677
|
* @param {ManagedClustersBetaApiUpdateClientLogConfigurationRequest} requestParameters Request parameters.
|
|
40812
41678
|
* @param {*} [axiosOptions] Override http request option.
|
|
40813
41679
|
* @throws {RequiredError}
|
|
@@ -46081,7 +46947,7 @@ export class OAuthClientsBetaApi extends BaseAPI {
|
|
|
46081
46947
|
export const OrgConfigBetaApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
46082
46948
|
return {
|
|
46083
46949
|
/**
|
|
46084
|
-
* Get org configuration with only external (org admin) accessible properties for the current org.
|
|
46950
|
+
* Get org configuration with only external (org admin) accessible properties for the current org.
|
|
46085
46951
|
* @summary Get Org configuration settings
|
|
46086
46952
|
* @param {*} [axiosOptions] Override http request option.
|
|
46087
46953
|
* @throws {RequiredError}
|
|
@@ -46119,7 +46985,7 @@ export const OrgConfigBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
46119
46985
|
};
|
|
46120
46986
|
},
|
|
46121
46987
|
/**
|
|
46122
|
-
* Get a list of valid time zones that can be set in org configurations.
|
|
46988
|
+
* Get a list of valid time zones that can be set in org configurations.
|
|
46123
46989
|
* @summary Get list of time zones
|
|
46124
46990
|
* @param {*} [axiosOptions] Override http request option.
|
|
46125
46991
|
* @throws {RequiredError}
|
|
@@ -46157,7 +47023,7 @@ export const OrgConfigBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
46157
47023
|
};
|
|
46158
47024
|
},
|
|
46159
47025
|
/**
|
|
46160
|
-
* Patch configuration of the current org using http://jsonpatch.com/ syntax. Commonly used for changing the time zone of an org.
|
|
47026
|
+
* Patch configuration of the current org using http://jsonpatch.com/ syntax. Commonly used for changing the time zone of an org.
|
|
46161
47027
|
* @summary Patch an Org configuration property
|
|
46162
47028
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
46163
47029
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -46211,7 +47077,7 @@ export const OrgConfigBetaApiFp = function(configuration?: Configuration) {
|
|
|
46211
47077
|
const localVarAxiosParamCreator = OrgConfigBetaApiAxiosParamCreator(configuration)
|
|
46212
47078
|
return {
|
|
46213
47079
|
/**
|
|
46214
|
-
* Get org configuration with only external (org admin) accessible properties for the current org.
|
|
47080
|
+
* Get org configuration with only external (org admin) accessible properties for the current org.
|
|
46215
47081
|
* @summary Get Org configuration settings
|
|
46216
47082
|
* @param {*} [axiosOptions] Override http request option.
|
|
46217
47083
|
* @throws {RequiredError}
|
|
@@ -46221,7 +47087,7 @@ export const OrgConfigBetaApiFp = function(configuration?: Configuration) {
|
|
|
46221
47087
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
46222
47088
|
},
|
|
46223
47089
|
/**
|
|
46224
|
-
* Get a list of valid time zones that can be set in org configurations.
|
|
47090
|
+
* Get a list of valid time zones that can be set in org configurations.
|
|
46225
47091
|
* @summary Get list of time zones
|
|
46226
47092
|
* @param {*} [axiosOptions] Override http request option.
|
|
46227
47093
|
* @throws {RequiredError}
|
|
@@ -46231,7 +47097,7 @@ export const OrgConfigBetaApiFp = function(configuration?: Configuration) {
|
|
|
46231
47097
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
46232
47098
|
},
|
|
46233
47099
|
/**
|
|
46234
|
-
* Patch configuration of the current org using http://jsonpatch.com/ syntax. Commonly used for changing the time zone of an org.
|
|
47100
|
+
* Patch configuration of the current org using http://jsonpatch.com/ syntax. Commonly used for changing the time zone of an org.
|
|
46235
47101
|
* @summary Patch an Org configuration property
|
|
46236
47102
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
46237
47103
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -46252,7 +47118,7 @@ export const OrgConfigBetaApiFactory = function (configuration?: Configuration,
|
|
|
46252
47118
|
const localVarFp = OrgConfigBetaApiFp(configuration)
|
|
46253
47119
|
return {
|
|
46254
47120
|
/**
|
|
46255
|
-
* Get org configuration with only external (org admin) accessible properties for the current org.
|
|
47121
|
+
* Get org configuration with only external (org admin) accessible properties for the current org.
|
|
46256
47122
|
* @summary Get Org configuration settings
|
|
46257
47123
|
* @param {*} [axiosOptions] Override http request option.
|
|
46258
47124
|
* @throws {RequiredError}
|
|
@@ -46261,7 +47127,7 @@ export const OrgConfigBetaApiFactory = function (configuration?: Configuration,
|
|
|
46261
47127
|
return localVarFp.getOrgConfig(axiosOptions).then((request) => request(axios, basePath));
|
|
46262
47128
|
},
|
|
46263
47129
|
/**
|
|
46264
|
-
* Get a list of valid time zones that can be set in org configurations.
|
|
47130
|
+
* Get a list of valid time zones that can be set in org configurations.
|
|
46265
47131
|
* @summary Get list of time zones
|
|
46266
47132
|
* @param {*} [axiosOptions] Override http request option.
|
|
46267
47133
|
* @throws {RequiredError}
|
|
@@ -46270,7 +47136,7 @@ export const OrgConfigBetaApiFactory = function (configuration?: Configuration,
|
|
|
46270
47136
|
return localVarFp.getValidTimeZones(axiosOptions).then((request) => request(axios, basePath));
|
|
46271
47137
|
},
|
|
46272
47138
|
/**
|
|
46273
|
-
* Patch configuration of the current org using http://jsonpatch.com/ syntax. Commonly used for changing the time zone of an org.
|
|
47139
|
+
* Patch configuration of the current org using http://jsonpatch.com/ syntax. Commonly used for changing the time zone of an org.
|
|
46274
47140
|
* @summary Patch an Org configuration property
|
|
46275
47141
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
46276
47142
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -46304,7 +47170,7 @@ export interface OrgConfigBetaApiPatchOrgConfigRequest {
|
|
|
46304
47170
|
*/
|
|
46305
47171
|
export class OrgConfigBetaApi extends BaseAPI {
|
|
46306
47172
|
/**
|
|
46307
|
-
* Get org configuration with only external (org admin) accessible properties for the current org.
|
|
47173
|
+
* Get org configuration with only external (org admin) accessible properties for the current org.
|
|
46308
47174
|
* @summary Get Org configuration settings
|
|
46309
47175
|
* @param {*} [axiosOptions] Override http request option.
|
|
46310
47176
|
* @throws {RequiredError}
|
|
@@ -46315,7 +47181,7 @@ export class OrgConfigBetaApi extends BaseAPI {
|
|
|
46315
47181
|
}
|
|
46316
47182
|
|
|
46317
47183
|
/**
|
|
46318
|
-
* Get a list of valid time zones that can be set in org configurations.
|
|
47184
|
+
* Get a list of valid time zones that can be set in org configurations.
|
|
46319
47185
|
* @summary Get list of time zones
|
|
46320
47186
|
* @param {*} [axiosOptions] Override http request option.
|
|
46321
47187
|
* @throws {RequiredError}
|
|
@@ -46326,7 +47192,7 @@ export class OrgConfigBetaApi extends BaseAPI {
|
|
|
46326
47192
|
}
|
|
46327
47193
|
|
|
46328
47194
|
/**
|
|
46329
|
-
* Patch configuration of the current org using http://jsonpatch.com/ syntax. Commonly used for changing the time zone of an org.
|
|
47195
|
+
* Patch configuration of the current org using http://jsonpatch.com/ syntax. Commonly used for changing the time zone of an org.
|
|
46330
47196
|
* @summary Patch an Org configuration property
|
|
46331
47197
|
* @param {OrgConfigBetaApiPatchOrgConfigRequest} requestParameters Request parameters.
|
|
46332
47198
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -46662,44 +47528,6 @@ export const PasswordDictionaryBetaApiAxiosParamCreator = function (configuratio
|
|
|
46662
47528
|
|
|
46663
47529
|
|
|
46664
47530
|
|
|
46665
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
46666
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
46667
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
46668
|
-
|
|
46669
|
-
return {
|
|
46670
|
-
url: toPathString(localVarUrlObj),
|
|
46671
|
-
axiosOptions: localVarRequestOptions,
|
|
46672
|
-
};
|
|
46673
|
-
},
|
|
46674
|
-
/**
|
|
46675
|
-
* Used to check the status of password dictionary. A token with ORG_ADMIN authority is required to call this API.
|
|
46676
|
-
* @summary Get Password Dictionary Status
|
|
46677
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
46678
|
-
* @throws {RequiredError}
|
|
46679
|
-
*/
|
|
46680
|
-
getPasswordDictionaryFileStatus: async (axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
46681
|
-
const localVarPath = `/password-dictionary`;
|
|
46682
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
46683
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
46684
|
-
let baseOptions;
|
|
46685
|
-
if (configuration) {
|
|
46686
|
-
baseOptions = configuration.baseOptions;
|
|
46687
|
-
}
|
|
46688
|
-
|
|
46689
|
-
const localVarRequestOptions = { method: 'HEAD', ...baseOptions, ...axiosOptions};
|
|
46690
|
-
const localVarHeaderParameter = {} as any;
|
|
46691
|
-
const localVarQueryParameter = {} as any;
|
|
46692
|
-
|
|
46693
|
-
// authentication oauth2 required
|
|
46694
|
-
// oauth required
|
|
46695
|
-
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
46696
|
-
|
|
46697
|
-
// authentication oauth2 required
|
|
46698
|
-
// oauth required
|
|
46699
|
-
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
46700
|
-
|
|
46701
|
-
|
|
46702
|
-
|
|
46703
47531
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
46704
47532
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
46705
47533
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -46776,16 +47604,6 @@ export const PasswordDictionaryBetaApiFp = function(configuration?: Configuratio
|
|
|
46776
47604
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getPasswordDictionary(axiosOptions);
|
|
46777
47605
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
46778
47606
|
},
|
|
46779
|
-
/**
|
|
46780
|
-
* Used to check the status of password dictionary. A token with ORG_ADMIN authority is required to call this API.
|
|
46781
|
-
* @summary Get Password Dictionary Status
|
|
46782
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
46783
|
-
* @throws {RequiredError}
|
|
46784
|
-
*/
|
|
46785
|
-
async getPasswordDictionaryFileStatus(axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
46786
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getPasswordDictionaryFileStatus(axiosOptions);
|
|
46787
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
46788
|
-
},
|
|
46789
47607
|
/**
|
|
46790
47608
|
* This updates password dictionary for the organization. A token with ORG_ADMIN authority is required to call this API.
|
|
46791
47609
|
* @summary Update Password Dictionary
|
|
@@ -46816,15 +47634,6 @@ export const PasswordDictionaryBetaApiFactory = function (configuration?: Config
|
|
|
46816
47634
|
getPasswordDictionary(axiosOptions?: any): AxiosPromise<string> {
|
|
46817
47635
|
return localVarFp.getPasswordDictionary(axiosOptions).then((request) => request(axios, basePath));
|
|
46818
47636
|
},
|
|
46819
|
-
/**
|
|
46820
|
-
* Used to check the status of password dictionary. A token with ORG_ADMIN authority is required to call this API.
|
|
46821
|
-
* @summary Get Password Dictionary Status
|
|
46822
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
46823
|
-
* @throws {RequiredError}
|
|
46824
|
-
*/
|
|
46825
|
-
getPasswordDictionaryFileStatus(axiosOptions?: any): AxiosPromise<void> {
|
|
46826
|
-
return localVarFp.getPasswordDictionaryFileStatus(axiosOptions).then((request) => request(axios, basePath));
|
|
46827
|
-
},
|
|
46828
47637
|
/**
|
|
46829
47638
|
* This updates password dictionary for the organization. A token with ORG_ADMIN authority is required to call this API.
|
|
46830
47639
|
* @summary Update Password Dictionary
|
|
@@ -46870,17 +47679,6 @@ export class PasswordDictionaryBetaApi extends BaseAPI {
|
|
|
46870
47679
|
return PasswordDictionaryBetaApiFp(this.configuration).getPasswordDictionary(axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
46871
47680
|
}
|
|
46872
47681
|
|
|
46873
|
-
/**
|
|
46874
|
-
* Used to check the status of password dictionary. A token with ORG_ADMIN authority is required to call this API.
|
|
46875
|
-
* @summary Get Password Dictionary Status
|
|
46876
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
46877
|
-
* @throws {RequiredError}
|
|
46878
|
-
* @memberof PasswordDictionaryBetaApi
|
|
46879
|
-
*/
|
|
46880
|
-
public getPasswordDictionaryFileStatus(axiosOptions?: AxiosRequestConfig) {
|
|
46881
|
-
return PasswordDictionaryBetaApiFp(this.configuration).getPasswordDictionaryFileStatus(axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
46882
|
-
}
|
|
46883
|
-
|
|
46884
47682
|
/**
|
|
46885
47683
|
* This updates password dictionary for the organization. A token with ORG_ADMIN authority is required to call this API.
|
|
46886
47684
|
* @summary Update Password Dictionary
|
|
@@ -50063,7 +50861,7 @@ export const RolesBetaApiFp = function(configuration?: Configuration) {
|
|
|
50063
50861
|
* @param {*} [axiosOptions] Override http request option.
|
|
50064
50862
|
* @throws {RequiredError}
|
|
50065
50863
|
*/
|
|
50066
|
-
async deleteRole(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
50864
|
+
async deleteRole(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
50067
50865
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteRole(id, axiosOptions);
|
|
50068
50866
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
50069
50867
|
},
|
|
@@ -50151,7 +50949,7 @@ export const RolesBetaApiFactory = function (configuration?: Configuration, base
|
|
|
50151
50949
|
* @param {*} [axiosOptions] Override http request option.
|
|
50152
50950
|
* @throws {RequiredError}
|
|
50153
50951
|
*/
|
|
50154
|
-
deleteRole(id: string, axiosOptions?: any): AxiosPromise<
|
|
50952
|
+
deleteRole(id: string, axiosOptions?: any): AxiosPromise<void> {
|
|
50155
50953
|
return localVarFp.deleteRole(id, axiosOptions).then((request) => request(axios, basePath));
|
|
50156
50954
|
},
|
|
50157
50955
|
/**
|
|
@@ -50473,8 +51271,8 @@ export class RolesBetaApi extends BaseAPI {
|
|
|
50473
51271
|
export const SODPolicyBetaApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
50474
51272
|
return {
|
|
50475
51273
|
/**
|
|
50476
|
-
* This creates both General and Conflicting Access Based policy, with a limit of 50 entitlements for each (left & right) criteria for Conflicting Access Based SOD policy Requires role of ORG_ADMIN
|
|
50477
|
-
* @summary Create SOD
|
|
51274
|
+
* This creates both General and Conflicting Access Based policy, with a limit of 50 entitlements for each (left & right) criteria for Conflicting Access Based SOD policy. Requires role of ORG_ADMIN.
|
|
51275
|
+
* @summary Create SOD policy
|
|
50478
51276
|
* @param {SodPolicyBeta} sodPolicyBeta
|
|
50479
51277
|
* @param {*} [axiosOptions] Override http request option.
|
|
50480
51278
|
* @throws {RequiredError}
|
|
@@ -50518,9 +51316,9 @@ export const SODPolicyBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50518
51316
|
},
|
|
50519
51317
|
/**
|
|
50520
51318
|
* This deletes a specified SOD policy. Requires role of ORG_ADMIN.
|
|
50521
|
-
* @summary Delete SOD
|
|
51319
|
+
* @summary Delete SOD policy by ID
|
|
50522
51320
|
* @param {string} id The ID of the SOD Policy to delete.
|
|
50523
|
-
* @param {boolean} [logical] whether this is soft delete
|
|
51321
|
+
* @param {boolean} [logical] Indicates whether this is a soft delete (logical true) or a hard delete.
|
|
50524
51322
|
* @param {*} [axiosOptions] Override http request option.
|
|
50525
51323
|
* @throws {RequiredError}
|
|
50526
51324
|
*/
|
|
@@ -50565,8 +51363,8 @@ export const SODPolicyBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50565
51363
|
},
|
|
50566
51364
|
/**
|
|
50567
51365
|
* This deletes schedule for a specified SOD policy. Requires role of ORG_ADMIN.
|
|
50568
|
-
* @summary Delete SOD
|
|
50569
|
-
* @param {string} id The ID of the SOD
|
|
51366
|
+
* @summary Delete SOD policy schedule
|
|
51367
|
+
* @param {string} id The ID of the SOD policy the schedule must be deleted for.
|
|
50570
51368
|
* @param {*} [axiosOptions] Override http request option.
|
|
50571
51369
|
* @throws {RequiredError}
|
|
50572
51370
|
*/
|
|
@@ -50606,7 +51404,7 @@ export const SODPolicyBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50606
51404
|
};
|
|
50607
51405
|
},
|
|
50608
51406
|
/**
|
|
50609
|
-
* This allows to download a specified named violation report
|
|
51407
|
+
* This allows to download a specified named violation report for a given report reference. Requires role of ORG_ADMIN.
|
|
50610
51408
|
* @summary Download custom violation report
|
|
50611
51409
|
* @param {string} reportResultId The ID of the report reference to download.
|
|
50612
51410
|
* @param {string} fileName Custom Name for the file.
|
|
@@ -50652,7 +51450,7 @@ export const SODPolicyBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50652
51450
|
};
|
|
50653
51451
|
},
|
|
50654
51452
|
/**
|
|
50655
|
-
* This allows to download a violation report for given report reference. Requires role of ORG_ADMIN.
|
|
51453
|
+
* This allows to download a violation report for a given report reference. Requires role of ORG_ADMIN.
|
|
50656
51454
|
* @summary Download violation report
|
|
50657
51455
|
* @param {string} reportResultId The ID of the report reference to download.
|
|
50658
51456
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -50694,7 +51492,7 @@ export const SODPolicyBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50694
51492
|
};
|
|
50695
51493
|
},
|
|
50696
51494
|
/**
|
|
50697
|
-
* This gets status for a violation report for all policy run. Requires role of ORG_ADMIN.
|
|
51495
|
+
* This endpoint gets the status for a violation report for all policy run. Requires role of ORG_ADMIN.
|
|
50698
51496
|
* @summary Get multi-report run task status
|
|
50699
51497
|
* @param {*} [axiosOptions] Override http request option.
|
|
50700
51498
|
* @throws {RequiredError}
|
|
@@ -50733,7 +51531,7 @@ export const SODPolicyBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50733
51531
|
},
|
|
50734
51532
|
/**
|
|
50735
51533
|
* This gets specified SOD policy. Requires role of ORG_ADMIN.
|
|
50736
|
-
* @summary Get SOD
|
|
51534
|
+
* @summary Get SOD policy by ID
|
|
50737
51535
|
* @param {string} id The ID of the object reference to retrieve.
|
|
50738
51536
|
* @param {*} [axiosOptions] Override http request option.
|
|
50739
51537
|
* @throws {RequiredError}
|
|
@@ -50774,8 +51572,8 @@ export const SODPolicyBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50774
51572
|
};
|
|
50775
51573
|
},
|
|
50776
51574
|
/**
|
|
50777
|
-
* This gets
|
|
50778
|
-
* @summary Get SOD
|
|
51575
|
+
* This endpoint gets a specified SOD policy\'s schedule. Requires the role of ORG_ADMIN.
|
|
51576
|
+
* @summary Get SOD policy schedule
|
|
50779
51577
|
* @param {string} id The ID of the object reference to retrieve.
|
|
50780
51578
|
* @param {*} [axiosOptions] Override http request option.
|
|
50781
51579
|
* @throws {RequiredError}
|
|
@@ -50816,7 +51614,7 @@ export const SODPolicyBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50816
51614
|
};
|
|
50817
51615
|
},
|
|
50818
51616
|
/**
|
|
50819
|
-
* This gets status for a violation report run task
|
|
51617
|
+
* This gets the status for a violation report run task that has already been invoked. Requires role of ORG_ADMIN.
|
|
50820
51618
|
* @summary Get violation report run status
|
|
50821
51619
|
* @param {string} reportResultId The ID of the report reference to retrieve.
|
|
50822
51620
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -50858,7 +51656,7 @@ export const SODPolicyBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50858
51656
|
};
|
|
50859
51657
|
},
|
|
50860
51658
|
/**
|
|
50861
|
-
* This gets status for a violation report run task
|
|
51659
|
+
* This gets the status for a violation report run task that has already been invoked. Requires role of ORG_ADMIN.
|
|
50862
51660
|
* @summary Get SOD violation report status
|
|
50863
51661
|
* @param {string} id The ID of the object reference to retrieve.
|
|
50864
51662
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -50900,8 +51698,8 @@ export const SODPolicyBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50900
51698
|
};
|
|
50901
51699
|
},
|
|
50902
51700
|
/**
|
|
50903
|
-
* This gets list of all SOD
|
|
50904
|
-
* @summary List SOD
|
|
51701
|
+
* This gets list of all SOD policies. Requires role of ORG_ADMIN
|
|
51702
|
+
* @summary List SOD policies
|
|
50905
51703
|
* @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.
|
|
50906
51704
|
* @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.
|
|
50907
51705
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -50958,9 +51756,9 @@ export const SODPolicyBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
50958
51756
|
};
|
|
50959
51757
|
},
|
|
50960
51758
|
/**
|
|
50961
|
-
* Allows updating SOD Policy fields other than [\"id\",\"created\",\"creatorId\",\"policyQuery\",\"type\"] using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. Requires role of ORG_ADMIN.
|
|
50962
|
-
* @summary
|
|
50963
|
-
* @param {string} id The ID of the SOD
|
|
51759
|
+
* Allows updating SOD Policy fields other than [\"id\",\"created\",\"creatorId\",\"policyQuery\",\"type\"] using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. Requires role of ORG_ADMIN. This endpoint can only patch CONFLICTING_ACCESS_BASED type policies. Do not use this endpoint to patch general policies - doing so will build an API exception.
|
|
51760
|
+
* @summary Patch a SOD policy
|
|
51761
|
+
* @param {string} id The ID of the SOD policy being modified.
|
|
50964
51762
|
* @param {Array<object>} requestBody A list of SOD Policy update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * name * description * ownerRef * externalPolicyReference * compensatingControls * correctionAdvice * state * tags * violationOwnerAssignmentConfig * scheduled * conflictingAccessCriteria
|
|
50965
51763
|
* @param {*} [axiosOptions] Override http request option.
|
|
50966
51764
|
* @throws {RequiredError}
|
|
@@ -51006,8 +51804,8 @@ export const SODPolicyBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
51006
51804
|
};
|
|
51007
51805
|
},
|
|
51008
51806
|
/**
|
|
51009
|
-
* Runs multi
|
|
51010
|
-
* @summary Runs all policies for
|
|
51807
|
+
* Runs multi-policy report for the org. If a policy reports more than 5000 violations, the report mentions that the violation limit was exceeded for that policy. If the request is empty, the report runs for all policies. Otherwise, the report runs for only the filtered policy list provided. Requires role of ORG_ADMIN.
|
|
51808
|
+
* @summary Runs all policies for org
|
|
51011
51809
|
* @param {MultiPolicyRequestBeta} [multiPolicyRequestBeta]
|
|
51012
51810
|
* @param {*} [axiosOptions] Override http request option.
|
|
51013
51811
|
* @throws {RequiredError}
|
|
@@ -51048,9 +51846,9 @@ export const SODPolicyBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
51048
51846
|
};
|
|
51049
51847
|
},
|
|
51050
51848
|
/**
|
|
51051
|
-
* This invokes processing of violation report for given SOD
|
|
51052
|
-
* @summary Runs SOD
|
|
51053
|
-
* @param {string} id The
|
|
51849
|
+
* This invokes processing of violation report for given SOD policy. If the policy reports more than 5000 violations, the report returns with violation limit exceeded message. Requires role of ORG_ADMIN.
|
|
51850
|
+
* @summary Runs SOD policy violation report
|
|
51851
|
+
* @param {string} id The SOD policy ID to run.
|
|
51054
51852
|
* @param {*} [axiosOptions] Override http request option.
|
|
51055
51853
|
* @throws {RequiredError}
|
|
51056
51854
|
*/
|
|
@@ -51090,7 +51888,7 @@ export const SODPolicyBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
51090
51888
|
};
|
|
51091
51889
|
},
|
|
51092
51890
|
/**
|
|
51093
|
-
* This updates schedule for a specified SOD policy. Requires role of ORG_ADMIN
|
|
51891
|
+
* This updates schedule for a specified SOD policy. Requires role of ORG_ADMIN.
|
|
51094
51892
|
* @summary Update SOD Policy schedule
|
|
51095
51893
|
* @param {string} id The ID of the SOD policy to update its schedule.
|
|
51096
51894
|
* @param {SodPolicyScheduleBeta} sodPolicyScheduleBeta
|
|
@@ -51139,7 +51937,7 @@ export const SODPolicyBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
51139
51937
|
},
|
|
51140
51938
|
/**
|
|
51141
51939
|
* This updates a specified SOD policy. Requires role of ORG_ADMIN.
|
|
51142
|
-
* @summary Update SOD
|
|
51940
|
+
* @summary Update SOD policy by ID
|
|
51143
51941
|
* @param {string} id The ID of the SOD policy to update.
|
|
51144
51942
|
* @param {SodPolicyBeta} sodPolicyBeta
|
|
51145
51943
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -51196,8 +51994,8 @@ export const SODPolicyBetaApiFp = function(configuration?: Configuration) {
|
|
|
51196
51994
|
const localVarAxiosParamCreator = SODPolicyBetaApiAxiosParamCreator(configuration)
|
|
51197
51995
|
return {
|
|
51198
51996
|
/**
|
|
51199
|
-
* This creates both General and Conflicting Access Based policy, with a limit of 50 entitlements for each (left & right) criteria for Conflicting Access Based SOD policy Requires role of ORG_ADMIN
|
|
51200
|
-
* @summary Create SOD
|
|
51997
|
+
* This creates both General and Conflicting Access Based policy, with a limit of 50 entitlements for each (left & right) criteria for Conflicting Access Based SOD policy. Requires role of ORG_ADMIN.
|
|
51998
|
+
* @summary Create SOD policy
|
|
51201
51999
|
* @param {SodPolicyBeta} sodPolicyBeta
|
|
51202
52000
|
* @param {*} [axiosOptions] Override http request option.
|
|
51203
52001
|
* @throws {RequiredError}
|
|
@@ -51208,9 +52006,9 @@ export const SODPolicyBetaApiFp = function(configuration?: Configuration) {
|
|
|
51208
52006
|
},
|
|
51209
52007
|
/**
|
|
51210
52008
|
* This deletes a specified SOD policy. Requires role of ORG_ADMIN.
|
|
51211
|
-
* @summary Delete SOD
|
|
52009
|
+
* @summary Delete SOD policy by ID
|
|
51212
52010
|
* @param {string} id The ID of the SOD Policy to delete.
|
|
51213
|
-
* @param {boolean} [logical] whether this is soft delete
|
|
52011
|
+
* @param {boolean} [logical] Indicates whether this is a soft delete (logical true) or a hard delete.
|
|
51214
52012
|
* @param {*} [axiosOptions] Override http request option.
|
|
51215
52013
|
* @throws {RequiredError}
|
|
51216
52014
|
*/
|
|
@@ -51220,8 +52018,8 @@ export const SODPolicyBetaApiFp = function(configuration?: Configuration) {
|
|
|
51220
52018
|
},
|
|
51221
52019
|
/**
|
|
51222
52020
|
* This deletes schedule for a specified SOD policy. Requires role of ORG_ADMIN.
|
|
51223
|
-
* @summary Delete SOD
|
|
51224
|
-
* @param {string} id The ID of the SOD
|
|
52021
|
+
* @summary Delete SOD policy schedule
|
|
52022
|
+
* @param {string} id The ID of the SOD policy the schedule must be deleted for.
|
|
51225
52023
|
* @param {*} [axiosOptions] Override http request option.
|
|
51226
52024
|
* @throws {RequiredError}
|
|
51227
52025
|
*/
|
|
@@ -51230,7 +52028,7 @@ export const SODPolicyBetaApiFp = function(configuration?: Configuration) {
|
|
|
51230
52028
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
51231
52029
|
},
|
|
51232
52030
|
/**
|
|
51233
|
-
* This allows to download a specified named violation report
|
|
52031
|
+
* This allows to download a specified named violation report for a given report reference. Requires role of ORG_ADMIN.
|
|
51234
52032
|
* @summary Download custom violation report
|
|
51235
52033
|
* @param {string} reportResultId The ID of the report reference to download.
|
|
51236
52034
|
* @param {string} fileName Custom Name for the file.
|
|
@@ -51242,7 +52040,7 @@ export const SODPolicyBetaApiFp = function(configuration?: Configuration) {
|
|
|
51242
52040
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
51243
52041
|
},
|
|
51244
52042
|
/**
|
|
51245
|
-
* This allows to download a violation report for given report reference. Requires role of ORG_ADMIN.
|
|
52043
|
+
* This allows to download a violation report for a given report reference. Requires role of ORG_ADMIN.
|
|
51246
52044
|
* @summary Download violation report
|
|
51247
52045
|
* @param {string} reportResultId The ID of the report reference to download.
|
|
51248
52046
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -51253,7 +52051,7 @@ export const SODPolicyBetaApiFp = function(configuration?: Configuration) {
|
|
|
51253
52051
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
51254
52052
|
},
|
|
51255
52053
|
/**
|
|
51256
|
-
* This gets status for a violation report for all policy run. Requires role of ORG_ADMIN.
|
|
52054
|
+
* This endpoint gets the status for a violation report for all policy run. Requires role of ORG_ADMIN.
|
|
51257
52055
|
* @summary Get multi-report run task status
|
|
51258
52056
|
* @param {*} [axiosOptions] Override http request option.
|
|
51259
52057
|
* @throws {RequiredError}
|
|
@@ -51264,7 +52062,7 @@ export const SODPolicyBetaApiFp = function(configuration?: Configuration) {
|
|
|
51264
52062
|
},
|
|
51265
52063
|
/**
|
|
51266
52064
|
* This gets specified SOD policy. Requires role of ORG_ADMIN.
|
|
51267
|
-
* @summary Get SOD
|
|
52065
|
+
* @summary Get SOD policy by ID
|
|
51268
52066
|
* @param {string} id The ID of the object reference to retrieve.
|
|
51269
52067
|
* @param {*} [axiosOptions] Override http request option.
|
|
51270
52068
|
* @throws {RequiredError}
|
|
@@ -51274,8 +52072,8 @@ export const SODPolicyBetaApiFp = function(configuration?: Configuration) {
|
|
|
51274
52072
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
51275
52073
|
},
|
|
51276
52074
|
/**
|
|
51277
|
-
* This gets
|
|
51278
|
-
* @summary Get SOD
|
|
52075
|
+
* This endpoint gets a specified SOD policy\'s schedule. Requires the role of ORG_ADMIN.
|
|
52076
|
+
* @summary Get SOD policy schedule
|
|
51279
52077
|
* @param {string} id The ID of the object reference to retrieve.
|
|
51280
52078
|
* @param {*} [axiosOptions] Override http request option.
|
|
51281
52079
|
* @throws {RequiredError}
|
|
@@ -51285,7 +52083,7 @@ export const SODPolicyBetaApiFp = function(configuration?: Configuration) {
|
|
|
51285
52083
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
51286
52084
|
},
|
|
51287
52085
|
/**
|
|
51288
|
-
* This gets status for a violation report run task
|
|
52086
|
+
* This gets the status for a violation report run task that has already been invoked. Requires role of ORG_ADMIN.
|
|
51289
52087
|
* @summary Get violation report run status
|
|
51290
52088
|
* @param {string} reportResultId The ID of the report reference to retrieve.
|
|
51291
52089
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -51296,7 +52094,7 @@ export const SODPolicyBetaApiFp = function(configuration?: Configuration) {
|
|
|
51296
52094
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
51297
52095
|
},
|
|
51298
52096
|
/**
|
|
51299
|
-
* This gets status for a violation report run task
|
|
52097
|
+
* This gets the status for a violation report run task that has already been invoked. Requires role of ORG_ADMIN.
|
|
51300
52098
|
* @summary Get SOD violation report status
|
|
51301
52099
|
* @param {string} id The ID of the object reference to retrieve.
|
|
51302
52100
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -51307,8 +52105,8 @@ export const SODPolicyBetaApiFp = function(configuration?: Configuration) {
|
|
|
51307
52105
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
51308
52106
|
},
|
|
51309
52107
|
/**
|
|
51310
|
-
* This gets list of all SOD
|
|
51311
|
-
* @summary List SOD
|
|
52108
|
+
* This gets list of all SOD policies. Requires role of ORG_ADMIN
|
|
52109
|
+
* @summary List SOD policies
|
|
51312
52110
|
* @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.
|
|
51313
52111
|
* @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.
|
|
51314
52112
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -51321,9 +52119,9 @@ export const SODPolicyBetaApiFp = function(configuration?: Configuration) {
|
|
|
51321
52119
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
51322
52120
|
},
|
|
51323
52121
|
/**
|
|
51324
|
-
* Allows updating SOD Policy fields other than [\"id\",\"created\",\"creatorId\",\"policyQuery\",\"type\"] using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. Requires role of ORG_ADMIN.
|
|
51325
|
-
* @summary
|
|
51326
|
-
* @param {string} id The ID of the SOD
|
|
52122
|
+
* Allows updating SOD Policy fields other than [\"id\",\"created\",\"creatorId\",\"policyQuery\",\"type\"] using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. Requires role of ORG_ADMIN. This endpoint can only patch CONFLICTING_ACCESS_BASED type policies. Do not use this endpoint to patch general policies - doing so will build an API exception.
|
|
52123
|
+
* @summary Patch a SOD policy
|
|
52124
|
+
* @param {string} id The ID of the SOD policy being modified.
|
|
51327
52125
|
* @param {Array<object>} requestBody A list of SOD Policy update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * name * description * ownerRef * externalPolicyReference * compensatingControls * correctionAdvice * state * tags * violationOwnerAssignmentConfig * scheduled * conflictingAccessCriteria
|
|
51328
52126
|
* @param {*} [axiosOptions] Override http request option.
|
|
51329
52127
|
* @throws {RequiredError}
|
|
@@ -51333,8 +52131,8 @@ export const SODPolicyBetaApiFp = function(configuration?: Configuration) {
|
|
|
51333
52131
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
51334
52132
|
},
|
|
51335
52133
|
/**
|
|
51336
|
-
* Runs multi
|
|
51337
|
-
* @summary Runs all policies for
|
|
52134
|
+
* Runs multi-policy report for the org. If a policy reports more than 5000 violations, the report mentions that the violation limit was exceeded for that policy. If the request is empty, the report runs for all policies. Otherwise, the report runs for only the filtered policy list provided. Requires role of ORG_ADMIN.
|
|
52135
|
+
* @summary Runs all policies for org
|
|
51338
52136
|
* @param {MultiPolicyRequestBeta} [multiPolicyRequestBeta]
|
|
51339
52137
|
* @param {*} [axiosOptions] Override http request option.
|
|
51340
52138
|
* @throws {RequiredError}
|
|
@@ -51344,9 +52142,9 @@ export const SODPolicyBetaApiFp = function(configuration?: Configuration) {
|
|
|
51344
52142
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
51345
52143
|
},
|
|
51346
52144
|
/**
|
|
51347
|
-
* This invokes processing of violation report for given SOD
|
|
51348
|
-
* @summary Runs SOD
|
|
51349
|
-
* @param {string} id The
|
|
52145
|
+
* This invokes processing of violation report for given SOD policy. If the policy reports more than 5000 violations, the report returns with violation limit exceeded message. Requires role of ORG_ADMIN.
|
|
52146
|
+
* @summary Runs SOD policy violation report
|
|
52147
|
+
* @param {string} id The SOD policy ID to run.
|
|
51350
52148
|
* @param {*} [axiosOptions] Override http request option.
|
|
51351
52149
|
* @throws {RequiredError}
|
|
51352
52150
|
*/
|
|
@@ -51355,7 +52153,7 @@ export const SODPolicyBetaApiFp = function(configuration?: Configuration) {
|
|
|
51355
52153
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
51356
52154
|
},
|
|
51357
52155
|
/**
|
|
51358
|
-
* This updates schedule for a specified SOD policy. Requires role of ORG_ADMIN
|
|
52156
|
+
* This updates schedule for a specified SOD policy. Requires role of ORG_ADMIN.
|
|
51359
52157
|
* @summary Update SOD Policy schedule
|
|
51360
52158
|
* @param {string} id The ID of the SOD policy to update its schedule.
|
|
51361
52159
|
* @param {SodPolicyScheduleBeta} sodPolicyScheduleBeta
|
|
@@ -51368,7 +52166,7 @@ export const SODPolicyBetaApiFp = function(configuration?: Configuration) {
|
|
|
51368
52166
|
},
|
|
51369
52167
|
/**
|
|
51370
52168
|
* This updates a specified SOD policy. Requires role of ORG_ADMIN.
|
|
51371
|
-
* @summary Update SOD
|
|
52169
|
+
* @summary Update SOD policy by ID
|
|
51372
52170
|
* @param {string} id The ID of the SOD policy to update.
|
|
51373
52171
|
* @param {SodPolicyBeta} sodPolicyBeta
|
|
51374
52172
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -51389,8 +52187,8 @@ export const SODPolicyBetaApiFactory = function (configuration?: Configuration,
|
|
|
51389
52187
|
const localVarFp = SODPolicyBetaApiFp(configuration)
|
|
51390
52188
|
return {
|
|
51391
52189
|
/**
|
|
51392
|
-
* This creates both General and Conflicting Access Based policy, with a limit of 50 entitlements for each (left & right) criteria for Conflicting Access Based SOD policy Requires role of ORG_ADMIN
|
|
51393
|
-
* @summary Create SOD
|
|
52190
|
+
* This creates both General and Conflicting Access Based policy, with a limit of 50 entitlements for each (left & right) criteria for Conflicting Access Based SOD policy. Requires role of ORG_ADMIN.
|
|
52191
|
+
* @summary Create SOD policy
|
|
51394
52192
|
* @param {SodPolicyBeta} sodPolicyBeta
|
|
51395
52193
|
* @param {*} [axiosOptions] Override http request option.
|
|
51396
52194
|
* @throws {RequiredError}
|
|
@@ -51400,9 +52198,9 @@ export const SODPolicyBetaApiFactory = function (configuration?: Configuration,
|
|
|
51400
52198
|
},
|
|
51401
52199
|
/**
|
|
51402
52200
|
* This deletes a specified SOD policy. Requires role of ORG_ADMIN.
|
|
51403
|
-
* @summary Delete SOD
|
|
52201
|
+
* @summary Delete SOD policy by ID
|
|
51404
52202
|
* @param {string} id The ID of the SOD Policy to delete.
|
|
51405
|
-
* @param {boolean} [logical] whether this is soft delete
|
|
52203
|
+
* @param {boolean} [logical] Indicates whether this is a soft delete (logical true) or a hard delete.
|
|
51406
52204
|
* @param {*} [axiosOptions] Override http request option.
|
|
51407
52205
|
* @throws {RequiredError}
|
|
51408
52206
|
*/
|
|
@@ -51411,8 +52209,8 @@ export const SODPolicyBetaApiFactory = function (configuration?: Configuration,
|
|
|
51411
52209
|
},
|
|
51412
52210
|
/**
|
|
51413
52211
|
* This deletes schedule for a specified SOD policy. Requires role of ORG_ADMIN.
|
|
51414
|
-
* @summary Delete SOD
|
|
51415
|
-
* @param {string} id The ID of the SOD
|
|
52212
|
+
* @summary Delete SOD policy schedule
|
|
52213
|
+
* @param {string} id The ID of the SOD policy the schedule must be deleted for.
|
|
51416
52214
|
* @param {*} [axiosOptions] Override http request option.
|
|
51417
52215
|
* @throws {RequiredError}
|
|
51418
52216
|
*/
|
|
@@ -51420,7 +52218,7 @@ export const SODPolicyBetaApiFactory = function (configuration?: Configuration,
|
|
|
51420
52218
|
return localVarFp.deleteSodPolicySchedule(id, axiosOptions).then((request) => request(axios, basePath));
|
|
51421
52219
|
},
|
|
51422
52220
|
/**
|
|
51423
|
-
* This allows to download a specified named violation report
|
|
52221
|
+
* This allows to download a specified named violation report for a given report reference. Requires role of ORG_ADMIN.
|
|
51424
52222
|
* @summary Download custom violation report
|
|
51425
52223
|
* @param {string} reportResultId The ID of the report reference to download.
|
|
51426
52224
|
* @param {string} fileName Custom Name for the file.
|
|
@@ -51431,7 +52229,7 @@ export const SODPolicyBetaApiFactory = function (configuration?: Configuration,
|
|
|
51431
52229
|
return localVarFp.downloadCustomViolationReport(reportResultId, fileName, axiosOptions).then((request) => request(axios, basePath));
|
|
51432
52230
|
},
|
|
51433
52231
|
/**
|
|
51434
|
-
* This allows to download a violation report for given report reference. Requires role of ORG_ADMIN.
|
|
52232
|
+
* This allows to download a violation report for a given report reference. Requires role of ORG_ADMIN.
|
|
51435
52233
|
* @summary Download violation report
|
|
51436
52234
|
* @param {string} reportResultId The ID of the report reference to download.
|
|
51437
52235
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -51441,7 +52239,7 @@ export const SODPolicyBetaApiFactory = function (configuration?: Configuration,
|
|
|
51441
52239
|
return localVarFp.downloadDefaultViolationReport(reportResultId, axiosOptions).then((request) => request(axios, basePath));
|
|
51442
52240
|
},
|
|
51443
52241
|
/**
|
|
51444
|
-
* This gets status for a violation report for all policy run. Requires role of ORG_ADMIN.
|
|
52242
|
+
* This endpoint gets the status for a violation report for all policy run. Requires role of ORG_ADMIN.
|
|
51445
52243
|
* @summary Get multi-report run task status
|
|
51446
52244
|
* @param {*} [axiosOptions] Override http request option.
|
|
51447
52245
|
* @throws {RequiredError}
|
|
@@ -51451,7 +52249,7 @@ export const SODPolicyBetaApiFactory = function (configuration?: Configuration,
|
|
|
51451
52249
|
},
|
|
51452
52250
|
/**
|
|
51453
52251
|
* This gets specified SOD policy. Requires role of ORG_ADMIN.
|
|
51454
|
-
* @summary Get SOD
|
|
52252
|
+
* @summary Get SOD policy by ID
|
|
51455
52253
|
* @param {string} id The ID of the object reference to retrieve.
|
|
51456
52254
|
* @param {*} [axiosOptions] Override http request option.
|
|
51457
52255
|
* @throws {RequiredError}
|
|
@@ -51460,8 +52258,8 @@ export const SODPolicyBetaApiFactory = function (configuration?: Configuration,
|
|
|
51460
52258
|
return localVarFp.getSodPolicy(id, axiosOptions).then((request) => request(axios, basePath));
|
|
51461
52259
|
},
|
|
51462
52260
|
/**
|
|
51463
|
-
* This gets
|
|
51464
|
-
* @summary Get SOD
|
|
52261
|
+
* This endpoint gets a specified SOD policy\'s schedule. Requires the role of ORG_ADMIN.
|
|
52262
|
+
* @summary Get SOD policy schedule
|
|
51465
52263
|
* @param {string} id The ID of the object reference to retrieve.
|
|
51466
52264
|
* @param {*} [axiosOptions] Override http request option.
|
|
51467
52265
|
* @throws {RequiredError}
|
|
@@ -51470,7 +52268,7 @@ export const SODPolicyBetaApiFactory = function (configuration?: Configuration,
|
|
|
51470
52268
|
return localVarFp.getSodPolicySchedule(id, axiosOptions).then((request) => request(axios, basePath));
|
|
51471
52269
|
},
|
|
51472
52270
|
/**
|
|
51473
|
-
* This gets status for a violation report run task
|
|
52271
|
+
* This gets the status for a violation report run task that has already been invoked. Requires role of ORG_ADMIN.
|
|
51474
52272
|
* @summary Get violation report run status
|
|
51475
52273
|
* @param {string} reportResultId The ID of the report reference to retrieve.
|
|
51476
52274
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -51480,7 +52278,7 @@ export const SODPolicyBetaApiFactory = function (configuration?: Configuration,
|
|
|
51480
52278
|
return localVarFp.getSodViolationReportRunStatus(reportResultId, axiosOptions).then((request) => request(axios, basePath));
|
|
51481
52279
|
},
|
|
51482
52280
|
/**
|
|
51483
|
-
* This gets status for a violation report run task
|
|
52281
|
+
* This gets the status for a violation report run task that has already been invoked. Requires role of ORG_ADMIN.
|
|
51484
52282
|
* @summary Get SOD violation report status
|
|
51485
52283
|
* @param {string} id The ID of the object reference to retrieve.
|
|
51486
52284
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -51490,8 +52288,8 @@ export const SODPolicyBetaApiFactory = function (configuration?: Configuration,
|
|
|
51490
52288
|
return localVarFp.getSodViolationReportStatus(id, axiosOptions).then((request) => request(axios, basePath));
|
|
51491
52289
|
},
|
|
51492
52290
|
/**
|
|
51493
|
-
* This gets list of all SOD
|
|
51494
|
-
* @summary List SOD
|
|
52291
|
+
* This gets list of all SOD policies. Requires role of ORG_ADMIN
|
|
52292
|
+
* @summary List SOD policies
|
|
51495
52293
|
* @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.
|
|
51496
52294
|
* @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.
|
|
51497
52295
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -51503,9 +52301,9 @@ export const SODPolicyBetaApiFactory = function (configuration?: Configuration,
|
|
|
51503
52301
|
return localVarFp.listSodPolicies(limit, offset, count, filters, axiosOptions).then((request) => request(axios, basePath));
|
|
51504
52302
|
},
|
|
51505
52303
|
/**
|
|
51506
|
-
* Allows updating SOD Policy fields other than [\"id\",\"created\",\"creatorId\",\"policyQuery\",\"type\"] using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. Requires role of ORG_ADMIN.
|
|
51507
|
-
* @summary
|
|
51508
|
-
* @param {string} id The ID of the SOD
|
|
52304
|
+
* Allows updating SOD Policy fields other than [\"id\",\"created\",\"creatorId\",\"policyQuery\",\"type\"] using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. Requires role of ORG_ADMIN. This endpoint can only patch CONFLICTING_ACCESS_BASED type policies. Do not use this endpoint to patch general policies - doing so will build an API exception.
|
|
52305
|
+
* @summary Patch a SOD policy
|
|
52306
|
+
* @param {string} id The ID of the SOD policy being modified.
|
|
51509
52307
|
* @param {Array<object>} requestBody A list of SOD Policy update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * name * description * ownerRef * externalPolicyReference * compensatingControls * correctionAdvice * state * tags * violationOwnerAssignmentConfig * scheduled * conflictingAccessCriteria
|
|
51510
52308
|
* @param {*} [axiosOptions] Override http request option.
|
|
51511
52309
|
* @throws {RequiredError}
|
|
@@ -51514,8 +52312,8 @@ export const SODPolicyBetaApiFactory = function (configuration?: Configuration,
|
|
|
51514
52312
|
return localVarFp.patchSodPolicy(id, requestBody, axiosOptions).then((request) => request(axios, basePath));
|
|
51515
52313
|
},
|
|
51516
52314
|
/**
|
|
51517
|
-
* Runs multi
|
|
51518
|
-
* @summary Runs all policies for
|
|
52315
|
+
* Runs multi-policy report for the org. If a policy reports more than 5000 violations, the report mentions that the violation limit was exceeded for that policy. If the request is empty, the report runs for all policies. Otherwise, the report runs for only the filtered policy list provided. Requires role of ORG_ADMIN.
|
|
52316
|
+
* @summary Runs all policies for org
|
|
51519
52317
|
* @param {MultiPolicyRequestBeta} [multiPolicyRequestBeta]
|
|
51520
52318
|
* @param {*} [axiosOptions] Override http request option.
|
|
51521
52319
|
* @throws {RequiredError}
|
|
@@ -51524,9 +52322,9 @@ export const SODPolicyBetaApiFactory = function (configuration?: Configuration,
|
|
|
51524
52322
|
return localVarFp.runSodAllPoliciesForOrg(multiPolicyRequestBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
51525
52323
|
},
|
|
51526
52324
|
/**
|
|
51527
|
-
* This invokes processing of violation report for given SOD
|
|
51528
|
-
* @summary Runs SOD
|
|
51529
|
-
* @param {string} id The
|
|
52325
|
+
* This invokes processing of violation report for given SOD policy. If the policy reports more than 5000 violations, the report returns with violation limit exceeded message. Requires role of ORG_ADMIN.
|
|
52326
|
+
* @summary Runs SOD policy violation report
|
|
52327
|
+
* @param {string} id The SOD policy ID to run.
|
|
51530
52328
|
* @param {*} [axiosOptions] Override http request option.
|
|
51531
52329
|
* @throws {RequiredError}
|
|
51532
52330
|
*/
|
|
@@ -51534,7 +52332,7 @@ export const SODPolicyBetaApiFactory = function (configuration?: Configuration,
|
|
|
51534
52332
|
return localVarFp.runSodPolicy(id, axiosOptions).then((request) => request(axios, basePath));
|
|
51535
52333
|
},
|
|
51536
52334
|
/**
|
|
51537
|
-
* This updates schedule for a specified SOD policy. Requires role of ORG_ADMIN
|
|
52335
|
+
* This updates schedule for a specified SOD policy. Requires role of ORG_ADMIN.
|
|
51538
52336
|
* @summary Update SOD Policy schedule
|
|
51539
52337
|
* @param {string} id The ID of the SOD policy to update its schedule.
|
|
51540
52338
|
* @param {SodPolicyScheduleBeta} sodPolicyScheduleBeta
|
|
@@ -51546,7 +52344,7 @@ export const SODPolicyBetaApiFactory = function (configuration?: Configuration,
|
|
|
51546
52344
|
},
|
|
51547
52345
|
/**
|
|
51548
52346
|
* This updates a specified SOD policy. Requires role of ORG_ADMIN.
|
|
51549
|
-
* @summary Update SOD
|
|
52347
|
+
* @summary Update SOD policy by ID
|
|
51550
52348
|
* @param {string} id The ID of the SOD policy to update.
|
|
51551
52349
|
* @param {SodPolicyBeta} sodPolicyBeta
|
|
51552
52350
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -51586,7 +52384,7 @@ export interface SODPolicyBetaApiDeleteSodPolicyRequest {
|
|
|
51586
52384
|
readonly id: string
|
|
51587
52385
|
|
|
51588
52386
|
/**
|
|
51589
|
-
* whether this is soft delete
|
|
52387
|
+
* Indicates whether this is a soft delete (logical true) or a hard delete.
|
|
51590
52388
|
* @type {boolean}
|
|
51591
52389
|
* @memberof SODPolicyBetaApiDeleteSodPolicy
|
|
51592
52390
|
*/
|
|
@@ -51600,7 +52398,7 @@ export interface SODPolicyBetaApiDeleteSodPolicyRequest {
|
|
|
51600
52398
|
*/
|
|
51601
52399
|
export interface SODPolicyBetaApiDeleteSodPolicyScheduleRequest {
|
|
51602
52400
|
/**
|
|
51603
|
-
* The ID of the SOD
|
|
52401
|
+
* The ID of the SOD policy the schedule must be deleted for.
|
|
51604
52402
|
* @type {string}
|
|
51605
52403
|
* @memberof SODPolicyBetaApiDeleteSodPolicySchedule
|
|
51606
52404
|
*/
|
|
@@ -51740,7 +52538,7 @@ export interface SODPolicyBetaApiListSodPoliciesRequest {
|
|
|
51740
52538
|
*/
|
|
51741
52539
|
export interface SODPolicyBetaApiPatchSodPolicyRequest {
|
|
51742
52540
|
/**
|
|
51743
|
-
* The ID of the SOD
|
|
52541
|
+
* The ID of the SOD policy being modified.
|
|
51744
52542
|
* @type {string}
|
|
51745
52543
|
* @memberof SODPolicyBetaApiPatchSodPolicy
|
|
51746
52544
|
*/
|
|
@@ -51775,7 +52573,7 @@ export interface SODPolicyBetaApiRunSodAllPoliciesForOrgRequest {
|
|
|
51775
52573
|
*/
|
|
51776
52574
|
export interface SODPolicyBetaApiRunSodPolicyRequest {
|
|
51777
52575
|
/**
|
|
51778
|
-
* The
|
|
52576
|
+
* The SOD policy ID to run.
|
|
51779
52577
|
* @type {string}
|
|
51780
52578
|
* @memberof SODPolicyBetaApiRunSodPolicy
|
|
51781
52579
|
*/
|
|
@@ -51832,8 +52630,8 @@ export interface SODPolicyBetaApiUpdateSodPolicyRequest {
|
|
|
51832
52630
|
*/
|
|
51833
52631
|
export class SODPolicyBetaApi extends BaseAPI {
|
|
51834
52632
|
/**
|
|
51835
|
-
* This creates both General and Conflicting Access Based policy, with a limit of 50 entitlements for each (left & right) criteria for Conflicting Access Based SOD policy Requires role of ORG_ADMIN
|
|
51836
|
-
* @summary Create SOD
|
|
52633
|
+
* This creates both General and Conflicting Access Based policy, with a limit of 50 entitlements for each (left & right) criteria for Conflicting Access Based SOD policy. Requires role of ORG_ADMIN.
|
|
52634
|
+
* @summary Create SOD policy
|
|
51837
52635
|
* @param {SODPolicyBetaApiCreateSodPolicyRequest} requestParameters Request parameters.
|
|
51838
52636
|
* @param {*} [axiosOptions] Override http request option.
|
|
51839
52637
|
* @throws {RequiredError}
|
|
@@ -51845,7 +52643,7 @@ export class SODPolicyBetaApi extends BaseAPI {
|
|
|
51845
52643
|
|
|
51846
52644
|
/**
|
|
51847
52645
|
* This deletes a specified SOD policy. Requires role of ORG_ADMIN.
|
|
51848
|
-
* @summary Delete SOD
|
|
52646
|
+
* @summary Delete SOD policy by ID
|
|
51849
52647
|
* @param {SODPolicyBetaApiDeleteSodPolicyRequest} requestParameters Request parameters.
|
|
51850
52648
|
* @param {*} [axiosOptions] Override http request option.
|
|
51851
52649
|
* @throws {RequiredError}
|
|
@@ -51857,7 +52655,7 @@ export class SODPolicyBetaApi extends BaseAPI {
|
|
|
51857
52655
|
|
|
51858
52656
|
/**
|
|
51859
52657
|
* This deletes schedule for a specified SOD policy. Requires role of ORG_ADMIN.
|
|
51860
|
-
* @summary Delete SOD
|
|
52658
|
+
* @summary Delete SOD policy schedule
|
|
51861
52659
|
* @param {SODPolicyBetaApiDeleteSodPolicyScheduleRequest} requestParameters Request parameters.
|
|
51862
52660
|
* @param {*} [axiosOptions] Override http request option.
|
|
51863
52661
|
* @throws {RequiredError}
|
|
@@ -51868,7 +52666,7 @@ export class SODPolicyBetaApi extends BaseAPI {
|
|
|
51868
52666
|
}
|
|
51869
52667
|
|
|
51870
52668
|
/**
|
|
51871
|
-
* This allows to download a specified named violation report
|
|
52669
|
+
* This allows to download a specified named violation report for a given report reference. Requires role of ORG_ADMIN.
|
|
51872
52670
|
* @summary Download custom violation report
|
|
51873
52671
|
* @param {SODPolicyBetaApiDownloadCustomViolationReportRequest} requestParameters Request parameters.
|
|
51874
52672
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -51880,7 +52678,7 @@ export class SODPolicyBetaApi extends BaseAPI {
|
|
|
51880
52678
|
}
|
|
51881
52679
|
|
|
51882
52680
|
/**
|
|
51883
|
-
* This allows to download a violation report for given report reference. Requires role of ORG_ADMIN.
|
|
52681
|
+
* This allows to download a violation report for a given report reference. Requires role of ORG_ADMIN.
|
|
51884
52682
|
* @summary Download violation report
|
|
51885
52683
|
* @param {SODPolicyBetaApiDownloadDefaultViolationReportRequest} requestParameters Request parameters.
|
|
51886
52684
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -51892,7 +52690,7 @@ export class SODPolicyBetaApi extends BaseAPI {
|
|
|
51892
52690
|
}
|
|
51893
52691
|
|
|
51894
52692
|
/**
|
|
51895
|
-
* This gets status for a violation report for all policy run. Requires role of ORG_ADMIN.
|
|
52693
|
+
* This endpoint gets the status for a violation report for all policy run. Requires role of ORG_ADMIN.
|
|
51896
52694
|
* @summary Get multi-report run task status
|
|
51897
52695
|
* @param {*} [axiosOptions] Override http request option.
|
|
51898
52696
|
* @throws {RequiredError}
|
|
@@ -51904,7 +52702,7 @@ export class SODPolicyBetaApi extends BaseAPI {
|
|
|
51904
52702
|
|
|
51905
52703
|
/**
|
|
51906
52704
|
* This gets specified SOD policy. Requires role of ORG_ADMIN.
|
|
51907
|
-
* @summary Get SOD
|
|
52705
|
+
* @summary Get SOD policy by ID
|
|
51908
52706
|
* @param {SODPolicyBetaApiGetSodPolicyRequest} requestParameters Request parameters.
|
|
51909
52707
|
* @param {*} [axiosOptions] Override http request option.
|
|
51910
52708
|
* @throws {RequiredError}
|
|
@@ -51915,8 +52713,8 @@ export class SODPolicyBetaApi extends BaseAPI {
|
|
|
51915
52713
|
}
|
|
51916
52714
|
|
|
51917
52715
|
/**
|
|
51918
|
-
* This gets
|
|
51919
|
-
* @summary Get SOD
|
|
52716
|
+
* This endpoint gets a specified SOD policy\'s schedule. Requires the role of ORG_ADMIN.
|
|
52717
|
+
* @summary Get SOD policy schedule
|
|
51920
52718
|
* @param {SODPolicyBetaApiGetSodPolicyScheduleRequest} requestParameters Request parameters.
|
|
51921
52719
|
* @param {*} [axiosOptions] Override http request option.
|
|
51922
52720
|
* @throws {RequiredError}
|
|
@@ -51927,7 +52725,7 @@ export class SODPolicyBetaApi extends BaseAPI {
|
|
|
51927
52725
|
}
|
|
51928
52726
|
|
|
51929
52727
|
/**
|
|
51930
|
-
* This gets status for a violation report run task
|
|
52728
|
+
* This gets the status for a violation report run task that has already been invoked. Requires role of ORG_ADMIN.
|
|
51931
52729
|
* @summary Get violation report run status
|
|
51932
52730
|
* @param {SODPolicyBetaApiGetSodViolationReportRunStatusRequest} requestParameters Request parameters.
|
|
51933
52731
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -51939,7 +52737,7 @@ export class SODPolicyBetaApi extends BaseAPI {
|
|
|
51939
52737
|
}
|
|
51940
52738
|
|
|
51941
52739
|
/**
|
|
51942
|
-
* This gets status for a violation report run task
|
|
52740
|
+
* This gets the status for a violation report run task that has already been invoked. Requires role of ORG_ADMIN.
|
|
51943
52741
|
* @summary Get SOD violation report status
|
|
51944
52742
|
* @param {SODPolicyBetaApiGetSodViolationReportStatusRequest} requestParameters Request parameters.
|
|
51945
52743
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -51951,8 +52749,8 @@ export class SODPolicyBetaApi extends BaseAPI {
|
|
|
51951
52749
|
}
|
|
51952
52750
|
|
|
51953
52751
|
/**
|
|
51954
|
-
* This gets list of all SOD
|
|
51955
|
-
* @summary List SOD
|
|
52752
|
+
* This gets list of all SOD policies. Requires role of ORG_ADMIN
|
|
52753
|
+
* @summary List SOD policies
|
|
51956
52754
|
* @param {SODPolicyBetaApiListSodPoliciesRequest} requestParameters Request parameters.
|
|
51957
52755
|
* @param {*} [axiosOptions] Override http request option.
|
|
51958
52756
|
* @throws {RequiredError}
|
|
@@ -51963,8 +52761,8 @@ export class SODPolicyBetaApi extends BaseAPI {
|
|
|
51963
52761
|
}
|
|
51964
52762
|
|
|
51965
52763
|
/**
|
|
51966
|
-
* Allows updating SOD Policy fields other than [\"id\",\"created\",\"creatorId\",\"policyQuery\",\"type\"] using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. Requires role of ORG_ADMIN.
|
|
51967
|
-
* @summary
|
|
52764
|
+
* Allows updating SOD Policy fields other than [\"id\",\"created\",\"creatorId\",\"policyQuery\",\"type\"] using the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. Requires role of ORG_ADMIN. This endpoint can only patch CONFLICTING_ACCESS_BASED type policies. Do not use this endpoint to patch general policies - doing so will build an API exception.
|
|
52765
|
+
* @summary Patch a SOD policy
|
|
51968
52766
|
* @param {SODPolicyBetaApiPatchSodPolicyRequest} requestParameters Request parameters.
|
|
51969
52767
|
* @param {*} [axiosOptions] Override http request option.
|
|
51970
52768
|
* @throws {RequiredError}
|
|
@@ -51975,8 +52773,8 @@ export class SODPolicyBetaApi extends BaseAPI {
|
|
|
51975
52773
|
}
|
|
51976
52774
|
|
|
51977
52775
|
/**
|
|
51978
|
-
* Runs multi
|
|
51979
|
-
* @summary Runs all policies for
|
|
52776
|
+
* Runs multi-policy report for the org. If a policy reports more than 5000 violations, the report mentions that the violation limit was exceeded for that policy. If the request is empty, the report runs for all policies. Otherwise, the report runs for only the filtered policy list provided. Requires role of ORG_ADMIN.
|
|
52777
|
+
* @summary Runs all policies for org
|
|
51980
52778
|
* @param {SODPolicyBetaApiRunSodAllPoliciesForOrgRequest} requestParameters Request parameters.
|
|
51981
52779
|
* @param {*} [axiosOptions] Override http request option.
|
|
51982
52780
|
* @throws {RequiredError}
|
|
@@ -51987,8 +52785,8 @@ export class SODPolicyBetaApi extends BaseAPI {
|
|
|
51987
52785
|
}
|
|
51988
52786
|
|
|
51989
52787
|
/**
|
|
51990
|
-
* This invokes processing of violation report for given SOD
|
|
51991
|
-
* @summary Runs SOD
|
|
52788
|
+
* This invokes processing of violation report for given SOD policy. If the policy reports more than 5000 violations, the report returns with violation limit exceeded message. Requires role of ORG_ADMIN.
|
|
52789
|
+
* @summary Runs SOD policy violation report
|
|
51992
52790
|
* @param {SODPolicyBetaApiRunSodPolicyRequest} requestParameters Request parameters.
|
|
51993
52791
|
* @param {*} [axiosOptions] Override http request option.
|
|
51994
52792
|
* @throws {RequiredError}
|
|
@@ -51999,7 +52797,7 @@ export class SODPolicyBetaApi extends BaseAPI {
|
|
|
51999
52797
|
}
|
|
52000
52798
|
|
|
52001
52799
|
/**
|
|
52002
|
-
* This updates schedule for a specified SOD policy. Requires role of ORG_ADMIN
|
|
52800
|
+
* This updates schedule for a specified SOD policy. Requires role of ORG_ADMIN.
|
|
52003
52801
|
* @summary Update SOD Policy schedule
|
|
52004
52802
|
* @param {SODPolicyBetaApiUpdatePolicyScheduleRequest} requestParameters Request parameters.
|
|
52005
52803
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52012,7 +52810,7 @@ export class SODPolicyBetaApi extends BaseAPI {
|
|
|
52012
52810
|
|
|
52013
52811
|
/**
|
|
52014
52812
|
* This updates a specified SOD policy. Requires role of ORG_ADMIN.
|
|
52015
|
-
* @summary Update SOD
|
|
52813
|
+
* @summary Update SOD policy by ID
|
|
52016
52814
|
* @param {SODPolicyBetaApiUpdateSodPolicyRequest} requestParameters Request parameters.
|
|
52017
52815
|
* @param {*} [axiosOptions] Override http request option.
|
|
52018
52816
|
* @throws {RequiredError}
|
|
@@ -52290,13 +53088,13 @@ export const SPConfigBetaApiAxiosParamCreator = function (configuration?: Config
|
|
|
52290
53088
|
/**
|
|
52291
53089
|
* This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the /sp-config/export/{exportJobId}/download endpoint. Request will need the following security scope: - sp:config:manage
|
|
52292
53090
|
* @summary Initiates Configuration Objects Import Job.
|
|
52293
|
-
* @param {
|
|
53091
|
+
* @param {any} data JSON file containing the objects to be imported.
|
|
52294
53092
|
* @param {boolean} [preview] This option is intended to give the user information about how an import operation would proceed, without having any affect on the target tenant. If true, no objects will be imported. Instead, the import process will pre-process the import file and attempt to resolve references within imported objects. The import result file will contain messages pertaining to how specific references were resolved, any errors associated with the preprocessing, and messages indicating which objects would be imported.
|
|
52295
53093
|
* @param {ImportOptionsBeta} [options]
|
|
52296
53094
|
* @param {*} [axiosOptions] Override http request option.
|
|
52297
53095
|
* @throws {RequiredError}
|
|
52298
53096
|
*/
|
|
52299
|
-
importSpConfig: async (data:
|
|
53097
|
+
importSpConfig: async (data: any, preview?: boolean, options?: ImportOptionsBeta, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
52300
53098
|
// verify required parameter 'data' is not null or undefined
|
|
52301
53099
|
assertParamExists('importSpConfig', 'data', data)
|
|
52302
53100
|
const localVarPath = `/sp-config/import`;
|
|
@@ -52514,13 +53312,13 @@ export const SPConfigBetaApiFp = function(configuration?: Configuration) {
|
|
|
52514
53312
|
/**
|
|
52515
53313
|
* This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the /sp-config/export/{exportJobId}/download endpoint. Request will need the following security scope: - sp:config:manage
|
|
52516
53314
|
* @summary Initiates Configuration Objects Import Job.
|
|
52517
|
-
* @param {
|
|
53315
|
+
* @param {any} data JSON file containing the objects to be imported.
|
|
52518
53316
|
* @param {boolean} [preview] This option is intended to give the user information about how an import operation would proceed, without having any affect on the target tenant. If true, no objects will be imported. Instead, the import process will pre-process the import file and attempt to resolve references within imported objects. The import result file will contain messages pertaining to how specific references were resolved, any errors associated with the preprocessing, and messages indicating which objects would be imported.
|
|
52519
53317
|
* @param {ImportOptionsBeta} [options]
|
|
52520
53318
|
* @param {*} [axiosOptions] Override http request option.
|
|
52521
53319
|
* @throws {RequiredError}
|
|
52522
53320
|
*/
|
|
52523
|
-
async importSpConfig(data:
|
|
53321
|
+
async importSpConfig(data: any, preview?: boolean, options?: ImportOptionsBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpConfigJobBeta>> {
|
|
52524
53322
|
const localVarAxiosArgs = await localVarAxiosParamCreator.importSpConfig(data, preview, options, axiosOptions);
|
|
52525
53323
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
52526
53324
|
},
|
|
@@ -52599,13 +53397,13 @@ export const SPConfigBetaApiFactory = function (configuration?: Configuration, b
|
|
|
52599
53397
|
/**
|
|
52600
53398
|
* This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the /sp-config/export/{exportJobId}/download endpoint. Request will need the following security scope: - sp:config:manage
|
|
52601
53399
|
* @summary Initiates Configuration Objects Import Job.
|
|
52602
|
-
* @param {
|
|
53400
|
+
* @param {any} data JSON file containing the objects to be imported.
|
|
52603
53401
|
* @param {boolean} [preview] This option is intended to give the user information about how an import operation would proceed, without having any affect on the target tenant. If true, no objects will be imported. Instead, the import process will pre-process the import file and attempt to resolve references within imported objects. The import result file will contain messages pertaining to how specific references were resolved, any errors associated with the preprocessing, and messages indicating which objects would be imported.
|
|
52604
53402
|
* @param {ImportOptionsBeta} [options]
|
|
52605
53403
|
* @param {*} [axiosOptions] Override http request option.
|
|
52606
53404
|
* @throws {RequiredError}
|
|
52607
53405
|
*/
|
|
52608
|
-
importSpConfig(data:
|
|
53406
|
+
importSpConfig(data: any, preview?: boolean, options?: ImportOptionsBeta, axiosOptions?: any): AxiosPromise<SpConfigJobBeta> {
|
|
52609
53407
|
return localVarFp.importSpConfig(data, preview, options, axiosOptions).then((request) => request(axios, basePath));
|
|
52610
53408
|
},
|
|
52611
53409
|
/**
|
|
@@ -52689,11 +53487,11 @@ export interface SPConfigBetaApiExportSpConfigJobStatusRequest {
|
|
|
52689
53487
|
*/
|
|
52690
53488
|
export interface SPConfigBetaApiImportSpConfigRequest {
|
|
52691
53489
|
/**
|
|
52692
|
-
*
|
|
52693
|
-
* @type {
|
|
53490
|
+
* JSON file containing the objects to be imported.
|
|
53491
|
+
* @type {any}
|
|
52694
53492
|
* @memberof SPConfigBetaApiImportSpConfig
|
|
52695
53493
|
*/
|
|
52696
|
-
readonly data:
|
|
53494
|
+
readonly data: any
|
|
52697
53495
|
|
|
52698
53496
|
/**
|
|
52699
53497
|
* This option is intended to give the user information about how an import operation would proceed, without having any affect on the target tenant. If true, no objects will be imported. Instead, the import process will pre-process the import file and attempt to resolve references within imported objects. The import result file will contain messages pertaining to how specific references were resolved, any errors associated with the preprocessing, and messages indicating which objects would be imported.
|
|
@@ -54202,16 +55000,20 @@ export const ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configur
|
|
|
54202
55000
|
};
|
|
54203
55001
|
},
|
|
54204
55002
|
/**
|
|
54205
|
-
* Update
|
|
54206
|
-
* @summary Update
|
|
54207
|
-
* @param {
|
|
55003
|
+
* Update an existing Service Desk integration by ID with updated value in JSON form as the request body. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
55004
|
+
* @summary Update a Service Desk integration by ID
|
|
55005
|
+
* @param {string} id ID of the Service Desk integration to update
|
|
55006
|
+
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of the integration to update
|
|
54208
55007
|
* @param {*} [axiosOptions] Override http request option.
|
|
54209
55008
|
* @throws {RequiredError}
|
|
54210
55009
|
*/
|
|
54211
|
-
|
|
54212
|
-
// verify required parameter '
|
|
54213
|
-
assertParamExists('
|
|
54214
|
-
|
|
55010
|
+
updateServiceDeskIntegration: async (id: string, serviceDeskIntegrationDtoBeta: ServiceDeskIntegrationDtoBeta, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
55011
|
+
// verify required parameter 'id' is not null or undefined
|
|
55012
|
+
assertParamExists('updateServiceDeskIntegration', 'id', id)
|
|
55013
|
+
// verify required parameter 'serviceDeskIntegrationDtoBeta' is not null or undefined
|
|
55014
|
+
assertParamExists('updateServiceDeskIntegration', 'serviceDeskIntegrationDtoBeta', serviceDeskIntegrationDtoBeta)
|
|
55015
|
+
const localVarPath = `/service-desk-integrations/{id}`
|
|
55016
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
54215
55017
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
54216
55018
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
54217
55019
|
let baseOptions;
|
|
@@ -54238,7 +55040,7 @@ export const ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configur
|
|
|
54238
55040
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
54239
55041
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
54240
55042
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
54241
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
55043
|
+
localVarRequestOptions.data = serializeDataIfNeeded(serviceDeskIntegrationDtoBeta, localVarRequestOptions, configuration)
|
|
54242
55044
|
|
|
54243
55045
|
return {
|
|
54244
55046
|
url: toPathString(localVarUrlObj),
|
|
@@ -54246,20 +55048,16 @@ export const ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configur
|
|
|
54246
55048
|
};
|
|
54247
55049
|
},
|
|
54248
55050
|
/**
|
|
54249
|
-
* Update
|
|
54250
|
-
* @summary Update
|
|
54251
|
-
* @param {
|
|
54252
|
-
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of the integration to update
|
|
55051
|
+
* Update the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
55052
|
+
* @summary Update the time check configuration of queued SDIM tickets
|
|
55053
|
+
* @param {QueuedCheckConfigDetailsBeta} queuedCheckConfigDetailsBeta the modified time check configuration
|
|
54253
55054
|
* @param {*} [axiosOptions] Override http request option.
|
|
54254
55055
|
* @throws {RequiredError}
|
|
54255
55056
|
*/
|
|
54256
|
-
|
|
54257
|
-
// verify required parameter '
|
|
54258
|
-
assertParamExists('
|
|
54259
|
-
|
|
54260
|
-
assertParamExists('updateServiceDeskIntegration', 'serviceDeskIntegrationDtoBeta', serviceDeskIntegrationDtoBeta)
|
|
54261
|
-
const localVarPath = `/service-desk-integrations/{id}`
|
|
54262
|
-
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
55057
|
+
updateStatusCheckDetails: async (queuedCheckConfigDetailsBeta: QueuedCheckConfigDetailsBeta, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
55058
|
+
// verify required parameter 'queuedCheckConfigDetailsBeta' is not null or undefined
|
|
55059
|
+
assertParamExists('updateStatusCheckDetails', 'queuedCheckConfigDetailsBeta', queuedCheckConfigDetailsBeta)
|
|
55060
|
+
const localVarPath = `/service-desk-integrations/status-check-configuration`;
|
|
54263
55061
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
54264
55062
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
54265
55063
|
let baseOptions;
|
|
@@ -54286,7 +55084,7 @@ export const ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configur
|
|
|
54286
55084
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
54287
55085
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
54288
55086
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
54289
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
55087
|
+
localVarRequestOptions.data = serializeDataIfNeeded(queuedCheckConfigDetailsBeta, localVarRequestOptions, configuration)
|
|
54290
55088
|
|
|
54291
55089
|
return {
|
|
54292
55090
|
url: toPathString(localVarUrlObj),
|
|
@@ -54394,17 +55192,6 @@ export const ServiceDeskIntegrationBetaApiFp = function(configuration?: Configur
|
|
|
54394
55192
|
const localVarAxiosArgs = await localVarAxiosParamCreator.patchServiceDeskIntegration(id, jsonPatchBeta, axiosOptions);
|
|
54395
55193
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
54396
55194
|
},
|
|
54397
|
-
/**
|
|
54398
|
-
* Update the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
54399
|
-
* @summary Update the time check configuration of queued SDIM tickets
|
|
54400
|
-
* @param {QueuedCheckConfigDetailsBeta} queuedCheckConfigDetailsBeta the modified time check configuration
|
|
54401
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
54402
|
-
* @throws {RequiredError}
|
|
54403
|
-
*/
|
|
54404
|
-
async updateManagedClientStatusCheckDetails(queuedCheckConfigDetailsBeta: QueuedCheckConfigDetailsBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QueuedCheckConfigDetailsBeta>> {
|
|
54405
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateManagedClientStatusCheckDetails(queuedCheckConfigDetailsBeta, axiosOptions);
|
|
54406
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
54407
|
-
},
|
|
54408
55195
|
/**
|
|
54409
55196
|
* Update an existing Service Desk integration by ID with updated value in JSON form as the request body. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
54410
55197
|
* @summary Update a Service Desk integration by ID
|
|
@@ -54417,6 +55204,17 @@ export const ServiceDeskIntegrationBetaApiFp = function(configuration?: Configur
|
|
|
54417
55204
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateServiceDeskIntegration(id, serviceDeskIntegrationDtoBeta, axiosOptions);
|
|
54418
55205
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
54419
55206
|
},
|
|
55207
|
+
/**
|
|
55208
|
+
* Update the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
55209
|
+
* @summary Update the time check configuration of queued SDIM tickets
|
|
55210
|
+
* @param {QueuedCheckConfigDetailsBeta} queuedCheckConfigDetailsBeta the modified time check configuration
|
|
55211
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
55212
|
+
* @throws {RequiredError}
|
|
55213
|
+
*/
|
|
55214
|
+
async updateStatusCheckDetails(queuedCheckConfigDetailsBeta: QueuedCheckConfigDetailsBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QueuedCheckConfigDetailsBeta>> {
|
|
55215
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateStatusCheckDetails(queuedCheckConfigDetailsBeta, axiosOptions);
|
|
55216
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
55217
|
+
},
|
|
54420
55218
|
}
|
|
54421
55219
|
};
|
|
54422
55220
|
|
|
@@ -54510,16 +55308,6 @@ export const ServiceDeskIntegrationBetaApiFactory = function (configuration?: Co
|
|
|
54510
55308
|
patchServiceDeskIntegration(id: string, jsonPatchBeta: JsonPatchBeta, axiosOptions?: any): AxiosPromise<ServiceDeskIntegrationDtoBeta> {
|
|
54511
55309
|
return localVarFp.patchServiceDeskIntegration(id, jsonPatchBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
54512
55310
|
},
|
|
54513
|
-
/**
|
|
54514
|
-
* Update the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
54515
|
-
* @summary Update the time check configuration of queued SDIM tickets
|
|
54516
|
-
* @param {QueuedCheckConfigDetailsBeta} queuedCheckConfigDetailsBeta the modified time check configuration
|
|
54517
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
54518
|
-
* @throws {RequiredError}
|
|
54519
|
-
*/
|
|
54520
|
-
updateManagedClientStatusCheckDetails(queuedCheckConfigDetailsBeta: QueuedCheckConfigDetailsBeta, axiosOptions?: any): AxiosPromise<QueuedCheckConfigDetailsBeta> {
|
|
54521
|
-
return localVarFp.updateManagedClientStatusCheckDetails(queuedCheckConfigDetailsBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
54522
|
-
},
|
|
54523
55311
|
/**
|
|
54524
55312
|
* Update an existing Service Desk integration by ID with updated value in JSON form as the request body. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
54525
55313
|
* @summary Update a Service Desk integration by ID
|
|
@@ -54531,6 +55319,16 @@ export const ServiceDeskIntegrationBetaApiFactory = function (configuration?: Co
|
|
|
54531
55319
|
updateServiceDeskIntegration(id: string, serviceDeskIntegrationDtoBeta: ServiceDeskIntegrationDtoBeta, axiosOptions?: any): AxiosPromise<ServiceDeskIntegrationDtoBeta> {
|
|
54532
55320
|
return localVarFp.updateServiceDeskIntegration(id, serviceDeskIntegrationDtoBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
54533
55321
|
},
|
|
55322
|
+
/**
|
|
55323
|
+
* Update the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
55324
|
+
* @summary Update the time check configuration of queued SDIM tickets
|
|
55325
|
+
* @param {QueuedCheckConfigDetailsBeta} queuedCheckConfigDetailsBeta the modified time check configuration
|
|
55326
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
55327
|
+
* @throws {RequiredError}
|
|
55328
|
+
*/
|
|
55329
|
+
updateStatusCheckDetails(queuedCheckConfigDetailsBeta: QueuedCheckConfigDetailsBeta, axiosOptions?: any): AxiosPromise<QueuedCheckConfigDetailsBeta> {
|
|
55330
|
+
return localVarFp.updateStatusCheckDetails(queuedCheckConfigDetailsBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
55331
|
+
},
|
|
54534
55332
|
};
|
|
54535
55333
|
};
|
|
54536
55334
|
|
|
@@ -54653,20 +55451,6 @@ export interface ServiceDeskIntegrationBetaApiPatchServiceDeskIntegrationRequest
|
|
|
54653
55451
|
readonly jsonPatchBeta: JsonPatchBeta
|
|
54654
55452
|
}
|
|
54655
55453
|
|
|
54656
|
-
/**
|
|
54657
|
-
* Request parameters for updateManagedClientStatusCheckDetails operation in ServiceDeskIntegrationBetaApi.
|
|
54658
|
-
* @export
|
|
54659
|
-
* @interface ServiceDeskIntegrationBetaApiUpdateManagedClientStatusCheckDetailsRequest
|
|
54660
|
-
*/
|
|
54661
|
-
export interface ServiceDeskIntegrationBetaApiUpdateManagedClientStatusCheckDetailsRequest {
|
|
54662
|
-
/**
|
|
54663
|
-
* the modified time check configuration
|
|
54664
|
-
* @type {QueuedCheckConfigDetailsBeta}
|
|
54665
|
-
* @memberof ServiceDeskIntegrationBetaApiUpdateManagedClientStatusCheckDetails
|
|
54666
|
-
*/
|
|
54667
|
-
readonly queuedCheckConfigDetailsBeta: QueuedCheckConfigDetailsBeta
|
|
54668
|
-
}
|
|
54669
|
-
|
|
54670
55454
|
/**
|
|
54671
55455
|
* Request parameters for updateServiceDeskIntegration operation in ServiceDeskIntegrationBetaApi.
|
|
54672
55456
|
* @export
|
|
@@ -54688,6 +55472,20 @@ export interface ServiceDeskIntegrationBetaApiUpdateServiceDeskIntegrationReques
|
|
|
54688
55472
|
readonly serviceDeskIntegrationDtoBeta: ServiceDeskIntegrationDtoBeta
|
|
54689
55473
|
}
|
|
54690
55474
|
|
|
55475
|
+
/**
|
|
55476
|
+
* Request parameters for updateStatusCheckDetails operation in ServiceDeskIntegrationBetaApi.
|
|
55477
|
+
* @export
|
|
55478
|
+
* @interface ServiceDeskIntegrationBetaApiUpdateStatusCheckDetailsRequest
|
|
55479
|
+
*/
|
|
55480
|
+
export interface ServiceDeskIntegrationBetaApiUpdateStatusCheckDetailsRequest {
|
|
55481
|
+
/**
|
|
55482
|
+
* the modified time check configuration
|
|
55483
|
+
* @type {QueuedCheckConfigDetailsBeta}
|
|
55484
|
+
* @memberof ServiceDeskIntegrationBetaApiUpdateStatusCheckDetails
|
|
55485
|
+
*/
|
|
55486
|
+
readonly queuedCheckConfigDetailsBeta: QueuedCheckConfigDetailsBeta
|
|
55487
|
+
}
|
|
55488
|
+
|
|
54691
55489
|
/**
|
|
54692
55490
|
* ServiceDeskIntegrationBetaApi - object-oriented interface
|
|
54693
55491
|
* @export
|
|
@@ -54790,27 +55588,27 @@ export class ServiceDeskIntegrationBetaApi extends BaseAPI {
|
|
|
54790
55588
|
}
|
|
54791
55589
|
|
|
54792
55590
|
/**
|
|
54793
|
-
* Update
|
|
54794
|
-
* @summary Update
|
|
54795
|
-
* @param {
|
|
55591
|
+
* Update an existing Service Desk integration by ID with updated value in JSON form as the request body. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
55592
|
+
* @summary Update a Service Desk integration by ID
|
|
55593
|
+
* @param {ServiceDeskIntegrationBetaApiUpdateServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
54796
55594
|
* @param {*} [axiosOptions] Override http request option.
|
|
54797
55595
|
* @throws {RequiredError}
|
|
54798
55596
|
* @memberof ServiceDeskIntegrationBetaApi
|
|
54799
55597
|
*/
|
|
54800
|
-
public
|
|
54801
|
-
return ServiceDeskIntegrationBetaApiFp(this.configuration).
|
|
55598
|
+
public updateServiceDeskIntegration(requestParameters: ServiceDeskIntegrationBetaApiUpdateServiceDeskIntegrationRequest, axiosOptions?: AxiosRequestConfig) {
|
|
55599
|
+
return ServiceDeskIntegrationBetaApiFp(this.configuration).updateServiceDeskIntegration(requestParameters.id, requestParameters.serviceDeskIntegrationDtoBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
54802
55600
|
}
|
|
54803
55601
|
|
|
54804
55602
|
/**
|
|
54805
|
-
* Update
|
|
54806
|
-
* @summary Update
|
|
54807
|
-
* @param {
|
|
55603
|
+
* Update the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
55604
|
+
* @summary Update the time check configuration of queued SDIM tickets
|
|
55605
|
+
* @param {ServiceDeskIntegrationBetaApiUpdateStatusCheckDetailsRequest} requestParameters Request parameters.
|
|
54808
55606
|
* @param {*} [axiosOptions] Override http request option.
|
|
54809
55607
|
* @throws {RequiredError}
|
|
54810
55608
|
* @memberof ServiceDeskIntegrationBetaApi
|
|
54811
55609
|
*/
|
|
54812
|
-
public
|
|
54813
|
-
return ServiceDeskIntegrationBetaApiFp(this.configuration).
|
|
55610
|
+
public updateStatusCheckDetails(requestParameters: ServiceDeskIntegrationBetaApiUpdateStatusCheckDetailsRequest, axiosOptions?: AxiosRequestConfig) {
|
|
55611
|
+
return ServiceDeskIntegrationBetaApiFp(this.configuration).updateStatusCheckDetails(requestParameters.queuedCheckConfigDetailsBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
54814
55612
|
}
|
|
54815
55613
|
}
|
|
54816
55614
|
|
|
@@ -55357,6 +56155,44 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
|
|
|
55357
56155
|
|
|
55358
56156
|
|
|
55359
56157
|
|
|
56158
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
56159
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
56160
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
56161
|
+
|
|
56162
|
+
return {
|
|
56163
|
+
url: toPathString(localVarUrlObj),
|
|
56164
|
+
axiosOptions: localVarRequestOptions,
|
|
56165
|
+
};
|
|
56166
|
+
},
|
|
56167
|
+
/**
|
|
56168
|
+
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
56169
|
+
* @summary Get Source Entitlement Request Configuration
|
|
56170
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
56171
|
+
* @throws {RequiredError}
|
|
56172
|
+
*/
|
|
56173
|
+
getSourceEntitlementRequestConfig: async (axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
56174
|
+
const localVarPath = `/sources/{id}/entitlement-request-config`;
|
|
56175
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
56176
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
56177
|
+
let baseOptions;
|
|
56178
|
+
if (configuration) {
|
|
56179
|
+
baseOptions = configuration.baseOptions;
|
|
56180
|
+
}
|
|
56181
|
+
|
|
56182
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
56183
|
+
const localVarHeaderParameter = {} as any;
|
|
56184
|
+
const localVarQueryParameter = {} as any;
|
|
56185
|
+
|
|
56186
|
+
// authentication oauth2 required
|
|
56187
|
+
// oauth required
|
|
56188
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
56189
|
+
|
|
56190
|
+
// authentication oauth2 required
|
|
56191
|
+
// oauth required
|
|
56192
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
56193
|
+
|
|
56194
|
+
|
|
56195
|
+
|
|
55360
56196
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
55361
56197
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
55362
56198
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -56134,7 +56970,51 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
|
|
|
56134
56970
|
};
|
|
56135
56971
|
},
|
|
56136
56972
|
/**
|
|
56137
|
-
*
|
|
56973
|
+
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
56974
|
+
* @summary Update Source Entitlement Request Configuration
|
|
56975
|
+
* @param {SourceEntitlementRequestConfigBeta} sourceEntitlementRequestConfigBeta
|
|
56976
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
56977
|
+
* @throws {RequiredError}
|
|
56978
|
+
*/
|
|
56979
|
+
updateSourceEntitlementRequestConfig: async (sourceEntitlementRequestConfigBeta: SourceEntitlementRequestConfigBeta, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
56980
|
+
// verify required parameter 'sourceEntitlementRequestConfigBeta' is not null or undefined
|
|
56981
|
+
assertParamExists('updateSourceEntitlementRequestConfig', 'sourceEntitlementRequestConfigBeta', sourceEntitlementRequestConfigBeta)
|
|
56982
|
+
const localVarPath = `/sources/{id}/entitlement-request-config`;
|
|
56983
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
56984
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
56985
|
+
let baseOptions;
|
|
56986
|
+
if (configuration) {
|
|
56987
|
+
baseOptions = configuration.baseOptions;
|
|
56988
|
+
}
|
|
56989
|
+
|
|
56990
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...axiosOptions};
|
|
56991
|
+
const localVarHeaderParameter = {} as any;
|
|
56992
|
+
const localVarQueryParameter = {} as any;
|
|
56993
|
+
|
|
56994
|
+
// authentication oauth2 required
|
|
56995
|
+
// oauth required
|
|
56996
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
56997
|
+
|
|
56998
|
+
// authentication oauth2 required
|
|
56999
|
+
// oauth required
|
|
57000
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
57001
|
+
|
|
57002
|
+
|
|
57003
|
+
|
|
57004
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
57005
|
+
|
|
57006
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
57007
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
57008
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
57009
|
+
localVarRequestOptions.data = serializeDataIfNeeded(sourceEntitlementRequestConfigBeta, localVarRequestOptions, configuration)
|
|
57010
|
+
|
|
57011
|
+
return {
|
|
57012
|
+
url: toPathString(localVarUrlObj),
|
|
57013
|
+
axiosOptions: localVarRequestOptions,
|
|
57014
|
+
};
|
|
57015
|
+
},
|
|
57016
|
+
/**
|
|
57017
|
+
* Use this API to selectively update an existing Schema using a JSONPatch payload. The following schema fields are immutable and cannot be updated: - id - name - created - modified To switch an account attribute to a group entitlement, you need to have the following in place: - `isEntitlement: true` - Must define a schema for the group and [add it to the source](https://developer.sailpoint.com/idn/api/beta/create-source-schema) before updating the `isGroup` flag. For example, here is the `group` account attribute referencing a schema that defines the group: ```json { \"name\": \"groups\", \"type\": \"STRING\", \"schema\": { \"type\": \"CONNECTOR_SCHEMA\", \"id\": \"2c9180887671ff8c01767b4671fc7d60\", \"name\": \"group\" }, \"description\": \"The groups, roles etc. that reference account group objects\", \"isMulti\": true, \"isEntitlement\": true, \"isGroup\": true } ```
|
|
56138
57018
|
* @summary Update Source Schema (Partial)
|
|
56139
57019
|
* @param {string} sourceId The Source id.
|
|
56140
57020
|
* @param {string} schemaId The Schema id.
|
|
@@ -56493,6 +57373,16 @@ export const SourcesBetaApiFp = function(configuration?: Configuration) {
|
|
|
56493
57373
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSourceConfig(id, locale, axiosOptions);
|
|
56494
57374
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
56495
57375
|
},
|
|
57376
|
+
/**
|
|
57377
|
+
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
57378
|
+
* @summary Get Source Entitlement Request Configuration
|
|
57379
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
57380
|
+
* @throws {RequiredError}
|
|
57381
|
+
*/
|
|
57382
|
+
async getSourceEntitlementRequestConfig(axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceEntitlementRequestConfigBeta>> {
|
|
57383
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getSourceEntitlementRequestConfig(axiosOptions);
|
|
57384
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
57385
|
+
},
|
|
56496
57386
|
/**
|
|
56497
57387
|
* Get the Source Schema by ID in IdentityNow.
|
|
56498
57388
|
* @summary Get Source Schema by ID
|
|
@@ -56688,7 +57578,18 @@ export const SourcesBetaApiFp = function(configuration?: Configuration) {
|
|
|
56688
57578
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
56689
57579
|
},
|
|
56690
57580
|
/**
|
|
56691
|
-
*
|
|
57581
|
+
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
57582
|
+
* @summary Update Source Entitlement Request Configuration
|
|
57583
|
+
* @param {SourceEntitlementRequestConfigBeta} sourceEntitlementRequestConfigBeta
|
|
57584
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
57585
|
+
* @throws {RequiredError}
|
|
57586
|
+
*/
|
|
57587
|
+
async updateSourceEntitlementRequestConfig(sourceEntitlementRequestConfigBeta: SourceEntitlementRequestConfigBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceEntitlementRequestConfigBeta>> {
|
|
57588
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateSourceEntitlementRequestConfig(sourceEntitlementRequestConfigBeta, axiosOptions);
|
|
57589
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
57590
|
+
},
|
|
57591
|
+
/**
|
|
57592
|
+
* Use this API to selectively update an existing Schema using a JSONPatch payload. The following schema fields are immutable and cannot be updated: - id - name - created - modified To switch an account attribute to a group entitlement, you need to have the following in place: - `isEntitlement: true` - Must define a schema for the group and [add it to the source](https://developer.sailpoint.com/idn/api/beta/create-source-schema) before updating the `isGroup` flag. For example, here is the `group` account attribute referencing a schema that defines the group: ```json { \"name\": \"groups\", \"type\": \"STRING\", \"schema\": { \"type\": \"CONNECTOR_SCHEMA\", \"id\": \"2c9180887671ff8c01767b4671fc7d60\", \"name\": \"group\" }, \"description\": \"The groups, roles etc. that reference account group objects\", \"isMulti\": true, \"isEntitlement\": true, \"isGroup\": true } ```
|
|
56692
57593
|
* @summary Update Source Schema (Partial)
|
|
56693
57594
|
* @param {string} sourceId The Source id.
|
|
56694
57595
|
* @param {string} schemaId The Schema id.
|
|
@@ -56875,6 +57776,15 @@ export const SourcesBetaApiFactory = function (configuration?: Configuration, ba
|
|
|
56875
57776
|
getSourceConfig(id: string, locale?: 'de' | 'false' | 'fi' | 'sv' | 'ru' | 'pt' | 'ko' | 'zh-TW' | 'en' | 'it' | 'fr' | 'zh-CN' | 'hu' | 'es' | 'cs' | 'ja' | 'pl' | 'da' | 'nl', axiosOptions?: any): AxiosPromise<ConnectorDetailBeta> {
|
|
56876
57777
|
return localVarFp.getSourceConfig(id, locale, axiosOptions).then((request) => request(axios, basePath));
|
|
56877
57778
|
},
|
|
57779
|
+
/**
|
|
57780
|
+
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
57781
|
+
* @summary Get Source Entitlement Request Configuration
|
|
57782
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
57783
|
+
* @throws {RequiredError}
|
|
57784
|
+
*/
|
|
57785
|
+
getSourceEntitlementRequestConfig(axiosOptions?: any): AxiosPromise<SourceEntitlementRequestConfigBeta> {
|
|
57786
|
+
return localVarFp.getSourceEntitlementRequestConfig(axiosOptions).then((request) => request(axios, basePath));
|
|
57787
|
+
},
|
|
56878
57788
|
/**
|
|
56879
57789
|
* Get the Source Schema by ID in IdentityNow.
|
|
56880
57790
|
* @summary Get Source Schema by ID
|
|
@@ -57054,7 +57964,17 @@ export const SourcesBetaApiFactory = function (configuration?: Configuration, ba
|
|
|
57054
57964
|
return localVarFp.updateSource(id, jsonPatchOperationBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
57055
57965
|
},
|
|
57056
57966
|
/**
|
|
57057
|
-
*
|
|
57967
|
+
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
57968
|
+
* @summary Update Source Entitlement Request Configuration
|
|
57969
|
+
* @param {SourceEntitlementRequestConfigBeta} sourceEntitlementRequestConfigBeta
|
|
57970
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
57971
|
+
* @throws {RequiredError}
|
|
57972
|
+
*/
|
|
57973
|
+
updateSourceEntitlementRequestConfig(sourceEntitlementRequestConfigBeta: SourceEntitlementRequestConfigBeta, axiosOptions?: any): AxiosPromise<SourceEntitlementRequestConfigBeta> {
|
|
57974
|
+
return localVarFp.updateSourceEntitlementRequestConfig(sourceEntitlementRequestConfigBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
57975
|
+
},
|
|
57976
|
+
/**
|
|
57977
|
+
* Use this API to selectively update an existing Schema using a JSONPatch payload. The following schema fields are immutable and cannot be updated: - id - name - created - modified To switch an account attribute to a group entitlement, you need to have the following in place: - `isEntitlement: true` - Must define a schema for the group and [add it to the source](https://developer.sailpoint.com/idn/api/beta/create-source-schema) before updating the `isGroup` flag. For example, here is the `group` account attribute referencing a schema that defines the group: ```json { \"name\": \"groups\", \"type\": \"STRING\", \"schema\": { \"type\": \"CONNECTOR_SCHEMA\", \"id\": \"2c9180887671ff8c01767b4671fc7d60\", \"name\": \"group\" }, \"description\": \"The groups, roles etc. that reference account group objects\", \"isMulti\": true, \"isEntitlement\": true, \"isGroup\": true } ```
|
|
57058
57978
|
* @summary Update Source Schema (Partial)
|
|
57059
57979
|
* @param {string} sourceId The Source id.
|
|
57060
57980
|
* @param {string} schemaId The Schema id.
|
|
@@ -57676,6 +58596,20 @@ export interface SourcesBetaApiUpdateSourceRequest {
|
|
|
57676
58596
|
readonly jsonPatchOperationBeta: Array<JsonPatchOperationBeta>
|
|
57677
58597
|
}
|
|
57678
58598
|
|
|
58599
|
+
/**
|
|
58600
|
+
* Request parameters for updateSourceEntitlementRequestConfig operation in SourcesBetaApi.
|
|
58601
|
+
* @export
|
|
58602
|
+
* @interface SourcesBetaApiUpdateSourceEntitlementRequestConfigRequest
|
|
58603
|
+
*/
|
|
58604
|
+
export interface SourcesBetaApiUpdateSourceEntitlementRequestConfigRequest {
|
|
58605
|
+
/**
|
|
58606
|
+
*
|
|
58607
|
+
* @type {SourceEntitlementRequestConfigBeta}
|
|
58608
|
+
* @memberof SourcesBetaApiUpdateSourceEntitlementRequestConfig
|
|
58609
|
+
*/
|
|
58610
|
+
readonly sourceEntitlementRequestConfigBeta: SourceEntitlementRequestConfigBeta
|
|
58611
|
+
}
|
|
58612
|
+
|
|
57679
58613
|
/**
|
|
57680
58614
|
* Request parameters for updateSourceSchema operation in SourcesBetaApi.
|
|
57681
58615
|
* @export
|
|
@@ -57925,6 +58859,17 @@ export class SourcesBetaApi extends BaseAPI {
|
|
|
57925
58859
|
return SourcesBetaApiFp(this.configuration).getSourceConfig(requestParameters.id, requestParameters.locale, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
57926
58860
|
}
|
|
57927
58861
|
|
|
58862
|
+
/**
|
|
58863
|
+
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
58864
|
+
* @summary Get Source Entitlement Request Configuration
|
|
58865
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
58866
|
+
* @throws {RequiredError}
|
|
58867
|
+
* @memberof SourcesBetaApi
|
|
58868
|
+
*/
|
|
58869
|
+
public getSourceEntitlementRequestConfig(axiosOptions?: AxiosRequestConfig) {
|
|
58870
|
+
return SourcesBetaApiFp(this.configuration).getSourceEntitlementRequestConfig(axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
58871
|
+
}
|
|
58872
|
+
|
|
57928
58873
|
/**
|
|
57929
58874
|
* Get the Source Schema by ID in IdentityNow.
|
|
57930
58875
|
* @summary Get Source Schema by ID
|
|
@@ -58118,7 +59063,19 @@ export class SourcesBetaApi extends BaseAPI {
|
|
|
58118
59063
|
}
|
|
58119
59064
|
|
|
58120
59065
|
/**
|
|
58121
|
-
*
|
|
59066
|
+
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
59067
|
+
* @summary Update Source Entitlement Request Configuration
|
|
59068
|
+
* @param {SourcesBetaApiUpdateSourceEntitlementRequestConfigRequest} requestParameters Request parameters.
|
|
59069
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
59070
|
+
* @throws {RequiredError}
|
|
59071
|
+
* @memberof SourcesBetaApi
|
|
59072
|
+
*/
|
|
59073
|
+
public updateSourceEntitlementRequestConfig(requestParameters: SourcesBetaApiUpdateSourceEntitlementRequestConfigRequest, axiosOptions?: AxiosRequestConfig) {
|
|
59074
|
+
return SourcesBetaApiFp(this.configuration).updateSourceEntitlementRequestConfig(requestParameters.sourceEntitlementRequestConfigBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
59075
|
+
}
|
|
59076
|
+
|
|
59077
|
+
/**
|
|
59078
|
+
* Use this API to selectively update an existing Schema using a JSONPatch payload. The following schema fields are immutable and cannot be updated: - id - name - created - modified To switch an account attribute to a group entitlement, you need to have the following in place: - `isEntitlement: true` - Must define a schema for the group and [add it to the source](https://developer.sailpoint.com/idn/api/beta/create-source-schema) before updating the `isGroup` flag. For example, here is the `group` account attribute referencing a schema that defines the group: ```json { \"name\": \"groups\", \"type\": \"STRING\", \"schema\": { \"type\": \"CONNECTOR_SCHEMA\", \"id\": \"2c9180887671ff8c01767b4671fc7d60\", \"name\": \"group\" }, \"description\": \"The groups, roles etc. that reference account group objects\", \"isMulti\": true, \"isEntitlement\": true, \"isGroup\": true } ```
|
|
58122
59079
|
* @summary Update Source Schema (Partial)
|
|
58123
59080
|
* @param {SourcesBetaApiUpdateSourceSchemaRequest} requestParameters Request parameters.
|
|
58124
59081
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -58635,7 +59592,7 @@ export const TaggedObjectsBetaApiFp = function(configuration?: Configuration) {
|
|
|
58635
59592
|
* @param {*} [axiosOptions] Override http request option.
|
|
58636
59593
|
* @throws {RequiredError}
|
|
58637
59594
|
*/
|
|
58638
|
-
async listTaggedObjects(limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaggedObjectBeta
|
|
59595
|
+
async listTaggedObjects(limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaggedObjectBeta>>> {
|
|
58639
59596
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listTaggedObjects(limit, offset, count, filters, axiosOptions);
|
|
58640
59597
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
58641
59598
|
},
|
|
@@ -58740,7 +59697,7 @@ export const TaggedObjectsBetaApiFactory = function (configuration?: Configurati
|
|
|
58740
59697
|
* @param {*} [axiosOptions] Override http request option.
|
|
58741
59698
|
* @throws {RequiredError}
|
|
58742
59699
|
*/
|
|
58743
|
-
listTaggedObjects(limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: any): AxiosPromise<TaggedObjectBeta
|
|
59700
|
+
listTaggedObjects(limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: any): AxiosPromise<Array<TaggedObjectBeta>> {
|
|
58744
59701
|
return localVarFp.listTaggedObjects(limit, offset, count, filters, axiosOptions).then((request) => request(axios, basePath));
|
|
58745
59702
|
},
|
|
58746
59703
|
/**
|
|
@@ -60917,6 +61874,54 @@ export const WorkItemsBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
60917
61874
|
axiosOptions: localVarRequestOptions,
|
|
60918
61875
|
};
|
|
60919
61876
|
},
|
|
61877
|
+
/**
|
|
61878
|
+
* This API forwards a work item to a new owner. Either an admin, or the owning/current user must make this request.
|
|
61879
|
+
* @summary Forward a Work Item
|
|
61880
|
+
* @param {string} id The ID of the work item
|
|
61881
|
+
* @param {WorkItemForwardBeta} workItemForwardBeta
|
|
61882
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
61883
|
+
* @throws {RequiredError}
|
|
61884
|
+
*/
|
|
61885
|
+
forwardWorkItem: async (id: string, workItemForwardBeta: WorkItemForwardBeta, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
61886
|
+
// verify required parameter 'id' is not null or undefined
|
|
61887
|
+
assertParamExists('forwardWorkItem', 'id', id)
|
|
61888
|
+
// verify required parameter 'workItemForwardBeta' is not null or undefined
|
|
61889
|
+
assertParamExists('forwardWorkItem', 'workItemForwardBeta', workItemForwardBeta)
|
|
61890
|
+
const localVarPath = `/work-items/{id}/forward`
|
|
61891
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
61892
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
61893
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
61894
|
+
let baseOptions;
|
|
61895
|
+
if (configuration) {
|
|
61896
|
+
baseOptions = configuration.baseOptions;
|
|
61897
|
+
}
|
|
61898
|
+
|
|
61899
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
61900
|
+
const localVarHeaderParameter = {} as any;
|
|
61901
|
+
const localVarQueryParameter = {} as any;
|
|
61902
|
+
|
|
61903
|
+
// authentication oauth2 required
|
|
61904
|
+
// oauth required
|
|
61905
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
61906
|
+
|
|
61907
|
+
// authentication oauth2 required
|
|
61908
|
+
// oauth required
|
|
61909
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
61910
|
+
|
|
61911
|
+
|
|
61912
|
+
|
|
61913
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
61914
|
+
|
|
61915
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
61916
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
61917
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
61918
|
+
localVarRequestOptions.data = serializeDataIfNeeded(workItemForwardBeta, localVarRequestOptions, configuration)
|
|
61919
|
+
|
|
61920
|
+
return {
|
|
61921
|
+
url: toPathString(localVarUrlObj),
|
|
61922
|
+
axiosOptions: localVarRequestOptions,
|
|
61923
|
+
};
|
|
61924
|
+
},
|
|
60920
61925
|
/**
|
|
60921
61926
|
* This gets a collection of completed work items belonging to either the specified user(admin required), or the current user.
|
|
60922
61927
|
* @summary Completed Work Items
|
|
@@ -61389,6 +62394,18 @@ export const WorkItemsBetaApiFp = function(configuration?: Configuration) {
|
|
|
61389
62394
|
const localVarAxiosArgs = await localVarAxiosParamCreator.completeWorkItem(id, axiosOptions);
|
|
61390
62395
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
61391
62396
|
},
|
|
62397
|
+
/**
|
|
62398
|
+
* This API forwards a work item to a new owner. Either an admin, or the owning/current user must make this request.
|
|
62399
|
+
* @summary Forward a Work Item
|
|
62400
|
+
* @param {string} id The ID of the work item
|
|
62401
|
+
* @param {WorkItemForwardBeta} workItemForwardBeta
|
|
62402
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
62403
|
+
* @throws {RequiredError}
|
|
62404
|
+
*/
|
|
62405
|
+
async forwardWorkItem(id: string, workItemForwardBeta: WorkItemForwardBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
62406
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.forwardWorkItem(id, workItemForwardBeta, axiosOptions);
|
|
62407
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
62408
|
+
},
|
|
61392
62409
|
/**
|
|
61393
62410
|
* This gets a collection of completed work items belonging to either the specified user(admin required), or the current user.
|
|
61394
62411
|
* @summary Completed Work Items
|
|
@@ -61538,6 +62555,17 @@ export const WorkItemsBetaApiFactory = function (configuration?: Configuration,
|
|
|
61538
62555
|
completeWorkItem(id: string, axiosOptions?: any): AxiosPromise<WorkItemsBeta> {
|
|
61539
62556
|
return localVarFp.completeWorkItem(id, axiosOptions).then((request) => request(axios, basePath));
|
|
61540
62557
|
},
|
|
62558
|
+
/**
|
|
62559
|
+
* This API forwards a work item to a new owner. Either an admin, or the owning/current user must make this request.
|
|
62560
|
+
* @summary Forward a Work Item
|
|
62561
|
+
* @param {string} id The ID of the work item
|
|
62562
|
+
* @param {WorkItemForwardBeta} workItemForwardBeta
|
|
62563
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
62564
|
+
* @throws {RequiredError}
|
|
62565
|
+
*/
|
|
62566
|
+
forwardWorkItem(id: string, workItemForwardBeta: WorkItemForwardBeta, axiosOptions?: any): AxiosPromise<void> {
|
|
62567
|
+
return localVarFp.forwardWorkItem(id, workItemForwardBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
62568
|
+
},
|
|
61541
62569
|
/**
|
|
61542
62570
|
* This gets a collection of completed work items belonging to either the specified user(admin required), or the current user.
|
|
61543
62571
|
* @summary Completed Work Items
|
|
@@ -61689,6 +62717,27 @@ export interface WorkItemsBetaApiCompleteWorkItemRequest {
|
|
|
61689
62717
|
readonly id: string
|
|
61690
62718
|
}
|
|
61691
62719
|
|
|
62720
|
+
/**
|
|
62721
|
+
* Request parameters for forwardWorkItem operation in WorkItemsBetaApi.
|
|
62722
|
+
* @export
|
|
62723
|
+
* @interface WorkItemsBetaApiForwardWorkItemRequest
|
|
62724
|
+
*/
|
|
62725
|
+
export interface WorkItemsBetaApiForwardWorkItemRequest {
|
|
62726
|
+
/**
|
|
62727
|
+
* The ID of the work item
|
|
62728
|
+
* @type {string}
|
|
62729
|
+
* @memberof WorkItemsBetaApiForwardWorkItem
|
|
62730
|
+
*/
|
|
62731
|
+
readonly id: string
|
|
62732
|
+
|
|
62733
|
+
/**
|
|
62734
|
+
*
|
|
62735
|
+
* @type {WorkItemForwardBeta}
|
|
62736
|
+
* @memberof WorkItemsBetaApiForwardWorkItem
|
|
62737
|
+
*/
|
|
62738
|
+
readonly workItemForwardBeta: WorkItemForwardBeta
|
|
62739
|
+
}
|
|
62740
|
+
|
|
61692
62741
|
/**
|
|
61693
62742
|
* Request parameters for getCompletedWorkItems operation in WorkItemsBetaApi.
|
|
61694
62743
|
* @export
|
|
@@ -61921,6 +62970,18 @@ export class WorkItemsBetaApi extends BaseAPI {
|
|
|
61921
62970
|
return WorkItemsBetaApiFp(this.configuration).completeWorkItem(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
61922
62971
|
}
|
|
61923
62972
|
|
|
62973
|
+
/**
|
|
62974
|
+
* This API forwards a work item to a new owner. Either an admin, or the owning/current user must make this request.
|
|
62975
|
+
* @summary Forward a Work Item
|
|
62976
|
+
* @param {WorkItemsBetaApiForwardWorkItemRequest} requestParameters Request parameters.
|
|
62977
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
62978
|
+
* @throws {RequiredError}
|
|
62979
|
+
* @memberof WorkItemsBetaApi
|
|
62980
|
+
*/
|
|
62981
|
+
public forwardWorkItem(requestParameters: WorkItemsBetaApiForwardWorkItemRequest, axiosOptions?: AxiosRequestConfig) {
|
|
62982
|
+
return WorkItemsBetaApiFp(this.configuration).forwardWorkItem(requestParameters.id, requestParameters.workItemForwardBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
62983
|
+
}
|
|
62984
|
+
|
|
61924
62985
|
/**
|
|
61925
62986
|
* This gets a collection of completed work items belonging to either the specified user(admin required), or the current user.
|
|
61926
62987
|
* @summary Completed Work Items
|