sailpoint-api-client 1.8.3 → 1.8.5
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 +309 -54
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +302 -53
- package/dist/beta/api.js +31 -26
- 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 +400 -273
- package/dist/v2024/api.js +228 -349
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/api.d.ts +399 -274
- package/dist/v2025/api.js +219 -342
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/common.js +2 -2
- package/dist/v3/api.d.ts +66 -0
- package/dist/v3/api.js +19 -9
- 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 +526 -512
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +514 -503
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +72 -0
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/v2025/api.d.ts
CHANGED
|
@@ -16623,11 +16623,17 @@ export interface DkimAttributesV2025 {
|
|
|
16623
16623
|
*/
|
|
16624
16624
|
'dkimTokens'?: Array<string>;
|
|
16625
16625
|
/**
|
|
16626
|
-
* 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
|
|
16627
16627
|
* @type {string}
|
|
16628
16628
|
* @memberof DkimAttributesV2025
|
|
16629
16629
|
*/
|
|
16630
16630
|
'dkimVerificationStatus'?: string;
|
|
16631
|
+
/**
|
|
16632
|
+
* The AWS SES region the domain is associated with
|
|
16633
|
+
* @type {string}
|
|
16634
|
+
* @memberof DkimAttributesV2025
|
|
16635
|
+
*/
|
|
16636
|
+
'region'?: string;
|
|
16631
16637
|
}
|
|
16632
16638
|
/**
|
|
16633
16639
|
*
|
|
@@ -16713,10 +16719,10 @@ export interface DomainStatusDtoV2025 {
|
|
|
16713
16719
|
'domain'?: string;
|
|
16714
16720
|
/**
|
|
16715
16721
|
* DKIM is enabled for this domain
|
|
16716
|
-
* @type {
|
|
16722
|
+
* @type {boolean}
|
|
16717
16723
|
* @memberof DomainStatusDtoV2025
|
|
16718
16724
|
*/
|
|
16719
|
-
'dkimEnabled'?:
|
|
16725
|
+
'dkimEnabled'?: boolean;
|
|
16720
16726
|
/**
|
|
16721
16727
|
* DKIM tokens required for authentication
|
|
16722
16728
|
* @type {Array<string>}
|
|
@@ -16729,6 +16735,12 @@ export interface DomainStatusDtoV2025 {
|
|
|
16729
16735
|
* @memberof DomainStatusDtoV2025
|
|
16730
16736
|
*/
|
|
16731
16737
|
'dkimVerificationStatus'?: string;
|
|
16738
|
+
/**
|
|
16739
|
+
* The AWS SES region the domain is associated with
|
|
16740
|
+
* @type {string}
|
|
16741
|
+
* @memberof DomainStatusDtoV2025
|
|
16742
|
+
*/
|
|
16743
|
+
'region'?: string;
|
|
16732
16744
|
}
|
|
16733
16745
|
/**
|
|
16734
16746
|
*
|
|
@@ -16960,34 +16972,41 @@ export interface EmailNotificationOptionV2025 {
|
|
|
16960
16972
|
*/
|
|
16961
16973
|
export interface EmailStatusDtoV2025 {
|
|
16962
16974
|
/**
|
|
16963
|
-
*
|
|
16975
|
+
* Unique identifier for the verified sender address
|
|
16964
16976
|
* @type {string}
|
|
16965
16977
|
* @memberof EmailStatusDtoV2025
|
|
16966
16978
|
*/
|
|
16967
16979
|
'id'?: string | null;
|
|
16968
16980
|
/**
|
|
16969
|
-
*
|
|
16981
|
+
* The verified sender email address
|
|
16970
16982
|
* @type {string}
|
|
16971
16983
|
* @memberof EmailStatusDtoV2025
|
|
16972
16984
|
*/
|
|
16973
16985
|
'email'?: string;
|
|
16974
16986
|
/**
|
|
16975
|
-
*
|
|
16987
|
+
* Whether the sender address is verified by domain
|
|
16976
16988
|
* @type {boolean}
|
|
16977
16989
|
* @memberof EmailStatusDtoV2025
|
|
16978
16990
|
*/
|
|
16979
16991
|
'isVerifiedByDomain'?: boolean;
|
|
16980
16992
|
/**
|
|
16981
|
-
*
|
|
16993
|
+
* The verification status of the sender address
|
|
16982
16994
|
* @type {string}
|
|
16983
16995
|
* @memberof EmailStatusDtoV2025
|
|
16984
16996
|
*/
|
|
16985
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 | null;
|
|
16986
17004
|
}
|
|
16987
17005
|
export declare const EmailStatusDtoV2025VerificationStatusV2025: {
|
|
16988
17006
|
readonly Pending: "PENDING";
|
|
16989
17007
|
readonly Success: "SUCCESS";
|
|
16990
17008
|
readonly Failed: "FAILED";
|
|
17009
|
+
readonly Na: "NA";
|
|
16991
17010
|
};
|
|
16992
17011
|
export type EmailStatusDtoV2025VerificationStatusV2025 = typeof EmailStatusDtoV2025VerificationStatusV2025[keyof typeof EmailStatusDtoV2025VerificationStatusV2025];
|
|
16993
17012
|
/**
|
|
@@ -17878,6 +17897,12 @@ export interface EntitlementV2025 {
|
|
|
17878
17897
|
* @memberof EntitlementV2025
|
|
17879
17898
|
*/
|
|
17880
17899
|
'owner'?: EntitlementOwnerV2025 | null;
|
|
17900
|
+
/**
|
|
17901
|
+
* List of additional owner references beyond the primary owner. Each entry may be an identity (IDENTITY) or a governance group (GOVERNANCE_GROUP).
|
|
17902
|
+
* @type {Array<AdditionalOwnerRefV2025>}
|
|
17903
|
+
* @memberof EntitlementV2025
|
|
17904
|
+
*/
|
|
17905
|
+
'additionalOwners'?: Array<AdditionalOwnerRefV2025> | null;
|
|
17881
17906
|
/**
|
|
17882
17907
|
* A map of entitlement fields that have been manually updated. The key is the field name in UPPER_SNAKE_CASE format, and the value is true or false to indicate if the field has been updated.
|
|
17883
17908
|
* @type {{ [key: string]: any; }}
|
|
@@ -20244,11 +20269,29 @@ export interface FullDiscoveredApplicationsV2025 {
|
|
|
20244
20269
|
*/
|
|
20245
20270
|
'environment'?: string;
|
|
20246
20271
|
/**
|
|
20247
|
-
* The risk score of the application.
|
|
20272
|
+
* The risk score of the application ranging from 0-100, 100 being highest risk.
|
|
20273
|
+
* @type {number}
|
|
20274
|
+
* @memberof FullDiscoveredApplicationsV2025
|
|
20275
|
+
*/
|
|
20276
|
+
'riskScore'?: number;
|
|
20277
|
+
/**
|
|
20278
|
+
* Indicates whether the application is used for business purposes.
|
|
20279
|
+
* @type {boolean}
|
|
20280
|
+
* @memberof FullDiscoveredApplicationsV2025
|
|
20281
|
+
*/
|
|
20282
|
+
'isBusiness'?: boolean;
|
|
20283
|
+
/**
|
|
20284
|
+
* The total number of sign-in accounts for the application.
|
|
20285
|
+
* @type {number}
|
|
20286
|
+
* @memberof FullDiscoveredApplicationsV2025
|
|
20287
|
+
*/
|
|
20288
|
+
'totalSigninsCount'?: number;
|
|
20289
|
+
/**
|
|
20290
|
+
* The risk level of the application.
|
|
20248
20291
|
* @type {string}
|
|
20249
20292
|
* @memberof FullDiscoveredApplicationsV2025
|
|
20250
20293
|
*/
|
|
20251
|
-
'
|
|
20294
|
+
'riskLevel'?: FullDiscoveredApplicationsV2025RiskLevelV2025;
|
|
20252
20295
|
/**
|
|
20253
20296
|
* Indicates whether the application has privileged access.
|
|
20254
20297
|
* @type {boolean}
|
|
@@ -20268,6 +20311,12 @@ export interface FullDiscoveredApplicationsV2025 {
|
|
|
20268
20311
|
*/
|
|
20269
20312
|
'attributes'?: object;
|
|
20270
20313
|
}
|
|
20314
|
+
export declare const FullDiscoveredApplicationsV2025RiskLevelV2025: {
|
|
20315
|
+
readonly High: "High";
|
|
20316
|
+
readonly Medium: "Medium";
|
|
20317
|
+
readonly Low: "Low";
|
|
20318
|
+
};
|
|
20319
|
+
export type FullDiscoveredApplicationsV2025RiskLevelV2025 = typeof FullDiscoveredApplicationsV2025RiskLevelV2025[keyof typeof FullDiscoveredApplicationsV2025RiskLevelV2025];
|
|
20271
20320
|
/**
|
|
20272
20321
|
*
|
|
20273
20322
|
* @export
|
|
@@ -28764,14 +28813,12 @@ export interface MatchTermV2025 {
|
|
|
28764
28813
|
}> | null;
|
|
28765
28814
|
}
|
|
28766
28815
|
/**
|
|
28767
|
-
*
|
|
28816
|
+
* The notification medium (EMAIL, SLACK, or TEAMS)
|
|
28768
28817
|
* @export
|
|
28769
28818
|
* @enum {string}
|
|
28770
28819
|
*/
|
|
28771
28820
|
export declare const MediumV2025: {
|
|
28772
28821
|
readonly Email: "EMAIL";
|
|
28773
|
-
readonly Sms: "SMS";
|
|
28774
|
-
readonly Phone: "PHONE";
|
|
28775
28822
|
readonly Slack: "SLACK";
|
|
28776
28823
|
readonly Teams: "TEAMS";
|
|
28777
28824
|
};
|
|
@@ -42543,12 +42590,36 @@ export interface SendTestNotificationRequestDtoV2025 {
|
|
|
42543
42590
|
* @memberof SendTestNotificationRequestDtoV2025
|
|
42544
42591
|
*/
|
|
42545
42592
|
'medium'?: SendTestNotificationRequestDtoV2025MediumV2025;
|
|
42593
|
+
/**
|
|
42594
|
+
* The locale for the message text.
|
|
42595
|
+
* @type {string}
|
|
42596
|
+
* @memberof SendTestNotificationRequestDtoV2025
|
|
42597
|
+
*/
|
|
42598
|
+
'locale'?: string;
|
|
42546
42599
|
/**
|
|
42547
42600
|
* A Json object that denotes the context specific to the template.
|
|
42548
42601
|
* @type {object}
|
|
42549
42602
|
* @memberof SendTestNotificationRequestDtoV2025
|
|
42550
42603
|
*/
|
|
42551
42604
|
'context'?: object;
|
|
42605
|
+
/**
|
|
42606
|
+
* A list of override recipient email addresses for the test notification.
|
|
42607
|
+
* @type {Array<string>}
|
|
42608
|
+
* @memberof SendTestNotificationRequestDtoV2025
|
|
42609
|
+
*/
|
|
42610
|
+
'recipientEmailList'?: Array<string>;
|
|
42611
|
+
/**
|
|
42612
|
+
* A list of CC email addresses for the test notification.
|
|
42613
|
+
* @type {Array<string>}
|
|
42614
|
+
* @memberof SendTestNotificationRequestDtoV2025
|
|
42615
|
+
*/
|
|
42616
|
+
'carbonCopy'?: Array<string>;
|
|
42617
|
+
/**
|
|
42618
|
+
* A list of BCC email addresses for the test notification.
|
|
42619
|
+
* @type {Array<string>}
|
|
42620
|
+
* @memberof SendTestNotificationRequestDtoV2025
|
|
42621
|
+
*/
|
|
42622
|
+
'blindCarbonCopy'?: Array<string>;
|
|
42552
42623
|
}
|
|
42553
42624
|
export declare const SendTestNotificationRequestDtoV2025MediumV2025: {
|
|
42554
42625
|
readonly Email: "EMAIL";
|
|
@@ -43343,11 +43414,29 @@ export interface SlimDiscoveredApplicationsV2025 {
|
|
|
43343
43414
|
*/
|
|
43344
43415
|
'environment'?: string;
|
|
43345
43416
|
/**
|
|
43346
|
-
* The risk score of the application.
|
|
43417
|
+
* The risk score of the application ranging from 0-100, 100 being highest risk.
|
|
43418
|
+
* @type {number}
|
|
43419
|
+
* @memberof SlimDiscoveredApplicationsV2025
|
|
43420
|
+
*/
|
|
43421
|
+
'riskScore'?: number;
|
|
43422
|
+
/**
|
|
43423
|
+
* Indicates whether the application is used for business purposes.
|
|
43424
|
+
* @type {boolean}
|
|
43425
|
+
* @memberof SlimDiscoveredApplicationsV2025
|
|
43426
|
+
*/
|
|
43427
|
+
'isBusiness'?: boolean;
|
|
43428
|
+
/**
|
|
43429
|
+
* The total number of sign-in accounts for the application.
|
|
43430
|
+
* @type {number}
|
|
43431
|
+
* @memberof SlimDiscoveredApplicationsV2025
|
|
43432
|
+
*/
|
|
43433
|
+
'totalSigninsCount'?: number;
|
|
43434
|
+
/**
|
|
43435
|
+
* The risk level of the application.
|
|
43347
43436
|
* @type {string}
|
|
43348
43437
|
* @memberof SlimDiscoveredApplicationsV2025
|
|
43349
43438
|
*/
|
|
43350
|
-
'
|
|
43439
|
+
'riskLevel'?: SlimDiscoveredApplicationsV2025RiskLevelV2025;
|
|
43351
43440
|
/**
|
|
43352
43441
|
* Indicates whether the application has privileged access.
|
|
43353
43442
|
* @type {boolean}
|
|
@@ -43367,6 +43456,12 @@ export interface SlimDiscoveredApplicationsV2025 {
|
|
|
43367
43456
|
*/
|
|
43368
43457
|
'attributes'?: object;
|
|
43369
43458
|
}
|
|
43459
|
+
export declare const SlimDiscoveredApplicationsV2025RiskLevelV2025: {
|
|
43460
|
+
readonly High: "High";
|
|
43461
|
+
readonly Medium: "Medium";
|
|
43462
|
+
readonly Low: "Low";
|
|
43463
|
+
};
|
|
43464
|
+
export type SlimDiscoveredApplicationsV2025RiskLevelV2025 = typeof SlimDiscoveredApplicationsV2025RiskLevelV2025[keyof typeof SlimDiscoveredApplicationsV2025RiskLevelV2025];
|
|
43370
43465
|
/**
|
|
43371
43466
|
* Details of the Entitlement criteria
|
|
43372
43467
|
* @export
|
|
@@ -46194,6 +46289,24 @@ export declare const StandardLevelV2025: {
|
|
|
46194
46289
|
readonly Trace: "TRACE";
|
|
46195
46290
|
};
|
|
46196
46291
|
export type StandardLevelV2025 = typeof StandardLevelV2025[keyof typeof StandardLevelV2025];
|
|
46292
|
+
/**
|
|
46293
|
+
*
|
|
46294
|
+
* @export
|
|
46295
|
+
* @interface StartApplicationDiscovery403ResponseOneOfV2025
|
|
46296
|
+
*/
|
|
46297
|
+
export interface StartApplicationDiscovery403ResponseOneOfV2025 {
|
|
46298
|
+
/**
|
|
46299
|
+
* Error message when quota is exceeded
|
|
46300
|
+
* @type {string}
|
|
46301
|
+
* @memberof StartApplicationDiscovery403ResponseOneOfV2025
|
|
46302
|
+
*/
|
|
46303
|
+
'error': string;
|
|
46304
|
+
}
|
|
46305
|
+
/**
|
|
46306
|
+
* @type StartApplicationDiscovery403ResponseV2025
|
|
46307
|
+
* @export
|
|
46308
|
+
*/
|
|
46309
|
+
export type StartApplicationDiscovery403ResponseV2025 = ErrorResponseDtoV2025 | StartApplicationDiscovery403ResponseOneOfV2025;
|
|
46197
46310
|
/**
|
|
46198
46311
|
*
|
|
46199
46312
|
* @export
|
|
@@ -47513,13 +47626,13 @@ export type TaskStatusV2025CompletionStatusV2025 = typeof TaskStatusV2025Complet
|
|
|
47513
47626
|
*/
|
|
47514
47627
|
export interface TemplateBulkDeleteDtoV2025 {
|
|
47515
47628
|
/**
|
|
47516
|
-
*
|
|
47629
|
+
* The template key to delete
|
|
47517
47630
|
* @type {string}
|
|
47518
47631
|
* @memberof TemplateBulkDeleteDtoV2025
|
|
47519
47632
|
*/
|
|
47520
47633
|
'key': string;
|
|
47521
47634
|
/**
|
|
47522
|
-
*
|
|
47635
|
+
* The notification medium (EMAIL, SLACK, or TEAMS)
|
|
47523
47636
|
* @type {string}
|
|
47524
47637
|
* @memberof TemplateBulkDeleteDtoV2025
|
|
47525
47638
|
*/
|
|
@@ -47533,8 +47646,8 @@ export interface TemplateBulkDeleteDtoV2025 {
|
|
|
47533
47646
|
}
|
|
47534
47647
|
export declare const TemplateBulkDeleteDtoV2025MediumV2025: {
|
|
47535
47648
|
readonly Email: "EMAIL";
|
|
47536
|
-
readonly
|
|
47537
|
-
readonly
|
|
47649
|
+
readonly Slack: "SLACK";
|
|
47650
|
+
readonly Teams: "TEAMS";
|
|
47538
47651
|
};
|
|
47539
47652
|
export type TemplateBulkDeleteDtoV2025MediumV2025 = typeof TemplateBulkDeleteDtoV2025MediumV2025[keyof typeof TemplateBulkDeleteDtoV2025MediumV2025];
|
|
47540
47653
|
/**
|
|
@@ -47626,12 +47739,156 @@ export interface TemplateDtoDefaultV2025 {
|
|
|
47626
47739
|
}
|
|
47627
47740
|
export declare const TemplateDtoDefaultV2025MediumV2025: {
|
|
47628
47741
|
readonly Email: "EMAIL";
|
|
47629
|
-
readonly Phone: "PHONE";
|
|
47630
|
-
readonly Sms: "SMS";
|
|
47631
47742
|
readonly Slack: "SLACK";
|
|
47632
47743
|
readonly Teams: "TEAMS";
|
|
47633
47744
|
};
|
|
47634
47745
|
export type TemplateDtoDefaultV2025MediumV2025 = typeof TemplateDtoDefaultV2025MediumV2025[keyof typeof TemplateDtoDefaultV2025MediumV2025];
|
|
47746
|
+
/**
|
|
47747
|
+
*
|
|
47748
|
+
* @export
|
|
47749
|
+
* @interface TemplateDtoSlackTemplateV2025
|
|
47750
|
+
*/
|
|
47751
|
+
export interface TemplateDtoSlackTemplateV2025 {
|
|
47752
|
+
/**
|
|
47753
|
+
* The template key
|
|
47754
|
+
* @type {string}
|
|
47755
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47756
|
+
*/
|
|
47757
|
+
'key'?: string | null;
|
|
47758
|
+
/**
|
|
47759
|
+
* The main text content of the Slack message
|
|
47760
|
+
* @type {string}
|
|
47761
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47762
|
+
*/
|
|
47763
|
+
'text'?: string;
|
|
47764
|
+
/**
|
|
47765
|
+
* JSON string of Slack Block Kit blocks for rich formatting
|
|
47766
|
+
* @type {string}
|
|
47767
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47768
|
+
*/
|
|
47769
|
+
'blocks'?: string | null;
|
|
47770
|
+
/**
|
|
47771
|
+
* JSON string of Slack attachments
|
|
47772
|
+
* @type {string}
|
|
47773
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47774
|
+
*/
|
|
47775
|
+
'attachments'?: string;
|
|
47776
|
+
/**
|
|
47777
|
+
* The type of notification
|
|
47778
|
+
* @type {string}
|
|
47779
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47780
|
+
*/
|
|
47781
|
+
'notificationType'?: string | null;
|
|
47782
|
+
/**
|
|
47783
|
+
* The approval request ID
|
|
47784
|
+
* @type {string}
|
|
47785
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47786
|
+
*/
|
|
47787
|
+
'approvalId'?: string | null;
|
|
47788
|
+
/**
|
|
47789
|
+
* The request ID
|
|
47790
|
+
* @type {string}
|
|
47791
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47792
|
+
*/
|
|
47793
|
+
'requestId'?: string | null;
|
|
47794
|
+
/**
|
|
47795
|
+
* The ID of the user who made the request
|
|
47796
|
+
* @type {string}
|
|
47797
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47798
|
+
*/
|
|
47799
|
+
'requestedById'?: string | null;
|
|
47800
|
+
/**
|
|
47801
|
+
* Whether this is a subscription notification
|
|
47802
|
+
* @type {boolean}
|
|
47803
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47804
|
+
*/
|
|
47805
|
+
'isSubscription'?: boolean | null;
|
|
47806
|
+
/**
|
|
47807
|
+
*
|
|
47808
|
+
* @type {TemplateSlackAutoApprovalDataV2025}
|
|
47809
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47810
|
+
*/
|
|
47811
|
+
'autoApprovalData'?: TemplateSlackAutoApprovalDataV2025 | null;
|
|
47812
|
+
/**
|
|
47813
|
+
*
|
|
47814
|
+
* @type {TemplateSlackCustomFieldsV2025}
|
|
47815
|
+
* @memberof TemplateDtoSlackTemplateV2025
|
|
47816
|
+
*/
|
|
47817
|
+
'customFields'?: TemplateSlackCustomFieldsV2025 | null;
|
|
47818
|
+
}
|
|
47819
|
+
/**
|
|
47820
|
+
*
|
|
47821
|
+
* @export
|
|
47822
|
+
* @interface TemplateDtoTeamsTemplateV2025
|
|
47823
|
+
*/
|
|
47824
|
+
export interface TemplateDtoTeamsTemplateV2025 {
|
|
47825
|
+
/**
|
|
47826
|
+
* The template key
|
|
47827
|
+
* @type {string}
|
|
47828
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47829
|
+
*/
|
|
47830
|
+
'key'?: string | null;
|
|
47831
|
+
/**
|
|
47832
|
+
* The title of the Teams message
|
|
47833
|
+
* @type {string}
|
|
47834
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47835
|
+
*/
|
|
47836
|
+
'title'?: string | null;
|
|
47837
|
+
/**
|
|
47838
|
+
* The main text content of the Teams message
|
|
47839
|
+
* @type {string}
|
|
47840
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47841
|
+
*/
|
|
47842
|
+
'text'?: string;
|
|
47843
|
+
/**
|
|
47844
|
+
* JSON string of the Teams adaptive card
|
|
47845
|
+
* @type {string}
|
|
47846
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47847
|
+
*/
|
|
47848
|
+
'messageJSON'?: string | null;
|
|
47849
|
+
/**
|
|
47850
|
+
* Whether this is a subscription notification
|
|
47851
|
+
* @type {boolean}
|
|
47852
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47853
|
+
*/
|
|
47854
|
+
'isSubscription'?: boolean | null;
|
|
47855
|
+
/**
|
|
47856
|
+
* The approval request ID
|
|
47857
|
+
* @type {string}
|
|
47858
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47859
|
+
*/
|
|
47860
|
+
'approvalId'?: string | null;
|
|
47861
|
+
/**
|
|
47862
|
+
* The request ID
|
|
47863
|
+
* @type {string}
|
|
47864
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47865
|
+
*/
|
|
47866
|
+
'requestId'?: string | null;
|
|
47867
|
+
/**
|
|
47868
|
+
* The ID of the user who made the request
|
|
47869
|
+
* @type {string}
|
|
47870
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47871
|
+
*/
|
|
47872
|
+
'requestedById'?: string | null;
|
|
47873
|
+
/**
|
|
47874
|
+
* The type of notification
|
|
47875
|
+
* @type {string}
|
|
47876
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47877
|
+
*/
|
|
47878
|
+
'notificationType'?: string | null;
|
|
47879
|
+
/**
|
|
47880
|
+
*
|
|
47881
|
+
* @type {TemplateSlackAutoApprovalDataV2025}
|
|
47882
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47883
|
+
*/
|
|
47884
|
+
'autoApprovalData'?: TemplateSlackAutoApprovalDataV2025 | null;
|
|
47885
|
+
/**
|
|
47886
|
+
*
|
|
47887
|
+
* @type {TemplateSlackCustomFieldsV2025}
|
|
47888
|
+
* @memberof TemplateDtoTeamsTemplateV2025
|
|
47889
|
+
*/
|
|
47890
|
+
'customFields'?: TemplateSlackCustomFieldsV2025 | null;
|
|
47891
|
+
}
|
|
47635
47892
|
/**
|
|
47636
47893
|
*
|
|
47637
47894
|
* @export
|
|
@@ -47726,21 +47983,19 @@ export interface TemplateDtoV2025 {
|
|
|
47726
47983
|
'modified'?: string;
|
|
47727
47984
|
/**
|
|
47728
47985
|
*
|
|
47729
|
-
* @type {
|
|
47986
|
+
* @type {TemplateDtoSlackTemplateV2025}
|
|
47730
47987
|
* @memberof TemplateDtoV2025
|
|
47731
47988
|
*/
|
|
47732
|
-
'slackTemplate'?:
|
|
47989
|
+
'slackTemplate'?: TemplateDtoSlackTemplateV2025;
|
|
47733
47990
|
/**
|
|
47734
47991
|
*
|
|
47735
|
-
* @type {
|
|
47992
|
+
* @type {TemplateDtoTeamsTemplateV2025}
|
|
47736
47993
|
* @memberof TemplateDtoV2025
|
|
47737
47994
|
*/
|
|
47738
|
-
'teamsTemplate'?:
|
|
47995
|
+
'teamsTemplate'?: TemplateDtoTeamsTemplateV2025;
|
|
47739
47996
|
}
|
|
47740
47997
|
export declare const TemplateDtoV2025MediumV2025: {
|
|
47741
47998
|
readonly Email: "EMAIL";
|
|
47742
|
-
readonly Phone: "PHONE";
|
|
47743
|
-
readonly Sms: "SMS";
|
|
47744
47999
|
readonly Slack: "SLACK";
|
|
47745
48000
|
readonly Teams: "TEAMS";
|
|
47746
48001
|
};
|
|
@@ -47752,31 +48007,31 @@ export type TemplateDtoV2025MediumV2025 = typeof TemplateDtoV2025MediumV2025[key
|
|
|
47752
48007
|
*/
|
|
47753
48008
|
export interface TemplateSlackAutoApprovalDataV2025 {
|
|
47754
48009
|
/**
|
|
47755
|
-
*
|
|
48010
|
+
* Whether the request was auto-approved
|
|
47756
48011
|
* @type {string}
|
|
47757
48012
|
* @memberof TemplateSlackAutoApprovalDataV2025
|
|
47758
48013
|
*/
|
|
47759
48014
|
'isAutoApproved'?: string | null;
|
|
47760
48015
|
/**
|
|
47761
|
-
*
|
|
48016
|
+
* The item ID
|
|
47762
48017
|
* @type {string}
|
|
47763
48018
|
* @memberof TemplateSlackAutoApprovalDataV2025
|
|
47764
48019
|
*/
|
|
47765
48020
|
'itemId'?: string | null;
|
|
47766
48021
|
/**
|
|
47767
|
-
*
|
|
48022
|
+
* The item type
|
|
47768
48023
|
* @type {string}
|
|
47769
48024
|
* @memberof TemplateSlackAutoApprovalDataV2025
|
|
47770
48025
|
*/
|
|
47771
48026
|
'itemType'?: string | null;
|
|
47772
48027
|
/**
|
|
47773
|
-
*
|
|
48028
|
+
* JSON message for auto-approval
|
|
47774
48029
|
* @type {string}
|
|
47775
48030
|
* @memberof TemplateSlackAutoApprovalDataV2025
|
|
47776
48031
|
*/
|
|
47777
48032
|
'autoApprovalMessageJSON'?: string | null;
|
|
47778
48033
|
/**
|
|
47779
|
-
*
|
|
48034
|
+
* Title for auto-approval
|
|
47780
48035
|
* @type {string}
|
|
47781
48036
|
* @memberof TemplateSlackAutoApprovalDataV2025
|
|
47782
48037
|
*/
|
|
@@ -47789,25 +48044,25 @@ export interface TemplateSlackAutoApprovalDataV2025 {
|
|
|
47789
48044
|
*/
|
|
47790
48045
|
export interface TemplateSlackCustomFieldsV2025 {
|
|
47791
48046
|
/**
|
|
47792
|
-
*
|
|
48047
|
+
* The type of request
|
|
47793
48048
|
* @type {string}
|
|
47794
48049
|
* @memberof TemplateSlackCustomFieldsV2025
|
|
47795
48050
|
*/
|
|
47796
48051
|
'requestType'?: string | null;
|
|
47797
48052
|
/**
|
|
47798
|
-
*
|
|
48053
|
+
* Whether the request contains a deny action
|
|
47799
48054
|
* @type {string}
|
|
47800
48055
|
* @memberof TemplateSlackCustomFieldsV2025
|
|
47801
48056
|
*/
|
|
47802
48057
|
'containsDeny'?: string | null;
|
|
47803
48058
|
/**
|
|
47804
|
-
*
|
|
48059
|
+
* The campaign ID
|
|
47805
48060
|
* @type {string}
|
|
47806
48061
|
* @memberof TemplateSlackCustomFieldsV2025
|
|
47807
48062
|
*/
|
|
47808
48063
|
'campaignId'?: string | null;
|
|
47809
48064
|
/**
|
|
47810
|
-
*
|
|
48065
|
+
* The campaign status
|
|
47811
48066
|
* @type {string}
|
|
47812
48067
|
* @memberof TemplateSlackCustomFieldsV2025
|
|
47813
48068
|
*/
|
|
@@ -47820,55 +48075,55 @@ export interface TemplateSlackCustomFieldsV2025 {
|
|
|
47820
48075
|
*/
|
|
47821
48076
|
export interface TemplateSlackV2025 {
|
|
47822
48077
|
/**
|
|
47823
|
-
*
|
|
48078
|
+
* The template key
|
|
47824
48079
|
* @type {string}
|
|
47825
48080
|
* @memberof TemplateSlackV2025
|
|
47826
48081
|
*/
|
|
47827
48082
|
'key'?: string | null;
|
|
47828
48083
|
/**
|
|
47829
|
-
*
|
|
48084
|
+
* The main text content of the Slack message
|
|
47830
48085
|
* @type {string}
|
|
47831
48086
|
* @memberof TemplateSlackV2025
|
|
47832
48087
|
*/
|
|
47833
48088
|
'text'?: string;
|
|
47834
48089
|
/**
|
|
47835
|
-
*
|
|
48090
|
+
* JSON string of Slack Block Kit blocks for rich formatting
|
|
47836
48091
|
* @type {string}
|
|
47837
48092
|
* @memberof TemplateSlackV2025
|
|
47838
48093
|
*/
|
|
47839
48094
|
'blocks'?: string | null;
|
|
47840
48095
|
/**
|
|
47841
|
-
*
|
|
48096
|
+
* JSON string of Slack attachments
|
|
47842
48097
|
* @type {string}
|
|
47843
48098
|
* @memberof TemplateSlackV2025
|
|
47844
48099
|
*/
|
|
47845
48100
|
'attachments'?: string;
|
|
47846
48101
|
/**
|
|
47847
|
-
*
|
|
48102
|
+
* The type of notification
|
|
47848
48103
|
* @type {string}
|
|
47849
48104
|
* @memberof TemplateSlackV2025
|
|
47850
48105
|
*/
|
|
47851
48106
|
'notificationType'?: string | null;
|
|
47852
48107
|
/**
|
|
47853
|
-
*
|
|
48108
|
+
* The approval request ID
|
|
47854
48109
|
* @type {string}
|
|
47855
48110
|
* @memberof TemplateSlackV2025
|
|
47856
48111
|
*/
|
|
47857
48112
|
'approvalId'?: string | null;
|
|
47858
48113
|
/**
|
|
47859
|
-
*
|
|
48114
|
+
* The request ID
|
|
47860
48115
|
* @type {string}
|
|
47861
48116
|
* @memberof TemplateSlackV2025
|
|
47862
48117
|
*/
|
|
47863
48118
|
'requestId'?: string | null;
|
|
47864
48119
|
/**
|
|
47865
|
-
*
|
|
48120
|
+
* The ID of the user who made the request
|
|
47866
48121
|
* @type {string}
|
|
47867
48122
|
* @memberof TemplateSlackV2025
|
|
47868
48123
|
*/
|
|
47869
48124
|
'requestedById'?: string | null;
|
|
47870
48125
|
/**
|
|
47871
|
-
*
|
|
48126
|
+
* Whether this is a subscription notification
|
|
47872
48127
|
* @type {boolean}
|
|
47873
48128
|
* @memberof TemplateSlackV2025
|
|
47874
48129
|
*/
|
|
@@ -47893,55 +48148,55 @@ export interface TemplateSlackV2025 {
|
|
|
47893
48148
|
*/
|
|
47894
48149
|
export interface TemplateTeamsV2025 {
|
|
47895
48150
|
/**
|
|
47896
|
-
*
|
|
48151
|
+
* The template key
|
|
47897
48152
|
* @type {string}
|
|
47898
48153
|
* @memberof TemplateTeamsV2025
|
|
47899
48154
|
*/
|
|
47900
48155
|
'key'?: string | null;
|
|
47901
48156
|
/**
|
|
47902
|
-
*
|
|
48157
|
+
* The title of the Teams message
|
|
47903
48158
|
* @type {string}
|
|
47904
48159
|
* @memberof TemplateTeamsV2025
|
|
47905
48160
|
*/
|
|
47906
48161
|
'title'?: string | null;
|
|
47907
48162
|
/**
|
|
47908
|
-
*
|
|
48163
|
+
* The main text content of the Teams message
|
|
47909
48164
|
* @type {string}
|
|
47910
48165
|
* @memberof TemplateTeamsV2025
|
|
47911
48166
|
*/
|
|
47912
48167
|
'text'?: string;
|
|
47913
48168
|
/**
|
|
47914
|
-
*
|
|
48169
|
+
* JSON string of the Teams adaptive card
|
|
47915
48170
|
* @type {string}
|
|
47916
48171
|
* @memberof TemplateTeamsV2025
|
|
47917
48172
|
*/
|
|
47918
48173
|
'messageJSON'?: string | null;
|
|
47919
48174
|
/**
|
|
47920
|
-
*
|
|
48175
|
+
* Whether this is a subscription notification
|
|
47921
48176
|
* @type {boolean}
|
|
47922
48177
|
* @memberof TemplateTeamsV2025
|
|
47923
48178
|
*/
|
|
47924
48179
|
'isSubscription'?: boolean | null;
|
|
47925
48180
|
/**
|
|
47926
|
-
*
|
|
48181
|
+
* The approval request ID
|
|
47927
48182
|
* @type {string}
|
|
47928
48183
|
* @memberof TemplateTeamsV2025
|
|
47929
48184
|
*/
|
|
47930
48185
|
'approvalId'?: string | null;
|
|
47931
48186
|
/**
|
|
47932
|
-
*
|
|
48187
|
+
* The request ID
|
|
47933
48188
|
* @type {string}
|
|
47934
48189
|
* @memberof TemplateTeamsV2025
|
|
47935
48190
|
*/
|
|
47936
48191
|
'requestId'?: string | null;
|
|
47937
48192
|
/**
|
|
47938
|
-
*
|
|
48193
|
+
* The ID of the user who made the request
|
|
47939
48194
|
* @type {string}
|
|
47940
48195
|
* @memberof TemplateTeamsV2025
|
|
47941
48196
|
*/
|
|
47942
48197
|
'requestedById'?: string | null;
|
|
47943
48198
|
/**
|
|
47944
|
-
*
|
|
48199
|
+
* The type of notification
|
|
47945
48200
|
* @type {string}
|
|
47946
48201
|
* @memberof TemplateTeamsV2025
|
|
47947
48202
|
*/
|
|
@@ -55219,11 +55474,10 @@ export declare const ApprovalsV2025ApiAxiosParamCreator: (configuration?: Config
|
|
|
55219
55474
|
* Currently this endpoint only supports Entitlement Description Approvals. Retrieve a single approval for a given approval ID. This endpoint is for generic approvals, different than the access-request-approval endpoint and does not include access-request-approvals.
|
|
55220
55475
|
* @summary Get an approval
|
|
55221
55476
|
* @param {string} id ID of the approval that is to be returned
|
|
55222
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55223
55477
|
* @param {*} [axiosOptions] Override http request option.
|
|
55224
55478
|
* @throws {RequiredError}
|
|
55225
55479
|
*/
|
|
55226
|
-
getApproval: (id: string,
|
|
55480
|
+
getApproval: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55227
55481
|
/**
|
|
55228
55482
|
* Currently this endpoint only supports Entitlement Description Approvals. Get a list of approvals. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and does not include access-request-approvals. Absence of all query parameters for non admins will will default to mine=true. Admin will default to mine=false. Absence of all query parameters for admins will return all approvals in the org.
|
|
55229
55483
|
* @summary Get approvals
|
|
@@ -55260,7 +55514,7 @@ export declare const ApprovalsV2025ApiAxiosParamCreator: (configuration?: Config
|
|
|
55260
55514
|
*/
|
|
55261
55515
|
moveApproval: (bulkReassignRequestDTOV2025: BulkReassignRequestDTOV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55262
55516
|
/**
|
|
55263
|
-
* Upserts a singular approval configuration that matches the given configID and configScope.
|
|
55517
|
+
* 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\'
|
|
55264
55518
|
* @summary Put Approval Config
|
|
55265
55519
|
* @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
|
|
55266
55520
|
* @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
|
|
@@ -55357,11 +55611,10 @@ export declare const ApprovalsV2025ApiFp: (configuration?: Configuration) => {
|
|
|
55357
55611
|
* Currently this endpoint only supports Entitlement Description Approvals. Retrieve a single approval for a given approval ID. This endpoint is for generic approvals, different than the access-request-approval endpoint and does not include access-request-approvals.
|
|
55358
55612
|
* @summary Get an approval
|
|
55359
55613
|
* @param {string} id ID of the approval that is to be returned
|
|
55360
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55361
55614
|
* @param {*} [axiosOptions] Override http request option.
|
|
55362
55615
|
* @throws {RequiredError}
|
|
55363
55616
|
*/
|
|
55364
|
-
getApproval(id: string,
|
|
55617
|
+
getApproval(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApprovalV2025>>;
|
|
55365
55618
|
/**
|
|
55366
55619
|
* Currently this endpoint only supports Entitlement Description Approvals. Get a list of approvals. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and does not include access-request-approvals. Absence of all query parameters for non admins will will default to mine=true. Admin will default to mine=false. Absence of all query parameters for admins will return all approvals in the org.
|
|
55367
55620
|
* @summary Get approvals
|
|
@@ -55398,7 +55651,7 @@ export declare const ApprovalsV2025ApiFp: (configuration?: Configuration) => {
|
|
|
55398
55651
|
*/
|
|
55399
55652
|
moveApproval(bulkReassignRequestDTOV2025: BulkReassignRequestDTOV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
55400
55653
|
/**
|
|
55401
|
-
* Upserts a singular approval configuration that matches the given configID and configScope.
|
|
55654
|
+
* 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\'
|
|
55402
55655
|
* @summary Put Approval Config
|
|
55403
55656
|
* @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
|
|
55404
55657
|
* @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
|
|
@@ -55522,7 +55775,7 @@ export declare const ApprovalsV2025ApiFactory: (configuration?: Configuration, b
|
|
|
55522
55775
|
*/
|
|
55523
55776
|
moveApproval(requestParameters: ApprovalsV2025ApiMoveApprovalRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
55524
55777
|
/**
|
|
55525
|
-
* Upserts a singular approval configuration that matches the given configID and configScope.
|
|
55778
|
+
* 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\'
|
|
55526
55779
|
* @summary Put Approval Config
|
|
55527
55780
|
* @param {ApprovalsV2025ApiPutApprovalsConfigRequest} requestParameters Request parameters.
|
|
55528
55781
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -55646,12 +55899,6 @@ export interface ApprovalsV2025ApiGetApprovalRequest {
|
|
|
55646
55899
|
* @memberof ApprovalsV2025ApiGetApproval
|
|
55647
55900
|
*/
|
|
55648
55901
|
readonly id: string;
|
|
55649
|
-
/**
|
|
55650
|
-
* Use this header to enable this experimental API.
|
|
55651
|
-
* @type {string}
|
|
55652
|
-
* @memberof ApprovalsV2025ApiGetApproval
|
|
55653
|
-
*/
|
|
55654
|
-
readonly xSailPointExperimental?: string;
|
|
55655
55902
|
}
|
|
55656
55903
|
/**
|
|
55657
55904
|
* Request parameters for getApprovals operation in ApprovalsV2025Api.
|
|
@@ -55952,7 +56199,7 @@ export declare class ApprovalsV2025Api extends BaseAPI {
|
|
|
55952
56199
|
*/
|
|
55953
56200
|
moveApproval(requestParameters: ApprovalsV2025ApiMoveApprovalRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
55954
56201
|
/**
|
|
55955
|
-
* Upserts a singular approval configuration that matches the given configID and configScope.
|
|
56202
|
+
* 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\'
|
|
55956
56203
|
* @summary Put Approval Config
|
|
55957
56204
|
* @param {ApprovalsV2025ApiPutApprovalsConfigRequest} requestParameters Request parameters.
|
|
55958
56205
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -81863,113 +82110,103 @@ export declare const NotificationsV2025ApiAxiosParamCreator: (configuration?: Co
|
|
|
81863
82110
|
* Create a domain to be verified via DKIM (DomainKeys Identified Mail)
|
|
81864
82111
|
* @summary Verify domain address via dkim
|
|
81865
82112
|
* @param {DomainAddressV2025} domainAddressV2025
|
|
81866
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81867
82113
|
* @param {*} [axiosOptions] Override http request option.
|
|
81868
82114
|
* @throws {RequiredError}
|
|
81869
82115
|
*/
|
|
81870
|
-
createDomainDkim: (domainAddressV2025: DomainAddressV2025,
|
|
82116
|
+
createDomainDkim: (domainAddressV2025: DomainAddressV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81871
82117
|
/**
|
|
81872
82118
|
* This will update notification templates that are available in your tenant. Note that you cannot create new templates in your tenant, but you can use this to create custom notifications from existing templates. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
|
|
81873
82119
|
* @summary Create notification template
|
|
81874
82120
|
* @param {TemplateDtoV2025} templateDtoV2025
|
|
81875
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81876
82121
|
* @param {*} [axiosOptions] Override http request option.
|
|
81877
82122
|
* @throws {RequiredError}
|
|
81878
82123
|
*/
|
|
81879
|
-
createNotificationTemplate: (templateDtoV2025: TemplateDtoV2025,
|
|
82124
|
+
createNotificationTemplate: (templateDtoV2025: TemplateDtoV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81880
82125
|
/**
|
|
81881
82126
|
* Create a new sender email address and initiate verification process.
|
|
81882
82127
|
* @summary Create verified from address
|
|
81883
82128
|
* @param {EmailStatusDtoV2025} emailStatusDtoV2025
|
|
81884
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81885
82129
|
* @param {*} [axiosOptions] Override http request option.
|
|
81886
82130
|
* @throws {RequiredError}
|
|
81887
82131
|
*/
|
|
81888
|
-
createVerifiedFromAddress: (emailStatusDtoV2025: EmailStatusDtoV2025,
|
|
82132
|
+
createVerifiedFromAddress: (emailStatusDtoV2025: EmailStatusDtoV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81889
82133
|
/**
|
|
81890
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
82134
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
81891
82135
|
* @summary Bulk delete notification templates
|
|
81892
82136
|
* @param {Array<TemplateBulkDeleteDtoV2025>} templateBulkDeleteDtoV2025
|
|
81893
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81894
82137
|
* @param {*} [axiosOptions] Override http request option.
|
|
81895
82138
|
* @throws {RequiredError}
|
|
81896
82139
|
*/
|
|
81897
|
-
deleteNotificationTemplatesInBulk: (templateBulkDeleteDtoV2025: Array<TemplateBulkDeleteDtoV2025>,
|
|
82140
|
+
deleteNotificationTemplatesInBulk: (templateBulkDeleteDtoV2025: Array<TemplateBulkDeleteDtoV2025>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81898
82141
|
/**
|
|
81899
82142
|
* Delete a verified sender email address
|
|
81900
82143
|
* @summary Delete verified from address
|
|
81901
|
-
* @param {string} id
|
|
81902
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82144
|
+
* @param {string} id Unique identifier of the verified sender address to delete.
|
|
81903
82145
|
* @param {*} [axiosOptions] Override http request option.
|
|
81904
82146
|
* @throws {RequiredError}
|
|
81905
82147
|
*/
|
|
81906
|
-
deleteVerifiedFromAddress: (id: string,
|
|
82148
|
+
deleteVerifiedFromAddress: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81907
82149
|
/**
|
|
81908
82150
|
* Retrieve DKIM (DomainKeys Identified Mail) attributes for all your tenants\' AWS SES identities. Limits retrieval to 100 identities per call.
|
|
81909
82151
|
* @summary Get dkim attributes
|
|
81910
|
-
* @param {
|
|
82152
|
+
* @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.
|
|
82153
|
+
* @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.
|
|
81911
82154
|
* @param {*} [axiosOptions] Override http request option.
|
|
81912
82155
|
* @throws {RequiredError}
|
|
81913
82156
|
*/
|
|
81914
|
-
getDkimAttributes: (
|
|
82157
|
+
getDkimAttributes: (limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81915
82158
|
/**
|
|
81916
82159
|
* Retrieve MAIL FROM attributes for a given AWS SES identity.
|
|
81917
82160
|
* @summary Get mail from attributes
|
|
81918
|
-
* @param {string}
|
|
81919
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82161
|
+
* @param {string} identity Returns the MX and TXT record to be put in your DNS, as well as the MAIL FROM domain status
|
|
81920
82162
|
* @param {*} [axiosOptions] Override http request option.
|
|
81921
82163
|
* @throws {RequiredError}
|
|
81922
82164
|
*/
|
|
81923
|
-
getMailFromAttributes: (
|
|
82165
|
+
getMailFromAttributes: (identity: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
82166
|
+
/**
|
|
82167
|
+
* Returns a list of notification preferences for tenant.
|
|
82168
|
+
* @summary List notification preferences for tenant.
|
|
82169
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
82170
|
+
* @throws {RequiredError}
|
|
82171
|
+
*/
|
|
82172
|
+
getNotificationPreferences: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81924
82173
|
/**
|
|
81925
82174
|
* This gets a template that you have modified for your site by Id.
|
|
81926
82175
|
* @summary Get notification template by id
|
|
81927
82176
|
* @param {string} id Id of the Notification Template
|
|
81928
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81929
82177
|
* @param {*} [axiosOptions] Override http request option.
|
|
81930
82178
|
* @throws {RequiredError}
|
|
81931
82179
|
*/
|
|
81932
|
-
getNotificationTemplate: (id: string,
|
|
82180
|
+
getNotificationTemplate: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81933
82181
|
/**
|
|
81934
82182
|
* The notification service maintains metadata to construct the notification templates or supply any information during the event propagation. The data-store where this information is retrieved is called \"Global Context\" (a.k.a. notification template context). It defines a set of attributes that will be available per tenant (organization).
|
|
81935
82183
|
* @summary Get notification template context
|
|
81936
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81937
82184
|
* @param {*} [axiosOptions] Override http request option.
|
|
81938
82185
|
* @throws {RequiredError}
|
|
81939
82186
|
*/
|
|
81940
|
-
getNotificationsTemplateContext: (
|
|
82187
|
+
getNotificationsTemplateContext: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81941
82188
|
/**
|
|
81942
82189
|
* Retrieve a list of sender email addresses and their verification statuses
|
|
81943
82190
|
* @summary List from addresses
|
|
81944
82191
|
* @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.
|
|
81945
82192
|
* @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.
|
|
81946
82193
|
* @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.
|
|
81947
|
-
* @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: **email**: *eq, ge, le,
|
|
82194
|
+
* @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: **email**: *eq, ge, le, gt, lt*
|
|
81948
82195
|
* @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: **email**
|
|
81949
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81950
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
81951
|
-
* @throws {RequiredError}
|
|
81952
|
-
*/
|
|
81953
|
-
listFromAddresses: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81954
|
-
/**
|
|
81955
|
-
* Returns a list of notification preferences for tenant.
|
|
81956
|
-
* @summary List notification preferences for tenant.
|
|
81957
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81958
82196
|
* @param {*} [axiosOptions] Override http request option.
|
|
81959
82197
|
* @throws {RequiredError}
|
|
81960
82198
|
*/
|
|
81961
|
-
|
|
82199
|
+
listFromAddresses: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81962
82200
|
/**
|
|
81963
82201
|
* This lists the default templates used for notifications, such as emails from IdentityNow.
|
|
81964
82202
|
* @summary List notification template defaults
|
|
81965
82203
|
* @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.
|
|
81966
82204
|
* @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.
|
|
81967
82205
|
* @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: **key**: *eq, in, sw* **medium**: *eq, sw* **locale**: *eq, sw*
|
|
81968
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81969
82206
|
* @param {*} [axiosOptions] Override http request option.
|
|
81970
82207
|
* @throws {RequiredError}
|
|
81971
82208
|
*/
|
|
81972
|
-
listNotificationTemplateDefaults: (limit?: number, offset?: number, filters?: string,
|
|
82209
|
+
listNotificationTemplateDefaults: (limit?: number, offset?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81973
82210
|
/**
|
|
81974
82211
|
* This lists the templates that you have modified for your site.
|
|
81975
82212
|
* @summary List notification templates
|
|
@@ -81977,29 +82214,26 @@ export declare const NotificationsV2025ApiAxiosParamCreator: (configuration?: Co
|
|
|
81977
82214
|
* @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.
|
|
81978
82215
|
* @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: **key**: *eq, in, sw* **medium**: *eq, sw* **locale**: *eq, sw*
|
|
81979
82216
|
* @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: **key, name, medium**
|
|
81980
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81981
82217
|
* @param {*} [axiosOptions] Override http request option.
|
|
81982
82218
|
* @throws {RequiredError}
|
|
81983
82219
|
*/
|
|
81984
|
-
listNotificationTemplates: (limit?: number, offset?: number, filters?: string, sorters?: string,
|
|
82220
|
+
listNotificationTemplates: (limit?: number, offset?: number, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81985
82221
|
/**
|
|
81986
82222
|
* Change the MAIL FROM domain of an AWS SES email identity and provide the MX and TXT records to be placed in the caller\'s DNS
|
|
81987
82223
|
* @summary Change mail from domain
|
|
81988
82224
|
* @param {MailFromAttributesDtoV2025} mailFromAttributesDtoV2025
|
|
81989
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81990
82225
|
* @param {*} [axiosOptions] Override http request option.
|
|
81991
82226
|
* @throws {RequiredError}
|
|
81992
82227
|
*/
|
|
81993
|
-
putMailFromAttributes: (mailFromAttributesDtoV2025: MailFromAttributesDtoV2025,
|
|
82228
|
+
putMailFromAttributes: (mailFromAttributesDtoV2025: MailFromAttributesDtoV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
81994
82229
|
/**
|
|
81995
82230
|
* Send a Test Notification
|
|
81996
82231
|
* @summary Send test notification
|
|
81997
82232
|
* @param {SendTestNotificationRequestDtoV2025} sendTestNotificationRequestDtoV2025
|
|
81998
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
81999
82233
|
* @param {*} [axiosOptions] Override http request option.
|
|
82000
82234
|
* @throws {RequiredError}
|
|
82001
82235
|
*/
|
|
82002
|
-
sendTestNotification: (sendTestNotificationRequestDtoV2025: SendTestNotificationRequestDtoV2025,
|
|
82236
|
+
sendTestNotification: (sendTestNotificationRequestDtoV2025: SendTestNotificationRequestDtoV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
82003
82237
|
};
|
|
82004
82238
|
/**
|
|
82005
82239
|
* NotificationsV2025Api - functional programming interface
|
|
@@ -82010,113 +82244,103 @@ export declare const NotificationsV2025ApiFp: (configuration?: Configuration) =>
|
|
|
82010
82244
|
* Create a domain to be verified via DKIM (DomainKeys Identified Mail)
|
|
82011
82245
|
* @summary Verify domain address via dkim
|
|
82012
82246
|
* @param {DomainAddressV2025} domainAddressV2025
|
|
82013
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82014
82247
|
* @param {*} [axiosOptions] Override http request option.
|
|
82015
82248
|
* @throws {RequiredError}
|
|
82016
82249
|
*/
|
|
82017
|
-
createDomainDkim(domainAddressV2025: DomainAddressV2025,
|
|
82250
|
+
createDomainDkim(domainAddressV2025: DomainAddressV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DomainStatusDtoV2025>>;
|
|
82018
82251
|
/**
|
|
82019
82252
|
* This will update notification templates that are available in your tenant. Note that you cannot create new templates in your tenant, but you can use this to create custom notifications from existing templates. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
|
|
82020
82253
|
* @summary Create notification template
|
|
82021
82254
|
* @param {TemplateDtoV2025} templateDtoV2025
|
|
82022
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82023
82255
|
* @param {*} [axiosOptions] Override http request option.
|
|
82024
82256
|
* @throws {RequiredError}
|
|
82025
82257
|
*/
|
|
82026
|
-
createNotificationTemplate(templateDtoV2025: TemplateDtoV2025,
|
|
82258
|
+
createNotificationTemplate(templateDtoV2025: TemplateDtoV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TemplateDtoV2025>>;
|
|
82027
82259
|
/**
|
|
82028
82260
|
* Create a new sender email address and initiate verification process.
|
|
82029
82261
|
* @summary Create verified from address
|
|
82030
82262
|
* @param {EmailStatusDtoV2025} emailStatusDtoV2025
|
|
82031
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82032
82263
|
* @param {*} [axiosOptions] Override http request option.
|
|
82033
82264
|
* @throws {RequiredError}
|
|
82034
82265
|
*/
|
|
82035
|
-
createVerifiedFromAddress(emailStatusDtoV2025: EmailStatusDtoV2025,
|
|
82266
|
+
createVerifiedFromAddress(emailStatusDtoV2025: EmailStatusDtoV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailStatusDtoV2025>>;
|
|
82036
82267
|
/**
|
|
82037
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
82268
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
82038
82269
|
* @summary Bulk delete notification templates
|
|
82039
82270
|
* @param {Array<TemplateBulkDeleteDtoV2025>} templateBulkDeleteDtoV2025
|
|
82040
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82041
82271
|
* @param {*} [axiosOptions] Override http request option.
|
|
82042
82272
|
* @throws {RequiredError}
|
|
82043
82273
|
*/
|
|
82044
|
-
deleteNotificationTemplatesInBulk(templateBulkDeleteDtoV2025: Array<TemplateBulkDeleteDtoV2025>,
|
|
82274
|
+
deleteNotificationTemplatesInBulk(templateBulkDeleteDtoV2025: Array<TemplateBulkDeleteDtoV2025>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
82045
82275
|
/**
|
|
82046
82276
|
* Delete a verified sender email address
|
|
82047
82277
|
* @summary Delete verified from address
|
|
82048
|
-
* @param {string} id
|
|
82049
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82278
|
+
* @param {string} id Unique identifier of the verified sender address to delete.
|
|
82050
82279
|
* @param {*} [axiosOptions] Override http request option.
|
|
82051
82280
|
* @throws {RequiredError}
|
|
82052
82281
|
*/
|
|
82053
|
-
deleteVerifiedFromAddress(id: string,
|
|
82282
|
+
deleteVerifiedFromAddress(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
82054
82283
|
/**
|
|
82055
82284
|
* Retrieve DKIM (DomainKeys Identified Mail) attributes for all your tenants\' AWS SES identities. Limits retrieval to 100 identities per call.
|
|
82056
82285
|
* @summary Get dkim attributes
|
|
82057
|
-
* @param {
|
|
82286
|
+
* @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.
|
|
82287
|
+
* @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.
|
|
82058
82288
|
* @param {*} [axiosOptions] Override http request option.
|
|
82059
82289
|
* @throws {RequiredError}
|
|
82060
82290
|
*/
|
|
82061
|
-
getDkimAttributes(
|
|
82291
|
+
getDkimAttributes(limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DkimAttributesV2025>>>;
|
|
82062
82292
|
/**
|
|
82063
82293
|
* Retrieve MAIL FROM attributes for a given AWS SES identity.
|
|
82064
82294
|
* @summary Get mail from attributes
|
|
82065
|
-
* @param {string}
|
|
82066
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82295
|
+
* @param {string} identity Returns the MX and TXT record to be put in your DNS, as well as the MAIL FROM domain status
|
|
82067
82296
|
* @param {*} [axiosOptions] Override http request option.
|
|
82068
82297
|
* @throws {RequiredError}
|
|
82069
82298
|
*/
|
|
82070
|
-
getMailFromAttributes(
|
|
82299
|
+
getMailFromAttributes(identity: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MailFromAttributesV2025>>;
|
|
82300
|
+
/**
|
|
82301
|
+
* Returns a list of notification preferences for tenant.
|
|
82302
|
+
* @summary List notification preferences for tenant.
|
|
82303
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
82304
|
+
* @throws {RequiredError}
|
|
82305
|
+
*/
|
|
82306
|
+
getNotificationPreferences(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PreferencesDtoV2025>>;
|
|
82071
82307
|
/**
|
|
82072
82308
|
* This gets a template that you have modified for your site by Id.
|
|
82073
82309
|
* @summary Get notification template by id
|
|
82074
82310
|
* @param {string} id Id of the Notification Template
|
|
82075
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82076
82311
|
* @param {*} [axiosOptions] Override http request option.
|
|
82077
82312
|
* @throws {RequiredError}
|
|
82078
82313
|
*/
|
|
82079
|
-
getNotificationTemplate(id: string,
|
|
82314
|
+
getNotificationTemplate(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TemplateDtoV2025>>;
|
|
82080
82315
|
/**
|
|
82081
82316
|
* The notification service maintains metadata to construct the notification templates or supply any information during the event propagation. The data-store where this information is retrieved is called \"Global Context\" (a.k.a. notification template context). It defines a set of attributes that will be available per tenant (organization).
|
|
82082
82317
|
* @summary Get notification template context
|
|
82083
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82084
82318
|
* @param {*} [axiosOptions] Override http request option.
|
|
82085
82319
|
* @throws {RequiredError}
|
|
82086
82320
|
*/
|
|
82087
|
-
getNotificationsTemplateContext(
|
|
82321
|
+
getNotificationsTemplateContext(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NotificationTemplateContextV2025>>;
|
|
82088
82322
|
/**
|
|
82089
82323
|
* Retrieve a list of sender email addresses and their verification statuses
|
|
82090
82324
|
* @summary List from addresses
|
|
82091
82325
|
* @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.
|
|
82092
82326
|
* @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.
|
|
82093
82327
|
* @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.
|
|
82094
|
-
* @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: **email**: *eq, ge, le,
|
|
82328
|
+
* @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: **email**: *eq, ge, le, gt, lt*
|
|
82095
82329
|
* @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: **email**
|
|
82096
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82097
82330
|
* @param {*} [axiosOptions] Override http request option.
|
|
82098
82331
|
* @throws {RequiredError}
|
|
82099
82332
|
*/
|
|
82100
|
-
listFromAddresses(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string,
|
|
82101
|
-
/**
|
|
82102
|
-
* Returns a list of notification preferences for tenant.
|
|
82103
|
-
* @summary List notification preferences for tenant.
|
|
82104
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82105
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
82106
|
-
* @throws {RequiredError}
|
|
82107
|
-
*/
|
|
82108
|
-
listNotificationPreferences(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PreferencesDtoV2025>>;
|
|
82333
|
+
listFromAddresses(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EmailStatusDtoV2025>>>;
|
|
82109
82334
|
/**
|
|
82110
82335
|
* This lists the default templates used for notifications, such as emails from IdentityNow.
|
|
82111
82336
|
* @summary List notification template defaults
|
|
82112
82337
|
* @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.
|
|
82113
82338
|
* @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.
|
|
82114
82339
|
* @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: **key**: *eq, in, sw* **medium**: *eq, sw* **locale**: *eq, sw*
|
|
82115
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82116
82340
|
* @param {*} [axiosOptions] Override http request option.
|
|
82117
82341
|
* @throws {RequiredError}
|
|
82118
82342
|
*/
|
|
82119
|
-
listNotificationTemplateDefaults(limit?: number, offset?: number, filters?: string,
|
|
82343
|
+
listNotificationTemplateDefaults(limit?: number, offset?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TemplateDtoDefaultV2025>>>;
|
|
82120
82344
|
/**
|
|
82121
82345
|
* This lists the templates that you have modified for your site.
|
|
82122
82346
|
* @summary List notification templates
|
|
@@ -82124,29 +82348,26 @@ export declare const NotificationsV2025ApiFp: (configuration?: Configuration) =>
|
|
|
82124
82348
|
* @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.
|
|
82125
82349
|
* @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: **key**: *eq, in, sw* **medium**: *eq, sw* **locale**: *eq, sw*
|
|
82126
82350
|
* @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: **key, name, medium**
|
|
82127
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82128
82351
|
* @param {*} [axiosOptions] Override http request option.
|
|
82129
82352
|
* @throws {RequiredError}
|
|
82130
82353
|
*/
|
|
82131
|
-
listNotificationTemplates(limit?: number, offset?: number, filters?: string, sorters?: string,
|
|
82354
|
+
listNotificationTemplates(limit?: number, offset?: number, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TemplateDtoV2025>>>;
|
|
82132
82355
|
/**
|
|
82133
82356
|
* Change the MAIL FROM domain of an AWS SES email identity and provide the MX and TXT records to be placed in the caller\'s DNS
|
|
82134
82357
|
* @summary Change mail from domain
|
|
82135
82358
|
* @param {MailFromAttributesDtoV2025} mailFromAttributesDtoV2025
|
|
82136
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82137
82359
|
* @param {*} [axiosOptions] Override http request option.
|
|
82138
82360
|
* @throws {RequiredError}
|
|
82139
82361
|
*/
|
|
82140
|
-
putMailFromAttributes(mailFromAttributesDtoV2025: MailFromAttributesDtoV2025,
|
|
82362
|
+
putMailFromAttributes(mailFromAttributesDtoV2025: MailFromAttributesDtoV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MailFromAttributesV2025>>;
|
|
82141
82363
|
/**
|
|
82142
82364
|
* Send a Test Notification
|
|
82143
82365
|
* @summary Send test notification
|
|
82144
82366
|
* @param {SendTestNotificationRequestDtoV2025} sendTestNotificationRequestDtoV2025
|
|
82145
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82146
82367
|
* @param {*} [axiosOptions] Override http request option.
|
|
82147
82368
|
* @throws {RequiredError}
|
|
82148
82369
|
*/
|
|
82149
|
-
sendTestNotification(sendTestNotificationRequestDtoV2025: SendTestNotificationRequestDtoV2025,
|
|
82370
|
+
sendTestNotification(sendTestNotificationRequestDtoV2025: SendTestNotificationRequestDtoV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
82150
82371
|
};
|
|
82151
82372
|
/**
|
|
82152
82373
|
* NotificationsV2025Api - factory interface
|
|
@@ -82178,7 +82399,7 @@ export declare const NotificationsV2025ApiFactory: (configuration?: Configuratio
|
|
|
82178
82399
|
*/
|
|
82179
82400
|
createVerifiedFromAddress(requestParameters: NotificationsV2025ApiCreateVerifiedFromAddressRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EmailStatusDtoV2025>;
|
|
82180
82401
|
/**
|
|
82181
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
82402
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
82182
82403
|
* @summary Bulk delete notification templates
|
|
82183
82404
|
* @param {NotificationsV2025ApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
|
|
82184
82405
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -82209,6 +82430,13 @@ export declare const NotificationsV2025ApiFactory: (configuration?: Configuratio
|
|
|
82209
82430
|
* @throws {RequiredError}
|
|
82210
82431
|
*/
|
|
82211
82432
|
getMailFromAttributes(requestParameters: NotificationsV2025ApiGetMailFromAttributesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MailFromAttributesV2025>;
|
|
82433
|
+
/**
|
|
82434
|
+
* Returns a list of notification preferences for tenant.
|
|
82435
|
+
* @summary List notification preferences for tenant.
|
|
82436
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
82437
|
+
* @throws {RequiredError}
|
|
82438
|
+
*/
|
|
82439
|
+
getNotificationPreferences(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<PreferencesDtoV2025>;
|
|
82212
82440
|
/**
|
|
82213
82441
|
* This gets a template that you have modified for your site by Id.
|
|
82214
82442
|
* @summary Get notification template by id
|
|
@@ -82220,11 +82448,10 @@ export declare const NotificationsV2025ApiFactory: (configuration?: Configuratio
|
|
|
82220
82448
|
/**
|
|
82221
82449
|
* The notification service maintains metadata to construct the notification templates or supply any information during the event propagation. The data-store where this information is retrieved is called \"Global Context\" (a.k.a. notification template context). It defines a set of attributes that will be available per tenant (organization).
|
|
82222
82450
|
* @summary Get notification template context
|
|
82223
|
-
* @param {NotificationsV2025ApiGetNotificationsTemplateContextRequest} requestParameters Request parameters.
|
|
82224
82451
|
* @param {*} [axiosOptions] Override http request option.
|
|
82225
82452
|
* @throws {RequiredError}
|
|
82226
82453
|
*/
|
|
82227
|
-
getNotificationsTemplateContext(
|
|
82454
|
+
getNotificationsTemplateContext(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NotificationTemplateContextV2025>;
|
|
82228
82455
|
/**
|
|
82229
82456
|
* Retrieve a list of sender email addresses and their verification statuses
|
|
82230
82457
|
* @summary List from addresses
|
|
@@ -82233,14 +82460,6 @@ export declare const NotificationsV2025ApiFactory: (configuration?: Configuratio
|
|
|
82233
82460
|
* @throws {RequiredError}
|
|
82234
82461
|
*/
|
|
82235
82462
|
listFromAddresses(requestParameters?: NotificationsV2025ApiListFromAddressesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EmailStatusDtoV2025>>;
|
|
82236
|
-
/**
|
|
82237
|
-
* Returns a list of notification preferences for tenant.
|
|
82238
|
-
* @summary List notification preferences for tenant.
|
|
82239
|
-
* @param {NotificationsV2025ApiListNotificationPreferencesRequest} requestParameters Request parameters.
|
|
82240
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
82241
|
-
* @throws {RequiredError}
|
|
82242
|
-
*/
|
|
82243
|
-
listNotificationPreferences(requestParameters?: NotificationsV2025ApiListNotificationPreferencesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<PreferencesDtoV2025>;
|
|
82244
82463
|
/**
|
|
82245
82464
|
* This lists the default templates used for notifications, such as emails from IdentityNow.
|
|
82246
82465
|
* @summary List notification template defaults
|
|
@@ -82286,12 +82505,6 @@ export interface NotificationsV2025ApiCreateDomainDkimRequest {
|
|
|
82286
82505
|
* @memberof NotificationsV2025ApiCreateDomainDkim
|
|
82287
82506
|
*/
|
|
82288
82507
|
readonly domainAddressV2025: DomainAddressV2025;
|
|
82289
|
-
/**
|
|
82290
|
-
* Use this header to enable this experimental API.
|
|
82291
|
-
* @type {string}
|
|
82292
|
-
* @memberof NotificationsV2025ApiCreateDomainDkim
|
|
82293
|
-
*/
|
|
82294
|
-
readonly xSailPointExperimental?: string;
|
|
82295
82508
|
}
|
|
82296
82509
|
/**
|
|
82297
82510
|
* Request parameters for createNotificationTemplate operation in NotificationsV2025Api.
|
|
@@ -82305,12 +82518,6 @@ export interface NotificationsV2025ApiCreateNotificationTemplateRequest {
|
|
|
82305
82518
|
* @memberof NotificationsV2025ApiCreateNotificationTemplate
|
|
82306
82519
|
*/
|
|
82307
82520
|
readonly templateDtoV2025: TemplateDtoV2025;
|
|
82308
|
-
/**
|
|
82309
|
-
* Use this header to enable this experimental API.
|
|
82310
|
-
* @type {string}
|
|
82311
|
-
* @memberof NotificationsV2025ApiCreateNotificationTemplate
|
|
82312
|
-
*/
|
|
82313
|
-
readonly xSailPointExperimental?: string;
|
|
82314
82521
|
}
|
|
82315
82522
|
/**
|
|
82316
82523
|
* Request parameters for createVerifiedFromAddress operation in NotificationsV2025Api.
|
|
@@ -82324,12 +82531,6 @@ export interface NotificationsV2025ApiCreateVerifiedFromAddressRequest {
|
|
|
82324
82531
|
* @memberof NotificationsV2025ApiCreateVerifiedFromAddress
|
|
82325
82532
|
*/
|
|
82326
82533
|
readonly emailStatusDtoV2025: EmailStatusDtoV2025;
|
|
82327
|
-
/**
|
|
82328
|
-
* Use this header to enable this experimental API.
|
|
82329
|
-
* @type {string}
|
|
82330
|
-
* @memberof NotificationsV2025ApiCreateVerifiedFromAddress
|
|
82331
|
-
*/
|
|
82332
|
-
readonly xSailPointExperimental?: string;
|
|
82333
82534
|
}
|
|
82334
82535
|
/**
|
|
82335
82536
|
* Request parameters for deleteNotificationTemplatesInBulk operation in NotificationsV2025Api.
|
|
@@ -82343,12 +82544,6 @@ export interface NotificationsV2025ApiDeleteNotificationTemplatesInBulkRequest {
|
|
|
82343
82544
|
* @memberof NotificationsV2025ApiDeleteNotificationTemplatesInBulk
|
|
82344
82545
|
*/
|
|
82345
82546
|
readonly templateBulkDeleteDtoV2025: Array<TemplateBulkDeleteDtoV2025>;
|
|
82346
|
-
/**
|
|
82347
|
-
* Use this header to enable this experimental API.
|
|
82348
|
-
* @type {string}
|
|
82349
|
-
* @memberof NotificationsV2025ApiDeleteNotificationTemplatesInBulk
|
|
82350
|
-
*/
|
|
82351
|
-
readonly xSailPointExperimental?: string;
|
|
82352
82547
|
}
|
|
82353
82548
|
/**
|
|
82354
82549
|
* Request parameters for deleteVerifiedFromAddress operation in NotificationsV2025Api.
|
|
@@ -82357,17 +82552,11 @@ export interface NotificationsV2025ApiDeleteNotificationTemplatesInBulkRequest {
|
|
|
82357
82552
|
*/
|
|
82358
82553
|
export interface NotificationsV2025ApiDeleteVerifiedFromAddressRequest {
|
|
82359
82554
|
/**
|
|
82360
|
-
*
|
|
82555
|
+
* Unique identifier of the verified sender address to delete.
|
|
82361
82556
|
* @type {string}
|
|
82362
82557
|
* @memberof NotificationsV2025ApiDeleteVerifiedFromAddress
|
|
82363
82558
|
*/
|
|
82364
82559
|
readonly id: string;
|
|
82365
|
-
/**
|
|
82366
|
-
* Use this header to enable this experimental API.
|
|
82367
|
-
* @type {string}
|
|
82368
|
-
* @memberof NotificationsV2025ApiDeleteVerifiedFromAddress
|
|
82369
|
-
*/
|
|
82370
|
-
readonly xSailPointExperimental?: string;
|
|
82371
82560
|
}
|
|
82372
82561
|
/**
|
|
82373
82562
|
* Request parameters for getDkimAttributes operation in NotificationsV2025Api.
|
|
@@ -82376,11 +82565,17 @@ export interface NotificationsV2025ApiDeleteVerifiedFromAddressRequest {
|
|
|
82376
82565
|
*/
|
|
82377
82566
|
export interface NotificationsV2025ApiGetDkimAttributesRequest {
|
|
82378
82567
|
/**
|
|
82379
|
-
*
|
|
82380
|
-
* @type {
|
|
82568
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
82569
|
+
* @type {number}
|
|
82381
82570
|
* @memberof NotificationsV2025ApiGetDkimAttributes
|
|
82382
82571
|
*/
|
|
82383
|
-
readonly
|
|
82572
|
+
readonly limit?: number;
|
|
82573
|
+
/**
|
|
82574
|
+
* 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.
|
|
82575
|
+
* @type {number}
|
|
82576
|
+
* @memberof NotificationsV2025ApiGetDkimAttributes
|
|
82577
|
+
*/
|
|
82578
|
+
readonly offset?: number;
|
|
82384
82579
|
}
|
|
82385
82580
|
/**
|
|
82386
82581
|
* Request parameters for getMailFromAttributes operation in NotificationsV2025Api.
|
|
@@ -82393,13 +82588,7 @@ export interface NotificationsV2025ApiGetMailFromAttributesRequest {
|
|
|
82393
82588
|
* @type {string}
|
|
82394
82589
|
* @memberof NotificationsV2025ApiGetMailFromAttributes
|
|
82395
82590
|
*/
|
|
82396
|
-
readonly
|
|
82397
|
-
/**
|
|
82398
|
-
* Use this header to enable this experimental API.
|
|
82399
|
-
* @type {string}
|
|
82400
|
-
* @memberof NotificationsV2025ApiGetMailFromAttributes
|
|
82401
|
-
*/
|
|
82402
|
-
readonly xSailPointExperimental?: string;
|
|
82591
|
+
readonly identity: string;
|
|
82403
82592
|
}
|
|
82404
82593
|
/**
|
|
82405
82594
|
* Request parameters for getNotificationTemplate operation in NotificationsV2025Api.
|
|
@@ -82413,25 +82602,6 @@ export interface NotificationsV2025ApiGetNotificationTemplateRequest {
|
|
|
82413
82602
|
* @memberof NotificationsV2025ApiGetNotificationTemplate
|
|
82414
82603
|
*/
|
|
82415
82604
|
readonly id: string;
|
|
82416
|
-
/**
|
|
82417
|
-
* Use this header to enable this experimental API.
|
|
82418
|
-
* @type {string}
|
|
82419
|
-
* @memberof NotificationsV2025ApiGetNotificationTemplate
|
|
82420
|
-
*/
|
|
82421
|
-
readonly xSailPointExperimental?: string;
|
|
82422
|
-
}
|
|
82423
|
-
/**
|
|
82424
|
-
* Request parameters for getNotificationsTemplateContext operation in NotificationsV2025Api.
|
|
82425
|
-
* @export
|
|
82426
|
-
* @interface NotificationsV2025ApiGetNotificationsTemplateContextRequest
|
|
82427
|
-
*/
|
|
82428
|
-
export interface NotificationsV2025ApiGetNotificationsTemplateContextRequest {
|
|
82429
|
-
/**
|
|
82430
|
-
* Use this header to enable this experimental API.
|
|
82431
|
-
* @type {string}
|
|
82432
|
-
* @memberof NotificationsV2025ApiGetNotificationsTemplateContext
|
|
82433
|
-
*/
|
|
82434
|
-
readonly xSailPointExperimental?: string;
|
|
82435
82605
|
}
|
|
82436
82606
|
/**
|
|
82437
82607
|
* Request parameters for listFromAddresses operation in NotificationsV2025Api.
|
|
@@ -82458,7 +82628,7 @@ export interface NotificationsV2025ApiListFromAddressesRequest {
|
|
|
82458
82628
|
*/
|
|
82459
82629
|
readonly count?: boolean;
|
|
82460
82630
|
/**
|
|
82461
|
-
* 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: **email**: *eq, ge, le,
|
|
82631
|
+
* 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: **email**: *eq, ge, le, gt, lt*
|
|
82462
82632
|
* @type {string}
|
|
82463
82633
|
* @memberof NotificationsV2025ApiListFromAddresses
|
|
82464
82634
|
*/
|
|
@@ -82469,25 +82639,6 @@ export interface NotificationsV2025ApiListFromAddressesRequest {
|
|
|
82469
82639
|
* @memberof NotificationsV2025ApiListFromAddresses
|
|
82470
82640
|
*/
|
|
82471
82641
|
readonly sorters?: string;
|
|
82472
|
-
/**
|
|
82473
|
-
* Use this header to enable this experimental API.
|
|
82474
|
-
* @type {string}
|
|
82475
|
-
* @memberof NotificationsV2025ApiListFromAddresses
|
|
82476
|
-
*/
|
|
82477
|
-
readonly xSailPointExperimental?: string;
|
|
82478
|
-
}
|
|
82479
|
-
/**
|
|
82480
|
-
* Request parameters for listNotificationPreferences operation in NotificationsV2025Api.
|
|
82481
|
-
* @export
|
|
82482
|
-
* @interface NotificationsV2025ApiListNotificationPreferencesRequest
|
|
82483
|
-
*/
|
|
82484
|
-
export interface NotificationsV2025ApiListNotificationPreferencesRequest {
|
|
82485
|
-
/**
|
|
82486
|
-
* Use this header to enable this experimental API.
|
|
82487
|
-
* @type {string}
|
|
82488
|
-
* @memberof NotificationsV2025ApiListNotificationPreferences
|
|
82489
|
-
*/
|
|
82490
|
-
readonly xSailPointExperimental?: string;
|
|
82491
82642
|
}
|
|
82492
82643
|
/**
|
|
82493
82644
|
* Request parameters for listNotificationTemplateDefaults operation in NotificationsV2025Api.
|
|
@@ -82513,12 +82664,6 @@ export interface NotificationsV2025ApiListNotificationTemplateDefaultsRequest {
|
|
|
82513
82664
|
* @memberof NotificationsV2025ApiListNotificationTemplateDefaults
|
|
82514
82665
|
*/
|
|
82515
82666
|
readonly filters?: string;
|
|
82516
|
-
/**
|
|
82517
|
-
* Use this header to enable this experimental API.
|
|
82518
|
-
* @type {string}
|
|
82519
|
-
* @memberof NotificationsV2025ApiListNotificationTemplateDefaults
|
|
82520
|
-
*/
|
|
82521
|
-
readonly xSailPointExperimental?: string;
|
|
82522
82667
|
}
|
|
82523
82668
|
/**
|
|
82524
82669
|
* Request parameters for listNotificationTemplates operation in NotificationsV2025Api.
|
|
@@ -82550,12 +82695,6 @@ export interface NotificationsV2025ApiListNotificationTemplatesRequest {
|
|
|
82550
82695
|
* @memberof NotificationsV2025ApiListNotificationTemplates
|
|
82551
82696
|
*/
|
|
82552
82697
|
readonly sorters?: string;
|
|
82553
|
-
/**
|
|
82554
|
-
* Use this header to enable this experimental API.
|
|
82555
|
-
* @type {string}
|
|
82556
|
-
* @memberof NotificationsV2025ApiListNotificationTemplates
|
|
82557
|
-
*/
|
|
82558
|
-
readonly xSailPointExperimental?: string;
|
|
82559
82698
|
}
|
|
82560
82699
|
/**
|
|
82561
82700
|
* Request parameters for putMailFromAttributes operation in NotificationsV2025Api.
|
|
@@ -82569,12 +82708,6 @@ export interface NotificationsV2025ApiPutMailFromAttributesRequest {
|
|
|
82569
82708
|
* @memberof NotificationsV2025ApiPutMailFromAttributes
|
|
82570
82709
|
*/
|
|
82571
82710
|
readonly mailFromAttributesDtoV2025: MailFromAttributesDtoV2025;
|
|
82572
|
-
/**
|
|
82573
|
-
* Use this header to enable this experimental API.
|
|
82574
|
-
* @type {string}
|
|
82575
|
-
* @memberof NotificationsV2025ApiPutMailFromAttributes
|
|
82576
|
-
*/
|
|
82577
|
-
readonly xSailPointExperimental?: string;
|
|
82578
82711
|
}
|
|
82579
82712
|
/**
|
|
82580
82713
|
* Request parameters for sendTestNotification operation in NotificationsV2025Api.
|
|
@@ -82588,12 +82721,6 @@ export interface NotificationsV2025ApiSendTestNotificationRequest {
|
|
|
82588
82721
|
* @memberof NotificationsV2025ApiSendTestNotification
|
|
82589
82722
|
*/
|
|
82590
82723
|
readonly sendTestNotificationRequestDtoV2025: SendTestNotificationRequestDtoV2025;
|
|
82591
|
-
/**
|
|
82592
|
-
* Use this header to enable this experimental API.
|
|
82593
|
-
* @type {string}
|
|
82594
|
-
* @memberof NotificationsV2025ApiSendTestNotification
|
|
82595
|
-
*/
|
|
82596
|
-
readonly xSailPointExperimental?: string;
|
|
82597
82724
|
}
|
|
82598
82725
|
/**
|
|
82599
82726
|
* NotificationsV2025Api - object-oriented interface
|
|
@@ -82630,7 +82757,7 @@ export declare class NotificationsV2025Api extends BaseAPI {
|
|
|
82630
82757
|
*/
|
|
82631
82758
|
createVerifiedFromAddress(requestParameters: NotificationsV2025ApiCreateVerifiedFromAddressRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailStatusDtoV2025, any>>;
|
|
82632
82759
|
/**
|
|
82633
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
82760
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
82634
82761
|
* @summary Bulk delete notification templates
|
|
82635
82762
|
* @param {NotificationsV2025ApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
|
|
82636
82763
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -82665,6 +82792,14 @@ export declare class NotificationsV2025Api extends BaseAPI {
|
|
|
82665
82792
|
* @memberof NotificationsV2025Api
|
|
82666
82793
|
*/
|
|
82667
82794
|
getMailFromAttributes(requestParameters: NotificationsV2025ApiGetMailFromAttributesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MailFromAttributesV2025, any>>;
|
|
82795
|
+
/**
|
|
82796
|
+
* Returns a list of notification preferences for tenant.
|
|
82797
|
+
* @summary List notification preferences for tenant.
|
|
82798
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
82799
|
+
* @throws {RequiredError}
|
|
82800
|
+
* @memberof NotificationsV2025Api
|
|
82801
|
+
*/
|
|
82802
|
+
getNotificationPreferences(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PreferencesDtoV2025, any>>;
|
|
82668
82803
|
/**
|
|
82669
82804
|
* This gets a template that you have modified for your site by Id.
|
|
82670
82805
|
* @summary Get notification template by id
|
|
@@ -82677,12 +82812,11 @@ export declare class NotificationsV2025Api extends BaseAPI {
|
|
|
82677
82812
|
/**
|
|
82678
82813
|
* The notification service maintains metadata to construct the notification templates or supply any information during the event propagation. The data-store where this information is retrieved is called \"Global Context\" (a.k.a. notification template context). It defines a set of attributes that will be available per tenant (organization).
|
|
82679
82814
|
* @summary Get notification template context
|
|
82680
|
-
* @param {NotificationsV2025ApiGetNotificationsTemplateContextRequest} requestParameters Request parameters.
|
|
82681
82815
|
* @param {*} [axiosOptions] Override http request option.
|
|
82682
82816
|
* @throws {RequiredError}
|
|
82683
82817
|
* @memberof NotificationsV2025Api
|
|
82684
82818
|
*/
|
|
82685
|
-
getNotificationsTemplateContext(
|
|
82819
|
+
getNotificationsTemplateContext(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NotificationTemplateContextV2025, any>>;
|
|
82686
82820
|
/**
|
|
82687
82821
|
* Retrieve a list of sender email addresses and their verification statuses
|
|
82688
82822
|
* @summary List from addresses
|
|
@@ -82692,15 +82826,6 @@ export declare class NotificationsV2025Api extends BaseAPI {
|
|
|
82692
82826
|
* @memberof NotificationsV2025Api
|
|
82693
82827
|
*/
|
|
82694
82828
|
listFromAddresses(requestParameters?: NotificationsV2025ApiListFromAddressesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailStatusDtoV2025[], any>>;
|
|
82695
|
-
/**
|
|
82696
|
-
* Returns a list of notification preferences for tenant.
|
|
82697
|
-
* @summary List notification preferences for tenant.
|
|
82698
|
-
* @param {NotificationsV2025ApiListNotificationPreferencesRequest} requestParameters Request parameters.
|
|
82699
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
82700
|
-
* @throws {RequiredError}
|
|
82701
|
-
* @memberof NotificationsV2025Api
|
|
82702
|
-
*/
|
|
82703
|
-
listNotificationPreferences(requestParameters?: NotificationsV2025ApiListNotificationPreferencesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PreferencesDtoV2025, any>>;
|
|
82704
82829
|
/**
|
|
82705
82830
|
* This lists the default templates used for notifications, such as emails from IdentityNow.
|
|
82706
82831
|
* @summary List notification template defaults
|