sailpoint-api-client 1.4.15 → 1.4.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/beta/README.md +2 -2
- package/beta/api.ts +514 -389
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +462 -363
- package/dist/beta/api.js +181 -126
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/v2024/api.d.ts +860 -124
- package/dist/v2024/api.js +364 -131
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v3/api.d.ts +180 -65
- package/dist/v3/api.js +87 -62
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/package.json +7 -2
- package/v2024/README.md +2 -2
- package/v2024/api.ts +994 -144
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +202 -72
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/v2024/api.d.ts
CHANGED
|
@@ -9674,6 +9674,262 @@ export declare const CloseAccessRequestV2024CompletionStatusV2024: {
|
|
|
9674
9674
|
readonly Failure: "Failure";
|
|
9675
9675
|
};
|
|
9676
9676
|
export type CloseAccessRequestV2024CompletionStatusV2024 = typeof CloseAccessRequestV2024CompletionStatusV2024[keyof typeof CloseAccessRequestV2024CompletionStatusV2024];
|
|
9677
|
+
/**
|
|
9678
|
+
* Configuration details for the \'ccg\' process.
|
|
9679
|
+
* @export
|
|
9680
|
+
* @interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationCcgV2024
|
|
9681
|
+
*/
|
|
9682
|
+
export interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationCcgV2024 {
|
|
9683
|
+
/**
|
|
9684
|
+
* Version of the \'ccg\' process.
|
|
9685
|
+
* @type {string}
|
|
9686
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationCcgV2024
|
|
9687
|
+
*/
|
|
9688
|
+
'version': string;
|
|
9689
|
+
/**
|
|
9690
|
+
* Path to the \'ccg\' process.
|
|
9691
|
+
* @type {string}
|
|
9692
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationCcgV2024
|
|
9693
|
+
*/
|
|
9694
|
+
'path': string;
|
|
9695
|
+
/**
|
|
9696
|
+
* A brief description of the \'ccg\' process.
|
|
9697
|
+
* @type {string}
|
|
9698
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationCcgV2024
|
|
9699
|
+
*/
|
|
9700
|
+
'description': string;
|
|
9701
|
+
/**
|
|
9702
|
+
* Indicates whether the process needs to be restarted.
|
|
9703
|
+
* @type {boolean}
|
|
9704
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationCcgV2024
|
|
9705
|
+
*/
|
|
9706
|
+
'restartNeeded': boolean;
|
|
9707
|
+
/**
|
|
9708
|
+
* A map of dependencies for the \'ccg\' process.
|
|
9709
|
+
* @type {{ [key: string]: string; }}
|
|
9710
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationCcgV2024
|
|
9711
|
+
*/
|
|
9712
|
+
'dependencies': {
|
|
9713
|
+
[key: string]: string;
|
|
9714
|
+
};
|
|
9715
|
+
}
|
|
9716
|
+
/**
|
|
9717
|
+
* Configuration details for the \'charon\' process.
|
|
9718
|
+
* @export
|
|
9719
|
+
* @interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationCharonV2024
|
|
9720
|
+
*/
|
|
9721
|
+
export interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationCharonV2024 {
|
|
9722
|
+
/**
|
|
9723
|
+
* Version of the \'charon\' process.
|
|
9724
|
+
* @type {string}
|
|
9725
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationCharonV2024
|
|
9726
|
+
*/
|
|
9727
|
+
'version': string;
|
|
9728
|
+
/**
|
|
9729
|
+
* Path to the \'charon\' process.
|
|
9730
|
+
* @type {string}
|
|
9731
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationCharonV2024
|
|
9732
|
+
*/
|
|
9733
|
+
'path': string;
|
|
9734
|
+
/**
|
|
9735
|
+
* A brief description of the \'charon\' process.
|
|
9736
|
+
* @type {string}
|
|
9737
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationCharonV2024
|
|
9738
|
+
*/
|
|
9739
|
+
'description': string;
|
|
9740
|
+
/**
|
|
9741
|
+
* Indicates whether the process needs to be restarted.
|
|
9742
|
+
* @type {boolean}
|
|
9743
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationCharonV2024
|
|
9744
|
+
*/
|
|
9745
|
+
'restartNeeded': boolean;
|
|
9746
|
+
}
|
|
9747
|
+
/**
|
|
9748
|
+
* Configuration details for the \'otel_agent\' process.
|
|
9749
|
+
* @export
|
|
9750
|
+
* @interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationOtelAgentV2024
|
|
9751
|
+
*/
|
|
9752
|
+
export interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationOtelAgentV2024 {
|
|
9753
|
+
/**
|
|
9754
|
+
* Version of the \'otel_agent\' process.
|
|
9755
|
+
* @type {string}
|
|
9756
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationOtelAgentV2024
|
|
9757
|
+
*/
|
|
9758
|
+
'version': string;
|
|
9759
|
+
/**
|
|
9760
|
+
* Path to the \'otel_agent\' process.
|
|
9761
|
+
* @type {string}
|
|
9762
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationOtelAgentV2024
|
|
9763
|
+
*/
|
|
9764
|
+
'path': string;
|
|
9765
|
+
/**
|
|
9766
|
+
* A brief description of the \'otel_agent\' process.
|
|
9767
|
+
* @type {string}
|
|
9768
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationOtelAgentV2024
|
|
9769
|
+
*/
|
|
9770
|
+
'description': string;
|
|
9771
|
+
/**
|
|
9772
|
+
* Indicates whether the process needs to be restarted.
|
|
9773
|
+
* @type {boolean}
|
|
9774
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationOtelAgentV2024
|
|
9775
|
+
*/
|
|
9776
|
+
'restartNeeded': boolean;
|
|
9777
|
+
}
|
|
9778
|
+
/**
|
|
9779
|
+
* Configuration details for the \'relay\' process.
|
|
9780
|
+
* @export
|
|
9781
|
+
* @interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationRelayV2024
|
|
9782
|
+
*/
|
|
9783
|
+
export interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationRelayV2024 {
|
|
9784
|
+
/**
|
|
9785
|
+
* Version of the \'relay\' process.
|
|
9786
|
+
* @type {string}
|
|
9787
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationRelayV2024
|
|
9788
|
+
*/
|
|
9789
|
+
'version': string;
|
|
9790
|
+
/**
|
|
9791
|
+
* Path to the \'relay\' process.
|
|
9792
|
+
* @type {string}
|
|
9793
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationRelayV2024
|
|
9794
|
+
*/
|
|
9795
|
+
'path': string;
|
|
9796
|
+
/**
|
|
9797
|
+
* A brief description of the \'relay\' process.
|
|
9798
|
+
* @type {string}
|
|
9799
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationRelayV2024
|
|
9800
|
+
*/
|
|
9801
|
+
'description': string;
|
|
9802
|
+
/**
|
|
9803
|
+
* Indicates whether the process needs to be restarted.
|
|
9804
|
+
* @type {boolean}
|
|
9805
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationRelayV2024
|
|
9806
|
+
*/
|
|
9807
|
+
'restartNeeded': boolean;
|
|
9808
|
+
}
|
|
9809
|
+
/**
|
|
9810
|
+
* Configuration details for the \'toolbox\' process.
|
|
9811
|
+
* @export
|
|
9812
|
+
* @interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationToolboxV2024
|
|
9813
|
+
*/
|
|
9814
|
+
export interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationToolboxV2024 {
|
|
9815
|
+
/**
|
|
9816
|
+
* Version of the \'toolbox\' process.
|
|
9817
|
+
* @type {string}
|
|
9818
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationToolboxV2024
|
|
9819
|
+
*/
|
|
9820
|
+
'version': string;
|
|
9821
|
+
/**
|
|
9822
|
+
* Path to the \'toolbox\' process.
|
|
9823
|
+
* @type {string}
|
|
9824
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationToolboxV2024
|
|
9825
|
+
*/
|
|
9826
|
+
'path': string;
|
|
9827
|
+
/**
|
|
9828
|
+
* A brief description of the \'toolbox\' process.
|
|
9829
|
+
* @type {string}
|
|
9830
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationToolboxV2024
|
|
9831
|
+
*/
|
|
9832
|
+
'description': string;
|
|
9833
|
+
/**
|
|
9834
|
+
* Indicates whether the process needs to be restarted.
|
|
9835
|
+
* @type {boolean}
|
|
9836
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationToolboxV2024
|
|
9837
|
+
*/
|
|
9838
|
+
'restartNeeded': boolean;
|
|
9839
|
+
}
|
|
9840
|
+
/**
|
|
9841
|
+
* Configuration of the managed processes involved in the upgrade.
|
|
9842
|
+
* @export
|
|
9843
|
+
* @interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationV2024
|
|
9844
|
+
*/
|
|
9845
|
+
export interface ClusterManualUpgradeJobsInnerManagedProcessConfigurationV2024 {
|
|
9846
|
+
/**
|
|
9847
|
+
*
|
|
9848
|
+
* @type {ClusterManualUpgradeJobsInnerManagedProcessConfigurationCharonV2024}
|
|
9849
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationV2024
|
|
9850
|
+
*/
|
|
9851
|
+
'charon'?: ClusterManualUpgradeJobsInnerManagedProcessConfigurationCharonV2024;
|
|
9852
|
+
/**
|
|
9853
|
+
*
|
|
9854
|
+
* @type {ClusterManualUpgradeJobsInnerManagedProcessConfigurationCcgV2024}
|
|
9855
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationV2024
|
|
9856
|
+
*/
|
|
9857
|
+
'ccg'?: ClusterManualUpgradeJobsInnerManagedProcessConfigurationCcgV2024;
|
|
9858
|
+
/**
|
|
9859
|
+
*
|
|
9860
|
+
* @type {ClusterManualUpgradeJobsInnerManagedProcessConfigurationOtelAgentV2024}
|
|
9861
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationV2024
|
|
9862
|
+
*/
|
|
9863
|
+
'otel_agent'?: ClusterManualUpgradeJobsInnerManagedProcessConfigurationOtelAgentV2024;
|
|
9864
|
+
/**
|
|
9865
|
+
*
|
|
9866
|
+
* @type {ClusterManualUpgradeJobsInnerManagedProcessConfigurationRelayV2024}
|
|
9867
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationV2024
|
|
9868
|
+
*/
|
|
9869
|
+
'relay'?: ClusterManualUpgradeJobsInnerManagedProcessConfigurationRelayV2024;
|
|
9870
|
+
/**
|
|
9871
|
+
*
|
|
9872
|
+
* @type {ClusterManualUpgradeJobsInnerManagedProcessConfigurationToolboxV2024}
|
|
9873
|
+
* @memberof ClusterManualUpgradeJobsInnerManagedProcessConfigurationV2024
|
|
9874
|
+
*/
|
|
9875
|
+
'toolbox'?: ClusterManualUpgradeJobsInnerManagedProcessConfigurationToolboxV2024;
|
|
9876
|
+
}
|
|
9877
|
+
/**
|
|
9878
|
+
*
|
|
9879
|
+
* @export
|
|
9880
|
+
* @interface ClusterManualUpgradeJobsInnerV2024
|
|
9881
|
+
*/
|
|
9882
|
+
export interface ClusterManualUpgradeJobsInnerV2024 {
|
|
9883
|
+
/**
|
|
9884
|
+
* Unique identifier for the upgrade job.
|
|
9885
|
+
* @type {string}
|
|
9886
|
+
* @memberof ClusterManualUpgradeJobsInnerV2024
|
|
9887
|
+
*/
|
|
9888
|
+
'uuid': string;
|
|
9889
|
+
/**
|
|
9890
|
+
* Identifier for the cookbook used in the upgrade job.
|
|
9891
|
+
* @type {string}
|
|
9892
|
+
* @memberof ClusterManualUpgradeJobsInnerV2024
|
|
9893
|
+
*/
|
|
9894
|
+
'cookbook': string;
|
|
9895
|
+
/**
|
|
9896
|
+
* Current state of the upgrade job.
|
|
9897
|
+
* @type {string}
|
|
9898
|
+
* @memberof ClusterManualUpgradeJobsInnerV2024
|
|
9899
|
+
*/
|
|
9900
|
+
'state': string;
|
|
9901
|
+
/**
|
|
9902
|
+
* The type of upgrade job (e.g., VA_UPGRADE).
|
|
9903
|
+
* @type {string}
|
|
9904
|
+
* @memberof ClusterManualUpgradeJobsInnerV2024
|
|
9905
|
+
*/
|
|
9906
|
+
'type': string;
|
|
9907
|
+
/**
|
|
9908
|
+
* Unique identifier of the target for the upgrade job.
|
|
9909
|
+
* @type {string}
|
|
9910
|
+
* @memberof ClusterManualUpgradeJobsInnerV2024
|
|
9911
|
+
*/
|
|
9912
|
+
'targetId': string;
|
|
9913
|
+
/**
|
|
9914
|
+
*
|
|
9915
|
+
* @type {ClusterManualUpgradeJobsInnerManagedProcessConfigurationV2024}
|
|
9916
|
+
* @memberof ClusterManualUpgradeJobsInnerV2024
|
|
9917
|
+
*/
|
|
9918
|
+
'managedProcessConfiguration': ClusterManualUpgradeJobsInnerManagedProcessConfigurationV2024;
|
|
9919
|
+
}
|
|
9920
|
+
/**
|
|
9921
|
+
* Manual Upgrade Job Response
|
|
9922
|
+
* @export
|
|
9923
|
+
* @interface ClusterManualUpgradeV2024
|
|
9924
|
+
*/
|
|
9925
|
+
export interface ClusterManualUpgradeV2024 {
|
|
9926
|
+
/**
|
|
9927
|
+
* List of job objects for the upgrade request.
|
|
9928
|
+
* @type {Array<ClusterManualUpgradeJobsInnerV2024>}
|
|
9929
|
+
* @memberof ClusterManualUpgradeV2024
|
|
9930
|
+
*/
|
|
9931
|
+
'jobs'?: Array<ClusterManualUpgradeJobsInnerV2024>;
|
|
9932
|
+
}
|
|
9677
9933
|
/**
|
|
9678
9934
|
*
|
|
9679
9935
|
* @export
|
|
@@ -12405,6 +12661,139 @@ export interface DeleteVendorConnectorMapping200ResponseV2024 {
|
|
|
12405
12661
|
*/
|
|
12406
12662
|
'count'?: number;
|
|
12407
12663
|
}
|
|
12664
|
+
/**
|
|
12665
|
+
*
|
|
12666
|
+
* @export
|
|
12667
|
+
* @interface DependantAppConnectionsAccountSourcePasswordPoliciesInnerV2024
|
|
12668
|
+
*/
|
|
12669
|
+
export interface DependantAppConnectionsAccountSourcePasswordPoliciesInnerV2024 {
|
|
12670
|
+
/**
|
|
12671
|
+
* DTO type
|
|
12672
|
+
* @type {string}
|
|
12673
|
+
* @memberof DependantAppConnectionsAccountSourcePasswordPoliciesInnerV2024
|
|
12674
|
+
*/
|
|
12675
|
+
'type'?: string;
|
|
12676
|
+
/**
|
|
12677
|
+
* ID of the object to which this reference applies
|
|
12678
|
+
* @type {string}
|
|
12679
|
+
* @memberof DependantAppConnectionsAccountSourcePasswordPoliciesInnerV2024
|
|
12680
|
+
*/
|
|
12681
|
+
'id'?: string;
|
|
12682
|
+
/**
|
|
12683
|
+
* Human-readable display name of the object to which this reference applies
|
|
12684
|
+
* @type {string}
|
|
12685
|
+
* @memberof DependantAppConnectionsAccountSourcePasswordPoliciesInnerV2024
|
|
12686
|
+
*/
|
|
12687
|
+
'name'?: string;
|
|
12688
|
+
}
|
|
12689
|
+
/**
|
|
12690
|
+
* The Account Source of the connected Application
|
|
12691
|
+
* @export
|
|
12692
|
+
* @interface DependantAppConnectionsAccountSourceV2024
|
|
12693
|
+
*/
|
|
12694
|
+
export interface DependantAppConnectionsAccountSourceV2024 {
|
|
12695
|
+
/**
|
|
12696
|
+
* Use this Account Source for password management
|
|
12697
|
+
* @type {boolean}
|
|
12698
|
+
* @memberof DependantAppConnectionsAccountSourceV2024
|
|
12699
|
+
*/
|
|
12700
|
+
'useForPasswordManagement'?: boolean;
|
|
12701
|
+
/**
|
|
12702
|
+
* A list of Password Policies for this Account Source
|
|
12703
|
+
* @type {Array<DependantAppConnectionsAccountSourcePasswordPoliciesInnerV2024>}
|
|
12704
|
+
* @memberof DependantAppConnectionsAccountSourceV2024
|
|
12705
|
+
*/
|
|
12706
|
+
'passwordPolicies'?: Array<DependantAppConnectionsAccountSourcePasswordPoliciesInnerV2024>;
|
|
12707
|
+
}
|
|
12708
|
+
/**
|
|
12709
|
+
*
|
|
12710
|
+
* @export
|
|
12711
|
+
* @interface DependantAppConnectionsV2024
|
|
12712
|
+
*/
|
|
12713
|
+
export interface DependantAppConnectionsV2024 {
|
|
12714
|
+
/**
|
|
12715
|
+
* Id of the connected Application
|
|
12716
|
+
* @type {string}
|
|
12717
|
+
* @memberof DependantAppConnectionsV2024
|
|
12718
|
+
*/
|
|
12719
|
+
'cloudAppId'?: string;
|
|
12720
|
+
/**
|
|
12721
|
+
* Description of the connected Application
|
|
12722
|
+
* @type {string}
|
|
12723
|
+
* @memberof DependantAppConnectionsV2024
|
|
12724
|
+
*/
|
|
12725
|
+
'description'?: string;
|
|
12726
|
+
/**
|
|
12727
|
+
* Is the Application enabled
|
|
12728
|
+
* @type {boolean}
|
|
12729
|
+
* @memberof DependantAppConnectionsV2024
|
|
12730
|
+
*/
|
|
12731
|
+
'enabled'?: boolean;
|
|
12732
|
+
/**
|
|
12733
|
+
* Is Provisioning enabled for connected Application
|
|
12734
|
+
* @type {boolean}
|
|
12735
|
+
* @memberof DependantAppConnectionsV2024
|
|
12736
|
+
*/
|
|
12737
|
+
'provisionRequestEnabled'?: boolean;
|
|
12738
|
+
/**
|
|
12739
|
+
*
|
|
12740
|
+
* @type {DependantAppConnectionsAccountSourceV2024}
|
|
12741
|
+
* @memberof DependantAppConnectionsV2024
|
|
12742
|
+
*/
|
|
12743
|
+
'accountSource'?: DependantAppConnectionsAccountSourceV2024;
|
|
12744
|
+
/**
|
|
12745
|
+
* The amount of launchers for connected Application (long type)
|
|
12746
|
+
* @type {number}
|
|
12747
|
+
* @memberof DependantAppConnectionsV2024
|
|
12748
|
+
*/
|
|
12749
|
+
'launcherCount'?: number;
|
|
12750
|
+
/**
|
|
12751
|
+
* Is Provisioning enabled for connected Application
|
|
12752
|
+
* @type {boolean}
|
|
12753
|
+
* @memberof DependantAppConnectionsV2024
|
|
12754
|
+
*/
|
|
12755
|
+
'matchAllAccount'?: boolean;
|
|
12756
|
+
/**
|
|
12757
|
+
* The owner of the connected Application
|
|
12758
|
+
* @type {Array<BaseReferenceDtoV2024>}
|
|
12759
|
+
* @memberof DependantAppConnectionsV2024
|
|
12760
|
+
*/
|
|
12761
|
+
'owner'?: Array<BaseReferenceDtoV2024>;
|
|
12762
|
+
/**
|
|
12763
|
+
* Is App Center enabled for connected Application
|
|
12764
|
+
* @type {boolean}
|
|
12765
|
+
* @memberof DependantAppConnectionsV2024
|
|
12766
|
+
*/
|
|
12767
|
+
'appCenterEnabled'?: boolean;
|
|
12768
|
+
}
|
|
12769
|
+
/**
|
|
12770
|
+
*
|
|
12771
|
+
* @export
|
|
12772
|
+
* @interface DependantConnectionsMissingDtoV2024
|
|
12773
|
+
*/
|
|
12774
|
+
export interface DependantConnectionsMissingDtoV2024 {
|
|
12775
|
+
/**
|
|
12776
|
+
* The type of dependency type that is missing in the SourceConnections
|
|
12777
|
+
* @type {string}
|
|
12778
|
+
* @memberof DependantConnectionsMissingDtoV2024
|
|
12779
|
+
*/
|
|
12780
|
+
'dependencyType'?: DependantConnectionsMissingDtoV2024DependencyTypeV2024;
|
|
12781
|
+
/**
|
|
12782
|
+
* The reason why this dependency is missing
|
|
12783
|
+
* @type {string}
|
|
12784
|
+
* @memberof DependantConnectionsMissingDtoV2024
|
|
12785
|
+
*/
|
|
12786
|
+
'reason'?: string;
|
|
12787
|
+
}
|
|
12788
|
+
export declare const DependantConnectionsMissingDtoV2024DependencyTypeV2024: {
|
|
12789
|
+
readonly IdentityProfiles: "identityProfiles";
|
|
12790
|
+
readonly CredentialProfiles: "credentialProfiles";
|
|
12791
|
+
readonly MappingProfiles: "mappingProfiles";
|
|
12792
|
+
readonly SourceAttributes: "sourceAttributes";
|
|
12793
|
+
readonly DependantCustomTransforms: "dependantCustomTransforms";
|
|
12794
|
+
readonly DependantApps: "dependantApps";
|
|
12795
|
+
};
|
|
12796
|
+
export type DependantConnectionsMissingDtoV2024DependencyTypeV2024 = typeof DependantConnectionsMissingDtoV2024DependencyTypeV2024[keyof typeof DependantConnectionsMissingDtoV2024DependencyTypeV2024];
|
|
12408
12797
|
/**
|
|
12409
12798
|
*
|
|
12410
12799
|
* @export
|
|
@@ -14212,6 +14601,12 @@ export interface EventAttributesV2024 {
|
|
|
14212
14601
|
* @memberof EventAttributesV2024
|
|
14213
14602
|
*/
|
|
14214
14603
|
'attributeToFilter'?: string;
|
|
14604
|
+
/**
|
|
14605
|
+
* Form definition\'s unique identifier.
|
|
14606
|
+
* @type {string}
|
|
14607
|
+
* @memberof EventAttributesV2024
|
|
14608
|
+
*/
|
|
14609
|
+
'formDefinitionId'?: string;
|
|
14215
14610
|
}
|
|
14216
14611
|
/**
|
|
14217
14612
|
*
|
|
@@ -14761,6 +15156,19 @@ export interface ExpansionItemV2024 {
|
|
|
14761
15156
|
*/
|
|
14762
15157
|
'state'?: string;
|
|
14763
15158
|
}
|
|
15159
|
+
/**
|
|
15160
|
+
*
|
|
15161
|
+
* @export
|
|
15162
|
+
* @interface ExportFormDefinitionsByTenant200ResponseInnerSelfV2024
|
|
15163
|
+
*/
|
|
15164
|
+
export interface ExportFormDefinitionsByTenant200ResponseInnerSelfV2024 {
|
|
15165
|
+
/**
|
|
15166
|
+
*
|
|
15167
|
+
* @type {FormDefinitionSelfImportExportDtoV2024}
|
|
15168
|
+
* @memberof ExportFormDefinitionsByTenant200ResponseInnerSelfV2024
|
|
15169
|
+
*/
|
|
15170
|
+
'object'?: FormDefinitionSelfImportExportDtoV2024;
|
|
15171
|
+
}
|
|
14764
15172
|
/**
|
|
14765
15173
|
*
|
|
14766
15174
|
* @export
|
|
@@ -14775,10 +15183,10 @@ export interface ExportFormDefinitionsByTenant200ResponseInnerV2024 {
|
|
|
14775
15183
|
'object'?: FormDefinitionResponseV2024;
|
|
14776
15184
|
/**
|
|
14777
15185
|
*
|
|
14778
|
-
* @type {
|
|
15186
|
+
* @type {ExportFormDefinitionsByTenant200ResponseInnerSelfV2024}
|
|
14779
15187
|
* @memberof ExportFormDefinitionsByTenant200ResponseInnerV2024
|
|
14780
15188
|
*/
|
|
14781
|
-
'self'?:
|
|
15189
|
+
'self'?: ExportFormDefinitionsByTenant200ResponseInnerSelfV2024;
|
|
14782
15190
|
/**
|
|
14783
15191
|
*
|
|
14784
15192
|
* @type {number}
|
|
@@ -15533,6 +15941,35 @@ export interface FormDefinitionResponseV2024 {
|
|
|
15533
15941
|
*/
|
|
15534
15942
|
'modified'?: string;
|
|
15535
15943
|
}
|
|
15944
|
+
/**
|
|
15945
|
+
* Self block for imported/exported object.
|
|
15946
|
+
* @export
|
|
15947
|
+
* @interface FormDefinitionSelfImportExportDtoV2024
|
|
15948
|
+
*/
|
|
15949
|
+
export interface FormDefinitionSelfImportExportDtoV2024 {
|
|
15950
|
+
/**
|
|
15951
|
+
* Imported/exported object\'s DTO type.
|
|
15952
|
+
* @type {string}
|
|
15953
|
+
* @memberof FormDefinitionSelfImportExportDtoV2024
|
|
15954
|
+
*/
|
|
15955
|
+
'type'?: FormDefinitionSelfImportExportDtoV2024TypeV2024;
|
|
15956
|
+
/**
|
|
15957
|
+
* Imported/exported object\'s ID.
|
|
15958
|
+
* @type {string}
|
|
15959
|
+
* @memberof FormDefinitionSelfImportExportDtoV2024
|
|
15960
|
+
*/
|
|
15961
|
+
'id'?: string;
|
|
15962
|
+
/**
|
|
15963
|
+
* Imported/exported object\'s display name.
|
|
15964
|
+
* @type {string}
|
|
15965
|
+
* @memberof FormDefinitionSelfImportExportDtoV2024
|
|
15966
|
+
*/
|
|
15967
|
+
'name'?: string;
|
|
15968
|
+
}
|
|
15969
|
+
export declare const FormDefinitionSelfImportExportDtoV2024TypeV2024: {
|
|
15970
|
+
readonly FormDefinition: "FORM_DEFINITION";
|
|
15971
|
+
};
|
|
15972
|
+
export type FormDefinitionSelfImportExportDtoV2024TypeV2024 = typeof FormDefinitionSelfImportExportDtoV2024TypeV2024[keyof typeof FormDefinitionSelfImportExportDtoV2024TypeV2024];
|
|
15536
15973
|
/**
|
|
15537
15974
|
*
|
|
15538
15975
|
* @export
|
|
@@ -18644,6 +19081,31 @@ export interface IdentityProfileV2024 {
|
|
|
18644
19081
|
*/
|
|
18645
19082
|
'hasTimeBasedAttr'?: boolean;
|
|
18646
19083
|
}
|
|
19084
|
+
/**
|
|
19085
|
+
*
|
|
19086
|
+
* @export
|
|
19087
|
+
* @interface IdentityProfilesConnectionsV2024
|
|
19088
|
+
*/
|
|
19089
|
+
export interface IdentityProfilesConnectionsV2024 {
|
|
19090
|
+
/**
|
|
19091
|
+
* ID of the IdentityProfile this reference applies
|
|
19092
|
+
* @type {string}
|
|
19093
|
+
* @memberof IdentityProfilesConnectionsV2024
|
|
19094
|
+
*/
|
|
19095
|
+
'id'?: string;
|
|
19096
|
+
/**
|
|
19097
|
+
* Human-readable display name of the IdentityProfile to which this reference applies
|
|
19098
|
+
* @type {string}
|
|
19099
|
+
* @memberof IdentityProfilesConnectionsV2024
|
|
19100
|
+
*/
|
|
19101
|
+
'name'?: string;
|
|
19102
|
+
/**
|
|
19103
|
+
* The Number of Identities managed by this IdentityProfile
|
|
19104
|
+
* @type {number}
|
|
19105
|
+
* @memberof IdentityProfilesConnectionsV2024
|
|
19106
|
+
*/
|
|
19107
|
+
'identityCount'?: number;
|
|
19108
|
+
}
|
|
18647
19109
|
/**
|
|
18648
19110
|
* The manager for the identity.
|
|
18649
19111
|
* @export
|
|
@@ -19046,10 +19508,10 @@ export interface ImportFormDefinitions202ResponseV2024 {
|
|
|
19046
19508
|
'errors'?: Array<ImportFormDefinitions202ResponseErrorsInnerV2024>;
|
|
19047
19509
|
/**
|
|
19048
19510
|
*
|
|
19049
|
-
* @type {Array<
|
|
19511
|
+
* @type {Array<ImportFormDefinitionsRequestInnerV2024>}
|
|
19050
19512
|
* @memberof ImportFormDefinitions202ResponseV2024
|
|
19051
19513
|
*/
|
|
19052
|
-
'importedObjects'?: Array<
|
|
19514
|
+
'importedObjects'?: Array<ImportFormDefinitionsRequestInnerV2024>;
|
|
19053
19515
|
/**
|
|
19054
19516
|
*
|
|
19055
19517
|
* @type {Array<ImportFormDefinitions202ResponseErrorsInnerV2024>}
|
|
@@ -19063,6 +19525,31 @@ export interface ImportFormDefinitions202ResponseV2024 {
|
|
|
19063
19525
|
*/
|
|
19064
19526
|
'warnings'?: Array<ImportFormDefinitions202ResponseErrorsInnerV2024>;
|
|
19065
19527
|
}
|
|
19528
|
+
/**
|
|
19529
|
+
*
|
|
19530
|
+
* @export
|
|
19531
|
+
* @interface ImportFormDefinitionsRequestInnerV2024
|
|
19532
|
+
*/
|
|
19533
|
+
export interface ImportFormDefinitionsRequestInnerV2024 {
|
|
19534
|
+
/**
|
|
19535
|
+
*
|
|
19536
|
+
* @type {FormDefinitionResponseV2024}
|
|
19537
|
+
* @memberof ImportFormDefinitionsRequestInnerV2024
|
|
19538
|
+
*/
|
|
19539
|
+
'object'?: FormDefinitionResponseV2024;
|
|
19540
|
+
/**
|
|
19541
|
+
*
|
|
19542
|
+
* @type {string}
|
|
19543
|
+
* @memberof ImportFormDefinitionsRequestInnerV2024
|
|
19544
|
+
*/
|
|
19545
|
+
'self'?: string;
|
|
19546
|
+
/**
|
|
19547
|
+
*
|
|
19548
|
+
* @type {number}
|
|
19549
|
+
* @memberof ImportFormDefinitionsRequestInnerV2024
|
|
19550
|
+
*/
|
|
19551
|
+
'version'?: number;
|
|
19552
|
+
}
|
|
19066
19553
|
/**
|
|
19067
19554
|
*
|
|
19068
19555
|
* @export
|
|
@@ -21265,7 +21752,7 @@ export interface ManagedClusterV2024 {
|
|
|
21265
21752
|
* @type {string}
|
|
21266
21753
|
* @memberof ManagedClusterV2024
|
|
21267
21754
|
*/
|
|
21268
|
-
'status'?:
|
|
21755
|
+
'status'?: ManagedClusterV2024StatusV2024;
|
|
21269
21756
|
/**
|
|
21270
21757
|
* Public key certificate
|
|
21271
21758
|
* @type {string}
|
|
@@ -21321,6 +21808,14 @@ export interface ManagedClusterV2024 {
|
|
|
21321
21808
|
*/
|
|
21322
21809
|
'updatedAt'?: string | null;
|
|
21323
21810
|
}
|
|
21811
|
+
export declare const ManagedClusterV2024StatusV2024: {
|
|
21812
|
+
readonly Configuring: "CONFIGURING";
|
|
21813
|
+
readonly Failed: "FAILED";
|
|
21814
|
+
readonly NoClients: "NO_CLIENTS";
|
|
21815
|
+
readonly Normal: "NORMAL";
|
|
21816
|
+
readonly Warning: "WARNING";
|
|
21817
|
+
};
|
|
21818
|
+
export type ManagedClusterV2024StatusV2024 = typeof ManagedClusterV2024StatusV2024[keyof typeof ManagedClusterV2024StatusV2024];
|
|
21324
21819
|
/**
|
|
21325
21820
|
*
|
|
21326
21821
|
* @export
|
|
@@ -26543,11 +27038,71 @@ export interface ReportConfigDTOV2024 {
|
|
|
26543
27038
|
'order'?: number;
|
|
26544
27039
|
}
|
|
26545
27040
|
/**
|
|
26546
|
-
* @type ReportDetailsArgumentsV2024
|
|
26547
27041
|
* The string-object map(dictionary) with the arguments needed for report processing.
|
|
26548
27042
|
* @export
|
|
27043
|
+
* @interface ReportDetailsArgumentsV2024
|
|
26549
27044
|
*/
|
|
26550
|
-
export
|
|
27045
|
+
export interface ReportDetailsArgumentsV2024 {
|
|
27046
|
+
/**
|
|
27047
|
+
* Source ID.
|
|
27048
|
+
* @type {string}
|
|
27049
|
+
* @memberof ReportDetailsArgumentsV2024
|
|
27050
|
+
*/
|
|
27051
|
+
'application': string;
|
|
27052
|
+
/**
|
|
27053
|
+
* Source name.
|
|
27054
|
+
* @type {string}
|
|
27055
|
+
* @memberof ReportDetailsArgumentsV2024
|
|
27056
|
+
*/
|
|
27057
|
+
'sourceName': string;
|
|
27058
|
+
/**
|
|
27059
|
+
* Flag to specify if only correlated identities are included in report.
|
|
27060
|
+
* @type {boolean}
|
|
27061
|
+
* @memberof ReportDetailsArgumentsV2024
|
|
27062
|
+
*/
|
|
27063
|
+
'correlatedOnly': boolean;
|
|
27064
|
+
/**
|
|
27065
|
+
* Source ID.
|
|
27066
|
+
* @type {string}
|
|
27067
|
+
* @memberof ReportDetailsArgumentsV2024
|
|
27068
|
+
*/
|
|
27069
|
+
'authoritativeSource': string;
|
|
27070
|
+
/**
|
|
27071
|
+
* Output report file formats. These are formats for calling GET endpoint as query parameter \'fileFormat\'. In case report won\'t have this argument there will be [\'CSV\', \'PDF\'] as default.
|
|
27072
|
+
* @type {Array<string>}
|
|
27073
|
+
* @memberof ReportDetailsArgumentsV2024
|
|
27074
|
+
*/
|
|
27075
|
+
'selectedFormats'?: Array<ReportDetailsArgumentsV2024SelectedFormatsV2024>;
|
|
27076
|
+
/**
|
|
27077
|
+
* The names of the Elasticsearch indices in which to search. If none are provided, then all indices will be searched.
|
|
27078
|
+
* @type {Array<IndexV2024>}
|
|
27079
|
+
* @memberof ReportDetailsArgumentsV2024
|
|
27080
|
+
*/
|
|
27081
|
+
'indices'?: Array<IndexV2024>;
|
|
27082
|
+
/**
|
|
27083
|
+
* The query using the Elasticsearch [Query String Query](https://www.elastic.co/guide/en/elasticsearch/reference/5.2/query-dsl-query-string-query.html#query-string) syntax from the Query DSL extended by SailPoint to support Nested queries.
|
|
27084
|
+
* @type {string}
|
|
27085
|
+
* @memberof ReportDetailsArgumentsV2024
|
|
27086
|
+
*/
|
|
27087
|
+
'query': string;
|
|
27088
|
+
/**
|
|
27089
|
+
* Comma separated string consisting of technical attribute names of fields to include in report. Use `access.spread`, `apps.spread`, `accounts.spread` to include respective identity access details. Use `accessProfiles.spread` to unclude access profile details. Use `entitlements.spread` to include entitlement details.
|
|
27090
|
+
* @type {string}
|
|
27091
|
+
* @memberof ReportDetailsArgumentsV2024
|
|
27092
|
+
*/
|
|
27093
|
+
'columns'?: string;
|
|
27094
|
+
/**
|
|
27095
|
+
* The fields to be used to sort the search results. Use + or - to specify the sort direction.
|
|
27096
|
+
* @type {Array<string>}
|
|
27097
|
+
* @memberof ReportDetailsArgumentsV2024
|
|
27098
|
+
*/
|
|
27099
|
+
'sort'?: Array<string>;
|
|
27100
|
+
}
|
|
27101
|
+
export declare const ReportDetailsArgumentsV2024SelectedFormatsV2024: {
|
|
27102
|
+
readonly Csv: "CSV";
|
|
27103
|
+
readonly Pdf: "PDF";
|
|
27104
|
+
};
|
|
27105
|
+
export type ReportDetailsArgumentsV2024SelectedFormatsV2024 = typeof ReportDetailsArgumentsV2024SelectedFormatsV2024[keyof typeof ReportDetailsArgumentsV2024SelectedFormatsV2024];
|
|
26551
27106
|
/**
|
|
26552
27107
|
* Details about report to be processed.
|
|
26553
27108
|
* @export
|
|
@@ -26828,7 +27383,7 @@ export declare const RequestableObjectRequestStatusV2024: {
|
|
|
26828
27383
|
};
|
|
26829
27384
|
export type RequestableObjectRequestStatusV2024 = typeof RequestableObjectRequestStatusV2024[keyof typeof RequestableObjectRequestStatusV2024];
|
|
26830
27385
|
/**
|
|
26831
|
-
*
|
|
27386
|
+
* Currently supported requestable object types.
|
|
26832
27387
|
* @export
|
|
26833
27388
|
* @enum {string}
|
|
26834
27389
|
*/
|
|
@@ -31388,6 +31943,12 @@ export interface ScheduledAttributesV2024 {
|
|
|
31388
31943
|
* @memberof ScheduledAttributesV2024
|
|
31389
31944
|
*/
|
|
31390
31945
|
'weeklyTimes'?: Array<string>;
|
|
31946
|
+
/**
|
|
31947
|
+
* Scheduled execution times
|
|
31948
|
+
* @type {Array<string>}
|
|
31949
|
+
* @memberof ScheduledAttributesV2024
|
|
31950
|
+
*/
|
|
31951
|
+
'yearlyTimes'?: Array<string>;
|
|
31391
31952
|
}
|
|
31392
31953
|
export declare const ScheduledAttributesV2024FrequencyV2024: {
|
|
31393
31954
|
readonly Daily: "daily";
|
|
@@ -34235,6 +34796,55 @@ export interface SourceCodeV2024 {
|
|
|
34235
34796
|
*/
|
|
34236
34797
|
'script': string;
|
|
34237
34798
|
}
|
|
34799
|
+
/**
|
|
34800
|
+
*
|
|
34801
|
+
* @export
|
|
34802
|
+
* @interface SourceConnectionsDtoV2024
|
|
34803
|
+
*/
|
|
34804
|
+
export interface SourceConnectionsDtoV2024 {
|
|
34805
|
+
/**
|
|
34806
|
+
* The IdentityProfile attached to this source
|
|
34807
|
+
* @type {Array<IdentityProfilesConnectionsV2024>}
|
|
34808
|
+
* @memberof SourceConnectionsDtoV2024
|
|
34809
|
+
*/
|
|
34810
|
+
'identityProfiles'?: Array<IdentityProfilesConnectionsV2024>;
|
|
34811
|
+
/**
|
|
34812
|
+
* Name of the CredentialProfile attached to this source
|
|
34813
|
+
* @type {Array<string>}
|
|
34814
|
+
* @memberof SourceConnectionsDtoV2024
|
|
34815
|
+
*/
|
|
34816
|
+
'credentialProfiles'?: Array<string>;
|
|
34817
|
+
/**
|
|
34818
|
+
* The attributes attached to this source
|
|
34819
|
+
* @type {Array<string>}
|
|
34820
|
+
* @memberof SourceConnectionsDtoV2024
|
|
34821
|
+
*/
|
|
34822
|
+
'sourceAttributes'?: Array<string>;
|
|
34823
|
+
/**
|
|
34824
|
+
* The profiles attached to this source
|
|
34825
|
+
* @type {Array<string>}
|
|
34826
|
+
* @memberof SourceConnectionsDtoV2024
|
|
34827
|
+
*/
|
|
34828
|
+
'mappingProfiles'?: Array<string>;
|
|
34829
|
+
/**
|
|
34830
|
+
* A list of custom transforms associated with this source. A transform will be considered associated with a source if any attributes of the transform specify the source as the sourceName.
|
|
34831
|
+
* @type {Array<TransformReadV2024>}
|
|
34832
|
+
* @memberof SourceConnectionsDtoV2024
|
|
34833
|
+
*/
|
|
34834
|
+
'dependentCustomTransforms'?: Array<TransformReadV2024>;
|
|
34835
|
+
/**
|
|
34836
|
+
*
|
|
34837
|
+
* @type {Array<DependantAppConnectionsV2024>}
|
|
34838
|
+
* @memberof SourceConnectionsDtoV2024
|
|
34839
|
+
*/
|
|
34840
|
+
'dependentApps'?: Array<DependantAppConnectionsV2024>;
|
|
34841
|
+
/**
|
|
34842
|
+
*
|
|
34843
|
+
* @type {Array<DependantConnectionsMissingDtoV2024>}
|
|
34844
|
+
* @memberof SourceConnectionsDtoV2024
|
|
34845
|
+
*/
|
|
34846
|
+
'missingDependents'?: Array<DependantConnectionsMissingDtoV2024>;
|
|
34847
|
+
}
|
|
34238
34848
|
/**
|
|
34239
34849
|
* Identity who created the source.
|
|
34240
34850
|
* @export
|
|
@@ -36131,7 +36741,7 @@ export interface TaskDefinitionSummaryV2024 {
|
|
|
36131
36741
|
* @type {string}
|
|
36132
36742
|
* @memberof TaskDefinitionSummaryV2024
|
|
36133
36743
|
*/
|
|
36134
|
-
'description': string;
|
|
36744
|
+
'description': string | null;
|
|
36135
36745
|
/**
|
|
36136
36746
|
* Name of the parent of the TaskDefinition
|
|
36137
36747
|
* @type {string}
|
|
@@ -36235,7 +36845,7 @@ export interface TaskResultDetailsV2024 {
|
|
|
36235
36845
|
'id'?: string;
|
|
36236
36846
|
/**
|
|
36237
36847
|
* Use this property to define what report should be processed in the RDE service.
|
|
36238
|
-
* @type {
|
|
36848
|
+
* @type {string}
|
|
36239
36849
|
* @memberof TaskResultDetailsV2024
|
|
36240
36850
|
*/
|
|
36241
36851
|
'reportType'?: TaskResultDetailsV2024ReportTypeV2024;
|
|
@@ -36295,12 +36905,10 @@ export interface TaskResultDetailsV2024 {
|
|
|
36295
36905
|
'returns'?: Array<TaskResultDetailsReturnsInnerV2024>;
|
|
36296
36906
|
/**
|
|
36297
36907
|
* Extra attributes map(dictionary) needed for the report.
|
|
36298
|
-
* @type {
|
|
36908
|
+
* @type {object}
|
|
36299
36909
|
* @memberof TaskResultDetailsV2024
|
|
36300
36910
|
*/
|
|
36301
|
-
'attributes'?:
|
|
36302
|
-
[key: string]: object;
|
|
36303
|
-
};
|
|
36911
|
+
'attributes'?: object;
|
|
36304
36912
|
/**
|
|
36305
36913
|
* Current report state.
|
|
36306
36914
|
* @type {string}
|
|
@@ -39449,6 +40057,12 @@ export interface WorkflowTriggerAttributesV2024 {
|
|
|
39449
40057
|
* @memberof WorkflowTriggerAttributesV2024
|
|
39450
40058
|
*/
|
|
39451
40059
|
'attributeToFilter'?: string;
|
|
40060
|
+
/**
|
|
40061
|
+
* Form definition\'s unique identifier.
|
|
40062
|
+
* @type {string}
|
|
40063
|
+
* @memberof WorkflowTriggerAttributesV2024
|
|
40064
|
+
*/
|
|
40065
|
+
'formDefinitionId'?: string;
|
|
39452
40066
|
/**
|
|
39453
40067
|
* A unique name for the external trigger
|
|
39454
40068
|
* @type {string}
|
|
@@ -39497,6 +40111,12 @@ export interface WorkflowTriggerAttributesV2024 {
|
|
|
39497
40111
|
* @memberof WorkflowTriggerAttributesV2024
|
|
39498
40112
|
*/
|
|
39499
40113
|
'weeklyTimes'?: Array<string>;
|
|
40114
|
+
/**
|
|
40115
|
+
* Scheduled execution times
|
|
40116
|
+
* @type {Array<string>}
|
|
40117
|
+
* @memberof WorkflowTriggerAttributesV2024
|
|
40118
|
+
*/
|
|
40119
|
+
'yearlyTimes'?: Array<string>;
|
|
39500
40120
|
}
|
|
39501
40121
|
export declare const WorkflowTriggerAttributesV2024FrequencyV2024: {
|
|
39502
40122
|
readonly Daily: "daily";
|
|
@@ -40119,7 +40739,7 @@ export declare class AccessModelMetadataV2024Api extends BaseAPI {
|
|
|
40119
40739
|
*/
|
|
40120
40740
|
export declare const AccessProfilesV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
40121
40741
|
/**
|
|
40122
|
-
*
|
|
40742
|
+
* Create an access profile. A user with only ROLE_SUBADMIN or SOURCE_SUBADMIN authority must be associated with the access profile\'s Source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
|
|
40123
40743
|
* @summary Create Access Profile
|
|
40124
40744
|
* @param {AccessProfileV2024} accessProfileV2024
|
|
40125
40745
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40164,16 +40784,16 @@ export declare const AccessProfilesV2024ApiAxiosParamCreator: (configuration?: C
|
|
|
40164
40784
|
*/
|
|
40165
40785
|
getAccessProfileEntitlements: (id: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40166
40786
|
/**
|
|
40167
|
-
*
|
|
40787
|
+
* Get a list of access profiles. >**Note:** When you filter for access profiles that have the \'+\' symbol in their names, the response is blank.
|
|
40168
40788
|
* @summary List Access Profiles
|
|
40169
|
-
* @param {string} [forSubadmin]
|
|
40170
|
-
* @param {number} [limit]
|
|
40789
|
+
* @param {string} [forSubadmin] Filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID or the special value **me**, which is shorthand for the calling identity\'s ID. If you specify an identity that isn\'t a subadmin, the API returns a 400 Bad Request error.
|
|
40790
|
+
* @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.
|
|
40171
40791
|
* @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.
|
|
40172
40792
|
* @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.
|
|
40173
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **source.id**: *eq, in*
|
|
40793
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **source.id**: *eq, in* Supported composite operators are *and, or* Filtering is not supported for access profiles and entitlements that have the \'+\' symbol in their names.
|
|
40174
40794
|
* @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, created, modified**
|
|
40175
|
-
* @param {string} [forSegmentIds]
|
|
40176
|
-
* @param {boolean} [includeUnsegmented] Indicates whether the response list should contain unsegmented access profiles. If
|
|
40795
|
+
* @param {string} [forSegmentIds] Filters access profiles to only those assigned to the segment(s) with the specified IDs. If segmentation is currently unavailable, specifying this parameter results in an error.
|
|
40796
|
+
* @param {boolean} [includeUnsegmented] Indicates whether the response list should contain unsegmented access profiles. If `for-segment-ids` is absent or empty, specifying *include-unsegmented* as `false` results in an error.
|
|
40177
40797
|
* @param {*} [axiosOptions] Override http request option.
|
|
40178
40798
|
* @throws {RequiredError}
|
|
40179
40799
|
*/
|
|
@@ -40203,7 +40823,7 @@ export declare const AccessProfilesV2024ApiAxiosParamCreator: (configuration?: C
|
|
|
40203
40823
|
*/
|
|
40204
40824
|
export declare const AccessProfilesV2024ApiFp: (configuration?: Configuration) => {
|
|
40205
40825
|
/**
|
|
40206
|
-
*
|
|
40826
|
+
* Create an access profile. A user with only ROLE_SUBADMIN or SOURCE_SUBADMIN authority must be associated with the access profile\'s Source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
|
|
40207
40827
|
* @summary Create Access Profile
|
|
40208
40828
|
* @param {AccessProfileV2024} accessProfileV2024
|
|
40209
40829
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40248,16 +40868,16 @@ export declare const AccessProfilesV2024ApiFp: (configuration?: Configuration) =
|
|
|
40248
40868
|
*/
|
|
40249
40869
|
getAccessProfileEntitlements(id: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementV2024>>>;
|
|
40250
40870
|
/**
|
|
40251
|
-
*
|
|
40871
|
+
* Get a list of access profiles. >**Note:** When you filter for access profiles that have the \'+\' symbol in their names, the response is blank.
|
|
40252
40872
|
* @summary List Access Profiles
|
|
40253
|
-
* @param {string} [forSubadmin]
|
|
40254
|
-
* @param {number} [limit]
|
|
40873
|
+
* @param {string} [forSubadmin] Filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID or the special value **me**, which is shorthand for the calling identity\'s ID. If you specify an identity that isn\'t a subadmin, the API returns a 400 Bad Request error.
|
|
40874
|
+
* @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.
|
|
40255
40875
|
* @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.
|
|
40256
40876
|
* @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.
|
|
40257
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **source.id**: *eq, in*
|
|
40877
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **source.id**: *eq, in* Supported composite operators are *and, or* Filtering is not supported for access profiles and entitlements that have the \'+\' symbol in their names.
|
|
40258
40878
|
* @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, created, modified**
|
|
40259
|
-
* @param {string} [forSegmentIds]
|
|
40260
|
-
* @param {boolean} [includeUnsegmented] Indicates whether the response list should contain unsegmented access profiles. If
|
|
40879
|
+
* @param {string} [forSegmentIds] Filters access profiles to only those assigned to the segment(s) with the specified IDs. If segmentation is currently unavailable, specifying this parameter results in an error.
|
|
40880
|
+
* @param {boolean} [includeUnsegmented] Indicates whether the response list should contain unsegmented access profiles. If `for-segment-ids` is absent or empty, specifying *include-unsegmented* as `false` results in an error.
|
|
40261
40881
|
* @param {*} [axiosOptions] Override http request option.
|
|
40262
40882
|
* @throws {RequiredError}
|
|
40263
40883
|
*/
|
|
@@ -40287,7 +40907,7 @@ export declare const AccessProfilesV2024ApiFp: (configuration?: Configuration) =
|
|
|
40287
40907
|
*/
|
|
40288
40908
|
export declare const AccessProfilesV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
40289
40909
|
/**
|
|
40290
|
-
*
|
|
40910
|
+
* Create an access profile. A user with only ROLE_SUBADMIN or SOURCE_SUBADMIN authority must be associated with the access profile\'s Source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
|
|
40291
40911
|
* @summary Create Access Profile
|
|
40292
40912
|
* @param {AccessProfilesV2024ApiCreateAccessProfileRequest} requestParameters Request parameters.
|
|
40293
40913
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40327,7 +40947,7 @@ export declare const AccessProfilesV2024ApiFactory: (configuration?: Configurati
|
|
|
40327
40947
|
*/
|
|
40328
40948
|
getAccessProfileEntitlements(requestParameters: AccessProfilesV2024ApiGetAccessProfileEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EntitlementV2024>>;
|
|
40329
40949
|
/**
|
|
40330
|
-
*
|
|
40950
|
+
* Get a list of access profiles. >**Note:** When you filter for access profiles that have the \'+\' symbol in their names, the response is blank.
|
|
40331
40951
|
* @summary List Access Profiles
|
|
40332
40952
|
* @param {AccessProfilesV2024ApiListAccessProfilesRequest} requestParameters Request parameters.
|
|
40333
40953
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40453,13 +41073,13 @@ export interface AccessProfilesV2024ApiGetAccessProfileEntitlementsRequest {
|
|
|
40453
41073
|
*/
|
|
40454
41074
|
export interface AccessProfilesV2024ApiListAccessProfilesRequest {
|
|
40455
41075
|
/**
|
|
40456
|
-
*
|
|
41076
|
+
* Filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID or the special value **me**, which is shorthand for the calling identity\'s ID. If you specify an identity that isn\'t a subadmin, the API returns a 400 Bad Request error.
|
|
40457
41077
|
* @type {string}
|
|
40458
41078
|
* @memberof AccessProfilesV2024ApiListAccessProfiles
|
|
40459
41079
|
*/
|
|
40460
41080
|
readonly forSubadmin?: string;
|
|
40461
41081
|
/**
|
|
40462
|
-
*
|
|
41082
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
40463
41083
|
* @type {number}
|
|
40464
41084
|
* @memberof AccessProfilesV2024ApiListAccessProfiles
|
|
40465
41085
|
*/
|
|
@@ -40477,7 +41097,7 @@ export interface AccessProfilesV2024ApiListAccessProfilesRequest {
|
|
|
40477
41097
|
*/
|
|
40478
41098
|
readonly count?: boolean;
|
|
40479
41099
|
/**
|
|
40480
|
-
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **source.id**: *eq, in*
|
|
41100
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **source.id**: *eq, in* Supported composite operators are *and, or* Filtering is not supported for access profiles and entitlements that have the \'+\' symbol in their names.
|
|
40481
41101
|
* @type {string}
|
|
40482
41102
|
* @memberof AccessProfilesV2024ApiListAccessProfiles
|
|
40483
41103
|
*/
|
|
@@ -40489,13 +41109,13 @@ export interface AccessProfilesV2024ApiListAccessProfilesRequest {
|
|
|
40489
41109
|
*/
|
|
40490
41110
|
readonly sorters?: string;
|
|
40491
41111
|
/**
|
|
40492
|
-
*
|
|
41112
|
+
* Filters access profiles to only those assigned to the segment(s) with the specified IDs. If segmentation is currently unavailable, specifying this parameter results in an error.
|
|
40493
41113
|
* @type {string}
|
|
40494
41114
|
* @memberof AccessProfilesV2024ApiListAccessProfiles
|
|
40495
41115
|
*/
|
|
40496
41116
|
readonly forSegmentIds?: string;
|
|
40497
41117
|
/**
|
|
40498
|
-
* Indicates whether the response list should contain unsegmented access profiles. If
|
|
41118
|
+
* Indicates whether the response list should contain unsegmented access profiles. If `for-segment-ids` is absent or empty, specifying *include-unsegmented* as `false` results in an error.
|
|
40499
41119
|
* @type {boolean}
|
|
40500
41120
|
* @memberof AccessProfilesV2024ApiListAccessProfiles
|
|
40501
41121
|
*/
|
|
@@ -40547,7 +41167,7 @@ export interface AccessProfilesV2024ApiUpdateAccessProfilesInBulkRequest {
|
|
|
40547
41167
|
*/
|
|
40548
41168
|
export declare class AccessProfilesV2024Api extends BaseAPI {
|
|
40549
41169
|
/**
|
|
40550
|
-
*
|
|
41170
|
+
* Create an access profile. A user with only ROLE_SUBADMIN or SOURCE_SUBADMIN authority must be associated with the access profile\'s Source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
|
|
40551
41171
|
* @summary Create Access Profile
|
|
40552
41172
|
* @param {AccessProfilesV2024ApiCreateAccessProfileRequest} requestParameters Request parameters.
|
|
40553
41173
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40592,7 +41212,7 @@ export declare class AccessProfilesV2024Api extends BaseAPI {
|
|
|
40592
41212
|
*/
|
|
40593
41213
|
getAccessProfileEntitlements(requestParameters: AccessProfilesV2024ApiGetAccessProfileEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementV2024[], any>>;
|
|
40594
41214
|
/**
|
|
40595
|
-
*
|
|
41215
|
+
* Get a list of access profiles. >**Note:** When you filter for access profiles that have the \'+\' symbol in their names, the response is blank.
|
|
40596
41216
|
* @summary List Access Profiles
|
|
40597
41217
|
* @param {AccessProfilesV2024ApiListAccessProfilesRequest} requestParameters Request parameters.
|
|
40598
41218
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -49679,11 +50299,11 @@ export declare const CustomFormsV2024ApiAxiosParamCreator: (configuration?: Conf
|
|
|
49679
50299
|
*
|
|
49680
50300
|
* @summary Import form definitions from export.
|
|
49681
50301
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
49682
|
-
* @param {Array<
|
|
50302
|
+
* @param {Array<ImportFormDefinitionsRequestInnerV2024>} [body] Body is the request payload to import form definitions
|
|
49683
50303
|
* @param {*} [axiosOptions] Override http request option.
|
|
49684
50304
|
* @throws {RequiredError}
|
|
49685
50305
|
*/
|
|
49686
|
-
importFormDefinitions: (xSailPointExperimental?: string, body?: Array<
|
|
50306
|
+
importFormDefinitions: (xSailPointExperimental?: string, body?: Array<ImportFormDefinitionsRequestInnerV2024>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
49687
50307
|
/**
|
|
49688
50308
|
* Parameter `{formDefinitionID}` should match a form definition ID.
|
|
49689
50309
|
* @summary Patch a form definition.
|
|
@@ -49868,11 +50488,11 @@ export declare const CustomFormsV2024ApiFp: (configuration?: Configuration) => {
|
|
|
49868
50488
|
*
|
|
49869
50489
|
* @summary Import form definitions from export.
|
|
49870
50490
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
49871
|
-
* @param {Array<
|
|
50491
|
+
* @param {Array<ImportFormDefinitionsRequestInnerV2024>} [body] Body is the request payload to import form definitions
|
|
49872
50492
|
* @param {*} [axiosOptions] Override http request option.
|
|
49873
50493
|
* @throws {RequiredError}
|
|
49874
50494
|
*/
|
|
49875
|
-
importFormDefinitions(xSailPointExperimental?: string, body?: Array<
|
|
50495
|
+
importFormDefinitions(xSailPointExperimental?: string, body?: Array<ImportFormDefinitionsRequestInnerV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImportFormDefinitions202ResponseV2024>>;
|
|
49876
50496
|
/**
|
|
49877
50497
|
* Parameter `{formDefinitionID}` should match a form definition ID.
|
|
49878
50498
|
* @summary Patch a form definition.
|
|
@@ -50342,10 +50962,10 @@ export interface CustomFormsV2024ApiImportFormDefinitionsRequest {
|
|
|
50342
50962
|
readonly xSailPointExperimental?: string;
|
|
50343
50963
|
/**
|
|
50344
50964
|
* Body is the request payload to import form definitions
|
|
50345
|
-
* @type {Array<
|
|
50965
|
+
* @type {Array<ImportFormDefinitionsRequestInnerV2024>}
|
|
50346
50966
|
* @memberof CustomFormsV2024ApiImportFormDefinitions
|
|
50347
50967
|
*/
|
|
50348
|
-
readonly body?: Array<
|
|
50968
|
+
readonly body?: Array<ImportFormDefinitionsRequestInnerV2024>;
|
|
50349
50969
|
}
|
|
50350
50970
|
/**
|
|
50351
50971
|
* Request parameters for patchFormDefinition operation in CustomFormsV2024Api.
|
|
@@ -53786,7 +54406,7 @@ export declare class GovernanceGroupsV2024Api extends BaseAPI {
|
|
|
53786
54406
|
export declare const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
53787
54407
|
/**
|
|
53788
54408
|
* This API ignores a recommended access request item. Once an item is ignored, it will be marked as ignored=true if it is still a recommended item. The consumer can decide to hide ignored recommendations.
|
|
53789
|
-
* @summary
|
|
54409
|
+
* @summary Ignore Access Request Recommendation
|
|
53790
54410
|
* @param {AccessRequestRecommendationActionItemDtoV2024} accessRequestRecommendationActionItemDtoV2024 The recommended access item to ignore for an identity.
|
|
53791
54411
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
53792
54412
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53795,7 +54415,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator: (
|
|
|
53795
54415
|
addAccessRequestRecommendationsIgnoredItem: (accessRequestRecommendationActionItemDtoV2024: AccessRequestRecommendationActionItemDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
53796
54416
|
/**
|
|
53797
54417
|
* This API consumes a notification that a recommended access request item was requested. This API does not actually make the request, it is just a notification. This will help provide feedback in order to improve our recommendations.
|
|
53798
|
-
* @summary
|
|
54418
|
+
* @summary Accept Access Request Recommendation
|
|
53799
54419
|
* @param {AccessRequestRecommendationActionItemDtoV2024} accessRequestRecommendationActionItemDtoV2024 The recommended access item that was requested for an identity.
|
|
53800
54420
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
53801
54421
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53804,7 +54424,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator: (
|
|
|
53804
54424
|
addAccessRequestRecommendationsRequestedItem: (accessRequestRecommendationActionItemDtoV2024: AccessRequestRecommendationActionItemDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
53805
54425
|
/**
|
|
53806
54426
|
* This API consumes a notification that a recommended access request item was viewed. Future recommendations with this item will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
|
|
53807
|
-
* @summary
|
|
54427
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
53808
54428
|
* @param {AccessRequestRecommendationActionItemDtoV2024} accessRequestRecommendationActionItemDtoV2024 The recommended access that was viewed for an identity.
|
|
53809
54429
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
53810
54430
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53813,7 +54433,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator: (
|
|
|
53813
54433
|
addAccessRequestRecommendationsViewedItem: (accessRequestRecommendationActionItemDtoV2024: AccessRequestRecommendationActionItemDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
53814
54434
|
/**
|
|
53815
54435
|
* This API consumes a notification that a set of recommended access request item were viewed. Future recommendations with these items will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
|
|
53816
|
-
* @summary
|
|
54436
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
53817
54437
|
* @param {Array<AccessRequestRecommendationActionItemDtoV2024>} accessRequestRecommendationActionItemDtoV2024 The recommended access items that were viewed for an identity.
|
|
53818
54438
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
53819
54439
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53845,7 +54465,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator: (
|
|
|
53845
54465
|
getAccessRequestRecommendationsConfig: (xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
53846
54466
|
/**
|
|
53847
54467
|
* This API returns the list of ignored access request recommendations.
|
|
53848
|
-
* @summary List
|
|
54468
|
+
* @summary List Ignored Access Request Recommendations
|
|
53849
54469
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
53850
54470
|
* @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.
|
|
53851
54471
|
* @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.
|
|
@@ -53858,7 +54478,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator: (
|
|
|
53858
54478
|
getAccessRequestRecommendationsIgnoredItems: (xSailPointExperimental: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
53859
54479
|
/**
|
|
53860
54480
|
* This API returns a list of requested access request recommendations.
|
|
53861
|
-
* @summary List
|
|
54481
|
+
* @summary List Accepted Access Request Recommendations
|
|
53862
54482
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
53863
54483
|
* @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.
|
|
53864
54484
|
* @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.
|
|
@@ -53871,7 +54491,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator: (
|
|
|
53871
54491
|
getAccessRequestRecommendationsRequestedItems: (xSailPointExperimental: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
53872
54492
|
/**
|
|
53873
54493
|
* This API returns the list of viewed access request recommendations.
|
|
53874
|
-
* @summary List
|
|
54494
|
+
* @summary List Viewed Access Request Recommendations
|
|
53875
54495
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
53876
54496
|
* @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.
|
|
53877
54497
|
* @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.
|
|
@@ -53899,7 +54519,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiAxiosParamCreator: (
|
|
|
53899
54519
|
export declare const IAIAccessRequestRecommendationsV2024ApiFp: (configuration?: Configuration) => {
|
|
53900
54520
|
/**
|
|
53901
54521
|
* This API ignores a recommended access request item. Once an item is ignored, it will be marked as ignored=true if it is still a recommended item. The consumer can decide to hide ignored recommendations.
|
|
53902
|
-
* @summary
|
|
54522
|
+
* @summary Ignore Access Request Recommendation
|
|
53903
54523
|
* @param {AccessRequestRecommendationActionItemDtoV2024} accessRequestRecommendationActionItemDtoV2024 The recommended access item to ignore for an identity.
|
|
53904
54524
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
53905
54525
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53908,7 +54528,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFp: (configuration?:
|
|
|
53908
54528
|
addAccessRequestRecommendationsIgnoredItem(accessRequestRecommendationActionItemDtoV2024: AccessRequestRecommendationActionItemDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessRequestRecommendationActionItemResponseDtoV2024>>;
|
|
53909
54529
|
/**
|
|
53910
54530
|
* This API consumes a notification that a recommended access request item was requested. This API does not actually make the request, it is just a notification. This will help provide feedback in order to improve our recommendations.
|
|
53911
|
-
* @summary
|
|
54531
|
+
* @summary Accept Access Request Recommendation
|
|
53912
54532
|
* @param {AccessRequestRecommendationActionItemDtoV2024} accessRequestRecommendationActionItemDtoV2024 The recommended access item that was requested for an identity.
|
|
53913
54533
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
53914
54534
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53917,7 +54537,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFp: (configuration?:
|
|
|
53917
54537
|
addAccessRequestRecommendationsRequestedItem(accessRequestRecommendationActionItemDtoV2024: AccessRequestRecommendationActionItemDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessRequestRecommendationActionItemResponseDtoV2024>>;
|
|
53918
54538
|
/**
|
|
53919
54539
|
* This API consumes a notification that a recommended access request item was viewed. Future recommendations with this item will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
|
|
53920
|
-
* @summary
|
|
54540
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
53921
54541
|
* @param {AccessRequestRecommendationActionItemDtoV2024} accessRequestRecommendationActionItemDtoV2024 The recommended access that was viewed for an identity.
|
|
53922
54542
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
53923
54543
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53926,7 +54546,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFp: (configuration?:
|
|
|
53926
54546
|
addAccessRequestRecommendationsViewedItem(accessRequestRecommendationActionItemDtoV2024: AccessRequestRecommendationActionItemDtoV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessRequestRecommendationActionItemResponseDtoV2024>>;
|
|
53927
54547
|
/**
|
|
53928
54548
|
* This API consumes a notification that a set of recommended access request item were viewed. Future recommendations with these items will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
|
|
53929
|
-
* @summary
|
|
54549
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
53930
54550
|
* @param {Array<AccessRequestRecommendationActionItemDtoV2024>} accessRequestRecommendationActionItemDtoV2024 The recommended access items that were viewed for an identity.
|
|
53931
54551
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
53932
54552
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53958,7 +54578,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFp: (configuration?:
|
|
|
53958
54578
|
getAccessRequestRecommendationsConfig(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessRequestRecommendationConfigDtoV2024>>;
|
|
53959
54579
|
/**
|
|
53960
54580
|
* This API returns the list of ignored access request recommendations.
|
|
53961
|
-
* @summary List
|
|
54581
|
+
* @summary List Ignored Access Request Recommendations
|
|
53962
54582
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
53963
54583
|
* @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.
|
|
53964
54584
|
* @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.
|
|
@@ -53971,7 +54591,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFp: (configuration?:
|
|
|
53971
54591
|
getAccessRequestRecommendationsIgnoredItems(xSailPointExperimental: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>>>;
|
|
53972
54592
|
/**
|
|
53973
54593
|
* This API returns a list of requested access request recommendations.
|
|
53974
|
-
* @summary List
|
|
54594
|
+
* @summary List Accepted Access Request Recommendations
|
|
53975
54595
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
53976
54596
|
* @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.
|
|
53977
54597
|
* @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.
|
|
@@ -53984,7 +54604,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFp: (configuration?:
|
|
|
53984
54604
|
getAccessRequestRecommendationsRequestedItems(xSailPointExperimental: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>>>;
|
|
53985
54605
|
/**
|
|
53986
54606
|
* This API returns the list of viewed access request recommendations.
|
|
53987
|
-
* @summary List
|
|
54607
|
+
* @summary List Viewed Access Request Recommendations
|
|
53988
54608
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
53989
54609
|
* @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.
|
|
53990
54610
|
* @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.
|
|
@@ -54012,7 +54632,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFp: (configuration?:
|
|
|
54012
54632
|
export declare const IAIAccessRequestRecommendationsV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
54013
54633
|
/**
|
|
54014
54634
|
* This API ignores a recommended access request item. Once an item is ignored, it will be marked as ignored=true if it is still a recommended item. The consumer can decide to hide ignored recommendations.
|
|
54015
|
-
* @summary
|
|
54635
|
+
* @summary Ignore Access Request Recommendation
|
|
54016
54636
|
* @param {IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsIgnoredItemRequest} requestParameters Request parameters.
|
|
54017
54637
|
* @param {*} [axiosOptions] Override http request option.
|
|
54018
54638
|
* @throws {RequiredError}
|
|
@@ -54020,7 +54640,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFactory: (configurat
|
|
|
54020
54640
|
addAccessRequestRecommendationsIgnoredItem(requestParameters: IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsIgnoredItemRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessRequestRecommendationActionItemResponseDtoV2024>;
|
|
54021
54641
|
/**
|
|
54022
54642
|
* This API consumes a notification that a recommended access request item was requested. This API does not actually make the request, it is just a notification. This will help provide feedback in order to improve our recommendations.
|
|
54023
|
-
* @summary
|
|
54643
|
+
* @summary Accept Access Request Recommendation
|
|
54024
54644
|
* @param {IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsRequestedItemRequest} requestParameters Request parameters.
|
|
54025
54645
|
* @param {*} [axiosOptions] Override http request option.
|
|
54026
54646
|
* @throws {RequiredError}
|
|
@@ -54028,7 +54648,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFactory: (configurat
|
|
|
54028
54648
|
addAccessRequestRecommendationsRequestedItem(requestParameters: IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsRequestedItemRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessRequestRecommendationActionItemResponseDtoV2024>;
|
|
54029
54649
|
/**
|
|
54030
54650
|
* This API consumes a notification that a recommended access request item was viewed. Future recommendations with this item will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
|
|
54031
|
-
* @summary
|
|
54651
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
54032
54652
|
* @param {IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsViewedItemRequest} requestParameters Request parameters.
|
|
54033
54653
|
* @param {*} [axiosOptions] Override http request option.
|
|
54034
54654
|
* @throws {RequiredError}
|
|
@@ -54036,7 +54656,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFactory: (configurat
|
|
|
54036
54656
|
addAccessRequestRecommendationsViewedItem(requestParameters: IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsViewedItemRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessRequestRecommendationActionItemResponseDtoV2024>;
|
|
54037
54657
|
/**
|
|
54038
54658
|
* This API consumes a notification that a set of recommended access request item were viewed. Future recommendations with these items will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
|
|
54039
|
-
* @summary
|
|
54659
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
54040
54660
|
* @param {IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
54041
54661
|
* @param {*} [axiosOptions] Override http request option.
|
|
54042
54662
|
* @throws {RequiredError}
|
|
@@ -54060,7 +54680,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFactory: (configurat
|
|
|
54060
54680
|
getAccessRequestRecommendationsConfig(requestParameters?: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessRequestRecommendationConfigDtoV2024>;
|
|
54061
54681
|
/**
|
|
54062
54682
|
* This API returns the list of ignored access request recommendations.
|
|
54063
|
-
* @summary List
|
|
54683
|
+
* @summary List Ignored Access Request Recommendations
|
|
54064
54684
|
* @param {IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest} requestParameters Request parameters.
|
|
54065
54685
|
* @param {*} [axiosOptions] Override http request option.
|
|
54066
54686
|
* @throws {RequiredError}
|
|
@@ -54068,7 +54688,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFactory: (configurat
|
|
|
54068
54688
|
getAccessRequestRecommendationsIgnoredItems(requestParameters: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>>;
|
|
54069
54689
|
/**
|
|
54070
54690
|
* This API returns a list of requested access request recommendations.
|
|
54071
|
-
* @summary List
|
|
54691
|
+
* @summary List Accepted Access Request Recommendations
|
|
54072
54692
|
* @param {IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest} requestParameters Request parameters.
|
|
54073
54693
|
* @param {*} [axiosOptions] Override http request option.
|
|
54074
54694
|
* @throws {RequiredError}
|
|
@@ -54076,7 +54696,7 @@ export declare const IAIAccessRequestRecommendationsV2024ApiFactory: (configurat
|
|
|
54076
54696
|
getAccessRequestRecommendationsRequestedItems(requestParameters: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoV2024>>;
|
|
54077
54697
|
/**
|
|
54078
54698
|
* This API returns the list of viewed access request recommendations.
|
|
54079
|
-
* @summary List
|
|
54699
|
+
* @summary List Viewed Access Request Recommendations
|
|
54080
54700
|
* @param {IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
54081
54701
|
* @param {*} [axiosOptions] Override http request option.
|
|
54082
54702
|
* @throws {RequiredError}
|
|
@@ -54392,7 +55012,7 @@ export interface IAIAccessRequestRecommendationsV2024ApiSetAccessRequestRecommen
|
|
|
54392
55012
|
export declare class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
54393
55013
|
/**
|
|
54394
55014
|
* This API ignores a recommended access request item. Once an item is ignored, it will be marked as ignored=true if it is still a recommended item. The consumer can decide to hide ignored recommendations.
|
|
54395
|
-
* @summary
|
|
55015
|
+
* @summary Ignore Access Request Recommendation
|
|
54396
55016
|
* @param {IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsIgnoredItemRequest} requestParameters Request parameters.
|
|
54397
55017
|
* @param {*} [axiosOptions] Override http request option.
|
|
54398
55018
|
* @throws {RequiredError}
|
|
@@ -54401,7 +55021,7 @@ export declare class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
54401
55021
|
addAccessRequestRecommendationsIgnoredItem(requestParameters: IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsIgnoredItemRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoV2024, any>>;
|
|
54402
55022
|
/**
|
|
54403
55023
|
* This API consumes a notification that a recommended access request item was requested. This API does not actually make the request, it is just a notification. This will help provide feedback in order to improve our recommendations.
|
|
54404
|
-
* @summary
|
|
55024
|
+
* @summary Accept Access Request Recommendation
|
|
54405
55025
|
* @param {IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsRequestedItemRequest} requestParameters Request parameters.
|
|
54406
55026
|
* @param {*} [axiosOptions] Override http request option.
|
|
54407
55027
|
* @throws {RequiredError}
|
|
@@ -54410,7 +55030,7 @@ export declare class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
54410
55030
|
addAccessRequestRecommendationsRequestedItem(requestParameters: IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsRequestedItemRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoV2024, any>>;
|
|
54411
55031
|
/**
|
|
54412
55032
|
* This API consumes a notification that a recommended access request item was viewed. Future recommendations with this item will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
|
|
54413
|
-
* @summary
|
|
55033
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
54414
55034
|
* @param {IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsViewedItemRequest} requestParameters Request parameters.
|
|
54415
55035
|
* @param {*} [axiosOptions] Override http request option.
|
|
54416
55036
|
* @throws {RequiredError}
|
|
@@ -54419,7 +55039,7 @@ export declare class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
54419
55039
|
addAccessRequestRecommendationsViewedItem(requestParameters: IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsViewedItemRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoV2024, any>>;
|
|
54420
55040
|
/**
|
|
54421
55041
|
* This API consumes a notification that a set of recommended access request item were viewed. Future recommendations with these items will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
|
|
54422
|
-
* @summary
|
|
55042
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
54423
55043
|
* @param {IAIAccessRequestRecommendationsV2024ApiAddAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
54424
55044
|
* @param {*} [axiosOptions] Override http request option.
|
|
54425
55045
|
* @throws {RequiredError}
|
|
@@ -54446,7 +55066,7 @@ export declare class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
54446
55066
|
getAccessRequestRecommendationsConfig(requestParameters?: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationConfigDtoV2024, any>>;
|
|
54447
55067
|
/**
|
|
54448
55068
|
* This API returns the list of ignored access request recommendations.
|
|
54449
|
-
* @summary List
|
|
55069
|
+
* @summary List Ignored Access Request Recommendations
|
|
54450
55070
|
* @param {IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest} requestParameters Request parameters.
|
|
54451
55071
|
* @param {*} [axiosOptions] Override http request option.
|
|
54452
55072
|
* @throws {RequiredError}
|
|
@@ -54455,7 +55075,7 @@ export declare class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
54455
55075
|
getAccessRequestRecommendationsIgnoredItems(requestParameters: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsIgnoredItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoV2024[], any>>;
|
|
54456
55076
|
/**
|
|
54457
55077
|
* This API returns a list of requested access request recommendations.
|
|
54458
|
-
* @summary List
|
|
55078
|
+
* @summary List Accepted Access Request Recommendations
|
|
54459
55079
|
* @param {IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest} requestParameters Request parameters.
|
|
54460
55080
|
* @param {*} [axiosOptions] Override http request option.
|
|
54461
55081
|
* @throws {RequiredError}
|
|
@@ -54464,7 +55084,7 @@ export declare class IAIAccessRequestRecommendationsV2024Api extends BaseAPI {
|
|
|
54464
55084
|
getAccessRequestRecommendationsRequestedItems(requestParameters: IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsRequestedItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoV2024[], any>>;
|
|
54465
55085
|
/**
|
|
54466
55086
|
* This API returns the list of viewed access request recommendations.
|
|
54467
|
-
* @summary List
|
|
55087
|
+
* @summary List Viewed Access Request Recommendations
|
|
54468
55088
|
* @param {IAIAccessRequestRecommendationsV2024ApiGetAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
54469
55089
|
* @param {*} [axiosOptions] Override http request option.
|
|
54470
55090
|
* @throws {RequiredError}
|
|
@@ -55539,7 +56159,7 @@ export type GetPeerGroupOutliersStrategyV2024 = typeof GetPeerGroupOutliersStrat
|
|
|
55539
56159
|
export declare const IAIRecommendationsV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
55540
56160
|
/**
|
|
55541
56161
|
* The getRecommendations API returns recommendations based on the requested object. The recommendations are invoked by IdentityIQ and IdentityNow plug-ins that retrieve recommendations based on the performed calculations.
|
|
55542
|
-
* @summary Returns
|
|
56162
|
+
* @summary Returns Recommendation Based on Object
|
|
55543
56163
|
* @param {RecommendationRequestDtoV2024} recommendationRequestDtoV2024
|
|
55544
56164
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55545
56165
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -55571,7 +56191,7 @@ export declare const IAIRecommendationsV2024ApiAxiosParamCreator: (configuration
|
|
|
55571
56191
|
export declare const IAIRecommendationsV2024ApiFp: (configuration?: Configuration) => {
|
|
55572
56192
|
/**
|
|
55573
56193
|
* The getRecommendations API returns recommendations based on the requested object. The recommendations are invoked by IdentityIQ and IdentityNow plug-ins that retrieve recommendations based on the performed calculations.
|
|
55574
|
-
* @summary Returns
|
|
56194
|
+
* @summary Returns Recommendation Based on Object
|
|
55575
56195
|
* @param {RecommendationRequestDtoV2024} recommendationRequestDtoV2024
|
|
55576
56196
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55577
56197
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -55603,7 +56223,7 @@ export declare const IAIRecommendationsV2024ApiFp: (configuration?: Configuratio
|
|
|
55603
56223
|
export declare const IAIRecommendationsV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
55604
56224
|
/**
|
|
55605
56225
|
* The getRecommendations API returns recommendations based on the requested object. The recommendations are invoked by IdentityIQ and IdentityNow plug-ins that retrieve recommendations based on the performed calculations.
|
|
55606
|
-
* @summary Returns
|
|
56226
|
+
* @summary Returns Recommendation Based on Object
|
|
55607
56227
|
* @param {IAIRecommendationsV2024ApiGetRecommendationsRequest} requestParameters Request parameters.
|
|
55608
56228
|
* @param {*} [axiosOptions] Override http request option.
|
|
55609
56229
|
* @throws {RequiredError}
|
|
@@ -55686,7 +56306,7 @@ export interface IAIRecommendationsV2024ApiUpdateRecommendationsConfigRequest {
|
|
|
55686
56306
|
export declare class IAIRecommendationsV2024Api extends BaseAPI {
|
|
55687
56307
|
/**
|
|
55688
56308
|
* The getRecommendations API returns recommendations based on the requested object. The recommendations are invoked by IdentityIQ and IdentityNow plug-ins that retrieve recommendations based on the performed calculations.
|
|
55689
|
-
* @summary Returns
|
|
56309
|
+
* @summary Returns Recommendation Based on Object
|
|
55690
56310
|
* @param {IAIRecommendationsV2024ApiGetRecommendationsRequest} requestParameters Request parameters.
|
|
55691
56311
|
* @param {*} [axiosOptions] Override http request option.
|
|
55692
56312
|
* @throws {RequiredError}
|
|
@@ -61227,7 +61847,7 @@ export declare const MachineAccountsV2024ApiAxiosParamCreator: (configuration?:
|
|
|
61227
61847
|
* @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.
|
|
61228
61848
|
* @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.
|
|
61229
61849
|
* @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.
|
|
61230
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **machineIdentity**: *eq, in, sw* **entitlements**: *eq* **accessType**: *eq, in, sw* **subType**: *eq, in, sw* **classificationMethod**: *eq, in, sw* **manuallyCorrelated**: *eq* **identity
|
|
61850
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **machineIdentity**: *eq, in, sw* **description**: *eq, in, sw* **ownerIdentity**: *eq, in, sw* **ownerIdentityId**: *eq, in, sw* **entitlements**: *eq* **accessType**: *eq, in, sw* **subType**: *eq, in, sw* **environment**: *eq, in, sw* **classificationMethod**: *eq, in, sw* **manuallyCorrelated**: *eq* **manuallyEdited**: *eq* **identity**: *eq, in, sw* **source**: *eq, in* **hasEntitlement**: *eq* **locked**: *eq* **connectorAttributes**: *eq*
|
|
61231
61851
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, created, modified, machineIdentity, identity.id, nativeIdentity, uuid, manuallyCorrelated, connectorAttributes, entitlements, identity.name, identity.type, source.id, source.name, source.type**
|
|
61232
61852
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
61233
61853
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61239,7 +61859,7 @@ export declare const MachineAccountsV2024ApiAxiosParamCreator: (configuration?:
|
|
|
61239
61859
|
* @summary Update a Machine Account
|
|
61240
61860
|
* @param {string} id Machine Account ID.
|
|
61241
61861
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
61242
|
-
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
61862
|
+
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * description * ownerIdentity * subType * accessType * environment * attributes * classificationMethod * manuallyEdited * nativeIdentity * uuid * source * manuallyCorrelated * enabled * locked * hasEntitlements * connectorAttributes
|
|
61243
61863
|
* @param {*} [axiosOptions] Override http request option.
|
|
61244
61864
|
* @throws {RequiredError}
|
|
61245
61865
|
*/
|
|
@@ -61265,7 +61885,7 @@ export declare const MachineAccountsV2024ApiFp: (configuration?: Configuration)
|
|
|
61265
61885
|
* @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.
|
|
61266
61886
|
* @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.
|
|
61267
61887
|
* @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.
|
|
61268
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **machineIdentity**: *eq, in, sw* **entitlements**: *eq* **accessType**: *eq, in, sw* **subType**: *eq, in, sw* **classificationMethod**: *eq, in, sw* **manuallyCorrelated**: *eq* **identity
|
|
61888
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **machineIdentity**: *eq, in, sw* **description**: *eq, in, sw* **ownerIdentity**: *eq, in, sw* **ownerIdentityId**: *eq, in, sw* **entitlements**: *eq* **accessType**: *eq, in, sw* **subType**: *eq, in, sw* **environment**: *eq, in, sw* **classificationMethod**: *eq, in, sw* **manuallyCorrelated**: *eq* **manuallyEdited**: *eq* **identity**: *eq, in, sw* **source**: *eq, in* **hasEntitlement**: *eq* **locked**: *eq* **connectorAttributes**: *eq*
|
|
61269
61889
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, created, modified, machineIdentity, identity.id, nativeIdentity, uuid, manuallyCorrelated, connectorAttributes, entitlements, identity.name, identity.type, source.id, source.name, source.type**
|
|
61270
61890
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
61271
61891
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61277,7 +61897,7 @@ export declare const MachineAccountsV2024ApiFp: (configuration?: Configuration)
|
|
|
61277
61897
|
* @summary Update a Machine Account
|
|
61278
61898
|
* @param {string} id Machine Account ID.
|
|
61279
61899
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
61280
|
-
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
61900
|
+
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * description * ownerIdentity * subType * accessType * environment * attributes * classificationMethod * manuallyEdited * nativeIdentity * uuid * source * manuallyCorrelated * enabled * locked * hasEntitlements * connectorAttributes
|
|
61281
61901
|
* @param {*} [axiosOptions] Override http request option.
|
|
61282
61902
|
* @throws {RequiredError}
|
|
61283
61903
|
*/
|
|
@@ -61357,7 +61977,7 @@ export interface MachineAccountsV2024ApiListMachineAccountsRequest {
|
|
|
61357
61977
|
*/
|
|
61358
61978
|
readonly count?: boolean;
|
|
61359
61979
|
/**
|
|
61360
|
-
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **machineIdentity**: *eq, in, sw* **entitlements**: *eq* **accessType**: *eq, in, sw* **subType**: *eq, in, sw* **classificationMethod**: *eq, in, sw* **manuallyCorrelated**: *eq* **identity
|
|
61980
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **machineIdentity**: *eq, in, sw* **description**: *eq, in, sw* **ownerIdentity**: *eq, in, sw* **ownerIdentityId**: *eq, in, sw* **entitlements**: *eq* **accessType**: *eq, in, sw* **subType**: *eq, in, sw* **environment**: *eq, in, sw* **classificationMethod**: *eq, in, sw* **manuallyCorrelated**: *eq* **manuallyEdited**: *eq* **identity**: *eq, in, sw* **source**: *eq, in* **hasEntitlement**: *eq* **locked**: *eq* **connectorAttributes**: *eq*
|
|
61361
61981
|
* @type {string}
|
|
61362
61982
|
* @memberof MachineAccountsV2024ApiListMachineAccounts
|
|
61363
61983
|
*/
|
|
@@ -61394,7 +62014,7 @@ export interface MachineAccountsV2024ApiUpdateMachineAccountRequest {
|
|
|
61394
62014
|
*/
|
|
61395
62015
|
readonly xSailPointExperimental: string;
|
|
61396
62016
|
/**
|
|
61397
|
-
* A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
62017
|
+
* A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * description * ownerIdentity * subType * accessType * environment * attributes * classificationMethod * manuallyEdited * nativeIdentity * uuid * source * manuallyCorrelated * enabled * locked * hasEntitlements * connectorAttributes
|
|
61398
62018
|
* @type {Array<object>}
|
|
61399
62019
|
* @memberof MachineAccountsV2024ApiUpdateMachineAccount
|
|
61400
62020
|
*/
|
|
@@ -61470,6 +62090,7 @@ export declare const MachineIdentitiesV2024ApiAxiosParamCreator: (configuration?
|
|
|
61470
62090
|
/**
|
|
61471
62091
|
* This API returns a list of machine identities.
|
|
61472
62092
|
* @summary List Machine Identities
|
|
62093
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **description**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
|
|
61473
62094
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name**
|
|
61474
62095
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
61475
62096
|
* @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.
|
|
@@ -61478,7 +62099,7 @@ export declare const MachineIdentitiesV2024ApiAxiosParamCreator: (configuration?
|
|
|
61478
62099
|
* @param {*} [axiosOptions] Override http request option.
|
|
61479
62100
|
* @throws {RequiredError}
|
|
61480
62101
|
*/
|
|
61481
|
-
listMachineIdentities: (sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62102
|
+
listMachineIdentities: (filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
61482
62103
|
/**
|
|
61483
62104
|
* Use this API to update machine identity details.
|
|
61484
62105
|
* @summary Update a Machine Identity
|
|
@@ -61525,6 +62146,7 @@ export declare const MachineIdentitiesV2024ApiFp: (configuration?: Configuration
|
|
|
61525
62146
|
/**
|
|
61526
62147
|
* This API returns a list of machine identities.
|
|
61527
62148
|
* @summary List Machine Identities
|
|
62149
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **description**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
|
|
61528
62150
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name**
|
|
61529
62151
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
61530
62152
|
* @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.
|
|
@@ -61533,7 +62155,7 @@ export declare const MachineIdentitiesV2024ApiFp: (configuration?: Configuration
|
|
|
61533
62155
|
* @param {*} [axiosOptions] Override http request option.
|
|
61534
62156
|
* @throws {RequiredError}
|
|
61535
62157
|
*/
|
|
61536
|
-
listMachineIdentities(sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MachineIdentityV2024>>>;
|
|
62158
|
+
listMachineIdentities(filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MachineIdentityV2024>>>;
|
|
61537
62159
|
/**
|
|
61538
62160
|
* Use this API to update machine identity details.
|
|
61539
62161
|
* @summary Update a Machine Identity
|
|
@@ -61654,6 +62276,12 @@ export interface MachineIdentitiesV2024ApiGetMachineIdentityRequest {
|
|
|
61654
62276
|
* @interface MachineIdentitiesV2024ApiListMachineIdentitiesRequest
|
|
61655
62277
|
*/
|
|
61656
62278
|
export interface MachineIdentitiesV2024ApiListMachineIdentitiesRequest {
|
|
62279
|
+
/**
|
|
62280
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **description**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
|
|
62281
|
+
* @type {string}
|
|
62282
|
+
* @memberof MachineIdentitiesV2024ApiListMachineIdentities
|
|
62283
|
+
*/
|
|
62284
|
+
readonly filters?: string;
|
|
61657
62285
|
/**
|
|
61658
62286
|
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name**
|
|
61659
62287
|
* @type {string}
|
|
@@ -62163,6 +62791,14 @@ export declare const ManagedClustersV2024ApiAxiosParamCreator: (configuration?:
|
|
|
62163
62791
|
* @throws {RequiredError}
|
|
62164
62792
|
*/
|
|
62165
62793
|
putClientLogConfiguration: (id: string, putClientLogConfigurationRequestV2024: PutClientLogConfigurationRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62794
|
+
/**
|
|
62795
|
+
* Trigger Manual Upgrade for Managed Cluster. AMS Security: API, Internal A token with SYSTEM_ADMINISTRATOR authority is required to call this API.
|
|
62796
|
+
* @summary Trigger Manual Upgrade for Managed Cluster
|
|
62797
|
+
* @param {string} id ID of managed cluster to trigger manual upgrade.
|
|
62798
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
62799
|
+
* @throws {RequiredError}
|
|
62800
|
+
*/
|
|
62801
|
+
update: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62166
62802
|
/**
|
|
62167
62803
|
* Update an existing managed cluster.
|
|
62168
62804
|
* @summary Update Managed Cluster
|
|
@@ -62231,6 +62867,14 @@ export declare const ManagedClustersV2024ApiFp: (configuration?: Configuration)
|
|
|
62231
62867
|
* @throws {RequiredError}
|
|
62232
62868
|
*/
|
|
62233
62869
|
putClientLogConfiguration(id: string, putClientLogConfigurationRequestV2024: PutClientLogConfigurationRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClientLogConfigurationV2024>>;
|
|
62870
|
+
/**
|
|
62871
|
+
* Trigger Manual Upgrade for Managed Cluster. AMS Security: API, Internal A token with SYSTEM_ADMINISTRATOR authority is required to call this API.
|
|
62872
|
+
* @summary Trigger Manual Upgrade for Managed Cluster
|
|
62873
|
+
* @param {string} id ID of managed cluster to trigger manual upgrade.
|
|
62874
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
62875
|
+
* @throws {RequiredError}
|
|
62876
|
+
*/
|
|
62877
|
+
update(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterManualUpgradeV2024>>;
|
|
62234
62878
|
/**
|
|
62235
62879
|
* Update an existing managed cluster.
|
|
62236
62880
|
* @summary Update Managed Cluster
|
|
@@ -62294,6 +62938,14 @@ export declare const ManagedClustersV2024ApiFactory: (configuration?: Configurat
|
|
|
62294
62938
|
* @throws {RequiredError}
|
|
62295
62939
|
*/
|
|
62296
62940
|
putClientLogConfiguration(requestParameters: ManagedClustersV2024ApiPutClientLogConfigurationRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ClientLogConfigurationV2024>;
|
|
62941
|
+
/**
|
|
62942
|
+
* Trigger Manual Upgrade for Managed Cluster. AMS Security: API, Internal A token with SYSTEM_ADMINISTRATOR authority is required to call this API.
|
|
62943
|
+
* @summary Trigger Manual Upgrade for Managed Cluster
|
|
62944
|
+
* @param {ManagedClustersV2024ApiUpdateRequest} requestParameters Request parameters.
|
|
62945
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
62946
|
+
* @throws {RequiredError}
|
|
62947
|
+
*/
|
|
62948
|
+
update(requestParameters: ManagedClustersV2024ApiUpdateRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ClusterManualUpgradeV2024>;
|
|
62297
62949
|
/**
|
|
62298
62950
|
* Update an existing managed cluster.
|
|
62299
62951
|
* @summary Update Managed Cluster
|
|
@@ -62411,6 +63063,19 @@ export interface ManagedClustersV2024ApiPutClientLogConfigurationRequest {
|
|
|
62411
63063
|
*/
|
|
62412
63064
|
readonly putClientLogConfigurationRequestV2024: PutClientLogConfigurationRequestV2024;
|
|
62413
63065
|
}
|
|
63066
|
+
/**
|
|
63067
|
+
* Request parameters for update operation in ManagedClustersV2024Api.
|
|
63068
|
+
* @export
|
|
63069
|
+
* @interface ManagedClustersV2024ApiUpdateRequest
|
|
63070
|
+
*/
|
|
63071
|
+
export interface ManagedClustersV2024ApiUpdateRequest {
|
|
63072
|
+
/**
|
|
63073
|
+
* ID of managed cluster to trigger manual upgrade.
|
|
63074
|
+
* @type {string}
|
|
63075
|
+
* @memberof ManagedClustersV2024ApiUpdate
|
|
63076
|
+
*/
|
|
63077
|
+
readonly id: string;
|
|
63078
|
+
}
|
|
62414
63079
|
/**
|
|
62415
63080
|
* Request parameters for updateManagedCluster operation in ManagedClustersV2024Api.
|
|
62416
63081
|
* @export
|
|
@@ -62491,6 +63156,15 @@ export declare class ManagedClustersV2024Api extends BaseAPI {
|
|
|
62491
63156
|
* @memberof ManagedClustersV2024Api
|
|
62492
63157
|
*/
|
|
62493
63158
|
putClientLogConfiguration(requestParameters: ManagedClustersV2024ApiPutClientLogConfigurationRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClientLogConfigurationV2024, any>>;
|
|
63159
|
+
/**
|
|
63160
|
+
* Trigger Manual Upgrade for Managed Cluster. AMS Security: API, Internal A token with SYSTEM_ADMINISTRATOR authority is required to call this API.
|
|
63161
|
+
* @summary Trigger Manual Upgrade for Managed Cluster
|
|
63162
|
+
* @param {ManagedClustersV2024ApiUpdateRequest} requestParameters Request parameters.
|
|
63163
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
63164
|
+
* @throws {RequiredError}
|
|
63165
|
+
* @memberof ManagedClustersV2024Api
|
|
63166
|
+
*/
|
|
63167
|
+
update(requestParameters: ManagedClustersV2024ApiUpdateRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClusterManualUpgradeV2024, any>>;
|
|
62494
63168
|
/**
|
|
62495
63169
|
* Update an existing managed cluster.
|
|
62496
63170
|
* @summary Update Managed Cluster
|
|
@@ -67304,12 +67978,12 @@ export type GetReportFileFormatV2024 = typeof GetReportFileFormatV2024[keyof typ
|
|
|
67304
67978
|
*/
|
|
67305
67979
|
export declare const RequestableObjectsV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
67306
67980
|
/**
|
|
67307
|
-
*
|
|
67981
|
+
* Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v2024/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. Any authenticated token can call this endpoint to see their requestable access items.
|
|
67308
67982
|
* @summary Requestable Objects List
|
|
67309
67983
|
* @param {string} [identityId] If present, the value returns only requestable objects for the specified identity. * Admin users can call this with any identity ID value. * Non-admin users can only specify *me* or pass their own identity ID value. * If absent, returns a list of all requestable objects for the tenant. Only admin users can make such a call. In this case, the available, pending, assigned accesses will not be annotated in the result.
|
|
67310
|
-
* @param {Array<RequestableObjectTypeV2024>} [types] Filters the results to the specified type/types, where each type is one of ROLE or ACCESS_PROFILE
|
|
67311
|
-
* @param {string} [term]
|
|
67312
|
-
* @param {Array<RequestableObjectRequestStatusV2024>} [statuses] Filters the result to the specified status/statuses, where each status is one of AVAILABLE
|
|
67984
|
+
* @param {Array<RequestableObjectTypeV2024>} [types] Filters the results to the specified type/types, where each type is one of `ROLE` or `ACCESS_PROFILE`. If absent, all types are returned. SailPoint may add support for additional types in the future without notice.
|
|
67985
|
+
* @param {string} [term] Allows searching requestable access items with a partial match on the name or description. If `term` is provided, then the API will ignore the `filter` query parameter.
|
|
67986
|
+
* @param {Array<RequestableObjectRequestStatusV2024>} [statuses] Filters the result to the specified status/statuses, where each status is one of `AVAILABLE`, `ASSIGNED`, or `PENDING`. Specifying this parameter without also specifying an `identity-id` parameter results in an error. SailPoint may add additional statuses in the future without notice.
|
|
67313
67987
|
* @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.
|
|
67314
67988
|
* @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.
|
|
67315
67989
|
* @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.
|
|
@@ -67326,12 +68000,12 @@ export declare const RequestableObjectsV2024ApiAxiosParamCreator: (configuration
|
|
|
67326
68000
|
*/
|
|
67327
68001
|
export declare const RequestableObjectsV2024ApiFp: (configuration?: Configuration) => {
|
|
67328
68002
|
/**
|
|
67329
|
-
*
|
|
68003
|
+
* Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v2024/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. Any authenticated token can call this endpoint to see their requestable access items.
|
|
67330
68004
|
* @summary Requestable Objects List
|
|
67331
68005
|
* @param {string} [identityId] If present, the value returns only requestable objects for the specified identity. * Admin users can call this with any identity ID value. * Non-admin users can only specify *me* or pass their own identity ID value. * If absent, returns a list of all requestable objects for the tenant. Only admin users can make such a call. In this case, the available, pending, assigned accesses will not be annotated in the result.
|
|
67332
|
-
* @param {Array<RequestableObjectTypeV2024>} [types] Filters the results to the specified type/types, where each type is one of ROLE or ACCESS_PROFILE
|
|
67333
|
-
* @param {string} [term]
|
|
67334
|
-
* @param {Array<RequestableObjectRequestStatusV2024>} [statuses] Filters the result to the specified status/statuses, where each status is one of AVAILABLE
|
|
68006
|
+
* @param {Array<RequestableObjectTypeV2024>} [types] Filters the results to the specified type/types, where each type is one of `ROLE` or `ACCESS_PROFILE`. If absent, all types are returned. SailPoint may add support for additional types in the future without notice.
|
|
68007
|
+
* @param {string} [term] Allows searching requestable access items with a partial match on the name or description. If `term` is provided, then the API will ignore the `filter` query parameter.
|
|
68008
|
+
* @param {Array<RequestableObjectRequestStatusV2024>} [statuses] Filters the result to the specified status/statuses, where each status is one of `AVAILABLE`, `ASSIGNED`, or `PENDING`. Specifying this parameter without also specifying an `identity-id` parameter results in an error. SailPoint may add additional statuses in the future without notice.
|
|
67335
68009
|
* @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.
|
|
67336
68010
|
* @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.
|
|
67337
68011
|
* @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.
|
|
@@ -67348,7 +68022,7 @@ export declare const RequestableObjectsV2024ApiFp: (configuration?: Configuratio
|
|
|
67348
68022
|
*/
|
|
67349
68023
|
export declare const RequestableObjectsV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
67350
68024
|
/**
|
|
67351
|
-
*
|
|
68025
|
+
* Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v2024/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. Any authenticated token can call this endpoint to see their requestable access items.
|
|
67352
68026
|
* @summary Requestable Objects List
|
|
67353
68027
|
* @param {RequestableObjectsV2024ApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
67354
68028
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -67369,19 +68043,19 @@ export interface RequestableObjectsV2024ApiListRequestableObjectsRequest {
|
|
|
67369
68043
|
*/
|
|
67370
68044
|
readonly identityId?: string;
|
|
67371
68045
|
/**
|
|
67372
|
-
* Filters the results to the specified type/types, where each type is one of ROLE or ACCESS_PROFILE
|
|
68046
|
+
* Filters the results to the specified type/types, where each type is one of `ROLE` or `ACCESS_PROFILE`. If absent, all types are returned. SailPoint may add support for additional types in the future without notice.
|
|
67373
68047
|
* @type {Array<RequestableObjectTypeV2024>}
|
|
67374
68048
|
* @memberof RequestableObjectsV2024ApiListRequestableObjects
|
|
67375
68049
|
*/
|
|
67376
68050
|
readonly types?: Array<RequestableObjectTypeV2024>;
|
|
67377
68051
|
/**
|
|
67378
|
-
*
|
|
68052
|
+
* Allows searching requestable access items with a partial match on the name or description. If `term` is provided, then the API will ignore the `filter` query parameter.
|
|
67379
68053
|
* @type {string}
|
|
67380
68054
|
* @memberof RequestableObjectsV2024ApiListRequestableObjects
|
|
67381
68055
|
*/
|
|
67382
68056
|
readonly term?: string;
|
|
67383
68057
|
/**
|
|
67384
|
-
* Filters the result to the specified status/statuses, where each status is one of AVAILABLE
|
|
68058
|
+
* Filters the result to the specified status/statuses, where each status is one of `AVAILABLE`, `ASSIGNED`, or `PENDING`. Specifying this parameter without also specifying an `identity-id` parameter results in an error. SailPoint may add additional statuses in the future without notice.
|
|
67385
68059
|
* @type {Array<RequestableObjectRequestStatusV2024>}
|
|
67386
68060
|
* @memberof RequestableObjectsV2024ApiListRequestableObjects
|
|
67387
68061
|
*/
|
|
@@ -67425,7 +68099,7 @@ export interface RequestableObjectsV2024ApiListRequestableObjectsRequest {
|
|
|
67425
68099
|
*/
|
|
67426
68100
|
export declare class RequestableObjectsV2024Api extends BaseAPI {
|
|
67427
68101
|
/**
|
|
67428
|
-
*
|
|
68102
|
+
* Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v2024/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. Any authenticated token can call this endpoint to see their requestable access items.
|
|
67429
68103
|
* @summary Requestable Objects List
|
|
67430
68104
|
* @param {RequestableObjectsV2024ApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
67431
68105
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -68142,10 +68816,10 @@ export declare const RolesV2024ApiAxiosParamCreator: (configuration?: Configurat
|
|
|
68142
68816
|
*/
|
|
68143
68817
|
getRoleAssignedIdentities: (id: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
68144
68818
|
/**
|
|
68145
|
-
*
|
|
68146
|
-
* @summary List
|
|
68147
|
-
* @param {string} id
|
|
68148
|
-
* @param {number} [limit]
|
|
68819
|
+
* Get a list of entitlements associated with a specified role.
|
|
68820
|
+
* @summary List Role\'s Entitlements
|
|
68821
|
+
* @param {string} id Containing role\'s ID.
|
|
68822
|
+
* @param {number} [limit] Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
68149
68823
|
* @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.
|
|
68150
68824
|
* @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.
|
|
68151
68825
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **attribute**: *eq, sw* **value**: *eq, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **source.id**: *eq, in*
|
|
@@ -68305,10 +68979,10 @@ export declare const RolesV2024ApiFp: (configuration?: Configuration) => {
|
|
|
68305
68979
|
*/
|
|
68306
68980
|
getRoleAssignedIdentities(id: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RoleIdentityV2024>>>;
|
|
68307
68981
|
/**
|
|
68308
|
-
*
|
|
68309
|
-
* @summary List
|
|
68310
|
-
* @param {string} id
|
|
68311
|
-
* @param {number} [limit]
|
|
68982
|
+
* Get a list of entitlements associated with a specified role.
|
|
68983
|
+
* @summary List Role\'s Entitlements
|
|
68984
|
+
* @param {string} id Containing role\'s ID.
|
|
68985
|
+
* @param {number} [limit] Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
68312
68986
|
* @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.
|
|
68313
68987
|
* @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.
|
|
68314
68988
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, sw* **attribute**: *eq, sw* **value**: *eq, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **source.id**: *eq, in*
|
|
@@ -68461,8 +69135,8 @@ export declare const RolesV2024ApiFactory: (configuration?: Configuration, baseP
|
|
|
68461
69135
|
*/
|
|
68462
69136
|
getRoleAssignedIdentities(requestParameters: RolesV2024ApiGetRoleAssignedIdentitiesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<RoleIdentityV2024>>;
|
|
68463
69137
|
/**
|
|
68464
|
-
*
|
|
68465
|
-
* @summary List
|
|
69138
|
+
* Get a list of entitlements associated with a specified role.
|
|
69139
|
+
* @summary List Role\'s Entitlements
|
|
68466
69140
|
* @param {RolesV2024ApiGetRoleEntitlementsRequest} requestParameters Request parameters.
|
|
68467
69141
|
* @param {*} [axiosOptions] Override http request option.
|
|
68468
69142
|
* @throws {RequiredError}
|
|
@@ -68665,13 +69339,13 @@ export interface RolesV2024ApiGetRoleAssignedIdentitiesRequest {
|
|
|
68665
69339
|
*/
|
|
68666
69340
|
export interface RolesV2024ApiGetRoleEntitlementsRequest {
|
|
68667
69341
|
/**
|
|
68668
|
-
*
|
|
69342
|
+
* Containing role\'s ID.
|
|
68669
69343
|
* @type {string}
|
|
68670
69344
|
* @memberof RolesV2024ApiGetRoleEntitlements
|
|
68671
69345
|
*/
|
|
68672
69346
|
readonly id: string;
|
|
68673
69347
|
/**
|
|
68674
|
-
*
|
|
69348
|
+
* Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
68675
69349
|
* @type {number}
|
|
68676
69350
|
* @memberof RolesV2024ApiGetRoleEntitlements
|
|
68677
69351
|
*/
|
|
@@ -68979,8 +69653,8 @@ export declare class RolesV2024Api extends BaseAPI {
|
|
|
68979
69653
|
*/
|
|
68980
69654
|
getRoleAssignedIdentities(requestParameters: RolesV2024ApiGetRoleAssignedIdentitiesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleIdentityV2024[], any>>;
|
|
68981
69655
|
/**
|
|
68982
|
-
*
|
|
68983
|
-
* @summary List
|
|
69656
|
+
* Get a list of entitlements associated with a specified role.
|
|
69657
|
+
* @summary List Role\'s Entitlements
|
|
68984
69658
|
* @param {RolesV2024ApiGetRoleEntitlementsRequest} requestParameters Request parameters.
|
|
68985
69659
|
* @param {*} [axiosOptions] Override http request option.
|
|
68986
69660
|
* @throws {RequiredError}
|
|
@@ -71767,7 +72441,7 @@ export type SearchGetIndexV2024 = typeof SearchGetIndexV2024[keyof typeof Search
|
|
|
71767
72441
|
*/
|
|
71768
72442
|
export declare const SearchAttributeConfigurationV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
71769
72443
|
/**
|
|
71770
|
-
* Create and configure extended search attributes.
|
|
72444
|
+
* Create and configure extended search attributes. This API accepts an attribute name, an attribute display name and a list of name/value pair associates of application IDs to attribute names. It will then validate the inputs and configure/create the attribute promotion configuration in the Link ObjectConfig. >**Note: Give searchable attributes unique names. Do not give them the same names used for account attributes or source attributes. Also, do not give them the same names present in account schema for a current or future source, regardless of whether that source is included in the searchable attributes\' `applicationAttributes`.**
|
|
71771
72445
|
* @summary Create Extended Search Attributes
|
|
71772
72446
|
* @param {SearchAttributeConfigV2024} searchAttributeConfigV2024
|
|
71773
72447
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
@@ -71785,13 +72459,15 @@ export declare const SearchAttributeConfigurationV2024ApiAxiosParamCreator: (con
|
|
|
71785
72459
|
*/
|
|
71786
72460
|
deleteSearchAttributeConfig: (name: string, xSailPointExperimental: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
71787
72461
|
/**
|
|
71788
|
-
* Get a list of attribute/application
|
|
72462
|
+
* Get a list of attribute/application attributes currently configured in Identity Security Cloud (ISC).
|
|
71789
72463
|
* @summary List Extended Search Attributes
|
|
71790
72464
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
72465
|
+
* @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.
|
|
72466
|
+
* @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.
|
|
71791
72467
|
* @param {*} [axiosOptions] Override http request option.
|
|
71792
72468
|
* @throws {RequiredError}
|
|
71793
72469
|
*/
|
|
71794
|
-
getSearchAttributeConfig: (xSailPointExperimental: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
72470
|
+
getSearchAttributeConfig: (xSailPointExperimental: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
71795
72471
|
/**
|
|
71796
72472
|
* Get an extended attribute configuration by name.
|
|
71797
72473
|
* @summary Get Extended Search Attribute
|
|
@@ -71818,7 +72494,7 @@ export declare const SearchAttributeConfigurationV2024ApiAxiosParamCreator: (con
|
|
|
71818
72494
|
*/
|
|
71819
72495
|
export declare const SearchAttributeConfigurationV2024ApiFp: (configuration?: Configuration) => {
|
|
71820
72496
|
/**
|
|
71821
|
-
* Create and configure extended search attributes.
|
|
72497
|
+
* Create and configure extended search attributes. This API accepts an attribute name, an attribute display name and a list of name/value pair associates of application IDs to attribute names. It will then validate the inputs and configure/create the attribute promotion configuration in the Link ObjectConfig. >**Note: Give searchable attributes unique names. Do not give them the same names used for account attributes or source attributes. Also, do not give them the same names present in account schema for a current or future source, regardless of whether that source is included in the searchable attributes\' `applicationAttributes`.**
|
|
71822
72498
|
* @summary Create Extended Search Attributes
|
|
71823
72499
|
* @param {SearchAttributeConfigV2024} searchAttributeConfigV2024
|
|
71824
72500
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
@@ -71836,13 +72512,15 @@ export declare const SearchAttributeConfigurationV2024ApiFp: (configuration?: Co
|
|
|
71836
72512
|
*/
|
|
71837
72513
|
deleteSearchAttributeConfig(name: string, xSailPointExperimental: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
71838
72514
|
/**
|
|
71839
|
-
* Get a list of attribute/application
|
|
72515
|
+
* Get a list of attribute/application attributes currently configured in Identity Security Cloud (ISC).
|
|
71840
72516
|
* @summary List Extended Search Attributes
|
|
71841
72517
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
72518
|
+
* @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.
|
|
72519
|
+
* @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.
|
|
71842
72520
|
* @param {*} [axiosOptions] Override http request option.
|
|
71843
72521
|
* @throws {RequiredError}
|
|
71844
72522
|
*/
|
|
71845
|
-
getSearchAttributeConfig(xSailPointExperimental: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SearchAttributeConfigV2024>>>;
|
|
72523
|
+
getSearchAttributeConfig(xSailPointExperimental: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SearchAttributeConfigV2024>>>;
|
|
71846
72524
|
/**
|
|
71847
72525
|
* Get an extended attribute configuration by name.
|
|
71848
72526
|
* @summary Get Extended Search Attribute
|
|
@@ -71869,7 +72547,7 @@ export declare const SearchAttributeConfigurationV2024ApiFp: (configuration?: Co
|
|
|
71869
72547
|
*/
|
|
71870
72548
|
export declare const SearchAttributeConfigurationV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
71871
72549
|
/**
|
|
71872
|
-
* Create and configure extended search attributes.
|
|
72550
|
+
* Create and configure extended search attributes. This API accepts an attribute name, an attribute display name and a list of name/value pair associates of application IDs to attribute names. It will then validate the inputs and configure/create the attribute promotion configuration in the Link ObjectConfig. >**Note: Give searchable attributes unique names. Do not give them the same names used for account attributes or source attributes. Also, do not give them the same names present in account schema for a current or future source, regardless of whether that source is included in the searchable attributes\' `applicationAttributes`.**
|
|
71873
72551
|
* @summary Create Extended Search Attributes
|
|
71874
72552
|
* @param {SearchAttributeConfigurationV2024ApiCreateSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
71875
72553
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -71885,7 +72563,7 @@ export declare const SearchAttributeConfigurationV2024ApiFactory: (configuration
|
|
|
71885
72563
|
*/
|
|
71886
72564
|
deleteSearchAttributeConfig(requestParameters: SearchAttributeConfigurationV2024ApiDeleteSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
71887
72565
|
/**
|
|
71888
|
-
* Get a list of attribute/application
|
|
72566
|
+
* Get a list of attribute/application attributes currently configured in Identity Security Cloud (ISC).
|
|
71889
72567
|
* @summary List Extended Search Attributes
|
|
71890
72568
|
* @param {SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
71891
72569
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -71959,6 +72637,18 @@ export interface SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigReq
|
|
|
71959
72637
|
* @memberof SearchAttributeConfigurationV2024ApiGetSearchAttributeConfig
|
|
71960
72638
|
*/
|
|
71961
72639
|
readonly xSailPointExperimental: string;
|
|
72640
|
+
/**
|
|
72641
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
72642
|
+
* @type {number}
|
|
72643
|
+
* @memberof SearchAttributeConfigurationV2024ApiGetSearchAttributeConfig
|
|
72644
|
+
*/
|
|
72645
|
+
readonly limit?: number;
|
|
72646
|
+
/**
|
|
72647
|
+
* 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.
|
|
72648
|
+
* @type {number}
|
|
72649
|
+
* @memberof SearchAttributeConfigurationV2024ApiGetSearchAttributeConfig
|
|
72650
|
+
*/
|
|
72651
|
+
readonly offset?: number;
|
|
71962
72652
|
}
|
|
71963
72653
|
/**
|
|
71964
72654
|
* Request parameters for getSingleSearchAttributeConfig operation in SearchAttributeConfigurationV2024Api.
|
|
@@ -72012,7 +72702,7 @@ export interface SearchAttributeConfigurationV2024ApiPatchSearchAttributeConfigR
|
|
|
72012
72702
|
*/
|
|
72013
72703
|
export declare class SearchAttributeConfigurationV2024Api extends BaseAPI {
|
|
72014
72704
|
/**
|
|
72015
|
-
* Create and configure extended search attributes.
|
|
72705
|
+
* Create and configure extended search attributes. This API accepts an attribute name, an attribute display name and a list of name/value pair associates of application IDs to attribute names. It will then validate the inputs and configure/create the attribute promotion configuration in the Link ObjectConfig. >**Note: Give searchable attributes unique names. Do not give them the same names used for account attributes or source attributes. Also, do not give them the same names present in account schema for a current or future source, regardless of whether that source is included in the searchable attributes\' `applicationAttributes`.**
|
|
72016
72706
|
* @summary Create Extended Search Attributes
|
|
72017
72707
|
* @param {SearchAttributeConfigurationV2024ApiCreateSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
72018
72708
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -72030,7 +72720,7 @@ export declare class SearchAttributeConfigurationV2024Api extends BaseAPI {
|
|
|
72030
72720
|
*/
|
|
72031
72721
|
deleteSearchAttributeConfig(requestParameters: SearchAttributeConfigurationV2024ApiDeleteSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
72032
72722
|
/**
|
|
72033
|
-
* Get a list of attribute/application
|
|
72723
|
+
* Get a list of attribute/application attributes currently configured in Identity Security Cloud (ISC).
|
|
72034
72724
|
* @summary List Extended Search Attributes
|
|
72035
72725
|
* @param {SearchAttributeConfigurationV2024ApiGetSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
72036
72726
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -73151,6 +73841,14 @@ export declare const SourcesV2024ApiAxiosParamCreator: (configuration?: Configur
|
|
|
73151
73841
|
* @throws {RequiredError}
|
|
73152
73842
|
*/
|
|
73153
73843
|
getSourceConfig: (id: string, locale?: GetSourceConfigLocaleV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
73844
|
+
/**
|
|
73845
|
+
* Use this API to get all dependent Profiles, Attributes, Applications and Custom Transforms for a source by a specified ID in Identity Security Cloud (ISC).
|
|
73846
|
+
* @summary Get Source Connections by ID
|
|
73847
|
+
* @param {string} sourceId Source ID.
|
|
73848
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
73849
|
+
* @throws {RequiredError}
|
|
73850
|
+
*/
|
|
73851
|
+
getSourceConnections: (sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
73154
73852
|
/**
|
|
73155
73853
|
* 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.
|
|
73156
73854
|
* @summary Get Source Entitlement Request Configuration
|
|
@@ -73177,7 +73875,7 @@ export declare const SourcesV2024ApiAxiosParamCreator: (configuration?: Configur
|
|
|
73177
73875
|
*/
|
|
73178
73876
|
getSourceSchedule: (sourceId: string, scheduleType: GetSourceScheduleScheduleTypeV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
73179
73877
|
/**
|
|
73180
|
-
* Use this API to list the schedules that exist on the specified source in Identity Security Cloud (ISC).
|
|
73878
|
+
* Use this API to list the schedules that exist on the specified source in Identity Security Cloud (ISC). :::info This endpoint uses a **cron expression** to schedule a task, following standard **cron job syntax**. For example, `0 0 12 1/1 * ? *` runs the task **daily at 12:00 PM**. **Days of the week are represented as 1-7 (Sunday-Saturday).** :::
|
|
73181
73879
|
* @summary List Schedules on Source
|
|
73182
73880
|
* @param {string} sourceId Source ID.
|
|
73183
73881
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -73609,6 +74307,14 @@ export declare const SourcesV2024ApiFp: (configuration?: Configuration) => {
|
|
|
73609
74307
|
* @throws {RequiredError}
|
|
73610
74308
|
*/
|
|
73611
74309
|
getSourceConfig(id: string, locale?: GetSourceConfigLocaleV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConnectorDetailV2024>>;
|
|
74310
|
+
/**
|
|
74311
|
+
* Use this API to get all dependent Profiles, Attributes, Applications and Custom Transforms for a source by a specified ID in Identity Security Cloud (ISC).
|
|
74312
|
+
* @summary Get Source Connections by ID
|
|
74313
|
+
* @param {string} sourceId Source ID.
|
|
74314
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
74315
|
+
* @throws {RequiredError}
|
|
74316
|
+
*/
|
|
74317
|
+
getSourceConnections(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceConnectionsDtoV2024>>;
|
|
73612
74318
|
/**
|
|
73613
74319
|
* 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.
|
|
73614
74320
|
* @summary Get Source Entitlement Request Configuration
|
|
@@ -73635,7 +74341,7 @@ export declare const SourcesV2024ApiFp: (configuration?: Configuration) => {
|
|
|
73635
74341
|
*/
|
|
73636
74342
|
getSourceSchedule(sourceId: string, scheduleType: GetSourceScheduleScheduleTypeV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Schedule1V2024>>;
|
|
73637
74343
|
/**
|
|
73638
|
-
* Use this API to list the schedules that exist on the specified source in Identity Security Cloud (ISC).
|
|
74344
|
+
* Use this API to list the schedules that exist on the specified source in Identity Security Cloud (ISC). :::info This endpoint uses a **cron expression** to schedule a task, following standard **cron job syntax**. For example, `0 0 12 1/1 * ? *` runs the task **daily at 12:00 PM**. **Days of the week are represented as 1-7 (Sunday-Saturday).** :::
|
|
73639
74345
|
* @summary List Schedules on Source
|
|
73640
74346
|
* @param {string} sourceId Source ID.
|
|
73641
74347
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -74052,6 +74758,14 @@ export declare const SourcesV2024ApiFactory: (configuration?: Configuration, bas
|
|
|
74052
74758
|
* @throws {RequiredError}
|
|
74053
74759
|
*/
|
|
74054
74760
|
getSourceConfig(requestParameters: SourcesV2024ApiGetSourceConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ConnectorDetailV2024>;
|
|
74761
|
+
/**
|
|
74762
|
+
* Use this API to get all dependent Profiles, Attributes, Applications and Custom Transforms for a source by a specified ID in Identity Security Cloud (ISC).
|
|
74763
|
+
* @summary Get Source Connections by ID
|
|
74764
|
+
* @param {SourcesV2024ApiGetSourceConnectionsRequest} requestParameters Request parameters.
|
|
74765
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
74766
|
+
* @throws {RequiredError}
|
|
74767
|
+
*/
|
|
74768
|
+
getSourceConnections(requestParameters: SourcesV2024ApiGetSourceConnectionsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceConnectionsDtoV2024>;
|
|
74055
74769
|
/**
|
|
74056
74770
|
* 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.
|
|
74057
74771
|
* @summary Get Source Entitlement Request Configuration
|
|
@@ -74077,7 +74791,7 @@ export declare const SourcesV2024ApiFactory: (configuration?: Configuration, bas
|
|
|
74077
74791
|
*/
|
|
74078
74792
|
getSourceSchedule(requestParameters: SourcesV2024ApiGetSourceScheduleRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Schedule1V2024>;
|
|
74079
74793
|
/**
|
|
74080
|
-
* Use this API to list the schedules that exist on the specified source in Identity Security Cloud (ISC).
|
|
74794
|
+
* Use this API to list the schedules that exist on the specified source in Identity Security Cloud (ISC). :::info This endpoint uses a **cron expression** to schedule a task, following standard **cron job syntax**. For example, `0 0 12 1/1 * ? *` runs the task **daily at 12:00 PM**. **Days of the week are represented as 1-7 (Sunday-Saturday).** :::
|
|
74081
74795
|
* @summary List Schedules on Source
|
|
74082
74796
|
* @param {SourcesV2024ApiGetSourceSchedulesRequest} requestParameters Request parameters.
|
|
74083
74797
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -74625,6 +75339,19 @@ export interface SourcesV2024ApiGetSourceConfigRequest {
|
|
|
74625
75339
|
*/
|
|
74626
75340
|
readonly xSailPointExperimental?: string;
|
|
74627
75341
|
}
|
|
75342
|
+
/**
|
|
75343
|
+
* Request parameters for getSourceConnections operation in SourcesV2024Api.
|
|
75344
|
+
* @export
|
|
75345
|
+
* @interface SourcesV2024ApiGetSourceConnectionsRequest
|
|
75346
|
+
*/
|
|
75347
|
+
export interface SourcesV2024ApiGetSourceConnectionsRequest {
|
|
75348
|
+
/**
|
|
75349
|
+
* Source ID.
|
|
75350
|
+
* @type {string}
|
|
75351
|
+
* @memberof SourcesV2024ApiGetSourceConnections
|
|
75352
|
+
*/
|
|
75353
|
+
readonly sourceId: string;
|
|
75354
|
+
}
|
|
74628
75355
|
/**
|
|
74629
75356
|
* Request parameters for getSourceEntitlementRequestConfig operation in SourcesV2024Api.
|
|
74630
75357
|
* @export
|
|
@@ -75467,6 +76194,15 @@ export declare class SourcesV2024Api extends BaseAPI {
|
|
|
75467
76194
|
* @memberof SourcesV2024Api
|
|
75468
76195
|
*/
|
|
75469
76196
|
getSourceConfig(requestParameters: SourcesV2024ApiGetSourceConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectorDetailV2024, any>>;
|
|
76197
|
+
/**
|
|
76198
|
+
* Use this API to get all dependent Profiles, Attributes, Applications and Custom Transforms for a source by a specified ID in Identity Security Cloud (ISC).
|
|
76199
|
+
* @summary Get Source Connections by ID
|
|
76200
|
+
* @param {SourcesV2024ApiGetSourceConnectionsRequest} requestParameters Request parameters.
|
|
76201
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
76202
|
+
* @throws {RequiredError}
|
|
76203
|
+
* @memberof SourcesV2024Api
|
|
76204
|
+
*/
|
|
76205
|
+
getSourceConnections(requestParameters: SourcesV2024ApiGetSourceConnectionsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceConnectionsDtoV2024, any>>;
|
|
75470
76206
|
/**
|
|
75471
76207
|
* 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.
|
|
75472
76208
|
* @summary Get Source Entitlement Request Configuration
|
|
@@ -75495,7 +76231,7 @@ export declare class SourcesV2024Api extends BaseAPI {
|
|
|
75495
76231
|
*/
|
|
75496
76232
|
getSourceSchedule(requestParameters: SourcesV2024ApiGetSourceScheduleRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Schedule1V2024, any>>;
|
|
75497
76233
|
/**
|
|
75498
|
-
* Use this API to list the schedules that exist on the specified source in Identity Security Cloud (ISC).
|
|
76234
|
+
* Use this API to list the schedules that exist on the specified source in Identity Security Cloud (ISC). :::info This endpoint uses a **cron expression** to schedule a task, following standard **cron job syntax**. For example, `0 0 12 1/1 * ? *` runs the task **daily at 12:00 PM**. **Days of the week are represented as 1-7 (Sunday-Saturday).** :::
|
|
75499
76235
|
* @summary List Schedules on Source
|
|
75500
76236
|
* @param {SourcesV2024ApiGetSourceSchedulesRequest} requestParameters Request parameters.
|
|
75501
76237
|
* @param {*} [axiosOptions] Override http request option.
|