sailpoint-api-client 1.6.8 → 1.6.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/beta/README.md +2 -2
- package/beta/api.ts +87 -577
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +81 -452
- package/dist/beta/api.js +30 -300
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/generic/api.d.ts +386 -0
- package/dist/generic/api.js +689 -0
- package/dist/generic/api.js.map +1 -0
- package/dist/generic/base.d.ts +66 -0
- package/dist/generic/base.js +89 -0
- package/dist/generic/base.js.map +1 -0
- package/dist/generic/common.d.ts +65 -0
- package/dist/generic/common.js +260 -0
- package/dist/generic/common.js.map +1 -0
- package/dist/generic/configuration.d.ts +91 -0
- package/dist/generic/configuration.js +46 -0
- package/dist/generic/configuration.js.map +1 -0
- package/dist/generic/index.d.ts +13 -0
- package/dist/generic/index.js +32 -0
- package/dist/generic/index.js.map +1 -0
- package/dist/index.d.ts +5 -4
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/paginator.d.ts +3 -1
- package/dist/paginator.js +146 -0
- package/dist/paginator.js.map +1 -1
- package/dist/v2024/api.d.ts +1413 -150
- package/dist/v2024/api.js +1509 -126
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2025/api.d.ts +3480 -244
- package/dist/v2025/api.js +2638 -280
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +1 -1
- package/dist/v3/api.d.ts +45 -83
- package/dist/v3/api.js +31 -30
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/generic/.openapi-generator/FILES +11 -0
- package/generic/.openapi-generator/VERSION +1 -0
- package/generic/.openapi-generator-ignore +23 -0
- package/generic/README.md +46 -0
- package/generic/api.ts +681 -0
- package/generic/base.ts +86 -0
- package/generic/common.ts +159 -0
- package/generic/configuration.ts +110 -0
- package/generic/git_push.sh +57 -0
- package/generic/index.ts +18 -0
- package/generic/package.json +34 -0
- package/generic/tsconfig.json +21 -0
- package/index.ts +9 -7
- package/package.json +1 -1
- package/paginator.ts +137 -11
- package/v2024/README.md +2 -2
- package/v2024/api.ts +2110 -175
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +5869 -1447
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +61 -97
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/v2024/api.d.ts
CHANGED
|
@@ -14648,35 +14648,6 @@ export declare const EntitlementOwnerV2024TypeV2024: {
|
|
|
14648
14648
|
readonly Identity: "IDENTITY";
|
|
14649
14649
|
};
|
|
14650
14650
|
export type EntitlementOwnerV2024TypeV2024 = typeof EntitlementOwnerV2024TypeV2024[keyof typeof EntitlementOwnerV2024TypeV2024];
|
|
14651
|
-
/**
|
|
14652
|
-
* Entitlement including a specific set of access.
|
|
14653
|
-
* @export
|
|
14654
|
-
* @interface EntitlementRef1V2024
|
|
14655
|
-
*/
|
|
14656
|
-
export interface EntitlementRef1V2024 {
|
|
14657
|
-
/**
|
|
14658
|
-
* Entitlement\'s DTO type.
|
|
14659
|
-
* @type {string}
|
|
14660
|
-
* @memberof EntitlementRef1V2024
|
|
14661
|
-
*/
|
|
14662
|
-
'type'?: EntitlementRef1V2024TypeV2024;
|
|
14663
|
-
/**
|
|
14664
|
-
* Entitlement\'s ID.
|
|
14665
|
-
* @type {string}
|
|
14666
|
-
* @memberof EntitlementRef1V2024
|
|
14667
|
-
*/
|
|
14668
|
-
'id'?: string;
|
|
14669
|
-
/**
|
|
14670
|
-
* Entitlement\'s display name.
|
|
14671
|
-
* @type {string}
|
|
14672
|
-
* @memberof EntitlementRef1V2024
|
|
14673
|
-
*/
|
|
14674
|
-
'name'?: string;
|
|
14675
|
-
}
|
|
14676
|
-
export declare const EntitlementRef1V2024TypeV2024: {
|
|
14677
|
-
readonly Entitlement: "ENTITLEMENT";
|
|
14678
|
-
};
|
|
14679
|
-
export type EntitlementRef1V2024TypeV2024 = typeof EntitlementRef1V2024TypeV2024[keyof typeof EntitlementRef1V2024TypeV2024];
|
|
14680
14651
|
/**
|
|
14681
14652
|
* Entitlement including a specific set of access.
|
|
14682
14653
|
* @export
|
|
@@ -16871,17 +16842,11 @@ export type FormInstanceRecipientV2024TypeV2024 = typeof FormInstanceRecipientV2
|
|
|
16871
16842
|
*/
|
|
16872
16843
|
export interface FormInstanceResponseV2024 {
|
|
16873
16844
|
/**
|
|
16874
|
-
*
|
|
16845
|
+
* Unique guid identifying this form instance
|
|
16875
16846
|
* @type {string}
|
|
16876
16847
|
* @memberof FormInstanceResponseV2024
|
|
16877
16848
|
*/
|
|
16878
|
-
'
|
|
16879
|
-
/**
|
|
16880
|
-
*
|
|
16881
|
-
* @type {FormInstanceCreatedByV2024}
|
|
16882
|
-
* @memberof FormInstanceResponseV2024
|
|
16883
|
-
*/
|
|
16884
|
-
'createdBy'?: FormInstanceCreatedByV2024;
|
|
16849
|
+
'id'?: string;
|
|
16885
16850
|
/**
|
|
16886
16851
|
* Expire is the maximum amount of time that a form can be in progress. After this time is reached then the form will be moved to a CANCELED state automatically. The user will no longer be able to complete the submission. When a form instance is expires an audit log will be generated for that record
|
|
16887
16852
|
* @type {string}
|
|
@@ -16889,37 +16854,35 @@ export interface FormInstanceResponseV2024 {
|
|
|
16889
16854
|
*/
|
|
16890
16855
|
'expire'?: string;
|
|
16891
16856
|
/**
|
|
16892
|
-
*
|
|
16893
|
-
* @type {
|
|
16857
|
+
* State the state of the form instance ASSIGNED FormInstanceStateAssigned IN_PROGRESS FormInstanceStateInProgress SUBMITTED FormInstanceStateSubmitted COMPLETED FormInstanceStateCompleted CANCELLED FormInstanceStateCancelled
|
|
16858
|
+
* @type {string}
|
|
16894
16859
|
* @memberof FormInstanceResponseV2024
|
|
16895
16860
|
*/
|
|
16896
|
-
'
|
|
16861
|
+
'state'?: FormInstanceResponseV2024StateV2024;
|
|
16897
16862
|
/**
|
|
16898
|
-
*
|
|
16899
|
-
* @type {
|
|
16863
|
+
* StandAloneForm is a boolean flag to indicate if this form should be available for users to complete via the standalone form UI or should this only be available to be completed by as an embedded form
|
|
16864
|
+
* @type {boolean}
|
|
16900
16865
|
* @memberof FormInstanceResponseV2024
|
|
16901
16866
|
*/
|
|
16902
|
-
'
|
|
16903
|
-
[key: string]: any;
|
|
16904
|
-
} | null;
|
|
16867
|
+
'standAloneForm'?: boolean;
|
|
16905
16868
|
/**
|
|
16906
|
-
*
|
|
16869
|
+
* StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI
|
|
16907
16870
|
* @type {string}
|
|
16908
16871
|
* @memberof FormInstanceResponseV2024
|
|
16909
16872
|
*/
|
|
16910
|
-
'
|
|
16873
|
+
'standAloneFormUrl'?: string;
|
|
16911
16874
|
/**
|
|
16912
|
-
*
|
|
16913
|
-
* @type {
|
|
16875
|
+
*
|
|
16876
|
+
* @type {FormInstanceCreatedByV2024}
|
|
16914
16877
|
* @memberof FormInstanceResponseV2024
|
|
16915
16878
|
*/
|
|
16916
|
-
'
|
|
16879
|
+
'createdBy'?: FormInstanceCreatedByV2024;
|
|
16917
16880
|
/**
|
|
16918
|
-
*
|
|
16919
|
-
* @type {
|
|
16881
|
+
* FormDefinitionID is the id of the form definition that created this form
|
|
16882
|
+
* @type {string}
|
|
16920
16883
|
* @memberof FormInstanceResponseV2024
|
|
16921
16884
|
*/
|
|
16922
|
-
'
|
|
16885
|
+
'formDefinitionId'?: string;
|
|
16923
16886
|
/**
|
|
16924
16887
|
* FormInput is an object of form input labels to value
|
|
16925
16888
|
* @type {{ [key: string]: object; }}
|
|
@@ -16929,41 +16892,49 @@ export interface FormInstanceResponseV2024 {
|
|
|
16929
16892
|
[key: string]: object;
|
|
16930
16893
|
} | null;
|
|
16931
16894
|
/**
|
|
16932
|
-
*
|
|
16933
|
-
* @type {
|
|
16895
|
+
* FormElements is the configuration of the form, this would be a repeat of the fields from the form-config
|
|
16896
|
+
* @type {Array<FormElementV2024>}
|
|
16934
16897
|
* @memberof FormInstanceResponseV2024
|
|
16935
16898
|
*/
|
|
16936
|
-
'
|
|
16899
|
+
'formElements'?: Array<FormElementV2024>;
|
|
16937
16900
|
/**
|
|
16938
|
-
*
|
|
16939
|
-
* @type {string}
|
|
16901
|
+
* FormData is the data provided by the form on submit. The data is in a key -> value map
|
|
16902
|
+
* @type {{ [key: string]: any; }}
|
|
16940
16903
|
* @memberof FormInstanceResponseV2024
|
|
16941
16904
|
*/
|
|
16942
|
-
'
|
|
16905
|
+
'formData'?: {
|
|
16906
|
+
[key: string]: any;
|
|
16907
|
+
} | null;
|
|
16943
16908
|
/**
|
|
16944
|
-
*
|
|
16945
|
-
* @type {Array<
|
|
16909
|
+
* FormErrors is an array of form validation errors from the last time the form instance was transitioned to the SUBMITTED state. If the form instance had validation errors then it would be moved to the IN PROGRESS state where the client can retrieve these errors
|
|
16910
|
+
* @type {Array<FormErrorV2024>}
|
|
16946
16911
|
* @memberof FormInstanceResponseV2024
|
|
16947
16912
|
*/
|
|
16948
|
-
'
|
|
16913
|
+
'formErrors'?: Array<FormErrorV2024>;
|
|
16949
16914
|
/**
|
|
16950
|
-
*
|
|
16951
|
-
* @type {
|
|
16915
|
+
* FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form
|
|
16916
|
+
* @type {Array<FormConditionV2024>}
|
|
16952
16917
|
* @memberof FormInstanceResponseV2024
|
|
16953
16918
|
*/
|
|
16954
|
-
'
|
|
16919
|
+
'formConditions'?: Array<FormConditionV2024>;
|
|
16955
16920
|
/**
|
|
16956
|
-
*
|
|
16921
|
+
* Created is the date the form instance was assigned
|
|
16957
16922
|
* @type {string}
|
|
16958
16923
|
* @memberof FormInstanceResponseV2024
|
|
16959
16924
|
*/
|
|
16960
|
-
'
|
|
16925
|
+
'created'?: string;
|
|
16961
16926
|
/**
|
|
16962
|
-
*
|
|
16927
|
+
* Modified is the last date the form instance was modified
|
|
16963
16928
|
* @type {string}
|
|
16964
16929
|
* @memberof FormInstanceResponseV2024
|
|
16965
16930
|
*/
|
|
16966
|
-
'
|
|
16931
|
+
'modified'?: string;
|
|
16932
|
+
/**
|
|
16933
|
+
* Recipients references to the recipient of a form. The recipients are those who are responsible for filling out a form and completing it
|
|
16934
|
+
* @type {Array<FormInstanceRecipientV2024>}
|
|
16935
|
+
* @memberof FormInstanceResponseV2024
|
|
16936
|
+
*/
|
|
16937
|
+
'recipients'?: Array<FormInstanceRecipientV2024>;
|
|
16967
16938
|
}
|
|
16968
16939
|
export declare const FormInstanceResponseV2024StateV2024: {
|
|
16969
16940
|
readonly Assigned: "ASSIGNED";
|
|
@@ -17637,6 +17608,25 @@ export declare const GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemT
|
|
|
17637
17608
|
readonly AccessProfile: "accessProfile";
|
|
17638
17609
|
};
|
|
17639
17610
|
export type GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024 = typeof GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024[keyof typeof GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024];
|
|
17611
|
+
/**
|
|
17612
|
+
*
|
|
17613
|
+
* @export
|
|
17614
|
+
* @interface GetLaunchers200ResponseV2024
|
|
17615
|
+
*/
|
|
17616
|
+
export interface GetLaunchers200ResponseV2024 {
|
|
17617
|
+
/**
|
|
17618
|
+
* Pagination marker
|
|
17619
|
+
* @type {string}
|
|
17620
|
+
* @memberof GetLaunchers200ResponseV2024
|
|
17621
|
+
*/
|
|
17622
|
+
'next'?: string;
|
|
17623
|
+
/**
|
|
17624
|
+
*
|
|
17625
|
+
* @type {Array<LauncherV2024>}
|
|
17626
|
+
* @memberof GetLaunchers200ResponseV2024
|
|
17627
|
+
*/
|
|
17628
|
+
'items'?: Array<LauncherV2024>;
|
|
17629
|
+
}
|
|
17640
17630
|
/**
|
|
17641
17631
|
*
|
|
17642
17632
|
* @export
|
|
@@ -19428,6 +19418,184 @@ export interface IdentityEntitiesV2024 {
|
|
|
19428
19418
|
*/
|
|
19429
19419
|
'identityEntity'?: IdentityEntitiesIdentityEntityV2024;
|
|
19430
19420
|
}
|
|
19421
|
+
/**
|
|
19422
|
+
*
|
|
19423
|
+
* @export
|
|
19424
|
+
* @interface IdentityEntitlementDetailsAccountTargetV2024
|
|
19425
|
+
*/
|
|
19426
|
+
export interface IdentityEntitlementDetailsAccountTargetV2024 {
|
|
19427
|
+
/**
|
|
19428
|
+
* The id of account
|
|
19429
|
+
* @type {string}
|
|
19430
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
19431
|
+
*/
|
|
19432
|
+
'accountId'?: string;
|
|
19433
|
+
/**
|
|
19434
|
+
* The name of account
|
|
19435
|
+
* @type {string}
|
|
19436
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
19437
|
+
*/
|
|
19438
|
+
'accountName'?: string;
|
|
19439
|
+
/**
|
|
19440
|
+
* The UUID representation of the account if available
|
|
19441
|
+
* @type {string}
|
|
19442
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
19443
|
+
*/
|
|
19444
|
+
'accountUUID'?: string | null;
|
|
19445
|
+
/**
|
|
19446
|
+
* The id of Source
|
|
19447
|
+
* @type {string}
|
|
19448
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
19449
|
+
*/
|
|
19450
|
+
'sourceId'?: string;
|
|
19451
|
+
/**
|
|
19452
|
+
* The name of Source
|
|
19453
|
+
* @type {string}
|
|
19454
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
19455
|
+
*/
|
|
19456
|
+
'sourceName'?: string;
|
|
19457
|
+
/**
|
|
19458
|
+
* The removal date scheduled for the entitlement on the Identity
|
|
19459
|
+
* @type {string}
|
|
19460
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
19461
|
+
*/
|
|
19462
|
+
'removeDate'?: string | null;
|
|
19463
|
+
/**
|
|
19464
|
+
* The assignmentId of the entitlement on the Identity
|
|
19465
|
+
* @type {string}
|
|
19466
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
19467
|
+
*/
|
|
19468
|
+
'assignmentId'?: string | null;
|
|
19469
|
+
/**
|
|
19470
|
+
* If the entitlement can be revoked
|
|
19471
|
+
* @type {boolean}
|
|
19472
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
19473
|
+
*/
|
|
19474
|
+
'revocable'?: boolean;
|
|
19475
|
+
}
|
|
19476
|
+
/**
|
|
19477
|
+
*
|
|
19478
|
+
* @export
|
|
19479
|
+
* @interface IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19480
|
+
*/
|
|
19481
|
+
export interface IdentityEntitlementDetailsEntitlementDtoV2024 {
|
|
19482
|
+
/**
|
|
19483
|
+
* The entitlement id
|
|
19484
|
+
* @type {string}
|
|
19485
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19486
|
+
*/
|
|
19487
|
+
'id'?: string;
|
|
19488
|
+
/**
|
|
19489
|
+
* The entitlement name
|
|
19490
|
+
* @type {string}
|
|
19491
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19492
|
+
*/
|
|
19493
|
+
'name'?: string;
|
|
19494
|
+
/**
|
|
19495
|
+
* Time when the entitlement was last modified
|
|
19496
|
+
* @type {string}
|
|
19497
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19498
|
+
*/
|
|
19499
|
+
'created'?: string;
|
|
19500
|
+
/**
|
|
19501
|
+
* Time when the entitlement was last modified
|
|
19502
|
+
* @type {string}
|
|
19503
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19504
|
+
*/
|
|
19505
|
+
'modified'?: string;
|
|
19506
|
+
/**
|
|
19507
|
+
* The description of the entitlement
|
|
19508
|
+
* @type {string}
|
|
19509
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19510
|
+
*/
|
|
19511
|
+
'description'?: string | null;
|
|
19512
|
+
/**
|
|
19513
|
+
* The type of the object, will always be \"ENTITLEMENT\"
|
|
19514
|
+
* @type {string}
|
|
19515
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19516
|
+
*/
|
|
19517
|
+
'type'?: string;
|
|
19518
|
+
/**
|
|
19519
|
+
* The source ID
|
|
19520
|
+
* @type {string}
|
|
19521
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19522
|
+
*/
|
|
19523
|
+
'sourceId'?: string;
|
|
19524
|
+
/**
|
|
19525
|
+
* The source name
|
|
19526
|
+
* @type {string}
|
|
19527
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19528
|
+
*/
|
|
19529
|
+
'sourceName'?: string;
|
|
19530
|
+
/**
|
|
19531
|
+
*
|
|
19532
|
+
* @type {OwnerDtoV2024}
|
|
19533
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19534
|
+
*/
|
|
19535
|
+
'owner'?: OwnerDtoV2024;
|
|
19536
|
+
/**
|
|
19537
|
+
* The value of the entitlement
|
|
19538
|
+
* @type {string}
|
|
19539
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19540
|
+
*/
|
|
19541
|
+
'value'?: string;
|
|
19542
|
+
/**
|
|
19543
|
+
* a list of properties informing the viewer about the entitlement
|
|
19544
|
+
* @type {Array<string>}
|
|
19545
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
19546
|
+
*/
|
|
19547
|
+
'flags'?: Array<string>;
|
|
19548
|
+
}
|
|
19549
|
+
/**
|
|
19550
|
+
*
|
|
19551
|
+
* @export
|
|
19552
|
+
* @interface IdentityEntitlementDetailsV2024
|
|
19553
|
+
*/
|
|
19554
|
+
export interface IdentityEntitlementDetailsV2024 {
|
|
19555
|
+
/**
|
|
19556
|
+
* Id of Identity
|
|
19557
|
+
* @type {string}
|
|
19558
|
+
* @memberof IdentityEntitlementDetailsV2024
|
|
19559
|
+
*/
|
|
19560
|
+
'identityId'?: string;
|
|
19561
|
+
/**
|
|
19562
|
+
*
|
|
19563
|
+
* @type {IdentityEntitlementDetailsEntitlementDtoV2024}
|
|
19564
|
+
* @memberof IdentityEntitlementDetailsV2024
|
|
19565
|
+
*/
|
|
19566
|
+
'entitlement'?: IdentityEntitlementDetailsEntitlementDtoV2024;
|
|
19567
|
+
/**
|
|
19568
|
+
* Id of Source
|
|
19569
|
+
* @type {string}
|
|
19570
|
+
* @memberof IdentityEntitlementDetailsV2024
|
|
19571
|
+
*/
|
|
19572
|
+
'sourceId'?: string;
|
|
19573
|
+
/**
|
|
19574
|
+
* A list of account targets on the identity provisioned with the requested entitlement.
|
|
19575
|
+
* @type {Array<IdentityEntitlementDetailsAccountTargetV2024>}
|
|
19576
|
+
* @memberof IdentityEntitlementDetailsV2024
|
|
19577
|
+
*/
|
|
19578
|
+
'accountTargets'?: Array<IdentityEntitlementDetailsAccountTargetV2024>;
|
|
19579
|
+
}
|
|
19580
|
+
/**
|
|
19581
|
+
*
|
|
19582
|
+
* @export
|
|
19583
|
+
* @interface IdentityEntitlementsV2024
|
|
19584
|
+
*/
|
|
19585
|
+
export interface IdentityEntitlementsV2024 {
|
|
19586
|
+
/**
|
|
19587
|
+
*
|
|
19588
|
+
* @type {TaggedObjectDtoV2024}
|
|
19589
|
+
* @memberof IdentityEntitlementsV2024
|
|
19590
|
+
*/
|
|
19591
|
+
'objectRef'?: TaggedObjectDtoV2024;
|
|
19592
|
+
/**
|
|
19593
|
+
* Labels to be applied to object.
|
|
19594
|
+
* @type {Array<string>}
|
|
19595
|
+
* @memberof IdentityEntitlementsV2024
|
|
19596
|
+
*/
|
|
19597
|
+
'tags'?: Array<string>;
|
|
19598
|
+
}
|
|
19431
19599
|
/**
|
|
19432
19600
|
*
|
|
19433
19601
|
* @export
|
|
@@ -20196,33 +20364,6 @@ export declare const IdentityV2024IdentityStatusV2024: {
|
|
|
20196
20364
|
readonly Locked: "LOCKED";
|
|
20197
20365
|
};
|
|
20198
20366
|
export type IdentityV2024IdentityStatusV2024 = typeof IdentityV2024IdentityStatusV2024[keyof typeof IdentityV2024IdentityStatusV2024];
|
|
20199
|
-
/**
|
|
20200
|
-
* An identity with a set of access to be added
|
|
20201
|
-
* @export
|
|
20202
|
-
* @interface IdentityWithNewAccess1V2024
|
|
20203
|
-
*/
|
|
20204
|
-
export interface IdentityWithNewAccess1V2024 {
|
|
20205
|
-
/**
|
|
20206
|
-
* Set of identity IDs to be checked.
|
|
20207
|
-
* @type {string}
|
|
20208
|
-
* @memberof IdentityWithNewAccess1V2024
|
|
20209
|
-
*/
|
|
20210
|
-
'identityId': string;
|
|
20211
|
-
/**
|
|
20212
|
-
* The bundle of access profiles to be added to the identities specified. All references must be ENTITLEMENT type.
|
|
20213
|
-
* @type {Array<EntitlementRef1V2024>}
|
|
20214
|
-
* @memberof IdentityWithNewAccess1V2024
|
|
20215
|
-
*/
|
|
20216
|
-
'accessRefs': Array<EntitlementRef1V2024>;
|
|
20217
|
-
/**
|
|
20218
|
-
* Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on completion of the violation check.
|
|
20219
|
-
* @type {{ [key: string]: string; }}
|
|
20220
|
-
* @memberof IdentityWithNewAccess1V2024
|
|
20221
|
-
*/
|
|
20222
|
-
'clientMetadata'?: {
|
|
20223
|
-
[key: string]: string;
|
|
20224
|
-
};
|
|
20225
|
-
}
|
|
20226
20367
|
/**
|
|
20227
20368
|
* Entitlement including a specific set of access.
|
|
20228
20369
|
* @export
|
|
@@ -20241,12 +20382,6 @@ export interface IdentityWithNewAccessAccessRefsInnerV2024 {
|
|
|
20241
20382
|
* @memberof IdentityWithNewAccessAccessRefsInnerV2024
|
|
20242
20383
|
*/
|
|
20243
20384
|
'id'?: string;
|
|
20244
|
-
/**
|
|
20245
|
-
* Entitlement\'s display name.
|
|
20246
|
-
* @type {string}
|
|
20247
|
-
* @memberof IdentityWithNewAccessAccessRefsInnerV2024
|
|
20248
|
-
*/
|
|
20249
|
-
'name'?: string;
|
|
20250
20385
|
}
|
|
20251
20386
|
export declare const IdentityWithNewAccessAccessRefsInnerV2024TypeV2024: {
|
|
20252
20387
|
readonly Entitlement: "ENTITLEMENT";
|
|
@@ -21004,6 +21139,189 @@ export declare const LatestOutlierSummaryV2024TypeV2024: {
|
|
|
21004
21139
|
readonly Structural: "STRUCTURAL";
|
|
21005
21140
|
};
|
|
21006
21141
|
export type LatestOutlierSummaryV2024TypeV2024 = typeof LatestOutlierSummaryV2024TypeV2024[keyof typeof LatestOutlierSummaryV2024TypeV2024];
|
|
21142
|
+
/**
|
|
21143
|
+
* Owner of the Launcher
|
|
21144
|
+
* @export
|
|
21145
|
+
* @interface LauncherOwnerV2024
|
|
21146
|
+
*/
|
|
21147
|
+
export interface LauncherOwnerV2024 {
|
|
21148
|
+
/**
|
|
21149
|
+
* Owner type
|
|
21150
|
+
* @type {string}
|
|
21151
|
+
* @memberof LauncherOwnerV2024
|
|
21152
|
+
*/
|
|
21153
|
+
'type': string;
|
|
21154
|
+
/**
|
|
21155
|
+
* Owner ID
|
|
21156
|
+
* @type {string}
|
|
21157
|
+
* @memberof LauncherOwnerV2024
|
|
21158
|
+
*/
|
|
21159
|
+
'id': string;
|
|
21160
|
+
}
|
|
21161
|
+
/**
|
|
21162
|
+
*
|
|
21163
|
+
* @export
|
|
21164
|
+
* @interface LauncherReferenceV2024
|
|
21165
|
+
*/
|
|
21166
|
+
export interface LauncherReferenceV2024 {
|
|
21167
|
+
/**
|
|
21168
|
+
* Type of Launcher reference
|
|
21169
|
+
* @type {string}
|
|
21170
|
+
* @memberof LauncherReferenceV2024
|
|
21171
|
+
*/
|
|
21172
|
+
'type'?: LauncherReferenceV2024TypeV2024;
|
|
21173
|
+
/**
|
|
21174
|
+
* ID of Launcher reference
|
|
21175
|
+
* @type {string}
|
|
21176
|
+
* @memberof LauncherReferenceV2024
|
|
21177
|
+
*/
|
|
21178
|
+
'id'?: string;
|
|
21179
|
+
}
|
|
21180
|
+
export declare const LauncherReferenceV2024TypeV2024: {
|
|
21181
|
+
readonly Workflow: "WORKFLOW";
|
|
21182
|
+
};
|
|
21183
|
+
export type LauncherReferenceV2024TypeV2024 = typeof LauncherReferenceV2024TypeV2024[keyof typeof LauncherReferenceV2024TypeV2024];
|
|
21184
|
+
/**
|
|
21185
|
+
*
|
|
21186
|
+
* @export
|
|
21187
|
+
* @interface LauncherRequestReferenceV2024
|
|
21188
|
+
*/
|
|
21189
|
+
export interface LauncherRequestReferenceV2024 {
|
|
21190
|
+
/**
|
|
21191
|
+
* Type of Launcher reference
|
|
21192
|
+
* @type {string}
|
|
21193
|
+
* @memberof LauncherRequestReferenceV2024
|
|
21194
|
+
*/
|
|
21195
|
+
'type': LauncherRequestReferenceV2024TypeV2024;
|
|
21196
|
+
/**
|
|
21197
|
+
* ID of Launcher reference
|
|
21198
|
+
* @type {string}
|
|
21199
|
+
* @memberof LauncherRequestReferenceV2024
|
|
21200
|
+
*/
|
|
21201
|
+
'id': string;
|
|
21202
|
+
}
|
|
21203
|
+
export declare const LauncherRequestReferenceV2024TypeV2024: {
|
|
21204
|
+
readonly Workflow: "WORKFLOW";
|
|
21205
|
+
};
|
|
21206
|
+
export type LauncherRequestReferenceV2024TypeV2024 = typeof LauncherRequestReferenceV2024TypeV2024[keyof typeof LauncherRequestReferenceV2024TypeV2024];
|
|
21207
|
+
/**
|
|
21208
|
+
*
|
|
21209
|
+
* @export
|
|
21210
|
+
* @interface LauncherRequestV2024
|
|
21211
|
+
*/
|
|
21212
|
+
export interface LauncherRequestV2024 {
|
|
21213
|
+
/**
|
|
21214
|
+
* Name of the Launcher, limited to 255 characters
|
|
21215
|
+
* @type {string}
|
|
21216
|
+
* @memberof LauncherRequestV2024
|
|
21217
|
+
*/
|
|
21218
|
+
'name': string;
|
|
21219
|
+
/**
|
|
21220
|
+
* Description of the Launcher, limited to 2000 characters
|
|
21221
|
+
* @type {string}
|
|
21222
|
+
* @memberof LauncherRequestV2024
|
|
21223
|
+
*/
|
|
21224
|
+
'description': string;
|
|
21225
|
+
/**
|
|
21226
|
+
* Launcher type
|
|
21227
|
+
* @type {string}
|
|
21228
|
+
* @memberof LauncherRequestV2024
|
|
21229
|
+
*/
|
|
21230
|
+
'type': LauncherRequestV2024TypeV2024;
|
|
21231
|
+
/**
|
|
21232
|
+
* State of the Launcher
|
|
21233
|
+
* @type {boolean}
|
|
21234
|
+
* @memberof LauncherRequestV2024
|
|
21235
|
+
*/
|
|
21236
|
+
'disabled': boolean;
|
|
21237
|
+
/**
|
|
21238
|
+
*
|
|
21239
|
+
* @type {LauncherRequestReferenceV2024}
|
|
21240
|
+
* @memberof LauncherRequestV2024
|
|
21241
|
+
*/
|
|
21242
|
+
'reference'?: LauncherRequestReferenceV2024;
|
|
21243
|
+
/**
|
|
21244
|
+
* JSON configuration associated with this Launcher, restricted to a max size of 4KB
|
|
21245
|
+
* @type {string}
|
|
21246
|
+
* @memberof LauncherRequestV2024
|
|
21247
|
+
*/
|
|
21248
|
+
'config': string;
|
|
21249
|
+
}
|
|
21250
|
+
export declare const LauncherRequestV2024TypeV2024: {
|
|
21251
|
+
readonly InteractiveProcess: "INTERACTIVE_PROCESS";
|
|
21252
|
+
};
|
|
21253
|
+
export type LauncherRequestV2024TypeV2024 = typeof LauncherRequestV2024TypeV2024[keyof typeof LauncherRequestV2024TypeV2024];
|
|
21254
|
+
/**
|
|
21255
|
+
*
|
|
21256
|
+
* @export
|
|
21257
|
+
* @interface LauncherV2024
|
|
21258
|
+
*/
|
|
21259
|
+
export interface LauncherV2024 {
|
|
21260
|
+
/**
|
|
21261
|
+
* ID of the Launcher
|
|
21262
|
+
* @type {string}
|
|
21263
|
+
* @memberof LauncherV2024
|
|
21264
|
+
*/
|
|
21265
|
+
'id': string;
|
|
21266
|
+
/**
|
|
21267
|
+
* Date the Launcher was created
|
|
21268
|
+
* @type {string}
|
|
21269
|
+
* @memberof LauncherV2024
|
|
21270
|
+
*/
|
|
21271
|
+
'created': string;
|
|
21272
|
+
/**
|
|
21273
|
+
* Date the Launcher was last modified
|
|
21274
|
+
* @type {string}
|
|
21275
|
+
* @memberof LauncherV2024
|
|
21276
|
+
*/
|
|
21277
|
+
'modified': string;
|
|
21278
|
+
/**
|
|
21279
|
+
*
|
|
21280
|
+
* @type {LauncherOwnerV2024}
|
|
21281
|
+
* @memberof LauncherV2024
|
|
21282
|
+
*/
|
|
21283
|
+
'owner': LauncherOwnerV2024;
|
|
21284
|
+
/**
|
|
21285
|
+
* Name of the Launcher, limited to 255 characters
|
|
21286
|
+
* @type {string}
|
|
21287
|
+
* @memberof LauncherV2024
|
|
21288
|
+
*/
|
|
21289
|
+
'name': string;
|
|
21290
|
+
/**
|
|
21291
|
+
* Description of the Launcher, limited to 2000 characters
|
|
21292
|
+
* @type {string}
|
|
21293
|
+
* @memberof LauncherV2024
|
|
21294
|
+
*/
|
|
21295
|
+
'description': string;
|
|
21296
|
+
/**
|
|
21297
|
+
* Launcher type
|
|
21298
|
+
* @type {string}
|
|
21299
|
+
* @memberof LauncherV2024
|
|
21300
|
+
*/
|
|
21301
|
+
'type': LauncherV2024TypeV2024;
|
|
21302
|
+
/**
|
|
21303
|
+
* State of the Launcher
|
|
21304
|
+
* @type {boolean}
|
|
21305
|
+
* @memberof LauncherV2024
|
|
21306
|
+
*/
|
|
21307
|
+
'disabled': boolean;
|
|
21308
|
+
/**
|
|
21309
|
+
*
|
|
21310
|
+
* @type {LauncherReferenceV2024}
|
|
21311
|
+
* @memberof LauncherV2024
|
|
21312
|
+
*/
|
|
21313
|
+
'reference'?: LauncherReferenceV2024;
|
|
21314
|
+
/**
|
|
21315
|
+
* JSON configuration associated with this Launcher, restricted to a max size of 4KB
|
|
21316
|
+
* @type {string}
|
|
21317
|
+
* @memberof LauncherV2024
|
|
21318
|
+
*/
|
|
21319
|
+
'config': string;
|
|
21320
|
+
}
|
|
21321
|
+
export declare const LauncherV2024TypeV2024: {
|
|
21322
|
+
readonly InteractiveProcess: "INTERACTIVE_PROCESS";
|
|
21323
|
+
};
|
|
21324
|
+
export type LauncherV2024TypeV2024 = typeof LauncherV2024TypeV2024[keyof typeof LauncherV2024TypeV2024];
|
|
21007
21325
|
/**
|
|
21008
21326
|
*
|
|
21009
21327
|
* @export
|
|
@@ -21360,24 +21678,114 @@ export interface ListFormElementDataByElementIDResponseV2024 {
|
|
|
21360
21678
|
'results'?: Array<FormElementDataSourceConfigOptionsV2024>;
|
|
21361
21679
|
}
|
|
21362
21680
|
/**
|
|
21363
|
-
*
|
|
21681
|
+
* List of FormInstanceResponse items
|
|
21364
21682
|
* @export
|
|
21365
21683
|
* @interface ListFormInstancesByTenantResponseV2024
|
|
21366
21684
|
*/
|
|
21367
21685
|
export interface ListFormInstancesByTenantResponseV2024 {
|
|
21368
21686
|
/**
|
|
21369
|
-
*
|
|
21370
|
-
* @type {
|
|
21687
|
+
* Unique guid identifying this form instance
|
|
21688
|
+
* @type {string}
|
|
21371
21689
|
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21372
21690
|
*/
|
|
21373
|
-
'
|
|
21691
|
+
'id'?: string;
|
|
21374
21692
|
/**
|
|
21375
|
-
*
|
|
21376
|
-
* @type {
|
|
21693
|
+
* Expire is the maximum amount of time that a form can be in progress. After this time is reached then the form will be moved to a CANCELED state automatically. The user will no longer be able to complete the submission. When a form instance is expires an audit log will be generated for that record
|
|
21694
|
+
* @type {string}
|
|
21377
21695
|
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21378
21696
|
*/
|
|
21379
|
-
'
|
|
21697
|
+
'expire'?: string;
|
|
21698
|
+
/**
|
|
21699
|
+
* State the state of the form instance ASSIGNED FormInstanceStateAssigned IN_PROGRESS FormInstanceStateInProgress SUBMITTED FormInstanceStateSubmitted COMPLETED FormInstanceStateCompleted CANCELLED FormInstanceStateCancelled
|
|
21700
|
+
* @type {string}
|
|
21701
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21702
|
+
*/
|
|
21703
|
+
'state'?: ListFormInstancesByTenantResponseV2024StateV2024;
|
|
21704
|
+
/**
|
|
21705
|
+
* StandAloneForm is a boolean flag to indicate if this form should be available for users to complete via the standalone form UI or should this only be available to be completed by as an embedded form
|
|
21706
|
+
* @type {boolean}
|
|
21707
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21708
|
+
*/
|
|
21709
|
+
'standAloneForm'?: boolean;
|
|
21710
|
+
/**
|
|
21711
|
+
* StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI
|
|
21712
|
+
* @type {string}
|
|
21713
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21714
|
+
*/
|
|
21715
|
+
'standAloneFormUrl'?: string;
|
|
21716
|
+
/**
|
|
21717
|
+
*
|
|
21718
|
+
* @type {FormInstanceCreatedByV2024}
|
|
21719
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21720
|
+
*/
|
|
21721
|
+
'createdBy'?: FormInstanceCreatedByV2024;
|
|
21722
|
+
/**
|
|
21723
|
+
* FormDefinitionID is the id of the form definition that created this form
|
|
21724
|
+
* @type {string}
|
|
21725
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21726
|
+
*/
|
|
21727
|
+
'formDefinitionId'?: string;
|
|
21728
|
+
/**
|
|
21729
|
+
* FormInput is an object of form input labels to value
|
|
21730
|
+
* @type {{ [key: string]: object; }}
|
|
21731
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21732
|
+
*/
|
|
21733
|
+
'formInput'?: {
|
|
21734
|
+
[key: string]: object;
|
|
21735
|
+
} | null;
|
|
21736
|
+
/**
|
|
21737
|
+
* FormElements is the configuration of the form, this would be a repeat of the fields from the form-config
|
|
21738
|
+
* @type {Array<FormElementV2024>}
|
|
21739
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21740
|
+
*/
|
|
21741
|
+
'formElements'?: Array<FormElementV2024>;
|
|
21742
|
+
/**
|
|
21743
|
+
* FormData is the data provided by the form on submit. The data is in a key -> value map
|
|
21744
|
+
* @type {{ [key: string]: any; }}
|
|
21745
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21746
|
+
*/
|
|
21747
|
+
'formData'?: {
|
|
21748
|
+
[key: string]: any;
|
|
21749
|
+
} | null;
|
|
21750
|
+
/**
|
|
21751
|
+
* FormErrors is an array of form validation errors from the last time the form instance was transitioned to the SUBMITTED state. If the form instance had validation errors then it would be moved to the IN PROGRESS state where the client can retrieve these errors
|
|
21752
|
+
* @type {Array<FormErrorV2024>}
|
|
21753
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21754
|
+
*/
|
|
21755
|
+
'formErrors'?: Array<FormErrorV2024>;
|
|
21756
|
+
/**
|
|
21757
|
+
* FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form
|
|
21758
|
+
* @type {Array<FormConditionV2024>}
|
|
21759
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21760
|
+
*/
|
|
21761
|
+
'formConditions'?: Array<FormConditionV2024>;
|
|
21762
|
+
/**
|
|
21763
|
+
* Created is the date the form instance was assigned
|
|
21764
|
+
* @type {string}
|
|
21765
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21766
|
+
*/
|
|
21767
|
+
'created'?: string;
|
|
21768
|
+
/**
|
|
21769
|
+
* Modified is the last date the form instance was modified
|
|
21770
|
+
* @type {string}
|
|
21771
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21772
|
+
*/
|
|
21773
|
+
'modified'?: string;
|
|
21774
|
+
/**
|
|
21775
|
+
* Recipients references to the recipient of a form. The recipients are those who are responsible for filling out a form and completing it
|
|
21776
|
+
* @type {Array<FormInstanceRecipientV2024>}
|
|
21777
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21778
|
+
*/
|
|
21779
|
+
'recipients'?: Array<FormInstanceRecipientV2024>;
|
|
21380
21780
|
}
|
|
21781
|
+
export declare const ListFormInstancesByTenantResponseV2024StateV2024: {
|
|
21782
|
+
readonly Assigned: "ASSIGNED";
|
|
21783
|
+
readonly InProgress: "IN_PROGRESS";
|
|
21784
|
+
readonly Submitted: "SUBMITTED";
|
|
21785
|
+
readonly Completed: "COMPLETED";
|
|
21786
|
+
readonly Cancelled: "CANCELLED";
|
|
21787
|
+
};
|
|
21788
|
+
export type ListFormInstancesByTenantResponseV2024StateV2024 = typeof ListFormInstancesByTenantResponseV2024StateV2024[keyof typeof ListFormInstancesByTenantResponseV2024StateV2024];
|
|
21381
21789
|
/**
|
|
21382
21790
|
*
|
|
21383
21791
|
* @export
|
|
@@ -22842,6 +23250,24 @@ export interface ManagedClusterAttributesV2024 {
|
|
|
22842
23250
|
*/
|
|
22843
23251
|
'keystore'?: string | null;
|
|
22844
23252
|
}
|
|
23253
|
+
/**
|
|
23254
|
+
* Defines the encryption settings for a managed cluster, including the format used for storing and processing encrypted data.
|
|
23255
|
+
* @export
|
|
23256
|
+
* @interface ManagedClusterEncryptionConfigV2024
|
|
23257
|
+
*/
|
|
23258
|
+
export interface ManagedClusterEncryptionConfigV2024 {
|
|
23259
|
+
/**
|
|
23260
|
+
* Specifies the format used for encrypted data, such as secrets. The format determines how the encrypted data is structured and processed.
|
|
23261
|
+
* @type {string}
|
|
23262
|
+
* @memberof ManagedClusterEncryptionConfigV2024
|
|
23263
|
+
*/
|
|
23264
|
+
'format'?: ManagedClusterEncryptionConfigV2024FormatV2024;
|
|
23265
|
+
}
|
|
23266
|
+
export declare const ManagedClusterEncryptionConfigV2024FormatV2024: {
|
|
23267
|
+
readonly V2: "V2";
|
|
23268
|
+
readonly V3: "V3";
|
|
23269
|
+
};
|
|
23270
|
+
export type ManagedClusterEncryptionConfigV2024FormatV2024 = typeof ManagedClusterEncryptionConfigV2024FormatV2024[keyof typeof ManagedClusterEncryptionConfigV2024FormatV2024];
|
|
22845
23271
|
/**
|
|
22846
23272
|
* Managed Cluster key pair for Cluster
|
|
22847
23273
|
* @export
|
|
@@ -23096,7 +23522,7 @@ export interface ManagedClusterV2024 {
|
|
|
23096
23522
|
*/
|
|
23097
23523
|
'ccgVersion': string;
|
|
23098
23524
|
/**
|
|
23099
|
-
* boolean flag
|
|
23525
|
+
* boolean flag indicating whether or not the cluster configuration is pinned
|
|
23100
23526
|
* @type {boolean}
|
|
23101
23527
|
* @memberof ManagedClusterV2024
|
|
23102
23528
|
*/
|
|
@@ -23137,6 +23563,12 @@ export interface ManagedClusterV2024 {
|
|
|
23137
23563
|
* @memberof ManagedClusterV2024
|
|
23138
23564
|
*/
|
|
23139
23565
|
'publicKey'?: string | null;
|
|
23566
|
+
/**
|
|
23567
|
+
*
|
|
23568
|
+
* @type {ManagedClusterEncryptionConfigV2024}
|
|
23569
|
+
* @memberof ManagedClusterV2024
|
|
23570
|
+
*/
|
|
23571
|
+
'encryptionConfiguration'?: ManagedClusterEncryptionConfigV2024;
|
|
23140
23572
|
/**
|
|
23141
23573
|
* Key describing any immediate cluster alerts
|
|
23142
23574
|
* @type {string}
|
|
@@ -23924,10 +24356,10 @@ export interface MultiHostIntegrationsCreateV2024 {
|
|
|
23924
24356
|
'description': string;
|
|
23925
24357
|
/**
|
|
23926
24358
|
*
|
|
23927
|
-
* @type {
|
|
24359
|
+
* @type {MultiHostIntegrationsOwnerV2024}
|
|
23928
24360
|
* @memberof MultiHostIntegrationsCreateV2024
|
|
23929
24361
|
*/
|
|
23930
|
-
'owner':
|
|
24362
|
+
'owner': MultiHostIntegrationsOwnerV2024;
|
|
23931
24363
|
/**
|
|
23932
24364
|
*
|
|
23933
24365
|
* @type {SourceClusterV2024}
|
|
@@ -23967,6 +24399,35 @@ export interface MultiHostIntegrationsCreateV2024 {
|
|
|
23967
24399
|
*/
|
|
23968
24400
|
'modified'?: string;
|
|
23969
24401
|
}
|
|
24402
|
+
/**
|
|
24403
|
+
* Reference to identity object who owns the source.
|
|
24404
|
+
* @export
|
|
24405
|
+
* @interface MultiHostIntegrationsOwnerV2024
|
|
24406
|
+
*/
|
|
24407
|
+
export interface MultiHostIntegrationsOwnerV2024 {
|
|
24408
|
+
/**
|
|
24409
|
+
* Type of object being referenced.
|
|
24410
|
+
* @type {string}
|
|
24411
|
+
* @memberof MultiHostIntegrationsOwnerV2024
|
|
24412
|
+
*/
|
|
24413
|
+
'type'?: MultiHostIntegrationsOwnerV2024TypeV2024;
|
|
24414
|
+
/**
|
|
24415
|
+
* Owner identity\'s ID.
|
|
24416
|
+
* @type {string}
|
|
24417
|
+
* @memberof MultiHostIntegrationsOwnerV2024
|
|
24418
|
+
*/
|
|
24419
|
+
'id'?: string;
|
|
24420
|
+
/**
|
|
24421
|
+
* Owner identity\'s human-readable display name.
|
|
24422
|
+
* @type {string}
|
|
24423
|
+
* @memberof MultiHostIntegrationsOwnerV2024
|
|
24424
|
+
*/
|
|
24425
|
+
'name'?: string;
|
|
24426
|
+
}
|
|
24427
|
+
export declare const MultiHostIntegrationsOwnerV2024TypeV2024: {
|
|
24428
|
+
readonly Identity: "IDENTITY";
|
|
24429
|
+
};
|
|
24430
|
+
export type MultiHostIntegrationsOwnerV2024TypeV2024 = typeof MultiHostIntegrationsOwnerV2024TypeV2024[keyof typeof MultiHostIntegrationsOwnerV2024TypeV2024];
|
|
23970
24431
|
/**
|
|
23971
24432
|
*
|
|
23972
24433
|
* @export
|
|
@@ -23993,10 +24454,10 @@ export interface MultiHostIntegrationsV2024 {
|
|
|
23993
24454
|
'description': string;
|
|
23994
24455
|
/**
|
|
23995
24456
|
*
|
|
23996
|
-
* @type {
|
|
24457
|
+
* @type {MultiHostIntegrationsOwnerV2024}
|
|
23997
24458
|
* @memberof MultiHostIntegrationsV2024
|
|
23998
24459
|
*/
|
|
23999
|
-
'owner':
|
|
24460
|
+
'owner': MultiHostIntegrationsOwnerV2024;
|
|
24000
24461
|
/**
|
|
24001
24462
|
*
|
|
24002
24463
|
* @type {SourceClusterV2024}
|
|
@@ -24246,10 +24707,10 @@ export interface MultiHostSourcesV2024 {
|
|
|
24246
24707
|
'description'?: string;
|
|
24247
24708
|
/**
|
|
24248
24709
|
*
|
|
24249
|
-
* @type {
|
|
24710
|
+
* @type {MultiHostIntegrationsOwnerV2024}
|
|
24250
24711
|
* @memberof MultiHostSourcesV2024
|
|
24251
24712
|
*/
|
|
24252
|
-
'owner':
|
|
24713
|
+
'owner': MultiHostIntegrationsOwnerV2024;
|
|
24253
24714
|
/**
|
|
24254
24715
|
*
|
|
24255
24716
|
* @type {SourceClusterV2024}
|
|
@@ -38651,7 +39112,7 @@ export interface SourceV2024 {
|
|
|
38651
39112
|
* @type {SourceOwnerV2024}
|
|
38652
39113
|
* @memberof SourceV2024
|
|
38653
39114
|
*/
|
|
38654
|
-
'owner': SourceOwnerV2024;
|
|
39115
|
+
'owner': SourceOwnerV2024 | null;
|
|
38655
39116
|
/**
|
|
38656
39117
|
*
|
|
38657
39118
|
* @type {SourceClusterV2024}
|
|
@@ -39475,6 +39936,19 @@ export interface StartInvocationInputV2024 {
|
|
|
39475
39936
|
*/
|
|
39476
39937
|
'contentJson'?: object;
|
|
39477
39938
|
}
|
|
39939
|
+
/**
|
|
39940
|
+
*
|
|
39941
|
+
* @export
|
|
39942
|
+
* @interface StartLauncher200ResponseV2024
|
|
39943
|
+
*/
|
|
39944
|
+
export interface StartLauncher200ResponseV2024 {
|
|
39945
|
+
/**
|
|
39946
|
+
* ID of the Interactive Process that was launched
|
|
39947
|
+
* @type {string}
|
|
39948
|
+
* @memberof StartLauncher200ResponseV2024
|
|
39949
|
+
*/
|
|
39950
|
+
'interactiveProcessId': string;
|
|
39951
|
+
}
|
|
39478
39952
|
/**
|
|
39479
39953
|
*
|
|
39480
39954
|
* @export
|
|
@@ -39867,6 +40341,79 @@ export interface SubstringV2024 {
|
|
|
39867
40341
|
[key: string]: any;
|
|
39868
40342
|
};
|
|
39869
40343
|
}
|
|
40344
|
+
/**
|
|
40345
|
+
* Tagged object\'s category.
|
|
40346
|
+
* @export
|
|
40347
|
+
* @interface TagTagCategoryRefsInnerV2024
|
|
40348
|
+
*/
|
|
40349
|
+
export interface TagTagCategoryRefsInnerV2024 {
|
|
40350
|
+
/**
|
|
40351
|
+
* DTO type of the tagged object\'s category.
|
|
40352
|
+
* @type {string}
|
|
40353
|
+
* @memberof TagTagCategoryRefsInnerV2024
|
|
40354
|
+
*/
|
|
40355
|
+
'type'?: TagTagCategoryRefsInnerV2024TypeV2024;
|
|
40356
|
+
/**
|
|
40357
|
+
* Tagged object\'s ID.
|
|
40358
|
+
* @type {string}
|
|
40359
|
+
* @memberof TagTagCategoryRefsInnerV2024
|
|
40360
|
+
*/
|
|
40361
|
+
'id'?: string;
|
|
40362
|
+
/**
|
|
40363
|
+
* Tagged object\'s display name.
|
|
40364
|
+
* @type {string}
|
|
40365
|
+
* @memberof TagTagCategoryRefsInnerV2024
|
|
40366
|
+
*/
|
|
40367
|
+
'name'?: string;
|
|
40368
|
+
}
|
|
40369
|
+
export declare const TagTagCategoryRefsInnerV2024TypeV2024: {
|
|
40370
|
+
readonly AccessProfile: "ACCESS_PROFILE";
|
|
40371
|
+
readonly Application: "APPLICATION";
|
|
40372
|
+
readonly Campaign: "CAMPAIGN";
|
|
40373
|
+
readonly Entitlement: "ENTITLEMENT";
|
|
40374
|
+
readonly Identity: "IDENTITY";
|
|
40375
|
+
readonly Role: "ROLE";
|
|
40376
|
+
readonly SodPolicy: "SOD_POLICY";
|
|
40377
|
+
readonly Source: "SOURCE";
|
|
40378
|
+
};
|
|
40379
|
+
export type TagTagCategoryRefsInnerV2024TypeV2024 = typeof TagTagCategoryRefsInnerV2024TypeV2024[keyof typeof TagTagCategoryRefsInnerV2024TypeV2024];
|
|
40380
|
+
/**
|
|
40381
|
+
*
|
|
40382
|
+
* @export
|
|
40383
|
+
* @interface TagV2024
|
|
40384
|
+
*/
|
|
40385
|
+
export interface TagV2024 {
|
|
40386
|
+
/**
|
|
40387
|
+
* Tag id
|
|
40388
|
+
* @type {string}
|
|
40389
|
+
* @memberof TagV2024
|
|
40390
|
+
*/
|
|
40391
|
+
'id': string;
|
|
40392
|
+
/**
|
|
40393
|
+
* Name of the tag.
|
|
40394
|
+
* @type {string}
|
|
40395
|
+
* @memberof TagV2024
|
|
40396
|
+
*/
|
|
40397
|
+
'name': string;
|
|
40398
|
+
/**
|
|
40399
|
+
* Date the tag was created.
|
|
40400
|
+
* @type {string}
|
|
40401
|
+
* @memberof TagV2024
|
|
40402
|
+
*/
|
|
40403
|
+
'created': string;
|
|
40404
|
+
/**
|
|
40405
|
+
* Date the tag was last modified.
|
|
40406
|
+
* @type {string}
|
|
40407
|
+
* @memberof TagV2024
|
|
40408
|
+
*/
|
|
40409
|
+
'modified': string;
|
|
40410
|
+
/**
|
|
40411
|
+
*
|
|
40412
|
+
* @type {Array<TagTagCategoryRefsInnerV2024>}
|
|
40413
|
+
* @memberof TagV2024
|
|
40414
|
+
*/
|
|
40415
|
+
'tagCategoryRefs': Array<TagTagCategoryRefsInnerV2024>;
|
|
40416
|
+
}
|
|
39870
40417
|
/**
|
|
39871
40418
|
*
|
|
39872
40419
|
* @export
|
|
@@ -45218,6 +45765,16 @@ export declare const AccessRequestsV2024ApiAxiosParamCreator: (configuration?: C
|
|
|
45218
45765
|
* @throws {RequiredError}
|
|
45219
45766
|
*/
|
|
45220
45767
|
getAccessRequestConfig: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45768
|
+
/**
|
|
45769
|
+
* Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
|
|
45770
|
+
* @summary Identity entitlement details
|
|
45771
|
+
* @param {string} identityId The identity ID.
|
|
45772
|
+
* @param {string} entitlementId The entitlement ID
|
|
45773
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
45774
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
45775
|
+
* @throws {RequiredError}
|
|
45776
|
+
*/
|
|
45777
|
+
getEntitlementDetailsForIdentity: (identityId: string, entitlementId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45221
45778
|
/**
|
|
45222
45779
|
* Use this API to return a list of access request statuses based on the specified query parameters. If an access request was made for access that an identity already has, the API ignores the access request. These ignored requests do not display in the list of access request statuses. Any user with any user level can get the status of their own access requests. A user with ORG_ADMIN is required to call this API to get a list of statuses for other users.
|
|
45223
45780
|
* @summary Access request status
|
|
@@ -45238,6 +45795,7 @@ export declare const AccessRequestsV2024ApiAxiosParamCreator: (configuration?: C
|
|
|
45238
45795
|
/**
|
|
45239
45796
|
* Use this API to get access request statuses of all the access requests in the org based on the specified query parameters. Any user with user level ORG_ADMIN or scope idn:access-request-administration:read can access this endpoint to get the access request statuses
|
|
45240
45797
|
* @summary Access request status for administrators
|
|
45798
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
45241
45799
|
* @param {string} [requestedFor] Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
45242
45800
|
* @param {string} [requestedBy] Filter the results by the identity who made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
45243
45801
|
* @param {string} [regardingIdentity] Filter the results by the specified identity who is either the requester or target of the requests. *me* indicates the current user. Mutually exclusive with *requested-for* and *requested-by*.
|
|
@@ -45251,15 +45809,16 @@ export declare const AccessRequestsV2024ApiAxiosParamCreator: (configuration?: C
|
|
|
45251
45809
|
* @param {*} [axiosOptions] Override http request option.
|
|
45252
45810
|
* @throws {RequiredError}
|
|
45253
45811
|
*/
|
|
45254
|
-
listAdministratorsAccessRequestStatus: (requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45812
|
+
listAdministratorsAccessRequestStatus: (xSailPointExperimental: string, requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45255
45813
|
/**
|
|
45256
45814
|
* Use this API to fetch account information for an identity against the items in an access request. Used to fetch accountSelection for the AccessRequest prior to submitting for async processing.
|
|
45257
45815
|
* @summary Get accounts selections for identity
|
|
45258
45816
|
* @param {AccountsSelectionRequestV2024} accountsSelectionRequestV2024
|
|
45817
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
45259
45818
|
* @param {*} [axiosOptions] Override http request option.
|
|
45260
45819
|
* @throws {RequiredError}
|
|
45261
45820
|
*/
|
|
45262
|
-
loadAccountSelections: (accountsSelectionRequestV2024: AccountsSelectionRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45821
|
+
loadAccountSelections: (accountsSelectionRequestV2024: AccountsSelectionRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45263
45822
|
/**
|
|
45264
45823
|
* This endpoint replaces the current access-request configuration.
|
|
45265
45824
|
* @summary Update access request configuration
|
|
@@ -45321,6 +45880,16 @@ export declare const AccessRequestsV2024ApiFp: (configuration?: Configuration) =
|
|
|
45321
45880
|
* @throws {RequiredError}
|
|
45322
45881
|
*/
|
|
45323
45882
|
getAccessRequestConfig(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessRequestConfigV2024>>;
|
|
45883
|
+
/**
|
|
45884
|
+
* Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
|
|
45885
|
+
* @summary Identity entitlement details
|
|
45886
|
+
* @param {string} identityId The identity ID.
|
|
45887
|
+
* @param {string} entitlementId The entitlement ID
|
|
45888
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
45889
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
45890
|
+
* @throws {RequiredError}
|
|
45891
|
+
*/
|
|
45892
|
+
getEntitlementDetailsForIdentity(identityId: string, entitlementId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityEntitlementDetailsV2024>>;
|
|
45324
45893
|
/**
|
|
45325
45894
|
* Use this API to return a list of access request statuses based on the specified query parameters. If an access request was made for access that an identity already has, the API ignores the access request. These ignored requests do not display in the list of access request statuses. Any user with any user level can get the status of their own access requests. A user with ORG_ADMIN is required to call this API to get a list of statuses for other users.
|
|
45326
45895
|
* @summary Access request status
|
|
@@ -45341,6 +45910,7 @@ export declare const AccessRequestsV2024ApiFp: (configuration?: Configuration) =
|
|
|
45341
45910
|
/**
|
|
45342
45911
|
* Use this API to get access request statuses of all the access requests in the org based on the specified query parameters. Any user with user level ORG_ADMIN or scope idn:access-request-administration:read can access this endpoint to get the access request statuses
|
|
45343
45912
|
* @summary Access request status for administrators
|
|
45913
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
45344
45914
|
* @param {string} [requestedFor] Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
45345
45915
|
* @param {string} [requestedBy] Filter the results by the identity who made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
45346
45916
|
* @param {string} [regardingIdentity] Filter the results by the specified identity who is either the requester or target of the requests. *me* indicates the current user. Mutually exclusive with *requested-for* and *requested-by*.
|
|
@@ -45354,15 +45924,16 @@ export declare const AccessRequestsV2024ApiFp: (configuration?: Configuration) =
|
|
|
45354
45924
|
* @param {*} [axiosOptions] Override http request option.
|
|
45355
45925
|
* @throws {RequiredError}
|
|
45356
45926
|
*/
|
|
45357
|
-
listAdministratorsAccessRequestStatus(requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestAdminItemStatusV2024>>>;
|
|
45927
|
+
listAdministratorsAccessRequestStatus(xSailPointExperimental: string, requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestAdminItemStatusV2024>>>;
|
|
45358
45928
|
/**
|
|
45359
45929
|
* Use this API to fetch account information for an identity against the items in an access request. Used to fetch accountSelection for the AccessRequest prior to submitting for async processing.
|
|
45360
45930
|
* @summary Get accounts selections for identity
|
|
45361
45931
|
* @param {AccountsSelectionRequestV2024} accountsSelectionRequestV2024
|
|
45932
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
45362
45933
|
* @param {*} [axiosOptions] Override http request option.
|
|
45363
45934
|
* @throws {RequiredError}
|
|
45364
45935
|
*/
|
|
45365
|
-
loadAccountSelections(accountsSelectionRequestV2024: AccountsSelectionRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountsSelectionResponseV2024>>;
|
|
45936
|
+
loadAccountSelections(accountsSelectionRequestV2024: AccountsSelectionRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountsSelectionResponseV2024>>;
|
|
45366
45937
|
/**
|
|
45367
45938
|
* This endpoint replaces the current access-request configuration.
|
|
45368
45939
|
* @summary Update access request configuration
|
|
@@ -45424,6 +45995,14 @@ export declare const AccessRequestsV2024ApiFactory: (configuration?: Configurati
|
|
|
45424
45995
|
* @throws {RequiredError}
|
|
45425
45996
|
*/
|
|
45426
45997
|
getAccessRequestConfig(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessRequestConfigV2024>;
|
|
45998
|
+
/**
|
|
45999
|
+
* Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
|
|
46000
|
+
* @summary Identity entitlement details
|
|
46001
|
+
* @param {AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest} requestParameters Request parameters.
|
|
46002
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
46003
|
+
* @throws {RequiredError}
|
|
46004
|
+
*/
|
|
46005
|
+
getEntitlementDetailsForIdentity(requestParameters: AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityEntitlementDetailsV2024>;
|
|
45427
46006
|
/**
|
|
45428
46007
|
* Use this API to return a list of access request statuses based on the specified query parameters. If an access request was made for access that an identity already has, the API ignores the access request. These ignored requests do not display in the list of access request statuses. Any user with any user level can get the status of their own access requests. A user with ORG_ADMIN is required to call this API to get a list of statuses for other users.
|
|
45429
46008
|
* @summary Access request status
|
|
@@ -45439,7 +46018,7 @@ export declare const AccessRequestsV2024ApiFactory: (configuration?: Configurati
|
|
|
45439
46018
|
* @param {*} [axiosOptions] Override http request option.
|
|
45440
46019
|
* @throws {RequiredError}
|
|
45441
46020
|
*/
|
|
45442
|
-
listAdministratorsAccessRequestStatus(requestParameters
|
|
46021
|
+
listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestAdminItemStatusV2024>>;
|
|
45443
46022
|
/**
|
|
45444
46023
|
* Use this API to fetch account information for an identity against the items in an access request. Used to fetch accountSelection for the AccessRequest prior to submitting for async processing.
|
|
45445
46024
|
* @summary Get accounts selections for identity
|
|
@@ -45522,6 +46101,31 @@ export interface AccessRequestsV2024ApiCreateAccessRequestRequest {
|
|
|
45522
46101
|
*/
|
|
45523
46102
|
readonly accessRequestV2024: AccessRequestV2024;
|
|
45524
46103
|
}
|
|
46104
|
+
/**
|
|
46105
|
+
* Request parameters for getEntitlementDetailsForIdentity operation in AccessRequestsV2024Api.
|
|
46106
|
+
* @export
|
|
46107
|
+
* @interface AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest
|
|
46108
|
+
*/
|
|
46109
|
+
export interface AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest {
|
|
46110
|
+
/**
|
|
46111
|
+
* The identity ID.
|
|
46112
|
+
* @type {string}
|
|
46113
|
+
* @memberof AccessRequestsV2024ApiGetEntitlementDetailsForIdentity
|
|
46114
|
+
*/
|
|
46115
|
+
readonly identityId: string;
|
|
46116
|
+
/**
|
|
46117
|
+
* The entitlement ID
|
|
46118
|
+
* @type {string}
|
|
46119
|
+
* @memberof AccessRequestsV2024ApiGetEntitlementDetailsForIdentity
|
|
46120
|
+
*/
|
|
46121
|
+
readonly entitlementId: string;
|
|
46122
|
+
/**
|
|
46123
|
+
* Use this header to enable this experimental API.
|
|
46124
|
+
* @type {string}
|
|
46125
|
+
* @memberof AccessRequestsV2024ApiGetEntitlementDetailsForIdentity
|
|
46126
|
+
*/
|
|
46127
|
+
readonly xSailPointExperimental?: string;
|
|
46128
|
+
}
|
|
45525
46129
|
/**
|
|
45526
46130
|
* Request parameters for listAccessRequestStatus operation in AccessRequestsV2024Api.
|
|
45527
46131
|
* @export
|
|
@@ -45595,6 +46199,12 @@ export interface AccessRequestsV2024ApiListAccessRequestStatusRequest {
|
|
|
45595
46199
|
* @interface AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest
|
|
45596
46200
|
*/
|
|
45597
46201
|
export interface AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest {
|
|
46202
|
+
/**
|
|
46203
|
+
* Use this header to enable this experimental API.
|
|
46204
|
+
* @type {string}
|
|
46205
|
+
* @memberof AccessRequestsV2024ApiListAdministratorsAccessRequestStatus
|
|
46206
|
+
*/
|
|
46207
|
+
readonly xSailPointExperimental: string;
|
|
45598
46208
|
/**
|
|
45599
46209
|
* Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
45600
46210
|
* @type {string}
|
|
@@ -45668,6 +46278,12 @@ export interface AccessRequestsV2024ApiLoadAccountSelectionsRequest {
|
|
|
45668
46278
|
* @memberof AccessRequestsV2024ApiLoadAccountSelections
|
|
45669
46279
|
*/
|
|
45670
46280
|
readonly accountsSelectionRequestV2024: AccountsSelectionRequestV2024;
|
|
46281
|
+
/**
|
|
46282
|
+
* Use this header to enable this experimental API.
|
|
46283
|
+
* @type {string}
|
|
46284
|
+
* @memberof AccessRequestsV2024ApiLoadAccountSelections
|
|
46285
|
+
*/
|
|
46286
|
+
readonly xSailPointExperimental?: string;
|
|
45671
46287
|
}
|
|
45672
46288
|
/**
|
|
45673
46289
|
* Request parameters for setAccessRequestConfig operation in AccessRequestsV2024Api.
|
|
@@ -45742,6 +46358,15 @@ export declare class AccessRequestsV2024Api extends BaseAPI {
|
|
|
45742
46358
|
* @memberof AccessRequestsV2024Api
|
|
45743
46359
|
*/
|
|
45744
46360
|
getAccessRequestConfig(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestConfigV2024, any>>;
|
|
46361
|
+
/**
|
|
46362
|
+
* Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
|
|
46363
|
+
* @summary Identity entitlement details
|
|
46364
|
+
* @param {AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest} requestParameters Request parameters.
|
|
46365
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
46366
|
+
* @throws {RequiredError}
|
|
46367
|
+
* @memberof AccessRequestsV2024Api
|
|
46368
|
+
*/
|
|
46369
|
+
getEntitlementDetailsForIdentity(requestParameters: AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityEntitlementDetailsV2024, any>>;
|
|
45745
46370
|
/**
|
|
45746
46371
|
* Use this API to return a list of access request statuses based on the specified query parameters. If an access request was made for access that an identity already has, the API ignores the access request. These ignored requests do not display in the list of access request statuses. Any user with any user level can get the status of their own access requests. A user with ORG_ADMIN is required to call this API to get a list of statuses for other users.
|
|
45747
46372
|
* @summary Access request status
|
|
@@ -45759,7 +46384,7 @@ export declare class AccessRequestsV2024Api extends BaseAPI {
|
|
|
45759
46384
|
* @throws {RequiredError}
|
|
45760
46385
|
* @memberof AccessRequestsV2024Api
|
|
45761
46386
|
*/
|
|
45762
|
-
listAdministratorsAccessRequestStatus(requestParameters
|
|
46387
|
+
listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestAdminItemStatusV2024[], any>>;
|
|
45763
46388
|
/**
|
|
45764
46389
|
* Use this API to fetch account information for an identity against the items in an access request. Used to fetch accountSelection for the AccessRequest prior to submitting for async processing.
|
|
45765
46390
|
* @summary Get accounts selections for identity
|
|
@@ -62250,6 +62875,17 @@ export declare const IdentitiesV2024ApiAxiosParamCreator: (configuration?: Confi
|
|
|
62250
62875
|
* @throws {RequiredError}
|
|
62251
62876
|
*/
|
|
62252
62877
|
getRoleAssignments: (identityId: string, roleId?: string, roleName?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62878
|
+
/**
|
|
62879
|
+
* The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
|
|
62880
|
+
* @summary List of entitlements by identity.
|
|
62881
|
+
* @param {string} id Identity Id
|
|
62882
|
+
* @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.
|
|
62883
|
+
* @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.
|
|
62884
|
+
* @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.
|
|
62885
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
62886
|
+
* @throws {RequiredError}
|
|
62887
|
+
*/
|
|
62888
|
+
listEntitlementsByIdentity: (id: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62253
62889
|
/**
|
|
62254
62890
|
* This API returns a list of identities.
|
|
62255
62891
|
* @summary List identities
|
|
@@ -62285,10 +62921,11 @@ export declare const IdentitiesV2024ApiAxiosParamCreator: (configuration?: Confi
|
|
|
62285
62921
|
* This API submits a task for inviting given identities via email to complete registration. The invitation email will include the link. After selecting the link an identity will be able to set up password and log in into the system. Invitations expire after 7 days. By default invitations send to the work identity email. It can be changed in Admin > Identities > Identity Profiles by selecting corresponding profile and editing Invitation Options. This task will send an invitation email only for unregistered identities. The executed task status can be checked by Task Management > [Get task status by ID](https://developer.sailpoint.com/docs/api/beta/get-task-status).
|
|
62286
62922
|
* @summary Invite identities to register
|
|
62287
62923
|
* @param {InviteIdentitiesRequestV2024} inviteIdentitiesRequestV2024
|
|
62924
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62288
62925
|
* @param {*} [axiosOptions] Override http request option.
|
|
62289
62926
|
* @throws {RequiredError}
|
|
62290
62927
|
*/
|
|
62291
|
-
startIdentitiesInvite: (inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62928
|
+
startIdentitiesInvite: (inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62292
62929
|
/**
|
|
62293
62930
|
* This operation should not be used to schedule your own identity processing or to perform system wide identity refreshes. The system will use a combination of [event-based processing](https://documentation.sailpoint.com/saas/help/setup/identity_processing.html?h=process#event-based-processing) and [scheduled processing](https://documentation.sailpoint.com/saas/help/setup/identity_processing.html?h=process#scheduled-processing) that runs every day at 8:00 AM and 8:00 PM in the tenant\'s timezone to keep your identities synchronized. This endpoint will perform the following tasks: 1. Calculate identity attributes, including applying or running any rules or transforms (e.g. calculate Lifecycle State at a point-in-time it\'s expected to change). 2. Evaluate role assignments, leading to assignment of new roles and removal of existing roles. 3. Enforce provisioning for any assigned accesses that haven\'t been fulfilled (e.g. failure due to source health). 4. Recalculate manager relationships. 5. Potentially clean-up identity processing errors, assuming the error has been resolved.
|
|
62294
62931
|
* @summary Process a list of identityids
|
|
@@ -62356,6 +62993,17 @@ export declare const IdentitiesV2024ApiFp: (configuration?: Configuration) => {
|
|
|
62356
62993
|
* @throws {RequiredError}
|
|
62357
62994
|
*/
|
|
62358
62995
|
getRoleAssignments(identityId: string, roleId?: string, roleName?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GetRoleAssignments200ResponseInnerV2024>>>;
|
|
62996
|
+
/**
|
|
62997
|
+
* The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
|
|
62998
|
+
* @summary List of entitlements by identity.
|
|
62999
|
+
* @param {string} id Identity Id
|
|
63000
|
+
* @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.
|
|
63001
|
+
* @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.
|
|
63002
|
+
* @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.
|
|
63003
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
63004
|
+
* @throws {RequiredError}
|
|
63005
|
+
*/
|
|
63006
|
+
listEntitlementsByIdentity(id: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IdentityEntitlementsV2024>>>;
|
|
62359
63007
|
/**
|
|
62360
63008
|
* This API returns a list of identities.
|
|
62361
63009
|
* @summary List identities
|
|
@@ -62391,10 +63039,11 @@ export declare const IdentitiesV2024ApiFp: (configuration?: Configuration) => {
|
|
|
62391
63039
|
* This API submits a task for inviting given identities via email to complete registration. The invitation email will include the link. After selecting the link an identity will be able to set up password and log in into the system. Invitations expire after 7 days. By default invitations send to the work identity email. It can be changed in Admin > Identities > Identity Profiles by selecting corresponding profile and editing Invitation Options. This task will send an invitation email only for unregistered identities. The executed task status can be checked by Task Management > [Get task status by ID](https://developer.sailpoint.com/docs/api/beta/get-task-status).
|
|
62392
63040
|
* @summary Invite identities to register
|
|
62393
63041
|
* @param {InviteIdentitiesRequestV2024} inviteIdentitiesRequestV2024
|
|
63042
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62394
63043
|
* @param {*} [axiosOptions] Override http request option.
|
|
62395
63044
|
* @throws {RequiredError}
|
|
62396
63045
|
*/
|
|
62397
|
-
startIdentitiesInvite(inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2024>>;
|
|
63046
|
+
startIdentitiesInvite(inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2024>>;
|
|
62398
63047
|
/**
|
|
62399
63048
|
* This operation should not be used to schedule your own identity processing or to perform system wide identity refreshes. The system will use a combination of [event-based processing](https://documentation.sailpoint.com/saas/help/setup/identity_processing.html?h=process#event-based-processing) and [scheduled processing](https://documentation.sailpoint.com/saas/help/setup/identity_processing.html?h=process#scheduled-processing) that runs every day at 8:00 AM and 8:00 PM in the tenant\'s timezone to keep your identities synchronized. This endpoint will perform the following tasks: 1. Calculate identity attributes, including applying or running any rules or transforms (e.g. calculate Lifecycle State at a point-in-time it\'s expected to change). 2. Evaluate role assignments, leading to assignment of new roles and removal of existing roles. 3. Enforce provisioning for any assigned accesses that haven\'t been fulfilled (e.g. failure due to source health). 4. Recalculate manager relationships. 5. Potentially clean-up identity processing errors, assuming the error has been resolved.
|
|
62400
63049
|
* @summary Process a list of identityids
|
|
@@ -62459,6 +63108,14 @@ export declare const IdentitiesV2024ApiFactory: (configuration?: Configuration,
|
|
|
62459
63108
|
* @throws {RequiredError}
|
|
62460
63109
|
*/
|
|
62461
63110
|
getRoleAssignments(requestParameters: IdentitiesV2024ApiGetRoleAssignmentsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<GetRoleAssignments200ResponseInnerV2024>>;
|
|
63111
|
+
/**
|
|
63112
|
+
* The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
|
|
63113
|
+
* @summary List of entitlements by identity.
|
|
63114
|
+
* @param {IdentitiesV2024ApiListEntitlementsByIdentityRequest} requestParameters Request parameters.
|
|
63115
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
63116
|
+
* @throws {RequiredError}
|
|
63117
|
+
*/
|
|
63118
|
+
listEntitlementsByIdentity(requestParameters: IdentitiesV2024ApiListEntitlementsByIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<IdentityEntitlementsV2024>>;
|
|
62462
63119
|
/**
|
|
62463
63120
|
* This API returns a list of identities.
|
|
62464
63121
|
* @summary List identities
|
|
@@ -62591,6 +63248,37 @@ export interface IdentitiesV2024ApiGetRoleAssignmentsRequest {
|
|
|
62591
63248
|
*/
|
|
62592
63249
|
readonly roleName?: string;
|
|
62593
63250
|
}
|
|
63251
|
+
/**
|
|
63252
|
+
* Request parameters for listEntitlementsByIdentity operation in IdentitiesV2024Api.
|
|
63253
|
+
* @export
|
|
63254
|
+
* @interface IdentitiesV2024ApiListEntitlementsByIdentityRequest
|
|
63255
|
+
*/
|
|
63256
|
+
export interface IdentitiesV2024ApiListEntitlementsByIdentityRequest {
|
|
63257
|
+
/**
|
|
63258
|
+
* Identity Id
|
|
63259
|
+
* @type {string}
|
|
63260
|
+
* @memberof IdentitiesV2024ApiListEntitlementsByIdentity
|
|
63261
|
+
*/
|
|
63262
|
+
readonly id: string;
|
|
63263
|
+
/**
|
|
63264
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
63265
|
+
* @type {number}
|
|
63266
|
+
* @memberof IdentitiesV2024ApiListEntitlementsByIdentity
|
|
63267
|
+
*/
|
|
63268
|
+
readonly limit?: number;
|
|
63269
|
+
/**
|
|
63270
|
+
* 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.
|
|
63271
|
+
* @type {number}
|
|
63272
|
+
* @memberof IdentitiesV2024ApiListEntitlementsByIdentity
|
|
63273
|
+
*/
|
|
63274
|
+
readonly offset?: number;
|
|
63275
|
+
/**
|
|
63276
|
+
* 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.
|
|
63277
|
+
* @type {boolean}
|
|
63278
|
+
* @memberof IdentitiesV2024ApiListEntitlementsByIdentity
|
|
63279
|
+
*/
|
|
63280
|
+
readonly count?: boolean;
|
|
63281
|
+
}
|
|
62594
63282
|
/**
|
|
62595
63283
|
* Request parameters for listIdentities operation in IdentitiesV2024Api.
|
|
62596
63284
|
* @export
|
|
@@ -62684,6 +63372,12 @@ export interface IdentitiesV2024ApiStartIdentitiesInviteRequest {
|
|
|
62684
63372
|
* @memberof IdentitiesV2024ApiStartIdentitiesInvite
|
|
62685
63373
|
*/
|
|
62686
63374
|
readonly inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024;
|
|
63375
|
+
/**
|
|
63376
|
+
* Use this header to enable this experimental API.
|
|
63377
|
+
* @type {string}
|
|
63378
|
+
* @memberof IdentitiesV2024ApiStartIdentitiesInvite
|
|
63379
|
+
*/
|
|
63380
|
+
readonly xSailPointExperimental?: string;
|
|
62687
63381
|
}
|
|
62688
63382
|
/**
|
|
62689
63383
|
* Request parameters for startIdentityProcessing operation in IdentitiesV2024Api.
|
|
@@ -62775,6 +63469,15 @@ export declare class IdentitiesV2024Api extends BaseAPI {
|
|
|
62775
63469
|
* @memberof IdentitiesV2024Api
|
|
62776
63470
|
*/
|
|
62777
63471
|
getRoleAssignments(requestParameters: IdentitiesV2024ApiGetRoleAssignmentsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetRoleAssignments200ResponseInnerV2024[], any>>;
|
|
63472
|
+
/**
|
|
63473
|
+
* The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
|
|
63474
|
+
* @summary List of entitlements by identity.
|
|
63475
|
+
* @param {IdentitiesV2024ApiListEntitlementsByIdentityRequest} requestParameters Request parameters.
|
|
63476
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
63477
|
+
* @throws {RequiredError}
|
|
63478
|
+
* @memberof IdentitiesV2024Api
|
|
63479
|
+
*/
|
|
63480
|
+
listEntitlementsByIdentity(requestParameters: IdentitiesV2024ApiListEntitlementsByIdentityRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityEntitlementsV2024[], any>>;
|
|
62778
63481
|
/**
|
|
62779
63482
|
* This API returns a list of identities.
|
|
62780
63483
|
* @summary List identities
|
|
@@ -64203,11 +64906,10 @@ export declare const IdentityProfilesV2024ApiAxiosParamCreator: (configuration?:
|
|
|
64203
64906
|
* This generates a non-persisted IdentityDetails object that will represent as the preview of the identities attribute when the given policy\'\'s attribute config is applied.
|
|
64204
64907
|
* @summary Generate identity profile preview
|
|
64205
64908
|
* @param {IdentityPreviewRequestV2024} identityPreviewRequestV2024 Identity Preview request body.
|
|
64206
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
64207
64909
|
* @param {*} [axiosOptions] Override http request option.
|
|
64208
64910
|
* @throws {RequiredError}
|
|
64209
64911
|
*/
|
|
64210
|
-
generateIdentityPreview: (identityPreviewRequestV2024: IdentityPreviewRequestV2024,
|
|
64912
|
+
generateIdentityPreview: (identityPreviewRequestV2024: IdentityPreviewRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
64211
64913
|
/**
|
|
64212
64914
|
* This returns the default identity attribute config.
|
|
64213
64915
|
* @summary Get default identity attribute config
|
|
@@ -64307,11 +65009,10 @@ export declare const IdentityProfilesV2024ApiFp: (configuration?: Configuration)
|
|
|
64307
65009
|
* This generates a non-persisted IdentityDetails object that will represent as the preview of the identities attribute when the given policy\'\'s attribute config is applied.
|
|
64308
65010
|
* @summary Generate identity profile preview
|
|
64309
65011
|
* @param {IdentityPreviewRequestV2024} identityPreviewRequestV2024 Identity Preview request body.
|
|
64310
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
64311
65012
|
* @param {*} [axiosOptions] Override http request option.
|
|
64312
65013
|
* @throws {RequiredError}
|
|
64313
65014
|
*/
|
|
64314
|
-
generateIdentityPreview(identityPreviewRequestV2024: IdentityPreviewRequestV2024,
|
|
65015
|
+
generateIdentityPreview(identityPreviewRequestV2024: IdentityPreviewRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityPreviewResponseV2024>>;
|
|
64315
65016
|
/**
|
|
64316
65017
|
* This returns the default identity attribute config.
|
|
64317
65018
|
* @summary Get default identity attribute config
|
|
@@ -64548,12 +65249,6 @@ export interface IdentityProfilesV2024ApiGenerateIdentityPreviewRequest {
|
|
|
64548
65249
|
* @memberof IdentityProfilesV2024ApiGenerateIdentityPreview
|
|
64549
65250
|
*/
|
|
64550
65251
|
readonly identityPreviewRequestV2024: IdentityPreviewRequestV2024;
|
|
64551
|
-
/**
|
|
64552
|
-
* Use this header to enable this experimental API.
|
|
64553
|
-
* @type {string}
|
|
64554
|
-
* @memberof IdentityProfilesV2024ApiGenerateIdentityPreview
|
|
64555
|
-
*/
|
|
64556
|
-
readonly xSailPointExperimental?: string;
|
|
64557
65252
|
}
|
|
64558
65253
|
/**
|
|
64559
65254
|
* Request parameters for getDefaultIdentityAttributeConfig operation in IdentityProfilesV2024Api.
|
|
@@ -64770,6 +65465,332 @@ export declare class IdentityProfilesV2024Api extends BaseAPI {
|
|
|
64770
65465
|
*/
|
|
64771
65466
|
updateIdentityProfile(requestParameters: IdentityProfilesV2024ApiUpdateIdentityProfileRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityProfileV2024, any>>;
|
|
64772
65467
|
}
|
|
65468
|
+
/**
|
|
65469
|
+
* LaunchersV2024Api - axios parameter creator
|
|
65470
|
+
* @export
|
|
65471
|
+
*/
|
|
65472
|
+
export declare const LaunchersV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
65473
|
+
/**
|
|
65474
|
+
* Create a Launcher with given information
|
|
65475
|
+
* @summary Create launcher
|
|
65476
|
+
* @param {LauncherRequestV2024} launcherRequestV2024 Payload to create a Launcher
|
|
65477
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65478
|
+
* @throws {RequiredError}
|
|
65479
|
+
*/
|
|
65480
|
+
createLauncher: (launcherRequestV2024: LauncherRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65481
|
+
/**
|
|
65482
|
+
* Delete the given Launcher ID
|
|
65483
|
+
* @summary Delete launcher
|
|
65484
|
+
* @param {string} launcherID ID of the Launcher to be deleted
|
|
65485
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65486
|
+
* @throws {RequiredError}
|
|
65487
|
+
*/
|
|
65488
|
+
deleteLauncher: (launcherID: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65489
|
+
/**
|
|
65490
|
+
* Get details for the given Launcher ID
|
|
65491
|
+
* @summary Get launcher by id
|
|
65492
|
+
* @param {string} launcherID ID of the Launcher to be retrieved
|
|
65493
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65494
|
+
* @throws {RequiredError}
|
|
65495
|
+
*/
|
|
65496
|
+
getLauncher: (launcherID: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65497
|
+
/**
|
|
65498
|
+
* Return a list of Launchers for the authenticated tenant
|
|
65499
|
+
* @summary List all launchers for tenant
|
|
65500
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **description**: *sw* **disabled**: *eq* **name**: *sw*
|
|
65501
|
+
* @param {string} [next] Pagination marker
|
|
65502
|
+
* @param {number} [limit] Number of Launchers to return
|
|
65503
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65504
|
+
* @throws {RequiredError}
|
|
65505
|
+
*/
|
|
65506
|
+
getLaunchers: (filters?: string, next?: string, limit?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65507
|
+
/**
|
|
65508
|
+
* Replace the given Launcher ID with given payload
|
|
65509
|
+
* @summary Replace launcher
|
|
65510
|
+
* @param {string} launcherID ID of the Launcher to be replaced
|
|
65511
|
+
* @param {LauncherRequestV2024} launcherRequestV2024 Payload to replace Launcher
|
|
65512
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65513
|
+
* @throws {RequiredError}
|
|
65514
|
+
*/
|
|
65515
|
+
putLauncher: (launcherID: string, launcherRequestV2024: LauncherRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65516
|
+
/**
|
|
65517
|
+
* Launch the given Launcher ID
|
|
65518
|
+
* @summary Launch a launcher
|
|
65519
|
+
* @param {string} launcherID ID of the Launcher to be launched
|
|
65520
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65521
|
+
* @throws {RequiredError}
|
|
65522
|
+
*/
|
|
65523
|
+
startLauncher: (launcherID: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65524
|
+
};
|
|
65525
|
+
/**
|
|
65526
|
+
* LaunchersV2024Api - functional programming interface
|
|
65527
|
+
* @export
|
|
65528
|
+
*/
|
|
65529
|
+
export declare const LaunchersV2024ApiFp: (configuration?: Configuration) => {
|
|
65530
|
+
/**
|
|
65531
|
+
* Create a Launcher with given information
|
|
65532
|
+
* @summary Create launcher
|
|
65533
|
+
* @param {LauncherRequestV2024} launcherRequestV2024 Payload to create a Launcher
|
|
65534
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65535
|
+
* @throws {RequiredError}
|
|
65536
|
+
*/
|
|
65537
|
+
createLauncher(launcherRequestV2024: LauncherRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LauncherV2024>>;
|
|
65538
|
+
/**
|
|
65539
|
+
* Delete the given Launcher ID
|
|
65540
|
+
* @summary Delete launcher
|
|
65541
|
+
* @param {string} launcherID ID of the Launcher to be deleted
|
|
65542
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65543
|
+
* @throws {RequiredError}
|
|
65544
|
+
*/
|
|
65545
|
+
deleteLauncher(launcherID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
65546
|
+
/**
|
|
65547
|
+
* Get details for the given Launcher ID
|
|
65548
|
+
* @summary Get launcher by id
|
|
65549
|
+
* @param {string} launcherID ID of the Launcher to be retrieved
|
|
65550
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65551
|
+
* @throws {RequiredError}
|
|
65552
|
+
*/
|
|
65553
|
+
getLauncher(launcherID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LauncherV2024>>;
|
|
65554
|
+
/**
|
|
65555
|
+
* Return a list of Launchers for the authenticated tenant
|
|
65556
|
+
* @summary List all launchers for tenant
|
|
65557
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **description**: *sw* **disabled**: *eq* **name**: *sw*
|
|
65558
|
+
* @param {string} [next] Pagination marker
|
|
65559
|
+
* @param {number} [limit] Number of Launchers to return
|
|
65560
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65561
|
+
* @throws {RequiredError}
|
|
65562
|
+
*/
|
|
65563
|
+
getLaunchers(filters?: string, next?: string, limit?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetLaunchers200ResponseV2024>>;
|
|
65564
|
+
/**
|
|
65565
|
+
* Replace the given Launcher ID with given payload
|
|
65566
|
+
* @summary Replace launcher
|
|
65567
|
+
* @param {string} launcherID ID of the Launcher to be replaced
|
|
65568
|
+
* @param {LauncherRequestV2024} launcherRequestV2024 Payload to replace Launcher
|
|
65569
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65570
|
+
* @throws {RequiredError}
|
|
65571
|
+
*/
|
|
65572
|
+
putLauncher(launcherID: string, launcherRequestV2024: LauncherRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LauncherV2024>>;
|
|
65573
|
+
/**
|
|
65574
|
+
* Launch the given Launcher ID
|
|
65575
|
+
* @summary Launch a launcher
|
|
65576
|
+
* @param {string} launcherID ID of the Launcher to be launched
|
|
65577
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65578
|
+
* @throws {RequiredError}
|
|
65579
|
+
*/
|
|
65580
|
+
startLauncher(launcherID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StartLauncher200ResponseV2024>>;
|
|
65581
|
+
};
|
|
65582
|
+
/**
|
|
65583
|
+
* LaunchersV2024Api - factory interface
|
|
65584
|
+
* @export
|
|
65585
|
+
*/
|
|
65586
|
+
export declare const LaunchersV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
65587
|
+
/**
|
|
65588
|
+
* Create a Launcher with given information
|
|
65589
|
+
* @summary Create launcher
|
|
65590
|
+
* @param {LaunchersV2024ApiCreateLauncherRequest} requestParameters Request parameters.
|
|
65591
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65592
|
+
* @throws {RequiredError}
|
|
65593
|
+
*/
|
|
65594
|
+
createLauncher(requestParameters: LaunchersV2024ApiCreateLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<LauncherV2024>;
|
|
65595
|
+
/**
|
|
65596
|
+
* Delete the given Launcher ID
|
|
65597
|
+
* @summary Delete launcher
|
|
65598
|
+
* @param {LaunchersV2024ApiDeleteLauncherRequest} requestParameters Request parameters.
|
|
65599
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65600
|
+
* @throws {RequiredError}
|
|
65601
|
+
*/
|
|
65602
|
+
deleteLauncher(requestParameters: LaunchersV2024ApiDeleteLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
65603
|
+
/**
|
|
65604
|
+
* Get details for the given Launcher ID
|
|
65605
|
+
* @summary Get launcher by id
|
|
65606
|
+
* @param {LaunchersV2024ApiGetLauncherRequest} requestParameters Request parameters.
|
|
65607
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65608
|
+
* @throws {RequiredError}
|
|
65609
|
+
*/
|
|
65610
|
+
getLauncher(requestParameters: LaunchersV2024ApiGetLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<LauncherV2024>;
|
|
65611
|
+
/**
|
|
65612
|
+
* Return a list of Launchers for the authenticated tenant
|
|
65613
|
+
* @summary List all launchers for tenant
|
|
65614
|
+
* @param {LaunchersV2024ApiGetLaunchersRequest} requestParameters Request parameters.
|
|
65615
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65616
|
+
* @throws {RequiredError}
|
|
65617
|
+
*/
|
|
65618
|
+
getLaunchers(requestParameters?: LaunchersV2024ApiGetLaunchersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetLaunchers200ResponseV2024>;
|
|
65619
|
+
/**
|
|
65620
|
+
* Replace the given Launcher ID with given payload
|
|
65621
|
+
* @summary Replace launcher
|
|
65622
|
+
* @param {LaunchersV2024ApiPutLauncherRequest} requestParameters Request parameters.
|
|
65623
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65624
|
+
* @throws {RequiredError}
|
|
65625
|
+
*/
|
|
65626
|
+
putLauncher(requestParameters: LaunchersV2024ApiPutLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<LauncherV2024>;
|
|
65627
|
+
/**
|
|
65628
|
+
* Launch the given Launcher ID
|
|
65629
|
+
* @summary Launch a launcher
|
|
65630
|
+
* @param {LaunchersV2024ApiStartLauncherRequest} requestParameters Request parameters.
|
|
65631
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65632
|
+
* @throws {RequiredError}
|
|
65633
|
+
*/
|
|
65634
|
+
startLauncher(requestParameters: LaunchersV2024ApiStartLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<StartLauncher200ResponseV2024>;
|
|
65635
|
+
};
|
|
65636
|
+
/**
|
|
65637
|
+
* Request parameters for createLauncher operation in LaunchersV2024Api.
|
|
65638
|
+
* @export
|
|
65639
|
+
* @interface LaunchersV2024ApiCreateLauncherRequest
|
|
65640
|
+
*/
|
|
65641
|
+
export interface LaunchersV2024ApiCreateLauncherRequest {
|
|
65642
|
+
/**
|
|
65643
|
+
* Payload to create a Launcher
|
|
65644
|
+
* @type {LauncherRequestV2024}
|
|
65645
|
+
* @memberof LaunchersV2024ApiCreateLauncher
|
|
65646
|
+
*/
|
|
65647
|
+
readonly launcherRequestV2024: LauncherRequestV2024;
|
|
65648
|
+
}
|
|
65649
|
+
/**
|
|
65650
|
+
* Request parameters for deleteLauncher operation in LaunchersV2024Api.
|
|
65651
|
+
* @export
|
|
65652
|
+
* @interface LaunchersV2024ApiDeleteLauncherRequest
|
|
65653
|
+
*/
|
|
65654
|
+
export interface LaunchersV2024ApiDeleteLauncherRequest {
|
|
65655
|
+
/**
|
|
65656
|
+
* ID of the Launcher to be deleted
|
|
65657
|
+
* @type {string}
|
|
65658
|
+
* @memberof LaunchersV2024ApiDeleteLauncher
|
|
65659
|
+
*/
|
|
65660
|
+
readonly launcherID: string;
|
|
65661
|
+
}
|
|
65662
|
+
/**
|
|
65663
|
+
* Request parameters for getLauncher operation in LaunchersV2024Api.
|
|
65664
|
+
* @export
|
|
65665
|
+
* @interface LaunchersV2024ApiGetLauncherRequest
|
|
65666
|
+
*/
|
|
65667
|
+
export interface LaunchersV2024ApiGetLauncherRequest {
|
|
65668
|
+
/**
|
|
65669
|
+
* ID of the Launcher to be retrieved
|
|
65670
|
+
* @type {string}
|
|
65671
|
+
* @memberof LaunchersV2024ApiGetLauncher
|
|
65672
|
+
*/
|
|
65673
|
+
readonly launcherID: string;
|
|
65674
|
+
}
|
|
65675
|
+
/**
|
|
65676
|
+
* Request parameters for getLaunchers operation in LaunchersV2024Api.
|
|
65677
|
+
* @export
|
|
65678
|
+
* @interface LaunchersV2024ApiGetLaunchersRequest
|
|
65679
|
+
*/
|
|
65680
|
+
export interface LaunchersV2024ApiGetLaunchersRequest {
|
|
65681
|
+
/**
|
|
65682
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **description**: *sw* **disabled**: *eq* **name**: *sw*
|
|
65683
|
+
* @type {string}
|
|
65684
|
+
* @memberof LaunchersV2024ApiGetLaunchers
|
|
65685
|
+
*/
|
|
65686
|
+
readonly filters?: string;
|
|
65687
|
+
/**
|
|
65688
|
+
* Pagination marker
|
|
65689
|
+
* @type {string}
|
|
65690
|
+
* @memberof LaunchersV2024ApiGetLaunchers
|
|
65691
|
+
*/
|
|
65692
|
+
readonly next?: string;
|
|
65693
|
+
/**
|
|
65694
|
+
* Number of Launchers to return
|
|
65695
|
+
* @type {number}
|
|
65696
|
+
* @memberof LaunchersV2024ApiGetLaunchers
|
|
65697
|
+
*/
|
|
65698
|
+
readonly limit?: number;
|
|
65699
|
+
}
|
|
65700
|
+
/**
|
|
65701
|
+
* Request parameters for putLauncher operation in LaunchersV2024Api.
|
|
65702
|
+
* @export
|
|
65703
|
+
* @interface LaunchersV2024ApiPutLauncherRequest
|
|
65704
|
+
*/
|
|
65705
|
+
export interface LaunchersV2024ApiPutLauncherRequest {
|
|
65706
|
+
/**
|
|
65707
|
+
* ID of the Launcher to be replaced
|
|
65708
|
+
* @type {string}
|
|
65709
|
+
* @memberof LaunchersV2024ApiPutLauncher
|
|
65710
|
+
*/
|
|
65711
|
+
readonly launcherID: string;
|
|
65712
|
+
/**
|
|
65713
|
+
* Payload to replace Launcher
|
|
65714
|
+
* @type {LauncherRequestV2024}
|
|
65715
|
+
* @memberof LaunchersV2024ApiPutLauncher
|
|
65716
|
+
*/
|
|
65717
|
+
readonly launcherRequestV2024: LauncherRequestV2024;
|
|
65718
|
+
}
|
|
65719
|
+
/**
|
|
65720
|
+
* Request parameters for startLauncher operation in LaunchersV2024Api.
|
|
65721
|
+
* @export
|
|
65722
|
+
* @interface LaunchersV2024ApiStartLauncherRequest
|
|
65723
|
+
*/
|
|
65724
|
+
export interface LaunchersV2024ApiStartLauncherRequest {
|
|
65725
|
+
/**
|
|
65726
|
+
* ID of the Launcher to be launched
|
|
65727
|
+
* @type {string}
|
|
65728
|
+
* @memberof LaunchersV2024ApiStartLauncher
|
|
65729
|
+
*/
|
|
65730
|
+
readonly launcherID: string;
|
|
65731
|
+
}
|
|
65732
|
+
/**
|
|
65733
|
+
* LaunchersV2024Api - object-oriented interface
|
|
65734
|
+
* @export
|
|
65735
|
+
* @class LaunchersV2024Api
|
|
65736
|
+
* @extends {BaseAPI}
|
|
65737
|
+
*/
|
|
65738
|
+
export declare class LaunchersV2024Api extends BaseAPI {
|
|
65739
|
+
/**
|
|
65740
|
+
* Create a Launcher with given information
|
|
65741
|
+
* @summary Create launcher
|
|
65742
|
+
* @param {LaunchersV2024ApiCreateLauncherRequest} requestParameters Request parameters.
|
|
65743
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65744
|
+
* @throws {RequiredError}
|
|
65745
|
+
* @memberof LaunchersV2024Api
|
|
65746
|
+
*/
|
|
65747
|
+
createLauncher(requestParameters: LaunchersV2024ApiCreateLauncherRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LauncherV2024, any>>;
|
|
65748
|
+
/**
|
|
65749
|
+
* Delete the given Launcher ID
|
|
65750
|
+
* @summary Delete launcher
|
|
65751
|
+
* @param {LaunchersV2024ApiDeleteLauncherRequest} requestParameters Request parameters.
|
|
65752
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65753
|
+
* @throws {RequiredError}
|
|
65754
|
+
* @memberof LaunchersV2024Api
|
|
65755
|
+
*/
|
|
65756
|
+
deleteLauncher(requestParameters: LaunchersV2024ApiDeleteLauncherRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
65757
|
+
/**
|
|
65758
|
+
* Get details for the given Launcher ID
|
|
65759
|
+
* @summary Get launcher by id
|
|
65760
|
+
* @param {LaunchersV2024ApiGetLauncherRequest} requestParameters Request parameters.
|
|
65761
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65762
|
+
* @throws {RequiredError}
|
|
65763
|
+
* @memberof LaunchersV2024Api
|
|
65764
|
+
*/
|
|
65765
|
+
getLauncher(requestParameters: LaunchersV2024ApiGetLauncherRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LauncherV2024, any>>;
|
|
65766
|
+
/**
|
|
65767
|
+
* Return a list of Launchers for the authenticated tenant
|
|
65768
|
+
* @summary List all launchers for tenant
|
|
65769
|
+
* @param {LaunchersV2024ApiGetLaunchersRequest} requestParameters Request parameters.
|
|
65770
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65771
|
+
* @throws {RequiredError}
|
|
65772
|
+
* @memberof LaunchersV2024Api
|
|
65773
|
+
*/
|
|
65774
|
+
getLaunchers(requestParameters?: LaunchersV2024ApiGetLaunchersRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLaunchers200ResponseV2024, any>>;
|
|
65775
|
+
/**
|
|
65776
|
+
* Replace the given Launcher ID with given payload
|
|
65777
|
+
* @summary Replace launcher
|
|
65778
|
+
* @param {LaunchersV2024ApiPutLauncherRequest} requestParameters Request parameters.
|
|
65779
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65780
|
+
* @throws {RequiredError}
|
|
65781
|
+
* @memberof LaunchersV2024Api
|
|
65782
|
+
*/
|
|
65783
|
+
putLauncher(requestParameters: LaunchersV2024ApiPutLauncherRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LauncherV2024, any>>;
|
|
65784
|
+
/**
|
|
65785
|
+
* Launch the given Launcher ID
|
|
65786
|
+
* @summary Launch a launcher
|
|
65787
|
+
* @param {LaunchersV2024ApiStartLauncherRequest} requestParameters Request parameters.
|
|
65788
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
65789
|
+
* @throws {RequiredError}
|
|
65790
|
+
* @memberof LaunchersV2024Api
|
|
65791
|
+
*/
|
|
65792
|
+
startLauncher(requestParameters: LaunchersV2024ApiStartLauncherRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StartLauncher200ResponseV2024, any>>;
|
|
65793
|
+
}
|
|
64773
65794
|
/**
|
|
64774
65795
|
* LifecycleStatesV2024Api - axios parameter creator
|
|
64775
65796
|
* @export
|
|
@@ -64809,7 +65830,7 @@ export declare const LifecycleStatesV2024ApiAxiosParamCreator: (configuration?:
|
|
|
64809
65830
|
* @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.
|
|
64810
65831
|
* @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.
|
|
64811
65832
|
* @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.
|
|
64812
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
|
|
65833
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
|
|
64813
65834
|
* @param {*} [axiosOptions] Override http request option.
|
|
64814
65835
|
* @throws {RequiredError}
|
|
64815
65836
|
*/
|
|
@@ -64873,7 +65894,7 @@ export declare const LifecycleStatesV2024ApiFp: (configuration?: Configuration)
|
|
|
64873
65894
|
* @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.
|
|
64874
65895
|
* @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.
|
|
64875
65896
|
* @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.
|
|
64876
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
|
|
65897
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
|
|
64877
65898
|
* @param {*} [axiosOptions] Override http request option.
|
|
64878
65899
|
* @throws {RequiredError}
|
|
64879
65900
|
*/
|
|
@@ -65040,7 +66061,7 @@ export interface LifecycleStatesV2024ApiGetLifecycleStatesRequest {
|
|
|
65040
66061
|
*/
|
|
65041
66062
|
readonly count?: boolean;
|
|
65042
66063
|
/**
|
|
65043
|
-
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
|
|
66064
|
+
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
|
|
65044
66065
|
* @type {string}
|
|
65045
66066
|
* @memberof LifecycleStatesV2024ApiGetLifecycleStates
|
|
65046
66067
|
*/
|
|
@@ -66241,8 +67262,8 @@ export declare const MachineIdentitiesV2024ApiAxiosParamCreator: (configuration?
|
|
|
66241
67262
|
/**
|
|
66242
67263
|
* This API returns a list of machine identities.
|
|
66243
67264
|
* @summary List machine identities
|
|
66244
|
-
* @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* **
|
|
66245
|
-
* @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**
|
|
67265
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
|
|
67266
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name, owners.primaryIdentity.name, source.name, created, modified**
|
|
66246
67267
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66247
67268
|
* @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.
|
|
66248
67269
|
* @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.
|
|
@@ -66297,8 +67318,8 @@ export declare const MachineIdentitiesV2024ApiFp: (configuration?: Configuration
|
|
|
66297
67318
|
/**
|
|
66298
67319
|
* This API returns a list of machine identities.
|
|
66299
67320
|
* @summary List machine identities
|
|
66300
|
-
* @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* **
|
|
66301
|
-
* @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**
|
|
67321
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
|
|
67322
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name, owners.primaryIdentity.name, source.name, created, modified**
|
|
66302
67323
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66303
67324
|
* @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.
|
|
66304
67325
|
* @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.
|
|
@@ -66428,13 +67449,13 @@ export interface MachineIdentitiesV2024ApiGetMachineIdentityRequest {
|
|
|
66428
67449
|
*/
|
|
66429
67450
|
export interface MachineIdentitiesV2024ApiListMachineIdentitiesRequest {
|
|
66430
67451
|
/**
|
|
66431
|
-
* 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* **
|
|
67452
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
|
|
66432
67453
|
* @type {string}
|
|
66433
67454
|
* @memberof MachineIdentitiesV2024ApiListMachineIdentities
|
|
66434
67455
|
*/
|
|
66435
67456
|
readonly filters?: string;
|
|
66436
67457
|
/**
|
|
66437
|
-
* 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**
|
|
67458
|
+
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name, owners.primaryIdentity.name, source.name, created, modified**
|
|
66438
67459
|
* @type {string}
|
|
66439
67460
|
* @memberof MachineIdentitiesV2024ApiListMachineIdentities
|
|
66440
67461
|
*/
|
|
@@ -76230,11 +77251,11 @@ export declare const SODViolationsV2024ApiAxiosParamCreator: (configuration?: Co
|
|
|
76230
77251
|
/**
|
|
76231
77252
|
* This API initiates a SOD policy verification asynchronously.
|
|
76232
77253
|
* @summary Check sod violations
|
|
76233
|
-
* @param {
|
|
77254
|
+
* @param {IdentityWithNewAccessV2024} identityWithNewAccessV2024
|
|
76234
77255
|
* @param {*} [axiosOptions] Override http request option.
|
|
76235
77256
|
* @throws {RequiredError}
|
|
76236
77257
|
*/
|
|
76237
|
-
startViolationCheck: (
|
|
77258
|
+
startViolationCheck: (identityWithNewAccessV2024: IdentityWithNewAccessV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
76238
77259
|
};
|
|
76239
77260
|
/**
|
|
76240
77261
|
* SODViolationsV2024Api - functional programming interface
|
|
@@ -76252,11 +77273,11 @@ export declare const SODViolationsV2024ApiFp: (configuration?: Configuration) =>
|
|
|
76252
77273
|
/**
|
|
76253
77274
|
* This API initiates a SOD policy verification asynchronously.
|
|
76254
77275
|
* @summary Check sod violations
|
|
76255
|
-
* @param {
|
|
77276
|
+
* @param {IdentityWithNewAccessV2024} identityWithNewAccessV2024
|
|
76256
77277
|
* @param {*} [axiosOptions] Override http request option.
|
|
76257
77278
|
* @throws {RequiredError}
|
|
76258
77279
|
*/
|
|
76259
|
-
startViolationCheck(
|
|
77280
|
+
startViolationCheck(identityWithNewAccessV2024: IdentityWithNewAccessV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SodViolationCheckV2024>>;
|
|
76260
77281
|
};
|
|
76261
77282
|
/**
|
|
76262
77283
|
* SODViolationsV2024Api - factory interface
|
|
@@ -76301,10 +77322,10 @@ export interface SODViolationsV2024ApiStartPredictSodViolationsRequest {
|
|
|
76301
77322
|
export interface SODViolationsV2024ApiStartViolationCheckRequest {
|
|
76302
77323
|
/**
|
|
76303
77324
|
*
|
|
76304
|
-
* @type {
|
|
77325
|
+
* @type {IdentityWithNewAccessV2024}
|
|
76305
77326
|
* @memberof SODViolationsV2024ApiStartViolationCheck
|
|
76306
77327
|
*/
|
|
76307
|
-
readonly
|
|
77328
|
+
readonly identityWithNewAccessV2024: IdentityWithNewAccessV2024;
|
|
76308
77329
|
}
|
|
76309
77330
|
/**
|
|
76310
77331
|
* SODViolationsV2024Api - object-oriented interface
|
|
@@ -82694,6 +83715,248 @@ export declare const PutTaggedObjectTypeV2024: {
|
|
|
82694
83715
|
readonly Source: "SOURCE";
|
|
82695
83716
|
};
|
|
82696
83717
|
export type PutTaggedObjectTypeV2024 = typeof PutTaggedObjectTypeV2024[keyof typeof PutTaggedObjectTypeV2024];
|
|
83718
|
+
/**
|
|
83719
|
+
* TagsV2024Api - axios parameter creator
|
|
83720
|
+
* @export
|
|
83721
|
+
*/
|
|
83722
|
+
export declare const TagsV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
83723
|
+
/**
|
|
83724
|
+
* This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83725
|
+
* @summary Create tag
|
|
83726
|
+
* @param {TagV2024} tagV2024
|
|
83727
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83728
|
+
* @throws {RequiredError}
|
|
83729
|
+
*/
|
|
83730
|
+
createTag: (tagV2024: TagV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83731
|
+
/**
|
|
83732
|
+
* This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83733
|
+
* @summary Delete tag
|
|
83734
|
+
* @param {string} id The ID of the object reference to delete.
|
|
83735
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83736
|
+
* @throws {RequiredError}
|
|
83737
|
+
*/
|
|
83738
|
+
deleteTagById: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83739
|
+
/**
|
|
83740
|
+
* Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83741
|
+
* @summary Get tag by id
|
|
83742
|
+
* @param {string} id The ID of the object reference to retrieve.
|
|
83743
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83744
|
+
* @throws {RequiredError}
|
|
83745
|
+
*/
|
|
83746
|
+
getTagById: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83747
|
+
/**
|
|
83748
|
+
* This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83749
|
+
* @summary List tags
|
|
83750
|
+
* @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.
|
|
83751
|
+
* @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.
|
|
83752
|
+
* @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.
|
|
83753
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw*
|
|
83754
|
+
* @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**
|
|
83755
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83756
|
+
* @throws {RequiredError}
|
|
83757
|
+
*/
|
|
83758
|
+
listTags: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83759
|
+
};
|
|
83760
|
+
/**
|
|
83761
|
+
* TagsV2024Api - functional programming interface
|
|
83762
|
+
* @export
|
|
83763
|
+
*/
|
|
83764
|
+
export declare const TagsV2024ApiFp: (configuration?: Configuration) => {
|
|
83765
|
+
/**
|
|
83766
|
+
* This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83767
|
+
* @summary Create tag
|
|
83768
|
+
* @param {TagV2024} tagV2024
|
|
83769
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83770
|
+
* @throws {RequiredError}
|
|
83771
|
+
*/
|
|
83772
|
+
createTag(tagV2024: TagV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagV2024>>;
|
|
83773
|
+
/**
|
|
83774
|
+
* This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83775
|
+
* @summary Delete tag
|
|
83776
|
+
* @param {string} id The ID of the object reference to delete.
|
|
83777
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83778
|
+
* @throws {RequiredError}
|
|
83779
|
+
*/
|
|
83780
|
+
deleteTagById(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
83781
|
+
/**
|
|
83782
|
+
* Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83783
|
+
* @summary Get tag by id
|
|
83784
|
+
* @param {string} id The ID of the object reference to retrieve.
|
|
83785
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83786
|
+
* @throws {RequiredError}
|
|
83787
|
+
*/
|
|
83788
|
+
getTagById(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagV2024>>;
|
|
83789
|
+
/**
|
|
83790
|
+
* This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83791
|
+
* @summary List tags
|
|
83792
|
+
* @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.
|
|
83793
|
+
* @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.
|
|
83794
|
+
* @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.
|
|
83795
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw*
|
|
83796
|
+
* @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**
|
|
83797
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83798
|
+
* @throws {RequiredError}
|
|
83799
|
+
*/
|
|
83800
|
+
listTags(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TagV2024>>>;
|
|
83801
|
+
};
|
|
83802
|
+
/**
|
|
83803
|
+
* TagsV2024Api - factory interface
|
|
83804
|
+
* @export
|
|
83805
|
+
*/
|
|
83806
|
+
export declare const TagsV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
83807
|
+
/**
|
|
83808
|
+
* This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83809
|
+
* @summary Create tag
|
|
83810
|
+
* @param {TagsV2024ApiCreateTagRequest} requestParameters Request parameters.
|
|
83811
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83812
|
+
* @throws {RequiredError}
|
|
83813
|
+
*/
|
|
83814
|
+
createTag(requestParameters: TagsV2024ApiCreateTagRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TagV2024>;
|
|
83815
|
+
/**
|
|
83816
|
+
* This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83817
|
+
* @summary Delete tag
|
|
83818
|
+
* @param {TagsV2024ApiDeleteTagByIdRequest} requestParameters Request parameters.
|
|
83819
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83820
|
+
* @throws {RequiredError}
|
|
83821
|
+
*/
|
|
83822
|
+
deleteTagById(requestParameters: TagsV2024ApiDeleteTagByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
83823
|
+
/**
|
|
83824
|
+
* Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83825
|
+
* @summary Get tag by id
|
|
83826
|
+
* @param {TagsV2024ApiGetTagByIdRequest} requestParameters Request parameters.
|
|
83827
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83828
|
+
* @throws {RequiredError}
|
|
83829
|
+
*/
|
|
83830
|
+
getTagById(requestParameters: TagsV2024ApiGetTagByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TagV2024>;
|
|
83831
|
+
/**
|
|
83832
|
+
* This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83833
|
+
* @summary List tags
|
|
83834
|
+
* @param {TagsV2024ApiListTagsRequest} requestParameters Request parameters.
|
|
83835
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83836
|
+
* @throws {RequiredError}
|
|
83837
|
+
*/
|
|
83838
|
+
listTags(requestParameters?: TagsV2024ApiListTagsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TagV2024>>;
|
|
83839
|
+
};
|
|
83840
|
+
/**
|
|
83841
|
+
* Request parameters for createTag operation in TagsV2024Api.
|
|
83842
|
+
* @export
|
|
83843
|
+
* @interface TagsV2024ApiCreateTagRequest
|
|
83844
|
+
*/
|
|
83845
|
+
export interface TagsV2024ApiCreateTagRequest {
|
|
83846
|
+
/**
|
|
83847
|
+
*
|
|
83848
|
+
* @type {TagV2024}
|
|
83849
|
+
* @memberof TagsV2024ApiCreateTag
|
|
83850
|
+
*/
|
|
83851
|
+
readonly tagV2024: TagV2024;
|
|
83852
|
+
}
|
|
83853
|
+
/**
|
|
83854
|
+
* Request parameters for deleteTagById operation in TagsV2024Api.
|
|
83855
|
+
* @export
|
|
83856
|
+
* @interface TagsV2024ApiDeleteTagByIdRequest
|
|
83857
|
+
*/
|
|
83858
|
+
export interface TagsV2024ApiDeleteTagByIdRequest {
|
|
83859
|
+
/**
|
|
83860
|
+
* The ID of the object reference to delete.
|
|
83861
|
+
* @type {string}
|
|
83862
|
+
* @memberof TagsV2024ApiDeleteTagById
|
|
83863
|
+
*/
|
|
83864
|
+
readonly id: string;
|
|
83865
|
+
}
|
|
83866
|
+
/**
|
|
83867
|
+
* Request parameters for getTagById operation in TagsV2024Api.
|
|
83868
|
+
* @export
|
|
83869
|
+
* @interface TagsV2024ApiGetTagByIdRequest
|
|
83870
|
+
*/
|
|
83871
|
+
export interface TagsV2024ApiGetTagByIdRequest {
|
|
83872
|
+
/**
|
|
83873
|
+
* The ID of the object reference to retrieve.
|
|
83874
|
+
* @type {string}
|
|
83875
|
+
* @memberof TagsV2024ApiGetTagById
|
|
83876
|
+
*/
|
|
83877
|
+
readonly id: string;
|
|
83878
|
+
}
|
|
83879
|
+
/**
|
|
83880
|
+
* Request parameters for listTags operation in TagsV2024Api.
|
|
83881
|
+
* @export
|
|
83882
|
+
* @interface TagsV2024ApiListTagsRequest
|
|
83883
|
+
*/
|
|
83884
|
+
export interface TagsV2024ApiListTagsRequest {
|
|
83885
|
+
/**
|
|
83886
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83887
|
+
* @type {number}
|
|
83888
|
+
* @memberof TagsV2024ApiListTags
|
|
83889
|
+
*/
|
|
83890
|
+
readonly limit?: number;
|
|
83891
|
+
/**
|
|
83892
|
+
* 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.
|
|
83893
|
+
* @type {number}
|
|
83894
|
+
* @memberof TagsV2024ApiListTags
|
|
83895
|
+
*/
|
|
83896
|
+
readonly offset?: number;
|
|
83897
|
+
/**
|
|
83898
|
+
* 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.
|
|
83899
|
+
* @type {boolean}
|
|
83900
|
+
* @memberof TagsV2024ApiListTags
|
|
83901
|
+
*/
|
|
83902
|
+
readonly count?: boolean;
|
|
83903
|
+
/**
|
|
83904
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw*
|
|
83905
|
+
* @type {string}
|
|
83906
|
+
* @memberof TagsV2024ApiListTags
|
|
83907
|
+
*/
|
|
83908
|
+
readonly filters?: string;
|
|
83909
|
+
/**
|
|
83910
|
+
* 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**
|
|
83911
|
+
* @type {string}
|
|
83912
|
+
* @memberof TagsV2024ApiListTags
|
|
83913
|
+
*/
|
|
83914
|
+
readonly sorters?: string;
|
|
83915
|
+
}
|
|
83916
|
+
/**
|
|
83917
|
+
* TagsV2024Api - object-oriented interface
|
|
83918
|
+
* @export
|
|
83919
|
+
* @class TagsV2024Api
|
|
83920
|
+
* @extends {BaseAPI}
|
|
83921
|
+
*/
|
|
83922
|
+
export declare class TagsV2024Api extends BaseAPI {
|
|
83923
|
+
/**
|
|
83924
|
+
* This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83925
|
+
* @summary Create tag
|
|
83926
|
+
* @param {TagsV2024ApiCreateTagRequest} requestParameters Request parameters.
|
|
83927
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83928
|
+
* @throws {RequiredError}
|
|
83929
|
+
* @memberof TagsV2024Api
|
|
83930
|
+
*/
|
|
83931
|
+
createTag(requestParameters: TagsV2024ApiCreateTagRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TagV2024, any>>;
|
|
83932
|
+
/**
|
|
83933
|
+
* This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83934
|
+
* @summary Delete tag
|
|
83935
|
+
* @param {TagsV2024ApiDeleteTagByIdRequest} requestParameters Request parameters.
|
|
83936
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83937
|
+
* @throws {RequiredError}
|
|
83938
|
+
* @memberof TagsV2024Api
|
|
83939
|
+
*/
|
|
83940
|
+
deleteTagById(requestParameters: TagsV2024ApiDeleteTagByIdRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
83941
|
+
/**
|
|
83942
|
+
* Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83943
|
+
* @summary Get tag by id
|
|
83944
|
+
* @param {TagsV2024ApiGetTagByIdRequest} requestParameters Request parameters.
|
|
83945
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83946
|
+
* @throws {RequiredError}
|
|
83947
|
+
* @memberof TagsV2024Api
|
|
83948
|
+
*/
|
|
83949
|
+
getTagById(requestParameters: TagsV2024ApiGetTagByIdRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TagV2024, any>>;
|
|
83950
|
+
/**
|
|
83951
|
+
* This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
83952
|
+
* @summary List tags
|
|
83953
|
+
* @param {TagsV2024ApiListTagsRequest} requestParameters Request parameters.
|
|
83954
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
83955
|
+
* @throws {RequiredError}
|
|
83956
|
+
* @memberof TagsV2024Api
|
|
83957
|
+
*/
|
|
83958
|
+
listTags(requestParameters?: TagsV2024ApiListTagsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TagV2024[], any>>;
|
|
83959
|
+
}
|
|
82697
83960
|
/**
|
|
82698
83961
|
* TaskManagementV2024Api - axios parameter creator
|
|
82699
83962
|
* @export
|