sailpoint-api-client 1.8.2 → 1.8.4
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 +287 -65
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +283 -64
- package/dist/beta/api.js +35 -36
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/nerm/common.js +2 -2
- package/dist/nermv2025/common.js +2 -2
- package/dist/v2024/api.d.ts +288 -69
- package/dist/v2024/api.js +49 -52
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/api.d.ts +292 -73
- package/dist/v2025/api.js +55 -58
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +691 -0
- package/dist/v2026/api.js +635 -2
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +2 -2
- package/dist/v3/api.d.ts +47 -11
- package/dist/v3/api.js +22 -18
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +2 -2
- package/nerm/README.md +2 -2
- package/nerm/common.ts +2 -2
- package/nerm/package.json +1 -1
- package/nermv2025/README.md +2 -2
- package/nermv2025/common.ts +2 -2
- package/nermv2025/package.json +1 -1
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +299 -80
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +303 -84
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +1010 -0
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +50 -11
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/v2025/api.d.ts
CHANGED
|
@@ -2011,11 +2011,11 @@ export interface AccessProfileV2025 {
|
|
|
2011
2011
|
*/
|
|
2012
2012
|
'provisioningCriteria'?: ProvisioningCriteriaLevel1V2025 | null;
|
|
2013
2013
|
/**
|
|
2014
|
-
*
|
|
2015
|
-
* @type {Array<
|
|
2014
|
+
* List of additional owner references beyond the primary owner. Each entry may be an identity (IDENTITY) or a governance group (GOVERNANCE_GROUP).
|
|
2015
|
+
* @type {Array<AdditionalOwnerRefV2025>}
|
|
2016
2016
|
* @memberof AccessProfileV2025
|
|
2017
2017
|
*/
|
|
2018
|
-
'additionalOwners'?: Array<
|
|
2018
|
+
'additionalOwners'?: Array<AdditionalOwnerRefV2025> | null;
|
|
2019
2019
|
}
|
|
2020
2020
|
/**
|
|
2021
2021
|
*
|
|
@@ -6207,6 +6207,36 @@ export declare const ActivityInsightsV2025UsageDaysStateV2025: {
|
|
|
6207
6207
|
readonly Unknown: "UNKNOWN";
|
|
6208
6208
|
};
|
|
6209
6209
|
export type ActivityInsightsV2025UsageDaysStateV2025 = typeof ActivityInsightsV2025UsageDaysStateV2025[keyof typeof ActivityInsightsV2025UsageDaysStateV2025];
|
|
6210
|
+
/**
|
|
6211
|
+
* Reference to an additional owner (identity or governance group).
|
|
6212
|
+
* @export
|
|
6213
|
+
* @interface AdditionalOwnerRefV2025
|
|
6214
|
+
*/
|
|
6215
|
+
export interface AdditionalOwnerRefV2025 {
|
|
6216
|
+
/**
|
|
6217
|
+
* Type of the additional owner; IDENTITY for an identity, GOVERNANCE_GROUP for a governance group.
|
|
6218
|
+
* @type {string}
|
|
6219
|
+
* @memberof AdditionalOwnerRefV2025
|
|
6220
|
+
*/
|
|
6221
|
+
'type'?: AdditionalOwnerRefV2025TypeV2025;
|
|
6222
|
+
/**
|
|
6223
|
+
* ID of the identity or governance group.
|
|
6224
|
+
* @type {string}
|
|
6225
|
+
* @memberof AdditionalOwnerRefV2025
|
|
6226
|
+
*/
|
|
6227
|
+
'id'?: string;
|
|
6228
|
+
/**
|
|
6229
|
+
* Display name. It may be left null or omitted on input. If set, it must match the current display name of the identity or governance group, otherwise a 400 Bad Request error may result.
|
|
6230
|
+
* @type {string}
|
|
6231
|
+
* @memberof AdditionalOwnerRefV2025
|
|
6232
|
+
*/
|
|
6233
|
+
'name'?: string | null;
|
|
6234
|
+
}
|
|
6235
|
+
export declare const AdditionalOwnerRefV2025TypeV2025: {
|
|
6236
|
+
readonly Identity: "IDENTITY";
|
|
6237
|
+
readonly GovernanceGroup: "GOVERNANCE_GROUP";
|
|
6238
|
+
};
|
|
6239
|
+
export type AdditionalOwnerRefV2025TypeV2025 = typeof AdditionalOwnerRefV2025TypeV2025[keyof typeof AdditionalOwnerRefV2025TypeV2025];
|
|
6210
6240
|
/**
|
|
6211
6241
|
*
|
|
6212
6242
|
* @export
|
|
@@ -16593,11 +16623,17 @@ export interface DkimAttributesV2025 {
|
|
|
16593
16623
|
*/
|
|
16594
16624
|
'dkimTokens'?: Array<string>;
|
|
16595
16625
|
/**
|
|
16596
|
-
* The current status if the domain /identity has been verified. Ie
|
|
16626
|
+
* The current status if the domain /identity has been verified. Ie SUCCESS, FAILED, PENDING
|
|
16597
16627
|
* @type {string}
|
|
16598
16628
|
* @memberof DkimAttributesV2025
|
|
16599
16629
|
*/
|
|
16600
16630
|
'dkimVerificationStatus'?: string;
|
|
16631
|
+
/**
|
|
16632
|
+
* The AWS SES region the domain is associated with
|
|
16633
|
+
* @type {string}
|
|
16634
|
+
* @memberof DkimAttributesV2025
|
|
16635
|
+
*/
|
|
16636
|
+
'region'?: string;
|
|
16601
16637
|
}
|
|
16602
16638
|
/**
|
|
16603
16639
|
*
|
|
@@ -16683,10 +16719,10 @@ export interface DomainStatusDtoV2025 {
|
|
|
16683
16719
|
'domain'?: string;
|
|
16684
16720
|
/**
|
|
16685
16721
|
* DKIM is enabled for this domain
|
|
16686
|
-
* @type {
|
|
16722
|
+
* @type {boolean}
|
|
16687
16723
|
* @memberof DomainStatusDtoV2025
|
|
16688
16724
|
*/
|
|
16689
|
-
'dkimEnabled'?:
|
|
16725
|
+
'dkimEnabled'?: boolean;
|
|
16690
16726
|
/**
|
|
16691
16727
|
* DKIM tokens required for authentication
|
|
16692
16728
|
* @type {Array<string>}
|
|
@@ -16699,6 +16735,12 @@ export interface DomainStatusDtoV2025 {
|
|
|
16699
16735
|
* @memberof DomainStatusDtoV2025
|
|
16700
16736
|
*/
|
|
16701
16737
|
'dkimVerificationStatus'?: string;
|
|
16738
|
+
/**
|
|
16739
|
+
* The AWS SES region the domain is associated with
|
|
16740
|
+
* @type {string}
|
|
16741
|
+
* @memberof DomainStatusDtoV2025
|
|
16742
|
+
*/
|
|
16743
|
+
'region'?: string;
|
|
16702
16744
|
}
|
|
16703
16745
|
/**
|
|
16704
16746
|
*
|
|
@@ -16930,34 +16972,41 @@ export interface EmailNotificationOptionV2025 {
|
|
|
16930
16972
|
*/
|
|
16931
16973
|
export interface EmailStatusDtoV2025 {
|
|
16932
16974
|
/**
|
|
16933
|
-
*
|
|
16975
|
+
* Unique identifier for the verified sender address
|
|
16934
16976
|
* @type {string}
|
|
16935
16977
|
* @memberof EmailStatusDtoV2025
|
|
16936
16978
|
*/
|
|
16937
16979
|
'id'?: string | null;
|
|
16938
16980
|
/**
|
|
16939
|
-
*
|
|
16981
|
+
* The verified sender email address
|
|
16940
16982
|
* @type {string}
|
|
16941
16983
|
* @memberof EmailStatusDtoV2025
|
|
16942
16984
|
*/
|
|
16943
16985
|
'email'?: string;
|
|
16944
16986
|
/**
|
|
16945
|
-
*
|
|
16987
|
+
* Whether the sender address is verified by domain
|
|
16946
16988
|
* @type {boolean}
|
|
16947
16989
|
* @memberof EmailStatusDtoV2025
|
|
16948
16990
|
*/
|
|
16949
16991
|
'isVerifiedByDomain'?: boolean;
|
|
16950
16992
|
/**
|
|
16951
|
-
*
|
|
16993
|
+
* The verification status of the sender address
|
|
16952
16994
|
* @type {string}
|
|
16953
16995
|
* @memberof EmailStatusDtoV2025
|
|
16954
16996
|
*/
|
|
16955
16997
|
'verificationStatus'?: EmailStatusDtoV2025VerificationStatusV2025;
|
|
16998
|
+
/**
|
|
16999
|
+
* The AWS SES region the sender address is associated with
|
|
17000
|
+
* @type {string}
|
|
17001
|
+
* @memberof EmailStatusDtoV2025
|
|
17002
|
+
*/
|
|
17003
|
+
'region'?: string;
|
|
16956
17004
|
}
|
|
16957
17005
|
export declare const EmailStatusDtoV2025VerificationStatusV2025: {
|
|
16958
17006
|
readonly Pending: "PENDING";
|
|
16959
17007
|
readonly Success: "SUCCESS";
|
|
16960
17008
|
readonly Failed: "FAILED";
|
|
17009
|
+
readonly Na: "NA";
|
|
16961
17010
|
};
|
|
16962
17011
|
export type EmailStatusDtoV2025VerificationStatusV2025 = typeof EmailStatusDtoV2025VerificationStatusV2025[keyof typeof EmailStatusDtoV2025VerificationStatusV2025];
|
|
16963
17012
|
/**
|
|
@@ -28734,14 +28783,12 @@ export interface MatchTermV2025 {
|
|
|
28734
28783
|
}> | null;
|
|
28735
28784
|
}
|
|
28736
28785
|
/**
|
|
28737
|
-
*
|
|
28786
|
+
* The notification medium (EMAIL, SLACK, or TEAMS)
|
|
28738
28787
|
* @export
|
|
28739
28788
|
* @enum {string}
|
|
28740
28789
|
*/
|
|
28741
28790
|
export declare const MediumV2025: {
|
|
28742
28791
|
readonly Email: "EMAIL";
|
|
28743
|
-
readonly Sms: "SMS";
|
|
28744
|
-
readonly Phone: "PHONE";
|
|
28745
28792
|
readonly Slack: "SLACK";
|
|
28746
28793
|
readonly Teams: "TEAMS";
|
|
28747
28794
|
};
|
|
@@ -39967,6 +40014,12 @@ export interface RoleV2025 {
|
|
|
39967
40014
|
* @memberof RoleV2025
|
|
39968
40015
|
*/
|
|
39969
40016
|
'owner': OwnerReferenceV2025 | null;
|
|
40017
|
+
/**
|
|
40018
|
+
* List of additional owner references beyond the primary owner. Each entry may be an identity (IDENTITY) or a governance group (GOVERNANCE_GROUP).
|
|
40019
|
+
* @type {Array<AdditionalOwnerRefV2025>}
|
|
40020
|
+
* @memberof RoleV2025
|
|
40021
|
+
*/
|
|
40022
|
+
'additionalOwners'?: Array<AdditionalOwnerRefV2025> | null;
|
|
39970
40023
|
/**
|
|
39971
40024
|
*
|
|
39972
40025
|
* @type {Array<AccessProfileRefV2025>}
|
|
@@ -42507,12 +42560,36 @@ export interface SendTestNotificationRequestDtoV2025 {
|
|
|
42507
42560
|
* @memberof SendTestNotificationRequestDtoV2025
|
|
42508
42561
|
*/
|
|
42509
42562
|
'medium'?: SendTestNotificationRequestDtoV2025MediumV2025;
|
|
42563
|
+
/**
|
|
42564
|
+
* The locale for the message text.
|
|
42565
|
+
* @type {string}
|
|
42566
|
+
* @memberof SendTestNotificationRequestDtoV2025
|
|
42567
|
+
*/
|
|
42568
|
+
'locale'?: string;
|
|
42510
42569
|
/**
|
|
42511
42570
|
* A Json object that denotes the context specific to the template.
|
|
42512
42571
|
* @type {object}
|
|
42513
42572
|
* @memberof SendTestNotificationRequestDtoV2025
|
|
42514
42573
|
*/
|
|
42515
42574
|
'context'?: object;
|
|
42575
|
+
/**
|
|
42576
|
+
* A list of override recipient email addresses for the test notification.
|
|
42577
|
+
* @type {Array<string>}
|
|
42578
|
+
* @memberof SendTestNotificationRequestDtoV2025
|
|
42579
|
+
*/
|
|
42580
|
+
'recipientEmailList'?: Array<string>;
|
|
42581
|
+
/**
|
|
42582
|
+
* A list of CC email addresses for the test notification.
|
|
42583
|
+
* @type {Array<string>}
|
|
42584
|
+
* @memberof SendTestNotificationRequestDtoV2025
|
|
42585
|
+
*/
|
|
42586
|
+
'carbonCopy'?: Array<string>;
|
|
42587
|
+
/**
|
|
42588
|
+
* A list of BCC email addresses for the test notification.
|
|
42589
|
+
* @type {Array<string>}
|
|
42590
|
+
* @memberof SendTestNotificationRequestDtoV2025
|
|
42591
|
+
*/
|
|
42592
|
+
'blindCarbonCopy'?: Array<string>;
|
|
42516
42593
|
}
|
|
42517
42594
|
export declare const SendTestNotificationRequestDtoV2025MediumV2025: {
|
|
42518
42595
|
readonly Email: "EMAIL";
|
|
@@ -47477,13 +47554,13 @@ export type TaskStatusV2025CompletionStatusV2025 = typeof TaskStatusV2025Complet
|
|
|
47477
47554
|
*/
|
|
47478
47555
|
export interface TemplateBulkDeleteDtoV2025 {
|
|
47479
47556
|
/**
|
|
47480
|
-
*
|
|
47557
|
+
* The template key to delete
|
|
47481
47558
|
* @type {string}
|
|
47482
47559
|
* @memberof TemplateBulkDeleteDtoV2025
|
|
47483
47560
|
*/
|
|
47484
47561
|
'key': string;
|
|
47485
47562
|
/**
|
|
47486
|
-
*
|
|
47563
|
+
* The notification medium (EMAIL, SLACK, or TEAMS)
|
|
47487
47564
|
* @type {string}
|
|
47488
47565
|
* @memberof TemplateBulkDeleteDtoV2025
|
|
47489
47566
|
*/
|
|
@@ -47497,8 +47574,8 @@ export interface TemplateBulkDeleteDtoV2025 {
|
|
|
47497
47574
|
}
|
|
47498
47575
|
export declare const TemplateBulkDeleteDtoV2025MediumV2025: {
|
|
47499
47576
|
readonly Email: "EMAIL";
|
|
47500
|
-
readonly
|
|
47501
|
-
readonly
|
|
47577
|
+
readonly Slack: "SLACK";
|
|
47578
|
+
readonly Teams: "TEAMS";
|
|
47502
47579
|
};
|
|
47503
47580
|
export type TemplateBulkDeleteDtoV2025MediumV2025 = typeof TemplateBulkDeleteDtoV2025MediumV2025[keyof typeof TemplateBulkDeleteDtoV2025MediumV2025];
|
|
47504
47581
|
/**
|
|
@@ -47590,12 +47667,156 @@ export interface TemplateDtoDefaultV2025 {
|
|
|
47590
47667
|
}
|
|
47591
47668
|
export declare const TemplateDtoDefaultV2025MediumV2025: {
|
|
47592
47669
|
readonly Email: "EMAIL";
|
|
47593
|
-
readonly Phone: "PHONE";
|
|
47594
|
-
readonly Sms: "SMS";
|
|
47595
47670
|
readonly Slack: "SLACK";
|
|
47596
47671
|
readonly Teams: "TEAMS";
|
|
47597
47672
|
};
|
|
47598
47673
|
export type TemplateDtoDefaultV2025MediumV2025 = typeof TemplateDtoDefaultV2025MediumV2025[keyof typeof TemplateDtoDefaultV2025MediumV2025];
|
|
47674
|
+
/**
|
|
47675
|
+
*
|
|
47676
|
+
* @export
|
|
47677
|
+
* @interface TemplateDtoSlackTemplateV2025
|
|
47678
|
+
*/
|
|
47679
|
+
export interface TemplateDtoSlackTemplateV2025 {
|
|
47680
|
+
/**
|
|
47681
|
+
* The template key
|
|
47682
|
+
* @type {string}
|
|
47683
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47684
|
+
*/
|
|
47685
|
+
'key'?: string | null;
|
|
47686
|
+
/**
|
|
47687
|
+
* The main text content of the Slack message
|
|
47688
|
+
* @type {string}
|
|
47689
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47690
|
+
*/
|
|
47691
|
+
'text'?: string;
|
|
47692
|
+
/**
|
|
47693
|
+
* JSON string of Slack Block Kit blocks for rich formatting
|
|
47694
|
+
* @type {string}
|
|
47695
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47696
|
+
*/
|
|
47697
|
+
'blocks'?: string | null;
|
|
47698
|
+
/**
|
|
47699
|
+
* JSON string of Slack attachments
|
|
47700
|
+
* @type {string}
|
|
47701
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47702
|
+
*/
|
|
47703
|
+
'attachments'?: string;
|
|
47704
|
+
/**
|
|
47705
|
+
* The type of notification
|
|
47706
|
+
* @type {string}
|
|
47707
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47708
|
+
*/
|
|
47709
|
+
'notificationType'?: string | null;
|
|
47710
|
+
/**
|
|
47711
|
+
* The approval request ID
|
|
47712
|
+
* @type {string}
|
|
47713
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47714
|
+
*/
|
|
47715
|
+
'approvalId'?: string | null;
|
|
47716
|
+
/**
|
|
47717
|
+
* The request ID
|
|
47718
|
+
* @type {string}
|
|
47719
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47720
|
+
*/
|
|
47721
|
+
'requestId'?: string | null;
|
|
47722
|
+
/**
|
|
47723
|
+
* The ID of the user who made the request
|
|
47724
|
+
* @type {string}
|
|
47725
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47726
|
+
*/
|
|
47727
|
+
'requestedById'?: string | null;
|
|
47728
|
+
/**
|
|
47729
|
+
* Whether this is a subscription notification
|
|
47730
|
+
* @type {boolean}
|
|
47731
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47732
|
+
*/
|
|
47733
|
+
'isSubscription'?: boolean | null;
|
|
47734
|
+
/**
|
|
47735
|
+
*
|
|
47736
|
+
* @type {TemplateSlackAutoApprovalDataV2025}
|
|
47737
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47738
|
+
*/
|
|
47739
|
+
'autoApprovalData'?: TemplateSlackAutoApprovalDataV2025 | null;
|
|
47740
|
+
/**
|
|
47741
|
+
*
|
|
47742
|
+
* @type {TemplateSlackCustomFieldsV2025}
|
|
47743
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47744
|
+
*/
|
|
47745
|
+
'customFields'?: TemplateSlackCustomFieldsV2025 | null;
|
|
47746
|
+
}
|
|
47747
|
+
/**
|
|
47748
|
+
*
|
|
47749
|
+
* @export
|
|
47750
|
+
* @interface TemplateDtoTeamsTemplateV2025
|
|
47751
|
+
*/
|
|
47752
|
+
export interface TemplateDtoTeamsTemplateV2025 {
|
|
47753
|
+
/**
|
|
47754
|
+
* The template key
|
|
47755
|
+
* @type {string}
|
|
47756
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47757
|
+
*/
|
|
47758
|
+
'key'?: string | null;
|
|
47759
|
+
/**
|
|
47760
|
+
* The title of the Teams message
|
|
47761
|
+
* @type {string}
|
|
47762
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47763
|
+
*/
|
|
47764
|
+
'title'?: string | null;
|
|
47765
|
+
/**
|
|
47766
|
+
* The main text content of the Teams message
|
|
47767
|
+
* @type {string}
|
|
47768
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47769
|
+
*/
|
|
47770
|
+
'text'?: string;
|
|
47771
|
+
/**
|
|
47772
|
+
* JSON string of the Teams adaptive card
|
|
47773
|
+
* @type {string}
|
|
47774
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47775
|
+
*/
|
|
47776
|
+
'messageJSON'?: string | null;
|
|
47777
|
+
/**
|
|
47778
|
+
* Whether this is a subscription notification
|
|
47779
|
+
* @type {boolean}
|
|
47780
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47781
|
+
*/
|
|
47782
|
+
'isSubscription'?: boolean | null;
|
|
47783
|
+
/**
|
|
47784
|
+
* The approval request ID
|
|
47785
|
+
* @type {string}
|
|
47786
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47787
|
+
*/
|
|
47788
|
+
'approvalId'?: string | null;
|
|
47789
|
+
/**
|
|
47790
|
+
* The request ID
|
|
47791
|
+
* @type {string}
|
|
47792
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47793
|
+
*/
|
|
47794
|
+
'requestId'?: string | null;
|
|
47795
|
+
/**
|
|
47796
|
+
* The ID of the user who made the request
|
|
47797
|
+
* @type {string}
|
|
47798
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47799
|
+
*/
|
|
47800
|
+
'requestedById'?: string | null;
|
|
47801
|
+
/**
|
|
47802
|
+
* The type of notification
|
|
47803
|
+
* @type {string}
|
|
47804
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47805
|
+
*/
|
|
47806
|
+
'notificationType'?: string | null;
|
|
47807
|
+
/**
|
|
47808
|
+
*
|
|
47809
|
+
* @type {TemplateSlackAutoApprovalDataV2025}
|
|
47810
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47811
|
+
*/
|
|
47812
|
+
'autoApprovalData'?: TemplateSlackAutoApprovalDataV2025 | null;
|
|
47813
|
+
/**
|
|
47814
|
+
*
|
|
47815
|
+
* @type {TemplateSlackCustomFieldsV2025}
|
|
47816
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47817
|
+
*/
|
|
47818
|
+
'customFields'?: TemplateSlackCustomFieldsV2025 | null;
|
|
47819
|
+
}
|
|
47599
47820
|
/**
|
|
47600
47821
|
*
|
|
47601
47822
|
* @export
|
|
@@ -47690,21 +47911,19 @@ export interface TemplateDtoV2025 {
|
|
|
47690
47911
|
'modified'?: string;
|
|
47691
47912
|
/**
|
|
47692
47913
|
*
|
|
47693
|
-
* @type {
|
|
47914
|
+
* @type {TemplateDtoSlackTemplateV2025}
|
|
47694
47915
|
* @memberof TemplateDtoV2025
|
|
47695
47916
|
*/
|
|
47696
|
-
'slackTemplate'?:
|
|
47917
|
+
'slackTemplate'?: TemplateDtoSlackTemplateV2025;
|
|
47697
47918
|
/**
|
|
47698
47919
|
*
|
|
47699
|
-
* @type {
|
|
47920
|
+
* @type {TemplateDtoTeamsTemplateV2025}
|
|
47700
47921
|
* @memberof TemplateDtoV2025
|
|
47701
47922
|
*/
|
|
47702
|
-
'teamsTemplate'?:
|
|
47923
|
+
'teamsTemplate'?: TemplateDtoTeamsTemplateV2025;
|
|
47703
47924
|
}
|
|
47704
47925
|
export declare const TemplateDtoV2025MediumV2025: {
|
|
47705
47926
|
readonly Email: "EMAIL";
|
|
47706
|
-
readonly Phone: "PHONE";
|
|
47707
|
-
readonly Sms: "SMS";
|
|
47708
47927
|
readonly Slack: "SLACK";
|
|
47709
47928
|
readonly Teams: "TEAMS";
|
|
47710
47929
|
};
|
|
@@ -47716,31 +47935,31 @@ export type TemplateDtoV2025MediumV2025 = typeof TemplateDtoV2025MediumV2025[key
|
|
|
47716
47935
|
*/
|
|
47717
47936
|
export interface TemplateSlackAutoApprovalDataV2025 {
|
|
47718
47937
|
/**
|
|
47719
|
-
*
|
|
47938
|
+
* Whether the request was auto-approved
|
|
47720
47939
|
* @type {string}
|
|
47721
47940
|
* @memberof TemplateSlackAutoApprovalDataV2025
|
|
47722
47941
|
*/
|
|
47723
47942
|
'isAutoApproved'?: string | null;
|
|
47724
47943
|
/**
|
|
47725
|
-
*
|
|
47944
|
+
* The item ID
|
|
47726
47945
|
* @type {string}
|
|
47727
47946
|
* @memberof TemplateSlackAutoApprovalDataV2025
|
|
47728
47947
|
*/
|
|
47729
47948
|
'itemId'?: string | null;
|
|
47730
47949
|
/**
|
|
47731
|
-
*
|
|
47950
|
+
* The item type
|
|
47732
47951
|
* @type {string}
|
|
47733
47952
|
* @memberof TemplateSlackAutoApprovalDataV2025
|
|
47734
47953
|
*/
|
|
47735
47954
|
'itemType'?: string | null;
|
|
47736
47955
|
/**
|
|
47737
|
-
*
|
|
47956
|
+
* JSON message for auto-approval
|
|
47738
47957
|
* @type {string}
|
|
47739
47958
|
* @memberof TemplateSlackAutoApprovalDataV2025
|
|
47740
47959
|
*/
|
|
47741
47960
|
'autoApprovalMessageJSON'?: string | null;
|
|
47742
47961
|
/**
|
|
47743
|
-
*
|
|
47962
|
+
* Title for auto-approval
|
|
47744
47963
|
* @type {string}
|
|
47745
47964
|
* @memberof TemplateSlackAutoApprovalDataV2025
|
|
47746
47965
|
*/
|
|
@@ -47753,25 +47972,25 @@ export interface TemplateSlackAutoApprovalDataV2025 {
|
|
|
47753
47972
|
*/
|
|
47754
47973
|
export interface TemplateSlackCustomFieldsV2025 {
|
|
47755
47974
|
/**
|
|
47756
|
-
*
|
|
47975
|
+
* The type of request
|
|
47757
47976
|
* @type {string}
|
|
47758
47977
|
* @memberof TemplateSlackCustomFieldsV2025
|
|
47759
47978
|
*/
|
|
47760
47979
|
'requestType'?: string | null;
|
|
47761
47980
|
/**
|
|
47762
|
-
*
|
|
47981
|
+
* Whether the request contains a deny action
|
|
47763
47982
|
* @type {string}
|
|
47764
47983
|
* @memberof TemplateSlackCustomFieldsV2025
|
|
47765
47984
|
*/
|
|
47766
47985
|
'containsDeny'?: string | null;
|
|
47767
47986
|
/**
|
|
47768
|
-
*
|
|
47987
|
+
* The campaign ID
|
|
47769
47988
|
* @type {string}
|
|
47770
47989
|
* @memberof TemplateSlackCustomFieldsV2025
|
|
47771
47990
|
*/
|
|
47772
47991
|
'campaignId'?: string | null;
|
|
47773
47992
|
/**
|
|
47774
|
-
*
|
|
47993
|
+
* The campaign status
|
|
47775
47994
|
* @type {string}
|
|
47776
47995
|
* @memberof TemplateSlackCustomFieldsV2025
|
|
47777
47996
|
*/
|
|
@@ -47784,55 +48003,55 @@ export interface TemplateSlackCustomFieldsV2025 {
|
|
|
47784
48003
|
*/
|
|
47785
48004
|
export interface TemplateSlackV2025 {
|
|
47786
48005
|
/**
|
|
47787
|
-
*
|
|
48006
|
+
* The template key
|
|
47788
48007
|
* @type {string}
|
|
47789
48008
|
* @memberof TemplateSlackV2025
|
|
47790
48009
|
*/
|
|
47791
48010
|
'key'?: string | null;
|
|
47792
48011
|
/**
|
|
47793
|
-
*
|
|
48012
|
+
* The main text content of the Slack message
|
|
47794
48013
|
* @type {string}
|
|
47795
48014
|
* @memberof TemplateSlackV2025
|
|
47796
48015
|
*/
|
|
47797
48016
|
'text'?: string;
|
|
47798
48017
|
/**
|
|
47799
|
-
*
|
|
48018
|
+
* JSON string of Slack Block Kit blocks for rich formatting
|
|
47800
48019
|
* @type {string}
|
|
47801
48020
|
* @memberof TemplateSlackV2025
|
|
47802
48021
|
*/
|
|
47803
48022
|
'blocks'?: string | null;
|
|
47804
48023
|
/**
|
|
47805
|
-
*
|
|
48024
|
+
* JSON string of Slack attachments
|
|
47806
48025
|
* @type {string}
|
|
47807
48026
|
* @memberof TemplateSlackV2025
|
|
47808
48027
|
*/
|
|
47809
48028
|
'attachments'?: string;
|
|
47810
48029
|
/**
|
|
47811
|
-
*
|
|
48030
|
+
* The type of notification
|
|
47812
48031
|
* @type {string}
|
|
47813
48032
|
* @memberof TemplateSlackV2025
|
|
47814
48033
|
*/
|
|
47815
48034
|
'notificationType'?: string | null;
|
|
47816
48035
|
/**
|
|
47817
|
-
*
|
|
48036
|
+
* The approval request ID
|
|
47818
48037
|
* @type {string}
|
|
47819
48038
|
* @memberof TemplateSlackV2025
|
|
47820
48039
|
*/
|
|
47821
48040
|
'approvalId'?: string | null;
|
|
47822
48041
|
/**
|
|
47823
|
-
*
|
|
48042
|
+
* The request ID
|
|
47824
48043
|
* @type {string}
|
|
47825
48044
|
* @memberof TemplateSlackV2025
|
|
47826
48045
|
*/
|
|
47827
48046
|
'requestId'?: string | null;
|
|
47828
48047
|
/**
|
|
47829
|
-
*
|
|
48048
|
+
* The ID of the user who made the request
|
|
47830
48049
|
* @type {string}
|
|
47831
48050
|
* @memberof TemplateSlackV2025
|
|
47832
48051
|
*/
|
|
47833
48052
|
'requestedById'?: string | null;
|
|
47834
48053
|
/**
|
|
47835
|
-
*
|
|
48054
|
+
* Whether this is a subscription notification
|
|
47836
48055
|
* @type {boolean}
|
|
47837
48056
|
* @memberof TemplateSlackV2025
|
|
47838
48057
|
*/
|
|
@@ -47857,55 +48076,55 @@ export interface TemplateSlackV2025 {
|
|
|
47857
48076
|
*/
|
|
47858
48077
|
export interface TemplateTeamsV2025 {
|
|
47859
48078
|
/**
|
|
47860
|
-
*
|
|
48079
|
+
* The template key
|
|
47861
48080
|
* @type {string}
|
|
47862
48081
|
* @memberof TemplateTeamsV2025
|
|
47863
48082
|
*/
|
|
47864
48083
|
'key'?: string | null;
|
|
47865
48084
|
/**
|
|
47866
|
-
*
|
|
48085
|
+
* The title of the Teams message
|
|
47867
48086
|
* @type {string}
|
|
47868
48087
|
* @memberof TemplateTeamsV2025
|
|
47869
48088
|
*/
|
|
47870
48089
|
'title'?: string | null;
|
|
47871
48090
|
/**
|
|
47872
|
-
*
|
|
48091
|
+
* The main text content of the Teams message
|
|
47873
48092
|
* @type {string}
|
|
47874
48093
|
* @memberof TemplateTeamsV2025
|
|
47875
48094
|
*/
|
|
47876
48095
|
'text'?: string;
|
|
47877
48096
|
/**
|
|
47878
|
-
*
|
|
48097
|
+
* JSON string of the Teams adaptive card
|
|
47879
48098
|
* @type {string}
|
|
47880
48099
|
* @memberof TemplateTeamsV2025
|
|
47881
48100
|
*/
|
|
47882
48101
|
'messageJSON'?: string | null;
|
|
47883
48102
|
/**
|
|
47884
|
-
*
|
|
48103
|
+
* Whether this is a subscription notification
|
|
47885
48104
|
* @type {boolean}
|
|
47886
48105
|
* @memberof TemplateTeamsV2025
|
|
47887
48106
|
*/
|
|
47888
48107
|
'isSubscription'?: boolean | null;
|
|
47889
48108
|
/**
|
|
47890
|
-
*
|
|
48109
|
+
* The approval request ID
|
|
47891
48110
|
* @type {string}
|
|
47892
48111
|
* @memberof TemplateTeamsV2025
|
|
47893
48112
|
*/
|
|
47894
48113
|
'approvalId'?: string | null;
|
|
47895
48114
|
/**
|
|
47896
|
-
*
|
|
48115
|
+
* The request ID
|
|
47897
48116
|
* @type {string}
|
|
47898
48117
|
* @memberof TemplateTeamsV2025
|
|
47899
48118
|
*/
|
|
47900
48119
|
'requestId'?: string | null;
|
|
47901
48120
|
/**
|
|
47902
|
-
*
|
|
48121
|
+
* The ID of the user who made the request
|
|
47903
48122
|
* @type {string}
|
|
47904
48123
|
* @memberof TemplateTeamsV2025
|
|
47905
48124
|
*/
|
|
47906
48125
|
'requestedById'?: string | null;
|
|
47907
48126
|
/**
|
|
47908
|
-
*
|
|
48127
|
+
* The type of notification
|
|
47909
48128
|
* @type {string}
|
|
47910
48129
|
* @memberof TemplateTeamsV2025
|
|
47911
48130
|
*/
|
|
@@ -51813,7 +52032,7 @@ export declare const AccessProfilesV2025ApiAxiosParamCreator: (configuration?: C
|
|
|
51813
52032
|
*/
|
|
51814
52033
|
listAccessProfiles: (forSubadmin?: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, forSegmentIds?: string, includeUnsegmented?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
51815
52034
|
/**
|
|
51816
|
-
* This API updates an existing Access Profile. The following fields are patchable: **name** **description** **enabled** **owner** **requestable** **accessRequestConfig** **revokeRequestConfig** **segments** **entitlements** **provisioningCriteria** **source** (must be updated with entitlements belonging to new source in the same API call) If you need to change the `source` of the access profile, you can do so only if you update the `entitlements` in the same API call. The new entitlements can only come from the target source that you want to change to. Look for the example \"Replace Source\" in the examples dropdown. A user with SOURCE_SUBADMIN may only use this API to patch Access Profiles which are associated with Sources they are able to administer. > The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters. > You can only add or replace **entitlements** that exist on the source that the access profile is attached to. You can use the **list entitlements** endpoint with the **filters** query parameter to get a list of available entitlements on the access profile\'s source.
|
|
52035
|
+
* This API updates an existing Access Profile. The following fields are patchable: **name** **description** **enabled** **owner** **additionalOwners** **requestable** **accessRequestConfig** **revokeRequestConfig** **segments** **entitlements** **provisioningCriteria** **source** (must be updated with entitlements belonging to new source in the same API call) If you need to change the `source` of the access profile, you can do so only if you update the `entitlements` in the same API call. The new entitlements can only come from the target source that you want to change to. Look for the example \"Replace Source\" in the examples dropdown. A user with SOURCE_SUBADMIN may only use this API to patch Access Profiles which are associated with Sources they are able to administer. > The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters. > You can only add or replace **entitlements** that exist on the source that the access profile is attached to. You can use the **list entitlements** endpoint with the **filters** query parameter to get a list of available entitlements on the access profile\'s source.
|
|
51817
52036
|
* @summary Patch a specified access profile
|
|
51818
52037
|
* @param {string} id ID of the Access Profile to patch
|
|
51819
52038
|
* @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025
|
|
@@ -51897,7 +52116,7 @@ export declare const AccessProfilesV2025ApiFp: (configuration?: Configuration) =
|
|
|
51897
52116
|
*/
|
|
51898
52117
|
listAccessProfiles(forSubadmin?: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, forSegmentIds?: string, includeUnsegmented?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessProfileV2025>>>;
|
|
51899
52118
|
/**
|
|
51900
|
-
* This API updates an existing Access Profile. The following fields are patchable: **name** **description** **enabled** **owner** **requestable** **accessRequestConfig** **revokeRequestConfig** **segments** **entitlements** **provisioningCriteria** **source** (must be updated with entitlements belonging to new source in the same API call) If you need to change the `source` of the access profile, you can do so only if you update the `entitlements` in the same API call. The new entitlements can only come from the target source that you want to change to. Look for the example \"Replace Source\" in the examples dropdown. A user with SOURCE_SUBADMIN may only use this API to patch Access Profiles which are associated with Sources they are able to administer. > The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters. > You can only add or replace **entitlements** that exist on the source that the access profile is attached to. You can use the **list entitlements** endpoint with the **filters** query parameter to get a list of available entitlements on the access profile\'s source.
|
|
52119
|
+
* This API updates an existing Access Profile. The following fields are patchable: **name** **description** **enabled** **owner** **additionalOwners** **requestable** **accessRequestConfig** **revokeRequestConfig** **segments** **entitlements** **provisioningCriteria** **source** (must be updated with entitlements belonging to new source in the same API call) If you need to change the `source` of the access profile, you can do so only if you update the `entitlements` in the same API call. The new entitlements can only come from the target source that you want to change to. Look for the example \"Replace Source\" in the examples dropdown. A user with SOURCE_SUBADMIN may only use this API to patch Access Profiles which are associated with Sources they are able to administer. > The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters. > You can only add or replace **entitlements** that exist on the source that the access profile is attached to. You can use the **list entitlements** endpoint with the **filters** query parameter to get a list of available entitlements on the access profile\'s source.
|
|
51901
52120
|
* @summary Patch a specified access profile
|
|
51902
52121
|
* @param {string} id ID of the Access Profile to patch
|
|
51903
52122
|
* @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025
|
|
@@ -51969,7 +52188,7 @@ export declare const AccessProfilesV2025ApiFactory: (configuration?: Configurati
|
|
|
51969
52188
|
*/
|
|
51970
52189
|
listAccessProfiles(requestParameters?: AccessProfilesV2025ApiListAccessProfilesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessProfileV2025>>;
|
|
51971
52190
|
/**
|
|
51972
|
-
* This API updates an existing Access Profile. The following fields are patchable: **name** **description** **enabled** **owner** **requestable** **accessRequestConfig** **revokeRequestConfig** **segments** **entitlements** **provisioningCriteria** **source** (must be updated with entitlements belonging to new source in the same API call) If you need to change the `source` of the access profile, you can do so only if you update the `entitlements` in the same API call. The new entitlements can only come from the target source that you want to change to. Look for the example \"Replace Source\" in the examples dropdown. A user with SOURCE_SUBADMIN may only use this API to patch Access Profiles which are associated with Sources they are able to administer. > The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters. > You can only add or replace **entitlements** that exist on the source that the access profile is attached to. You can use the **list entitlements** endpoint with the **filters** query parameter to get a list of available entitlements on the access profile\'s source.
|
|
52191
|
+
* This API updates an existing Access Profile. The following fields are patchable: **name** **description** **enabled** **owner** **additionalOwners** **requestable** **accessRequestConfig** **revokeRequestConfig** **segments** **entitlements** **provisioningCriteria** **source** (must be updated with entitlements belonging to new source in the same API call) If you need to change the `source` of the access profile, you can do so only if you update the `entitlements` in the same API call. The new entitlements can only come from the target source that you want to change to. Look for the example \"Replace Source\" in the examples dropdown. A user with SOURCE_SUBADMIN may only use this API to patch Access Profiles which are associated with Sources they are able to administer. > The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters. > You can only add or replace **entitlements** that exist on the source that the access profile is attached to. You can use the **list entitlements** endpoint with the **filters** query parameter to get a list of available entitlements on the access profile\'s source.
|
|
51973
52192
|
* @summary Patch a specified access profile
|
|
51974
52193
|
* @param {AccessProfilesV2025ApiPatchAccessProfileRequest} requestParameters Request parameters.
|
|
51975
52194
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52235,7 +52454,7 @@ export declare class AccessProfilesV2025Api extends BaseAPI {
|
|
|
52235
52454
|
*/
|
|
52236
52455
|
listAccessProfiles(requestParameters?: AccessProfilesV2025ApiListAccessProfilesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessProfileV2025[], any>>;
|
|
52237
52456
|
/**
|
|
52238
|
-
* This API updates an existing Access Profile. The following fields are patchable: **name** **description** **enabled** **owner** **requestable** **accessRequestConfig** **revokeRequestConfig** **segments** **entitlements** **provisioningCriteria** **source** (must be updated with entitlements belonging to new source in the same API call) If you need to change the `source` of the access profile, you can do so only if you update the `entitlements` in the same API call. The new entitlements can only come from the target source that you want to change to. Look for the example \"Replace Source\" in the examples dropdown. A user with SOURCE_SUBADMIN may only use this API to patch Access Profiles which are associated with Sources they are able to administer. > The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters. > You can only add or replace **entitlements** that exist on the source that the access profile is attached to. You can use the **list entitlements** endpoint with the **filters** query parameter to get a list of available entitlements on the access profile\'s source.
|
|
52457
|
+
* This API updates an existing Access Profile. The following fields are patchable: **name** **description** **enabled** **owner** **additionalOwners** **requestable** **accessRequestConfig** **revokeRequestConfig** **segments** **entitlements** **provisioningCriteria** **source** (must be updated with entitlements belonging to new source in the same API call) If you need to change the `source` of the access profile, you can do so only if you update the `entitlements` in the same API call. The new entitlements can only come from the target source that you want to change to. Look for the example \"Replace Source\" in the examples dropdown. A user with SOURCE_SUBADMIN may only use this API to patch Access Profiles which are associated with Sources they are able to administer. > The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters. > You can only add or replace **entitlements** that exist on the source that the access profile is attached to. You can use the **list entitlements** endpoint with the **filters** query parameter to get a list of available entitlements on the access profile\'s source.
|
|
52239
52458
|
* @summary Patch a specified access profile
|
|
52240
52459
|
* @param {AccessProfilesV2025ApiPatchAccessProfileRequest} requestParameters Request parameters.
|
|
52241
52460
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -55224,7 +55443,7 @@ export declare const ApprovalsV2025ApiAxiosParamCreator: (configuration?: Config
|
|
|
55224
55443
|
*/
|
|
55225
55444
|
moveApproval: (bulkReassignRequestDTOV2025: BulkReassignRequestDTOV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55226
55445
|
/**
|
|
55227
|
-
* Upserts a singular approval configuration that matches the given configID and configScope.
|
|
55446
|
+
* Upserts a singular approval configuration that matches the given configID and configScope. For example to update the approval configurations for all Access Request Approvals please use: \'/generic-approvals/config/ACCESS_REQUEST_APPROVAL/APPROVAL_TYPE\'
|
|
55228
55447
|
* @summary Put Approval Config
|
|
55229
55448
|
* @param {string} id The ID defined by the scope field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
55230
55449
|
* @param {PutApprovalsConfigScopeV2025} scope The scope of the field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
@@ -55362,7 +55581,7 @@ export declare const ApprovalsV2025ApiFp: (configuration?: Configuration) => {
|
|
|
55362
55581
|
*/
|
|
55363
55582
|
moveApproval(bulkReassignRequestDTOV2025: BulkReassignRequestDTOV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
55364
55583
|
/**
|
|
55365
|
-
* Upserts a singular approval configuration that matches the given configID and configScope.
|
|
55584
|
+
* Upserts a singular approval configuration that matches the given configID and configScope. For example to update the approval configurations for all Access Request Approvals please use: \'/generic-approvals/config/ACCESS_REQUEST_APPROVAL/APPROVAL_TYPE\'
|
|
55366
55585
|
* @summary Put Approval Config
|
|
55367
55586
|
* @param {string} id The ID defined by the scope field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
55368
55587
|
* @param {PutApprovalsConfigScopeV2025} scope The scope of the field, where [[id]]:[[scope]] is the following [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT [[domainObjectID]]:DOMAIN_OBJECT
|
|
@@ -55486,7 +55705,7 @@ export declare const ApprovalsV2025ApiFactory: (configuration?: Configuration, b
|
|
|
55486
55705
|
*/
|
|
55487
55706
|
moveApproval(requestParameters: ApprovalsV2025ApiMoveApprovalRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
55488
55707
|
/**
|
|
55489
|
-
* Upserts a singular approval configuration that matches the given configID and configScope.
|
|
55708
|
+
* Upserts a singular approval configuration that matches the given configID and configScope. For example to update the approval configurations for all Access Request Approvals please use: \'/generic-approvals/config/ACCESS_REQUEST_APPROVAL/APPROVAL_TYPE\'
|
|
55490
55709
|
* @summary Put Approval Config
|
|
55491
55710
|
* @param {ApprovalsV2025ApiPutApprovalsConfigRequest} requestParameters Request parameters.
|
|
55492
55711
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -55916,7 +56135,7 @@ export declare class ApprovalsV2025Api extends BaseAPI {
|
|
|
55916
56135
|
*/
|
|
55917
56136
|
moveApproval(requestParameters: ApprovalsV2025ApiMoveApprovalRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
55918
56137
|
/**
|
|
55919
|
-
* Upserts a singular approval configuration that matches the given configID and configScope.
|
|
56138
|
+
* Upserts a singular approval configuration that matches the given configID and configScope. For example to update the approval configurations for all Access Request Approvals please use: \'/generic-approvals/config/ACCESS_REQUEST_APPROVAL/APPROVAL_TYPE\'
|
|
55920
56139
|
* @summary Put Approval Config
|
|
55921
56140
|
* @param {ApprovalsV2025ApiPutApprovalsConfigRequest} requestParameters Request parameters.
|
|
55922
56141
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -81851,7 +82070,7 @@ export declare const NotificationsV2025ApiAxiosParamCreator: (configuration?: Co
|
|
|
81851
82070
|
*/
|
|
81852
82071
|
createVerifiedFromAddress: (emailStatusDtoV2025: EmailStatusDtoV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81853
82072
|
/**
|
|
81854
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
82073
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
81855
82074
|
* @summary Bulk delete notification templates
|
|
81856
82075
|
* @param {Array<TemplateBulkDeleteDtoV2025>} templateBulkDeleteDtoV2025
|
|
81857
82076
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
@@ -81879,12 +82098,12 @@ export declare const NotificationsV2025ApiAxiosParamCreator: (configuration?: Co
|
|
|
81879
82098
|
/**
|
|
81880
82099
|
* Retrieve MAIL FROM attributes for a given AWS SES identity.
|
|
81881
82100
|
* @summary Get mail from attributes
|
|
81882
|
-
* @param {string}
|
|
82101
|
+
* @param {string} identity Returns the MX and TXT record to be put in your DNS, as well as the MAIL FROM domain status
|
|
81883
82102
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81884
82103
|
* @param {*} [axiosOptions] Override http request option.
|
|
81885
82104
|
* @throws {RequiredError}
|
|
81886
82105
|
*/
|
|
81887
|
-
getMailFromAttributes: (
|
|
82106
|
+
getMailFromAttributes: (identity: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81888
82107
|
/**
|
|
81889
82108
|
* This gets a template that you have modified for your site by Id.
|
|
81890
82109
|
* @summary Get notification template by id
|
|
@@ -81998,7 +82217,7 @@ export declare const NotificationsV2025ApiFp: (configuration?: Configuration) =>
|
|
|
81998
82217
|
*/
|
|
81999
82218
|
createVerifiedFromAddress(emailStatusDtoV2025: EmailStatusDtoV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailStatusDtoV2025>>;
|
|
82000
82219
|
/**
|
|
82001
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
82220
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
82002
82221
|
* @summary Bulk delete notification templates
|
|
82003
82222
|
* @param {Array<TemplateBulkDeleteDtoV2025>} templateBulkDeleteDtoV2025
|
|
82004
82223
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
@@ -82026,12 +82245,12 @@ export declare const NotificationsV2025ApiFp: (configuration?: Configuration) =>
|
|
|
82026
82245
|
/**
|
|
82027
82246
|
* Retrieve MAIL FROM attributes for a given AWS SES identity.
|
|
82028
82247
|
* @summary Get mail from attributes
|
|
82029
|
-
* @param {string}
|
|
82248
|
+
* @param {string} identity Returns the MX and TXT record to be put in your DNS, as well as the MAIL FROM domain status
|
|
82030
82249
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82031
82250
|
* @param {*} [axiosOptions] Override http request option.
|
|
82032
82251
|
* @throws {RequiredError}
|
|
82033
82252
|
*/
|
|
82034
|
-
getMailFromAttributes(
|
|
82253
|
+
getMailFromAttributes(identity: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MailFromAttributesV2025>>;
|
|
82035
82254
|
/**
|
|
82036
82255
|
* This gets a template that you have modified for your site by Id.
|
|
82037
82256
|
* @summary Get notification template by id
|
|
@@ -82142,7 +82361,7 @@ export declare const NotificationsV2025ApiFactory: (configuration?: Configuratio
|
|
|
82142
82361
|
*/
|
|
82143
82362
|
createVerifiedFromAddress(requestParameters: NotificationsV2025ApiCreateVerifiedFromAddressRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EmailStatusDtoV2025>;
|
|
82144
82363
|
/**
|
|
82145
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
82364
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
82146
82365
|
* @summary Bulk delete notification templates
|
|
82147
82366
|
* @param {NotificationsV2025ApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
|
|
82148
82367
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -82357,7 +82576,7 @@ export interface NotificationsV2025ApiGetMailFromAttributesRequest {
|
|
|
82357
82576
|
* @type {string}
|
|
82358
82577
|
* @memberof NotificationsV2025ApiGetMailFromAttributes
|
|
82359
82578
|
*/
|
|
82360
|
-
readonly
|
|
82579
|
+
readonly identity: string;
|
|
82361
82580
|
/**
|
|
82362
82581
|
* Use this header to enable this experimental API.
|
|
82363
82582
|
* @type {string}
|
|
@@ -82594,7 +82813,7 @@ export declare class NotificationsV2025Api extends BaseAPI {
|
|
|
82594
82813
|
*/
|
|
82595
82814
|
createVerifiedFromAddress(requestParameters: NotificationsV2025ApiCreateVerifiedFromAddressRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailStatusDtoV2025, any>>;
|
|
82596
82815
|
/**
|
|
82597
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
82816
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
82598
82817
|
* @summary Bulk delete notification templates
|
|
82599
82818
|
* @param {NotificationsV2025ApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
|
|
82600
82819
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -86885,7 +87104,7 @@ export declare const RolesV2025ApiAxiosParamCreator: (configuration?: Configurat
|
|
|
86885
87104
|
*/
|
|
86886
87105
|
listRoles: (forSubadmin?: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, forSegmentIds?: string, includeUnsegmented?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
86887
87106
|
/**
|
|
86888
|
-
* This API updates an existing role using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: * name * description * enabled * owner * accessProfiles * entitlements * membership * requestable * accessRequestConfig * revokeRequestConfig * segments * accessModelMetadata A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all access profiles included in the role are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters. When you use this API to modify a role\'s membership identities, you can only modify up to a limit of 500 membership identities at a time.
|
|
87107
|
+
* This API updates an existing role using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: * name * description * enabled * owner * additionalOwners * accessProfiles * entitlements * membership * requestable * accessRequestConfig * revokeRequestConfig * segments * accessModelMetadata A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all access profiles included in the role are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters. When you use this API to modify a role\'s membership identities, you can only modify up to a limit of 500 membership identities at a time.
|
|
86889
87108
|
* @summary Patch a specified role
|
|
86890
87109
|
* @param {string} id ID of the Role to patch
|
|
86891
87110
|
* @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025
|
|
@@ -87048,7 +87267,7 @@ export declare const RolesV2025ApiFp: (configuration?: Configuration) => {
|
|
|
87048
87267
|
*/
|
|
87049
87268
|
listRoles(forSubadmin?: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, forSegmentIds?: string, includeUnsegmented?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RoleV2025>>>;
|
|
87050
87269
|
/**
|
|
87051
|
-
* This API updates an existing role using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: * name * description * enabled * owner * accessProfiles * entitlements * membership * requestable * accessRequestConfig * revokeRequestConfig * segments * accessModelMetadata A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all access profiles included in the role are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters. When you use this API to modify a role\'s membership identities, you can only modify up to a limit of 500 membership identities at a time.
|
|
87270
|
+
* This API updates an existing role using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: * name * description * enabled * owner * additionalOwners * accessProfiles * entitlements * membership * requestable * accessRequestConfig * revokeRequestConfig * segments * accessModelMetadata A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all access profiles included in the role are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters. When you use this API to modify a role\'s membership identities, you can only modify up to a limit of 500 membership identities at a time.
|
|
87052
87271
|
* @summary Patch a specified role
|
|
87053
87272
|
* @param {string} id ID of the Role to patch
|
|
87054
87273
|
* @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025
|
|
@@ -87191,7 +87410,7 @@ export declare const RolesV2025ApiFactory: (configuration?: Configuration, baseP
|
|
|
87191
87410
|
*/
|
|
87192
87411
|
listRoles(requestParameters?: RolesV2025ApiListRolesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<RoleV2025>>;
|
|
87193
87412
|
/**
|
|
87194
|
-
* This API updates an existing role using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: * name * description * enabled * owner * accessProfiles * entitlements * membership * requestable * accessRequestConfig * revokeRequestConfig * segments * accessModelMetadata A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all access profiles included in the role are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters. When you use this API to modify a role\'s membership identities, you can only modify up to a limit of 500 membership identities at a time.
|
|
87413
|
+
* This API updates an existing role using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: * name * description * enabled * owner * additionalOwners * accessProfiles * entitlements * membership * requestable * accessRequestConfig * revokeRequestConfig * segments * accessModelMetadata A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all access profiles included in the role are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters. When you use this API to modify a role\'s membership identities, you can only modify up to a limit of 500 membership identities at a time.
|
|
87195
87414
|
* @summary Patch a specified role
|
|
87196
87415
|
* @param {RolesV2025ApiPatchRoleRequest} requestParameters Request parameters.
|
|
87197
87416
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -87711,7 +87930,7 @@ export declare class RolesV2025Api extends BaseAPI {
|
|
|
87711
87930
|
*/
|
|
87712
87931
|
listRoles(requestParameters?: RolesV2025ApiListRolesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleV2025[], any>>;
|
|
87713
87932
|
/**
|
|
87714
|
-
* This API updates an existing role using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: * name * description * enabled * owner * accessProfiles * entitlements * membership * requestable * accessRequestConfig * revokeRequestConfig * segments * accessModelMetadata A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all access profiles included in the role are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters. When you use this API to modify a role\'s membership identities, you can only modify up to a limit of 500 membership identities at a time.
|
|
87933
|
+
* This API updates an existing role using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: * name * description * enabled * owner * additionalOwners * accessProfiles * entitlements * membership * requestable * accessRequestConfig * revokeRequestConfig * segments * accessModelMetadata A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all access profiles included in the role are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters. When you use this API to modify a role\'s membership identities, you can only modify up to a limit of 500 membership identities at a time.
|
|
87715
87934
|
* @summary Patch a specified role
|
|
87716
87935
|
* @param {RolesV2025ApiPatchRoleRequest} requestParameters Request parameters.
|
|
87717
87936
|
* @param {*} [axiosOptions] Override http request option.
|