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/v2024/api.ts
CHANGED
|
@@ -14334,11 +14334,17 @@ export interface DkimAttributesV2024 {
|
|
|
14334
14334
|
*/
|
|
14335
14335
|
'dkimTokens'?: Array<string>;
|
|
14336
14336
|
/**
|
|
14337
|
-
* The current status if the domain /identity has been verified. Ie
|
|
14337
|
+
* The current status if the domain /identity has been verified. Ie SUCCESS, FAILED, PENDING
|
|
14338
14338
|
* @type {string}
|
|
14339
14339
|
* @memberof DkimAttributesV2024
|
|
14340
14340
|
*/
|
|
14341
14341
|
'dkimVerificationStatus'?: string;
|
|
14342
|
+
/**
|
|
14343
|
+
* The AWS SES region the domain is associated with
|
|
14344
|
+
* @type {string}
|
|
14345
|
+
* @memberof DkimAttributesV2024
|
|
14346
|
+
*/
|
|
14347
|
+
'region'?: string;
|
|
14342
14348
|
}
|
|
14343
14349
|
/**
|
|
14344
14350
|
*
|
|
@@ -14430,10 +14436,10 @@ export interface DomainStatusDtoV2024 {
|
|
|
14430
14436
|
'domain'?: string;
|
|
14431
14437
|
/**
|
|
14432
14438
|
* DKIM is enabled for this domain
|
|
14433
|
-
* @type {
|
|
14439
|
+
* @type {boolean}
|
|
14434
14440
|
* @memberof DomainStatusDtoV2024
|
|
14435
14441
|
*/
|
|
14436
|
-
'dkimEnabled'?:
|
|
14442
|
+
'dkimEnabled'?: boolean;
|
|
14437
14443
|
/**
|
|
14438
14444
|
* DKIM tokens required for authentication
|
|
14439
14445
|
* @type {Array<string>}
|
|
@@ -14446,6 +14452,12 @@ export interface DomainStatusDtoV2024 {
|
|
|
14446
14452
|
* @memberof DomainStatusDtoV2024
|
|
14447
14453
|
*/
|
|
14448
14454
|
'dkimVerificationStatus'?: string;
|
|
14455
|
+
/**
|
|
14456
|
+
* The AWS SES region the domain is associated with
|
|
14457
|
+
* @type {string}
|
|
14458
|
+
* @memberof DomainStatusDtoV2024
|
|
14459
|
+
*/
|
|
14460
|
+
'region'?: string;
|
|
14449
14461
|
}
|
|
14450
14462
|
/**
|
|
14451
14463
|
*
|
|
@@ -14685,35 +14697,42 @@ export interface EmailNotificationOptionV2024 {
|
|
|
14685
14697
|
*/
|
|
14686
14698
|
export interface EmailStatusDtoV2024 {
|
|
14687
14699
|
/**
|
|
14688
|
-
*
|
|
14700
|
+
* Unique identifier for the verified sender address
|
|
14689
14701
|
* @type {string}
|
|
14690
14702
|
* @memberof EmailStatusDtoV2024
|
|
14691
14703
|
*/
|
|
14692
14704
|
'id'?: string | null;
|
|
14693
14705
|
/**
|
|
14694
|
-
*
|
|
14706
|
+
* The verified sender email address
|
|
14695
14707
|
* @type {string}
|
|
14696
14708
|
* @memberof EmailStatusDtoV2024
|
|
14697
14709
|
*/
|
|
14698
14710
|
'email'?: string;
|
|
14699
14711
|
/**
|
|
14700
|
-
*
|
|
14712
|
+
* Whether the sender address is verified by domain
|
|
14701
14713
|
* @type {boolean}
|
|
14702
14714
|
* @memberof EmailStatusDtoV2024
|
|
14703
14715
|
*/
|
|
14704
14716
|
'isVerifiedByDomain'?: boolean;
|
|
14705
14717
|
/**
|
|
14706
|
-
*
|
|
14718
|
+
* The verification status of the sender address
|
|
14707
14719
|
* @type {string}
|
|
14708
14720
|
* @memberof EmailStatusDtoV2024
|
|
14709
14721
|
*/
|
|
14710
14722
|
'verificationStatus'?: EmailStatusDtoV2024VerificationStatusV2024;
|
|
14723
|
+
/**
|
|
14724
|
+
* The AWS SES region the sender address is associated with
|
|
14725
|
+
* @type {string}
|
|
14726
|
+
* @memberof EmailStatusDtoV2024
|
|
14727
|
+
*/
|
|
14728
|
+
'region'?: string | null;
|
|
14711
14729
|
}
|
|
14712
14730
|
|
|
14713
14731
|
export const EmailStatusDtoV2024VerificationStatusV2024 = {
|
|
14714
14732
|
Pending: 'PENDING',
|
|
14715
14733
|
Success: 'SUCCESS',
|
|
14716
|
-
Failed: 'FAILED'
|
|
14734
|
+
Failed: 'FAILED',
|
|
14735
|
+
Na: 'NA'
|
|
14717
14736
|
} as const;
|
|
14718
14737
|
|
|
14719
14738
|
export type EmailStatusDtoV2024VerificationStatusV2024 = typeof EmailStatusDtoV2024VerificationStatusV2024[keyof typeof EmailStatusDtoV2024VerificationStatusV2024];
|
|
@@ -15487,6 +15506,12 @@ export interface EntitlementV2024 {
|
|
|
15487
15506
|
* @memberof EntitlementV2024
|
|
15488
15507
|
*/
|
|
15489
15508
|
'owner'?: EntitlementOwnerV2024 | null;
|
|
15509
|
+
/**
|
|
15510
|
+
* List of additional owner references beyond the primary owner. Each entry may be an identity (IDENTITY) or a governance group (GOVERNANCE_GROUP).
|
|
15511
|
+
* @type {Array<AdditionalOwnerRefV2024>}
|
|
15512
|
+
* @memberof EntitlementV2024
|
|
15513
|
+
*/
|
|
15514
|
+
'additionalOwners'?: Array<AdditionalOwnerRefV2024> | null;
|
|
15490
15515
|
/**
|
|
15491
15516
|
* 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.
|
|
15492
15517
|
* @type {{ [key: string]: any; }}
|
|
@@ -17764,7 +17789,40 @@ export interface FullDiscoveredApplicationsV2024 {
|
|
|
17764
17789
|
* @memberof FullDiscoveredApplicationsV2024
|
|
17765
17790
|
*/
|
|
17766
17791
|
'associatedSources'?: Array<string>;
|
|
17792
|
+
/**
|
|
17793
|
+
* The risk score of the application ranging from 0-100, 100 being highest risk.
|
|
17794
|
+
* @type {number}
|
|
17795
|
+
* @memberof FullDiscoveredApplicationsV2024
|
|
17796
|
+
*/
|
|
17797
|
+
'riskScore'?: number;
|
|
17798
|
+
/**
|
|
17799
|
+
* Indicates whether the application is used for business purposes.
|
|
17800
|
+
* @type {boolean}
|
|
17801
|
+
* @memberof FullDiscoveredApplicationsV2024
|
|
17802
|
+
*/
|
|
17803
|
+
'isBusiness'?: boolean;
|
|
17804
|
+
/**
|
|
17805
|
+
* The total number of sign-in accounts for the application.
|
|
17806
|
+
* @type {number}
|
|
17807
|
+
* @memberof FullDiscoveredApplicationsV2024
|
|
17808
|
+
*/
|
|
17809
|
+
'totalSigninsCount'?: number;
|
|
17810
|
+
/**
|
|
17811
|
+
* The risk level of the application.
|
|
17812
|
+
* @type {string}
|
|
17813
|
+
* @memberof FullDiscoveredApplicationsV2024
|
|
17814
|
+
*/
|
|
17815
|
+
'riskLevel'?: FullDiscoveredApplicationsV2024RiskLevelV2024;
|
|
17767
17816
|
}
|
|
17817
|
+
|
|
17818
|
+
export const FullDiscoveredApplicationsV2024RiskLevelV2024 = {
|
|
17819
|
+
High: 'High',
|
|
17820
|
+
Medium: 'Medium',
|
|
17821
|
+
Low: 'Low'
|
|
17822
|
+
} as const;
|
|
17823
|
+
|
|
17824
|
+
export type FullDiscoveredApplicationsV2024RiskLevelV2024 = typeof FullDiscoveredApplicationsV2024RiskLevelV2024[keyof typeof FullDiscoveredApplicationsV2024RiskLevelV2024];
|
|
17825
|
+
|
|
17768
17826
|
/**
|
|
17769
17827
|
*
|
|
17770
17828
|
* @export
|
|
@@ -24736,15 +24794,13 @@ export interface MatchTermV2024 {
|
|
|
24736
24794
|
'children'?: Array<{ [key: string]: any; }> | null;
|
|
24737
24795
|
}
|
|
24738
24796
|
/**
|
|
24739
|
-
*
|
|
24797
|
+
* The notification medium (EMAIL, SLACK, or TEAMS)
|
|
24740
24798
|
* @export
|
|
24741
24799
|
* @enum {string}
|
|
24742
24800
|
*/
|
|
24743
24801
|
|
|
24744
24802
|
export const MediumV2024 = {
|
|
24745
24803
|
Email: 'EMAIL',
|
|
24746
|
-
Sms: 'SMS',
|
|
24747
|
-
Phone: 'PHONE',
|
|
24748
24804
|
Slack: 'SLACK',
|
|
24749
24805
|
Teams: 'TEAMS'
|
|
24750
24806
|
} as const;
|
|
@@ -37828,12 +37884,36 @@ export interface SendTestNotificationRequestDtoV2024 {
|
|
|
37828
37884
|
* @memberof SendTestNotificationRequestDtoV2024
|
|
37829
37885
|
*/
|
|
37830
37886
|
'medium'?: SendTestNotificationRequestDtoV2024MediumV2024;
|
|
37887
|
+
/**
|
|
37888
|
+
* The locale for the message text.
|
|
37889
|
+
* @type {string}
|
|
37890
|
+
* @memberof SendTestNotificationRequestDtoV2024
|
|
37891
|
+
*/
|
|
37892
|
+
'locale'?: string;
|
|
37831
37893
|
/**
|
|
37832
37894
|
* A Json object that denotes the context specific to the template.
|
|
37833
37895
|
* @type {object}
|
|
37834
37896
|
* @memberof SendTestNotificationRequestDtoV2024
|
|
37835
37897
|
*/
|
|
37836
37898
|
'context'?: object;
|
|
37899
|
+
/**
|
|
37900
|
+
* A list of override recipient email addresses for the test notification.
|
|
37901
|
+
* @type {Array<string>}
|
|
37902
|
+
* @memberof SendTestNotificationRequestDtoV2024
|
|
37903
|
+
*/
|
|
37904
|
+
'recipientEmailList'?: Array<string>;
|
|
37905
|
+
/**
|
|
37906
|
+
* A list of CC email addresses for the test notification.
|
|
37907
|
+
* @type {Array<string>}
|
|
37908
|
+
* @memberof SendTestNotificationRequestDtoV2024
|
|
37909
|
+
*/
|
|
37910
|
+
'carbonCopy'?: Array<string>;
|
|
37911
|
+
/**
|
|
37912
|
+
* A list of BCC email addresses for the test notification.
|
|
37913
|
+
* @type {Array<string>}
|
|
37914
|
+
* @memberof SendTestNotificationRequestDtoV2024
|
|
37915
|
+
*/
|
|
37916
|
+
'blindCarbonCopy'?: Array<string>;
|
|
37837
37917
|
}
|
|
37838
37918
|
|
|
37839
37919
|
export const SendTestNotificationRequestDtoV2024MediumV2024 = {
|
|
@@ -38549,7 +38629,40 @@ export interface SlimDiscoveredApplicationsV2024 {
|
|
|
38549
38629
|
* @memberof SlimDiscoveredApplicationsV2024
|
|
38550
38630
|
*/
|
|
38551
38631
|
'status'?: string;
|
|
38632
|
+
/**
|
|
38633
|
+
* The risk score of the application ranging from 0-100, 100 being highest risk.
|
|
38634
|
+
* @type {number}
|
|
38635
|
+
* @memberof SlimDiscoveredApplicationsV2024
|
|
38636
|
+
*/
|
|
38637
|
+
'riskScore'?: number;
|
|
38638
|
+
/**
|
|
38639
|
+
* Indicates whether the application is used for business purposes.
|
|
38640
|
+
* @type {boolean}
|
|
38641
|
+
* @memberof SlimDiscoveredApplicationsV2024
|
|
38642
|
+
*/
|
|
38643
|
+
'isBusiness'?: boolean;
|
|
38644
|
+
/**
|
|
38645
|
+
* The total number of sign-in accounts for the application.
|
|
38646
|
+
* @type {number}
|
|
38647
|
+
* @memberof SlimDiscoveredApplicationsV2024
|
|
38648
|
+
*/
|
|
38649
|
+
'totalSigninsCount'?: number;
|
|
38650
|
+
/**
|
|
38651
|
+
* The risk level of the application.
|
|
38652
|
+
* @type {string}
|
|
38653
|
+
* @memberof SlimDiscoveredApplicationsV2024
|
|
38654
|
+
*/
|
|
38655
|
+
'riskLevel'?: SlimDiscoveredApplicationsV2024RiskLevelV2024;
|
|
38552
38656
|
}
|
|
38657
|
+
|
|
38658
|
+
export const SlimDiscoveredApplicationsV2024RiskLevelV2024 = {
|
|
38659
|
+
High: 'High',
|
|
38660
|
+
Medium: 'Medium',
|
|
38661
|
+
Low: 'Low'
|
|
38662
|
+
} as const;
|
|
38663
|
+
|
|
38664
|
+
export type SlimDiscoveredApplicationsV2024RiskLevelV2024 = typeof SlimDiscoveredApplicationsV2024RiskLevelV2024[keyof typeof SlimDiscoveredApplicationsV2024RiskLevelV2024];
|
|
38665
|
+
|
|
38553
38666
|
/**
|
|
38554
38667
|
* Details of the Entitlement criteria
|
|
38555
38668
|
* @export
|
|
@@ -42505,13 +42618,13 @@ export type TaskStatusV2024CompletionStatusV2024 = typeof TaskStatusV2024Complet
|
|
|
42505
42618
|
*/
|
|
42506
42619
|
export interface TemplateBulkDeleteDtoV2024 {
|
|
42507
42620
|
/**
|
|
42508
|
-
*
|
|
42621
|
+
* The template key to delete
|
|
42509
42622
|
* @type {string}
|
|
42510
42623
|
* @memberof TemplateBulkDeleteDtoV2024
|
|
42511
42624
|
*/
|
|
42512
42625
|
'key': string;
|
|
42513
42626
|
/**
|
|
42514
|
-
*
|
|
42627
|
+
* The notification medium (EMAIL, SLACK, or TEAMS)
|
|
42515
42628
|
* @type {string}
|
|
42516
42629
|
* @memberof TemplateBulkDeleteDtoV2024
|
|
42517
42630
|
*/
|
|
@@ -42526,8 +42639,8 @@ export interface TemplateBulkDeleteDtoV2024 {
|
|
|
42526
42639
|
|
|
42527
42640
|
export const TemplateBulkDeleteDtoV2024MediumV2024 = {
|
|
42528
42641
|
Email: 'EMAIL',
|
|
42529
|
-
|
|
42530
|
-
|
|
42642
|
+
Slack: 'SLACK',
|
|
42643
|
+
Teams: 'TEAMS'
|
|
42531
42644
|
} as const;
|
|
42532
42645
|
|
|
42533
42646
|
export type TemplateBulkDeleteDtoV2024MediumV2024 = typeof TemplateBulkDeleteDtoV2024MediumV2024[keyof typeof TemplateBulkDeleteDtoV2024MediumV2024];
|
|
@@ -42622,14 +42735,158 @@ export interface TemplateDtoDefaultV2024 {
|
|
|
42622
42735
|
|
|
42623
42736
|
export const TemplateDtoDefaultV2024MediumV2024 = {
|
|
42624
42737
|
Email: 'EMAIL',
|
|
42625
|
-
Phone: 'PHONE',
|
|
42626
|
-
Sms: 'SMS',
|
|
42627
42738
|
Slack: 'SLACK',
|
|
42628
42739
|
Teams: 'TEAMS'
|
|
42629
42740
|
} as const;
|
|
42630
42741
|
|
|
42631
42742
|
export type TemplateDtoDefaultV2024MediumV2024 = typeof TemplateDtoDefaultV2024MediumV2024[keyof typeof TemplateDtoDefaultV2024MediumV2024];
|
|
42632
42743
|
|
|
42744
|
+
/**
|
|
42745
|
+
*
|
|
42746
|
+
* @export
|
|
42747
|
+
* @interface TemplateDtoSlackTemplateV2024
|
|
42748
|
+
*/
|
|
42749
|
+
export interface TemplateDtoSlackTemplateV2024 {
|
|
42750
|
+
/**
|
|
42751
|
+
* The template key
|
|
42752
|
+
* @type {string}
|
|
42753
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42754
|
+
*/
|
|
42755
|
+
'key'?: string | null;
|
|
42756
|
+
/**
|
|
42757
|
+
* The main text content of the Slack message
|
|
42758
|
+
* @type {string}
|
|
42759
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42760
|
+
*/
|
|
42761
|
+
'text'?: string;
|
|
42762
|
+
/**
|
|
42763
|
+
* JSON string of Slack Block Kit blocks for rich formatting
|
|
42764
|
+
* @type {string}
|
|
42765
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42766
|
+
*/
|
|
42767
|
+
'blocks'?: string | null;
|
|
42768
|
+
/**
|
|
42769
|
+
* JSON string of Slack attachments
|
|
42770
|
+
* @type {string}
|
|
42771
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42772
|
+
*/
|
|
42773
|
+
'attachments'?: string;
|
|
42774
|
+
/**
|
|
42775
|
+
* The type of notification
|
|
42776
|
+
* @type {string}
|
|
42777
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42778
|
+
*/
|
|
42779
|
+
'notificationType'?: string | null;
|
|
42780
|
+
/**
|
|
42781
|
+
* The approval request ID
|
|
42782
|
+
* @type {string}
|
|
42783
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42784
|
+
*/
|
|
42785
|
+
'approvalId'?: string | null;
|
|
42786
|
+
/**
|
|
42787
|
+
* The request ID
|
|
42788
|
+
* @type {string}
|
|
42789
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42790
|
+
*/
|
|
42791
|
+
'requestId'?: string | null;
|
|
42792
|
+
/**
|
|
42793
|
+
* The ID of the user who made the request
|
|
42794
|
+
* @type {string}
|
|
42795
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42796
|
+
*/
|
|
42797
|
+
'requestedById'?: string | null;
|
|
42798
|
+
/**
|
|
42799
|
+
* Whether this is a subscription notification
|
|
42800
|
+
* @type {boolean}
|
|
42801
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42802
|
+
*/
|
|
42803
|
+
'isSubscription'?: boolean | null;
|
|
42804
|
+
/**
|
|
42805
|
+
*
|
|
42806
|
+
* @type {TemplateSlackAutoApprovalDataV2024}
|
|
42807
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42808
|
+
*/
|
|
42809
|
+
'autoApprovalData'?: TemplateSlackAutoApprovalDataV2024 | null;
|
|
42810
|
+
/**
|
|
42811
|
+
*
|
|
42812
|
+
* @type {TemplateSlackCustomFieldsV2024}
|
|
42813
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42814
|
+
*/
|
|
42815
|
+
'customFields'?: TemplateSlackCustomFieldsV2024 | null;
|
|
42816
|
+
}
|
|
42817
|
+
/**
|
|
42818
|
+
*
|
|
42819
|
+
* @export
|
|
42820
|
+
* @interface TemplateDtoTeamsTemplateV2024
|
|
42821
|
+
*/
|
|
42822
|
+
export interface TemplateDtoTeamsTemplateV2024 {
|
|
42823
|
+
/**
|
|
42824
|
+
* The template key
|
|
42825
|
+
* @type {string}
|
|
42826
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42827
|
+
*/
|
|
42828
|
+
'key'?: string | null;
|
|
42829
|
+
/**
|
|
42830
|
+
* The title of the Teams message
|
|
42831
|
+
* @type {string}
|
|
42832
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42833
|
+
*/
|
|
42834
|
+
'title'?: string | null;
|
|
42835
|
+
/**
|
|
42836
|
+
* The main text content of the Teams message
|
|
42837
|
+
* @type {string}
|
|
42838
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42839
|
+
*/
|
|
42840
|
+
'text'?: string;
|
|
42841
|
+
/**
|
|
42842
|
+
* JSON string of the Teams adaptive card
|
|
42843
|
+
* @type {string}
|
|
42844
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42845
|
+
*/
|
|
42846
|
+
'messageJSON'?: string | null;
|
|
42847
|
+
/**
|
|
42848
|
+
* Whether this is a subscription notification
|
|
42849
|
+
* @type {boolean}
|
|
42850
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42851
|
+
*/
|
|
42852
|
+
'isSubscription'?: boolean | null;
|
|
42853
|
+
/**
|
|
42854
|
+
* The approval request ID
|
|
42855
|
+
* @type {string}
|
|
42856
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42857
|
+
*/
|
|
42858
|
+
'approvalId'?: string | null;
|
|
42859
|
+
/**
|
|
42860
|
+
* The request ID
|
|
42861
|
+
* @type {string}
|
|
42862
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42863
|
+
*/
|
|
42864
|
+
'requestId'?: string | null;
|
|
42865
|
+
/**
|
|
42866
|
+
* The ID of the user who made the request
|
|
42867
|
+
* @type {string}
|
|
42868
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42869
|
+
*/
|
|
42870
|
+
'requestedById'?: string | null;
|
|
42871
|
+
/**
|
|
42872
|
+
* The type of notification
|
|
42873
|
+
* @type {string}
|
|
42874
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42875
|
+
*/
|
|
42876
|
+
'notificationType'?: string | null;
|
|
42877
|
+
/**
|
|
42878
|
+
*
|
|
42879
|
+
* @type {TemplateSlackAutoApprovalDataV2024}
|
|
42880
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42881
|
+
*/
|
|
42882
|
+
'autoApprovalData'?: TemplateSlackAutoApprovalDataV2024 | null;
|
|
42883
|
+
/**
|
|
42884
|
+
*
|
|
42885
|
+
* @type {TemplateSlackCustomFieldsV2024}
|
|
42886
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42887
|
+
*/
|
|
42888
|
+
'customFields'?: TemplateSlackCustomFieldsV2024 | null;
|
|
42889
|
+
}
|
|
42633
42890
|
/**
|
|
42634
42891
|
*
|
|
42635
42892
|
* @export
|
|
@@ -42724,22 +42981,20 @@ export interface TemplateDtoV2024 {
|
|
|
42724
42981
|
'modified'?: string;
|
|
42725
42982
|
/**
|
|
42726
42983
|
*
|
|
42727
|
-
* @type {
|
|
42984
|
+
* @type {TemplateDtoSlackTemplateV2024}
|
|
42728
42985
|
* @memberof TemplateDtoV2024
|
|
42729
42986
|
*/
|
|
42730
|
-
'slackTemplate'?:
|
|
42987
|
+
'slackTemplate'?: TemplateDtoSlackTemplateV2024;
|
|
42731
42988
|
/**
|
|
42732
42989
|
*
|
|
42733
|
-
* @type {
|
|
42990
|
+
* @type {TemplateDtoTeamsTemplateV2024}
|
|
42734
42991
|
* @memberof TemplateDtoV2024
|
|
42735
42992
|
*/
|
|
42736
|
-
'teamsTemplate'?:
|
|
42993
|
+
'teamsTemplate'?: TemplateDtoTeamsTemplateV2024;
|
|
42737
42994
|
}
|
|
42738
42995
|
|
|
42739
42996
|
export const TemplateDtoV2024MediumV2024 = {
|
|
42740
42997
|
Email: 'EMAIL',
|
|
42741
|
-
Phone: 'PHONE',
|
|
42742
|
-
Sms: 'SMS',
|
|
42743
42998
|
Slack: 'SLACK',
|
|
42744
42999
|
Teams: 'TEAMS'
|
|
42745
43000
|
} as const;
|
|
@@ -42753,31 +43008,31 @@ export type TemplateDtoV2024MediumV2024 = typeof TemplateDtoV2024MediumV2024[key
|
|
|
42753
43008
|
*/
|
|
42754
43009
|
export interface TemplateSlackAutoApprovalDataV2024 {
|
|
42755
43010
|
/**
|
|
42756
|
-
*
|
|
43011
|
+
* Whether the request was auto-approved
|
|
42757
43012
|
* @type {string}
|
|
42758
43013
|
* @memberof TemplateSlackAutoApprovalDataV2024
|
|
42759
43014
|
*/
|
|
42760
43015
|
'isAutoApproved'?: string | null;
|
|
42761
43016
|
/**
|
|
42762
|
-
*
|
|
43017
|
+
* The item ID
|
|
42763
43018
|
* @type {string}
|
|
42764
43019
|
* @memberof TemplateSlackAutoApprovalDataV2024
|
|
42765
43020
|
*/
|
|
42766
43021
|
'itemId'?: string | null;
|
|
42767
43022
|
/**
|
|
42768
|
-
*
|
|
43023
|
+
* The item type
|
|
42769
43024
|
* @type {string}
|
|
42770
43025
|
* @memberof TemplateSlackAutoApprovalDataV2024
|
|
42771
43026
|
*/
|
|
42772
43027
|
'itemType'?: string | null;
|
|
42773
43028
|
/**
|
|
42774
|
-
*
|
|
43029
|
+
* JSON message for auto-approval
|
|
42775
43030
|
* @type {string}
|
|
42776
43031
|
* @memberof TemplateSlackAutoApprovalDataV2024
|
|
42777
43032
|
*/
|
|
42778
43033
|
'autoApprovalMessageJSON'?: string | null;
|
|
42779
43034
|
/**
|
|
42780
|
-
*
|
|
43035
|
+
* Title for auto-approval
|
|
42781
43036
|
* @type {string}
|
|
42782
43037
|
* @memberof TemplateSlackAutoApprovalDataV2024
|
|
42783
43038
|
*/
|
|
@@ -42790,25 +43045,25 @@ export interface TemplateSlackAutoApprovalDataV2024 {
|
|
|
42790
43045
|
*/
|
|
42791
43046
|
export interface TemplateSlackCustomFieldsV2024 {
|
|
42792
43047
|
/**
|
|
42793
|
-
*
|
|
43048
|
+
* The type of request
|
|
42794
43049
|
* @type {string}
|
|
42795
43050
|
* @memberof TemplateSlackCustomFieldsV2024
|
|
42796
43051
|
*/
|
|
42797
43052
|
'requestType'?: string | null;
|
|
42798
43053
|
/**
|
|
42799
|
-
*
|
|
43054
|
+
* Whether the request contains a deny action
|
|
42800
43055
|
* @type {string}
|
|
42801
43056
|
* @memberof TemplateSlackCustomFieldsV2024
|
|
42802
43057
|
*/
|
|
42803
43058
|
'containsDeny'?: string | null;
|
|
42804
43059
|
/**
|
|
42805
|
-
*
|
|
43060
|
+
* The campaign ID
|
|
42806
43061
|
* @type {string}
|
|
42807
43062
|
* @memberof TemplateSlackCustomFieldsV2024
|
|
42808
43063
|
*/
|
|
42809
43064
|
'campaignId'?: string | null;
|
|
42810
43065
|
/**
|
|
42811
|
-
*
|
|
43066
|
+
* The campaign status
|
|
42812
43067
|
* @type {string}
|
|
42813
43068
|
* @memberof TemplateSlackCustomFieldsV2024
|
|
42814
43069
|
*/
|
|
@@ -42821,55 +43076,55 @@ export interface TemplateSlackCustomFieldsV2024 {
|
|
|
42821
43076
|
*/
|
|
42822
43077
|
export interface TemplateSlackV2024 {
|
|
42823
43078
|
/**
|
|
42824
|
-
*
|
|
43079
|
+
* The template key
|
|
42825
43080
|
* @type {string}
|
|
42826
43081
|
* @memberof TemplateSlackV2024
|
|
42827
43082
|
*/
|
|
42828
43083
|
'key'?: string | null;
|
|
42829
43084
|
/**
|
|
42830
|
-
*
|
|
43085
|
+
* The main text content of the Slack message
|
|
42831
43086
|
* @type {string}
|
|
42832
43087
|
* @memberof TemplateSlackV2024
|
|
42833
43088
|
*/
|
|
42834
43089
|
'text'?: string;
|
|
42835
43090
|
/**
|
|
42836
|
-
*
|
|
43091
|
+
* JSON string of Slack Block Kit blocks for rich formatting
|
|
42837
43092
|
* @type {string}
|
|
42838
43093
|
* @memberof TemplateSlackV2024
|
|
42839
43094
|
*/
|
|
42840
43095
|
'blocks'?: string | null;
|
|
42841
43096
|
/**
|
|
42842
|
-
*
|
|
43097
|
+
* JSON string of Slack attachments
|
|
42843
43098
|
* @type {string}
|
|
42844
43099
|
* @memberof TemplateSlackV2024
|
|
42845
43100
|
*/
|
|
42846
43101
|
'attachments'?: string;
|
|
42847
43102
|
/**
|
|
42848
|
-
*
|
|
43103
|
+
* The type of notification
|
|
42849
43104
|
* @type {string}
|
|
42850
43105
|
* @memberof TemplateSlackV2024
|
|
42851
43106
|
*/
|
|
42852
43107
|
'notificationType'?: string | null;
|
|
42853
43108
|
/**
|
|
42854
|
-
*
|
|
43109
|
+
* The approval request ID
|
|
42855
43110
|
* @type {string}
|
|
42856
43111
|
* @memberof TemplateSlackV2024
|
|
42857
43112
|
*/
|
|
42858
43113
|
'approvalId'?: string | null;
|
|
42859
43114
|
/**
|
|
42860
|
-
*
|
|
43115
|
+
* The request ID
|
|
42861
43116
|
* @type {string}
|
|
42862
43117
|
* @memberof TemplateSlackV2024
|
|
42863
43118
|
*/
|
|
42864
43119
|
'requestId'?: string | null;
|
|
42865
43120
|
/**
|
|
42866
|
-
*
|
|
43121
|
+
* The ID of the user who made the request
|
|
42867
43122
|
* @type {string}
|
|
42868
43123
|
* @memberof TemplateSlackV2024
|
|
42869
43124
|
*/
|
|
42870
43125
|
'requestedById'?: string | null;
|
|
42871
43126
|
/**
|
|
42872
|
-
*
|
|
43127
|
+
* Whether this is a subscription notification
|
|
42873
43128
|
* @type {boolean}
|
|
42874
43129
|
* @memberof TemplateSlackV2024
|
|
42875
43130
|
*/
|
|
@@ -42894,55 +43149,55 @@ export interface TemplateSlackV2024 {
|
|
|
42894
43149
|
*/
|
|
42895
43150
|
export interface TemplateTeamsV2024 {
|
|
42896
43151
|
/**
|
|
42897
|
-
*
|
|
43152
|
+
* The template key
|
|
42898
43153
|
* @type {string}
|
|
42899
43154
|
* @memberof TemplateTeamsV2024
|
|
42900
43155
|
*/
|
|
42901
43156
|
'key'?: string | null;
|
|
42902
43157
|
/**
|
|
42903
|
-
*
|
|
43158
|
+
* The title of the Teams message
|
|
42904
43159
|
* @type {string}
|
|
42905
43160
|
* @memberof TemplateTeamsV2024
|
|
42906
43161
|
*/
|
|
42907
43162
|
'title'?: string | null;
|
|
42908
43163
|
/**
|
|
42909
|
-
*
|
|
43164
|
+
* The main text content of the Teams message
|
|
42910
43165
|
* @type {string}
|
|
42911
43166
|
* @memberof TemplateTeamsV2024
|
|
42912
43167
|
*/
|
|
42913
43168
|
'text'?: string;
|
|
42914
43169
|
/**
|
|
42915
|
-
*
|
|
43170
|
+
* JSON string of the Teams adaptive card
|
|
42916
43171
|
* @type {string}
|
|
42917
43172
|
* @memberof TemplateTeamsV2024
|
|
42918
43173
|
*/
|
|
42919
43174
|
'messageJSON'?: string | null;
|
|
42920
43175
|
/**
|
|
42921
|
-
*
|
|
43176
|
+
* Whether this is a subscription notification
|
|
42922
43177
|
* @type {boolean}
|
|
42923
43178
|
* @memberof TemplateTeamsV2024
|
|
42924
43179
|
*/
|
|
42925
43180
|
'isSubscription'?: boolean | null;
|
|
42926
43181
|
/**
|
|
42927
|
-
*
|
|
43182
|
+
* The approval request ID
|
|
42928
43183
|
* @type {string}
|
|
42929
43184
|
* @memberof TemplateTeamsV2024
|
|
42930
43185
|
*/
|
|
42931
43186
|
'approvalId'?: string | null;
|
|
42932
43187
|
/**
|
|
42933
|
-
*
|
|
43188
|
+
* The request ID
|
|
42934
43189
|
* @type {string}
|
|
42935
43190
|
* @memberof TemplateTeamsV2024
|
|
42936
43191
|
*/
|
|
42937
43192
|
'requestId'?: string | null;
|
|
42938
43193
|
/**
|
|
42939
|
-
*
|
|
43194
|
+
* The ID of the user who made the request
|
|
42940
43195
|
* @type {string}
|
|
42941
43196
|
* @memberof TemplateTeamsV2024
|
|
42942
43197
|
*/
|
|
42943
43198
|
'requestedById'?: string | null;
|
|
42944
43199
|
/**
|
|
42945
|
-
*
|
|
43200
|
+
* The type of notification
|
|
42946
43201
|
* @type {string}
|
|
42947
43202
|
* @memberof TemplateTeamsV2024
|
|
42948
43203
|
*/
|
|
@@ -52836,17 +53091,12 @@ export const ApprovalsV2024ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
52836
53091
|
* 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.
|
|
52837
53092
|
* @summary Get an approval
|
|
52838
53093
|
* @param {string} id ID of the approval that is to be returned
|
|
52839
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
52840
53094
|
* @param {*} [axiosOptions] Override http request option.
|
|
52841
53095
|
* @throws {RequiredError}
|
|
52842
53096
|
*/
|
|
52843
|
-
getApproval: async (id: string,
|
|
53097
|
+
getApproval: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
52844
53098
|
// verify required parameter 'id' is not null or undefined
|
|
52845
53099
|
assertParamExists('getApproval', 'id', id)
|
|
52846
|
-
if (xSailPointExperimental === undefined) {
|
|
52847
|
-
xSailPointExperimental = 'true';
|
|
52848
|
-
}
|
|
52849
|
-
|
|
52850
53100
|
const localVarPath = `/generic-approvals/{id}`
|
|
52851
53101
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
52852
53102
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -52870,9 +53120,6 @@ export const ApprovalsV2024ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
52870
53120
|
|
|
52871
53121
|
|
|
52872
53122
|
|
|
52873
|
-
if (xSailPointExperimental != null) {
|
|
52874
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
52875
|
-
}
|
|
52876
53123
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
52877
53124
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
52878
53125
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -52888,15 +53135,12 @@ export const ApprovalsV2024ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
52888
53135
|
* @param {boolean} [mine] Returns the list of approvals for the current caller
|
|
52889
53136
|
* @param {string} [requesterId] Returns the list of approvals for a given requester ID
|
|
52890
53137
|
* @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: **status**: *eq* **referenceType**: *eq*
|
|
52891
|
-
* @param {
|
|
53138
|
+
* @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.
|
|
53139
|
+
* @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.
|
|
52892
53140
|
* @param {*} [axiosOptions] Override http request option.
|
|
52893
53141
|
* @throws {RequiredError}
|
|
52894
53142
|
*/
|
|
52895
|
-
getApprovals: async (mine?: boolean, requesterId?: string, filters?: string,
|
|
52896
|
-
if (xSailPointExperimental === undefined) {
|
|
52897
|
-
xSailPointExperimental = 'true';
|
|
52898
|
-
}
|
|
52899
|
-
|
|
53143
|
+
getApprovals: async (mine?: boolean, requesterId?: string, filters?: string, limit?: number, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
52900
53144
|
const localVarPath = `/generic-approvals`;
|
|
52901
53145
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
52902
53146
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -52929,11 +53173,16 @@ export const ApprovalsV2024ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
52929
53173
|
localVarQueryParameter['filters'] = filters;
|
|
52930
53174
|
}
|
|
52931
53175
|
|
|
53176
|
+
if (limit !== undefined) {
|
|
53177
|
+
localVarQueryParameter['limit'] = limit;
|
|
53178
|
+
}
|
|
52932
53179
|
|
|
52933
|
-
|
|
52934
|
-
|
|
52935
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
53180
|
+
if (offset !== undefined) {
|
|
53181
|
+
localVarQueryParameter['offset'] = offset;
|
|
52936
53182
|
}
|
|
53183
|
+
|
|
53184
|
+
|
|
53185
|
+
|
|
52937
53186
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
52938
53187
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
52939
53188
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -52957,12 +53206,11 @@ export const ApprovalsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
52957
53206
|
* 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.
|
|
52958
53207
|
* @summary Get an approval
|
|
52959
53208
|
* @param {string} id ID of the approval that is to be returned
|
|
52960
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
52961
53209
|
* @param {*} [axiosOptions] Override http request option.
|
|
52962
53210
|
* @throws {RequiredError}
|
|
52963
53211
|
*/
|
|
52964
|
-
async getApproval(id: string,
|
|
52965
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getApproval(id,
|
|
53212
|
+
async getApproval(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApprovalV2024>> {
|
|
53213
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getApproval(id, axiosOptions);
|
|
52966
53214
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
52967
53215
|
const localVarOperationServerBasePath = operationServerMap['ApprovalsV2024Api.getApproval']?.[localVarOperationServerIndex]?.url;
|
|
52968
53216
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -52973,12 +53221,13 @@ export const ApprovalsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
52973
53221
|
* @param {boolean} [mine] Returns the list of approvals for the current caller
|
|
52974
53222
|
* @param {string} [requesterId] Returns the list of approvals for a given requester ID
|
|
52975
53223
|
* @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: **status**: *eq* **referenceType**: *eq*
|
|
52976
|
-
* @param {
|
|
53224
|
+
* @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.
|
|
53225
|
+
* @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.
|
|
52977
53226
|
* @param {*} [axiosOptions] Override http request option.
|
|
52978
53227
|
* @throws {RequiredError}
|
|
52979
53228
|
*/
|
|
52980
|
-
async getApprovals(mine?: boolean, requesterId?: string, filters?: string,
|
|
52981
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getApprovals(mine, requesterId, filters,
|
|
53229
|
+
async getApprovals(mine?: boolean, requesterId?: string, filters?: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ApprovalV2024>>> {
|
|
53230
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getApprovals(mine, requesterId, filters, limit, offset, axiosOptions);
|
|
52982
53231
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
52983
53232
|
const localVarOperationServerBasePath = operationServerMap['ApprovalsV2024Api.getApprovals']?.[localVarOperationServerIndex]?.url;
|
|
52984
53233
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -53001,7 +53250,7 @@ export const ApprovalsV2024ApiFactory = function (configuration?: Configuration,
|
|
|
53001
53250
|
* @throws {RequiredError}
|
|
53002
53251
|
*/
|
|
53003
53252
|
getApproval(requestParameters: ApprovalsV2024ApiGetApprovalRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ApprovalV2024> {
|
|
53004
|
-
return localVarFp.getApproval(requestParameters.id,
|
|
53253
|
+
return localVarFp.getApproval(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
53005
53254
|
},
|
|
53006
53255
|
/**
|
|
53007
53256
|
* Retrieve a list of approvals, which can be filtered by requester ID, status, or reference type. \"Mine\" query parameter can be used and it will return all approvals for the current approver. This endpoint is for generic approvals, different than the access-request-approval endpoint and does not include access-request-approvals. Absence of all query parameters will will default to mine=true.
|
|
@@ -53011,7 +53260,7 @@ export const ApprovalsV2024ApiFactory = function (configuration?: Configuration,
|
|
|
53011
53260
|
* @throws {RequiredError}
|
|
53012
53261
|
*/
|
|
53013
53262
|
getApprovals(requestParameters: ApprovalsV2024ApiGetApprovalsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ApprovalV2024>> {
|
|
53014
|
-
return localVarFp.getApprovals(requestParameters.mine, requestParameters.requesterId, requestParameters.filters, requestParameters.
|
|
53263
|
+
return localVarFp.getApprovals(requestParameters.mine, requestParameters.requesterId, requestParameters.filters, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(axios, basePath));
|
|
53015
53264
|
},
|
|
53016
53265
|
};
|
|
53017
53266
|
};
|
|
@@ -53028,13 +53277,6 @@ export interface ApprovalsV2024ApiGetApprovalRequest {
|
|
|
53028
53277
|
* @memberof ApprovalsV2024ApiGetApproval
|
|
53029
53278
|
*/
|
|
53030
53279
|
readonly id: string
|
|
53031
|
-
|
|
53032
|
-
/**
|
|
53033
|
-
* Use this header to enable this experimental API.
|
|
53034
|
-
* @type {string}
|
|
53035
|
-
* @memberof ApprovalsV2024ApiGetApproval
|
|
53036
|
-
*/
|
|
53037
|
-
readonly xSailPointExperimental?: string
|
|
53038
53280
|
}
|
|
53039
53281
|
|
|
53040
53282
|
/**
|
|
@@ -53065,11 +53307,18 @@ export interface ApprovalsV2024ApiGetApprovalsRequest {
|
|
|
53065
53307
|
readonly filters?: string
|
|
53066
53308
|
|
|
53067
53309
|
/**
|
|
53068
|
-
*
|
|
53069
|
-
* @type {
|
|
53310
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
53311
|
+
* @type {number}
|
|
53070
53312
|
* @memberof ApprovalsV2024ApiGetApprovals
|
|
53071
53313
|
*/
|
|
53072
|
-
readonly
|
|
53314
|
+
readonly limit?: number
|
|
53315
|
+
|
|
53316
|
+
/**
|
|
53317
|
+
* 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.
|
|
53318
|
+
* @type {number}
|
|
53319
|
+
* @memberof ApprovalsV2024ApiGetApprovals
|
|
53320
|
+
*/
|
|
53321
|
+
readonly offset?: number
|
|
53073
53322
|
}
|
|
53074
53323
|
|
|
53075
53324
|
/**
|
|
@@ -53088,7 +53337,7 @@ export class ApprovalsV2024Api extends BaseAPI {
|
|
|
53088
53337
|
* @memberof ApprovalsV2024Api
|
|
53089
53338
|
*/
|
|
53090
53339
|
public getApproval(requestParameters: ApprovalsV2024ApiGetApprovalRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
53091
|
-
return ApprovalsV2024ApiFp(this.configuration).getApproval(requestParameters.id,
|
|
53340
|
+
return ApprovalsV2024ApiFp(this.configuration).getApproval(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
53092
53341
|
}
|
|
53093
53342
|
|
|
53094
53343
|
/**
|
|
@@ -53100,7 +53349,7 @@ export class ApprovalsV2024Api extends BaseAPI {
|
|
|
53100
53349
|
* @memberof ApprovalsV2024Api
|
|
53101
53350
|
*/
|
|
53102
53351
|
public getApprovals(requestParameters: ApprovalsV2024ApiGetApprovalsRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
53103
|
-
return ApprovalsV2024ApiFp(this.configuration).getApprovals(requestParameters.mine, requestParameters.requesterId, requestParameters.filters, requestParameters.
|
|
53352
|
+
return ApprovalsV2024ApiFp(this.configuration).getApprovals(requestParameters.mine, requestParameters.requesterId, requestParameters.filters, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
53104
53353
|
}
|
|
53105
53354
|
}
|
|
53106
53355
|
|
|
@@ -97780,17 +98029,12 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
97780
98029
|
* Create a domain to be verified via DKIM (DomainKeys Identified Mail)
|
|
97781
98030
|
* @summary Verify domain address via dkim
|
|
97782
98031
|
* @param {DomainAddressV2024} domainAddressV2024
|
|
97783
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
97784
98032
|
* @param {*} [axiosOptions] Override http request option.
|
|
97785
98033
|
* @throws {RequiredError}
|
|
97786
98034
|
*/
|
|
97787
|
-
createDomainDkim: async (domainAddressV2024: DomainAddressV2024,
|
|
98035
|
+
createDomainDkim: async (domainAddressV2024: DomainAddressV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
97788
98036
|
// verify required parameter 'domainAddressV2024' is not null or undefined
|
|
97789
98037
|
assertParamExists('createDomainDkim', 'domainAddressV2024', domainAddressV2024)
|
|
97790
|
-
if (xSailPointExperimental === undefined) {
|
|
97791
|
-
xSailPointExperimental = 'true';
|
|
97792
|
-
}
|
|
97793
|
-
|
|
97794
98038
|
const localVarPath = `/verified-domains`;
|
|
97795
98039
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
97796
98040
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -97815,9 +98059,6 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
97815
98059
|
|
|
97816
98060
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
97817
98061
|
|
|
97818
|
-
if (xSailPointExperimental != null) {
|
|
97819
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
97820
|
-
}
|
|
97821
98062
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
97822
98063
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
97823
98064
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -97832,17 +98073,12 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
97832
98073
|
* 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.
|
|
97833
98074
|
* @summary Create notification template
|
|
97834
98075
|
* @param {TemplateDtoV2024} templateDtoV2024
|
|
97835
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
97836
98076
|
* @param {*} [axiosOptions] Override http request option.
|
|
97837
98077
|
* @throws {RequiredError}
|
|
97838
98078
|
*/
|
|
97839
|
-
createNotificationTemplate: async (templateDtoV2024: TemplateDtoV2024,
|
|
98079
|
+
createNotificationTemplate: async (templateDtoV2024: TemplateDtoV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
97840
98080
|
// verify required parameter 'templateDtoV2024' is not null or undefined
|
|
97841
98081
|
assertParamExists('createNotificationTemplate', 'templateDtoV2024', templateDtoV2024)
|
|
97842
|
-
if (xSailPointExperimental === undefined) {
|
|
97843
|
-
xSailPointExperimental = 'true';
|
|
97844
|
-
}
|
|
97845
|
-
|
|
97846
98082
|
const localVarPath = `/notification-templates`;
|
|
97847
98083
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
97848
98084
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -97867,9 +98103,6 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
97867
98103
|
|
|
97868
98104
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
97869
98105
|
|
|
97870
|
-
if (xSailPointExperimental != null) {
|
|
97871
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
97872
|
-
}
|
|
97873
98106
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
97874
98107
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
97875
98108
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -97884,17 +98117,12 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
97884
98117
|
* Create a new sender email address and initiate verification process.
|
|
97885
98118
|
* @summary Create verified from address
|
|
97886
98119
|
* @param {EmailStatusDtoV2024} emailStatusDtoV2024
|
|
97887
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
97888
98120
|
* @param {*} [axiosOptions] Override http request option.
|
|
97889
98121
|
* @throws {RequiredError}
|
|
97890
98122
|
*/
|
|
97891
|
-
createVerifiedFromAddress: async (emailStatusDtoV2024: EmailStatusDtoV2024,
|
|
98123
|
+
createVerifiedFromAddress: async (emailStatusDtoV2024: EmailStatusDtoV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
97892
98124
|
// verify required parameter 'emailStatusDtoV2024' is not null or undefined
|
|
97893
98125
|
assertParamExists('createVerifiedFromAddress', 'emailStatusDtoV2024', emailStatusDtoV2024)
|
|
97894
|
-
if (xSailPointExperimental === undefined) {
|
|
97895
|
-
xSailPointExperimental = 'true';
|
|
97896
|
-
}
|
|
97897
|
-
|
|
97898
98126
|
const localVarPath = `/verified-from-addresses`;
|
|
97899
98127
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
97900
98128
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -97909,19 +98137,16 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
97909
98137
|
|
|
97910
98138
|
// authentication userAuth required
|
|
97911
98139
|
// oauth required
|
|
97912
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
98140
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
97913
98141
|
|
|
97914
98142
|
// authentication userAuth required
|
|
97915
98143
|
// oauth required
|
|
97916
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
98144
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
97917
98145
|
|
|
97918
98146
|
|
|
97919
98147
|
|
|
97920
98148
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
97921
98149
|
|
|
97922
|
-
if (xSailPointExperimental != null) {
|
|
97923
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
97924
|
-
}
|
|
97925
98150
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
97926
98151
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
97927
98152
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -97933,20 +98158,15 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
97933
98158
|
};
|
|
97934
98159
|
},
|
|
97935
98160
|
/**
|
|
97936
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
98161
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
97937
98162
|
* @summary Bulk delete notification templates
|
|
97938
98163
|
* @param {Array<TemplateBulkDeleteDtoV2024>} templateBulkDeleteDtoV2024
|
|
97939
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
97940
98164
|
* @param {*} [axiosOptions] Override http request option.
|
|
97941
98165
|
* @throws {RequiredError}
|
|
97942
98166
|
*/
|
|
97943
|
-
deleteNotificationTemplatesInBulk: async (templateBulkDeleteDtoV2024: Array<TemplateBulkDeleteDtoV2024>,
|
|
98167
|
+
deleteNotificationTemplatesInBulk: async (templateBulkDeleteDtoV2024: Array<TemplateBulkDeleteDtoV2024>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
97944
98168
|
// verify required parameter 'templateBulkDeleteDtoV2024' is not null or undefined
|
|
97945
98169
|
assertParamExists('deleteNotificationTemplatesInBulk', 'templateBulkDeleteDtoV2024', templateBulkDeleteDtoV2024)
|
|
97946
|
-
if (xSailPointExperimental === undefined) {
|
|
97947
|
-
xSailPointExperimental = 'true';
|
|
97948
|
-
}
|
|
97949
|
-
|
|
97950
98170
|
const localVarPath = `/notification-templates/bulk-delete`;
|
|
97951
98171
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
97952
98172
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -97971,9 +98191,6 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
97971
98191
|
|
|
97972
98192
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
97973
98193
|
|
|
97974
|
-
if (xSailPointExperimental != null) {
|
|
97975
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
97976
|
-
}
|
|
97977
98194
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
97978
98195
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
97979
98196
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -97987,18 +98204,13 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
97987
98204
|
/**
|
|
97988
98205
|
* Delete a verified sender email address
|
|
97989
98206
|
* @summary Delete verified from address
|
|
97990
|
-
* @param {string} id
|
|
97991
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98207
|
+
* @param {string} id Unique identifier of the verified sender address to delete.
|
|
97992
98208
|
* @param {*} [axiosOptions] Override http request option.
|
|
97993
98209
|
* @throws {RequiredError}
|
|
97994
98210
|
*/
|
|
97995
|
-
deleteVerifiedFromAddress: async (id: string,
|
|
98211
|
+
deleteVerifiedFromAddress: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
97996
98212
|
// verify required parameter 'id' is not null or undefined
|
|
97997
98213
|
assertParamExists('deleteVerifiedFromAddress', 'id', id)
|
|
97998
|
-
if (xSailPointExperimental === undefined) {
|
|
97999
|
-
xSailPointExperimental = 'true';
|
|
98000
|
-
}
|
|
98001
|
-
|
|
98002
98214
|
const localVarPath = `/verified-from-addresses/{id}`
|
|
98003
98215
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
98004
98216
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -98014,17 +98226,14 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98014
98226
|
|
|
98015
98227
|
// authentication userAuth required
|
|
98016
98228
|
// oauth required
|
|
98017
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
98229
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98018
98230
|
|
|
98019
98231
|
// authentication userAuth required
|
|
98020
98232
|
// oauth required
|
|
98021
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
98233
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98022
98234
|
|
|
98023
98235
|
|
|
98024
98236
|
|
|
98025
|
-
if (xSailPointExperimental != null) {
|
|
98026
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
98027
|
-
}
|
|
98028
98237
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
98029
98238
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
98030
98239
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -98037,15 +98246,12 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98037
98246
|
/**
|
|
98038
98247
|
* Retrieve DKIM (DomainKeys Identified Mail) attributes for all your tenants\' AWS SES identities. Limits retrieval to 100 identities per call.
|
|
98039
98248
|
* @summary Get dkim attributes
|
|
98040
|
-
* @param {
|
|
98249
|
+
* @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.
|
|
98250
|
+
* @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.
|
|
98041
98251
|
* @param {*} [axiosOptions] Override http request option.
|
|
98042
98252
|
* @throws {RequiredError}
|
|
98043
98253
|
*/
|
|
98044
|
-
getDkimAttributes: async (
|
|
98045
|
-
if (xSailPointExperimental === undefined) {
|
|
98046
|
-
xSailPointExperimental = 'true';
|
|
98047
|
-
}
|
|
98048
|
-
|
|
98254
|
+
getDkimAttributes: async (limit?: number, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
98049
98255
|
const localVarPath = `/verified-domains`;
|
|
98050
98256
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
98051
98257
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -98066,11 +98272,16 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98066
98272
|
// oauth required
|
|
98067
98273
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98068
98274
|
|
|
98275
|
+
if (limit !== undefined) {
|
|
98276
|
+
localVarQueryParameter['limit'] = limit;
|
|
98277
|
+
}
|
|
98069
98278
|
|
|
98070
|
-
|
|
98071
|
-
|
|
98072
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
98279
|
+
if (offset !== undefined) {
|
|
98280
|
+
localVarQueryParameter['offset'] = offset;
|
|
98073
98281
|
}
|
|
98282
|
+
|
|
98283
|
+
|
|
98284
|
+
|
|
98074
98285
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
98075
98286
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
98076
98287
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -98083,19 +98294,15 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98083
98294
|
/**
|
|
98084
98295
|
* Retrieve MAIL FROM attributes for a given AWS SES identity.
|
|
98085
98296
|
* @summary Get mail from attributes
|
|
98086
|
-
* @param {string}
|
|
98087
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98297
|
+
* @param {string} identity Returns the MX and TXT record to be put in your DNS, as well as the MAIL FROM domain status
|
|
98088
98298
|
* @param {*} [axiosOptions] Override http request option.
|
|
98089
98299
|
* @throws {RequiredError}
|
|
98090
98300
|
*/
|
|
98091
|
-
getMailFromAttributes: async (
|
|
98092
|
-
// verify required parameter '
|
|
98093
|
-
assertParamExists('getMailFromAttributes', '
|
|
98094
|
-
|
|
98095
|
-
|
|
98096
|
-
}
|
|
98097
|
-
|
|
98098
|
-
const localVarPath = `/mail-from-attributes/{identity}`;
|
|
98301
|
+
getMailFromAttributes: async (identity: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
98302
|
+
// verify required parameter 'identity' is not null or undefined
|
|
98303
|
+
assertParamExists('getMailFromAttributes', 'identity', identity)
|
|
98304
|
+
const localVarPath = `/mail-from-attributes/{identity}`
|
|
98305
|
+
.replace(`{${"identity"}}`, encodeURIComponent(String(identity)));
|
|
98099
98306
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
98100
98307
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
98101
98308
|
let baseOptions;
|
|
@@ -98115,15 +98322,46 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98115
98322
|
// oauth required
|
|
98116
98323
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98117
98324
|
|
|
98118
|
-
|
|
98119
|
-
|
|
98325
|
+
|
|
98326
|
+
|
|
98327
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
98328
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
98329
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
98330
|
+
|
|
98331
|
+
return {
|
|
98332
|
+
url: toPathString(localVarUrlObj),
|
|
98333
|
+
axiosOptions: localVarRequestOptions,
|
|
98334
|
+
};
|
|
98335
|
+
},
|
|
98336
|
+
/**
|
|
98337
|
+
* Returns a list of notification preferences for tenant.
|
|
98338
|
+
* @summary List notification preferences for tenant.
|
|
98339
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
98340
|
+
* @throws {RequiredError}
|
|
98341
|
+
*/
|
|
98342
|
+
getNotificationPreferences: async (axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
98343
|
+
const localVarPath = `/notification-preferences/{key}`;
|
|
98344
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
98345
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
98346
|
+
let baseOptions;
|
|
98347
|
+
if (configuration) {
|
|
98348
|
+
baseOptions = configuration.baseOptions;
|
|
98120
98349
|
}
|
|
98121
98350
|
|
|
98351
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
98352
|
+
const localVarHeaderParameter = {} as any;
|
|
98353
|
+
const localVarQueryParameter = {} as any;
|
|
98354
|
+
|
|
98355
|
+
// authentication userAuth required
|
|
98356
|
+
// oauth required
|
|
98357
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98358
|
+
|
|
98359
|
+
// authentication userAuth required
|
|
98360
|
+
// oauth required
|
|
98361
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98362
|
+
|
|
98122
98363
|
|
|
98123
98364
|
|
|
98124
|
-
if (xSailPointExperimental != null) {
|
|
98125
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
98126
|
-
}
|
|
98127
98365
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
98128
98366
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
98129
98367
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -98137,17 +98375,12 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98137
98375
|
* This gets a template that you have modified for your site by Id.
|
|
98138
98376
|
* @summary Get notification template by id
|
|
98139
98377
|
* @param {string} id Id of the Notification Template
|
|
98140
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98141
98378
|
* @param {*} [axiosOptions] Override http request option.
|
|
98142
98379
|
* @throws {RequiredError}
|
|
98143
98380
|
*/
|
|
98144
|
-
getNotificationTemplate: async (id: string,
|
|
98381
|
+
getNotificationTemplate: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
98145
98382
|
// verify required parameter 'id' is not null or undefined
|
|
98146
98383
|
assertParamExists('getNotificationTemplate', 'id', id)
|
|
98147
|
-
if (xSailPointExperimental === undefined) {
|
|
98148
|
-
xSailPointExperimental = 'true';
|
|
98149
|
-
}
|
|
98150
|
-
|
|
98151
98384
|
const localVarPath = `/notification-templates/{id}`
|
|
98152
98385
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
98153
98386
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -98163,17 +98396,14 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98163
98396
|
|
|
98164
98397
|
// authentication userAuth required
|
|
98165
98398
|
// oauth required
|
|
98166
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
98399
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98167
98400
|
|
|
98168
98401
|
// authentication userAuth required
|
|
98169
98402
|
// oauth required
|
|
98170
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
98403
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98171
98404
|
|
|
98172
98405
|
|
|
98173
98406
|
|
|
98174
|
-
if (xSailPointExperimental != null) {
|
|
98175
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
98176
|
-
}
|
|
98177
98407
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
98178
98408
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
98179
98409
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -98186,15 +98416,10 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98186
98416
|
/**
|
|
98187
98417
|
* 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).
|
|
98188
98418
|
* @summary Get notification template context
|
|
98189
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98190
98419
|
* @param {*} [axiosOptions] Override http request option.
|
|
98191
98420
|
* @throws {RequiredError}
|
|
98192
98421
|
*/
|
|
98193
|
-
getNotificationsTemplateContext: async (
|
|
98194
|
-
if (xSailPointExperimental === undefined) {
|
|
98195
|
-
xSailPointExperimental = 'true';
|
|
98196
|
-
}
|
|
98197
|
-
|
|
98422
|
+
getNotificationsTemplateContext: async (axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
98198
98423
|
const localVarPath = `/notification-template-context`;
|
|
98199
98424
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
98200
98425
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -98217,9 +98442,6 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98217
98442
|
|
|
98218
98443
|
|
|
98219
98444
|
|
|
98220
|
-
if (xSailPointExperimental != null) {
|
|
98221
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
98222
|
-
}
|
|
98223
98445
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
98224
98446
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
98225
98447
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -98235,17 +98457,12 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98235
98457
|
* @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.
|
|
98236
98458
|
* @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.
|
|
98237
98459
|
* @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.
|
|
98238
|
-
* @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,
|
|
98460
|
+
* @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*
|
|
98239
98461
|
* @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**
|
|
98240
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98241
98462
|
* @param {*} [axiosOptions] Override http request option.
|
|
98242
98463
|
* @throws {RequiredError}
|
|
98243
98464
|
*/
|
|
98244
|
-
listFromAddresses: async (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string,
|
|
98245
|
-
if (xSailPointExperimental === undefined) {
|
|
98246
|
-
xSailPointExperimental = 'true';
|
|
98247
|
-
}
|
|
98248
|
-
|
|
98465
|
+
listFromAddresses: async (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
98249
98466
|
const localVarPath = `/verified-from-addresses`;
|
|
98250
98467
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
98251
98468
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -98260,11 +98477,11 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98260
98477
|
|
|
98261
98478
|
// authentication userAuth required
|
|
98262
98479
|
// oauth required
|
|
98263
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
98480
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98264
98481
|
|
|
98265
98482
|
// authentication userAuth required
|
|
98266
98483
|
// oauth required
|
|
98267
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
98484
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98268
98485
|
|
|
98269
98486
|
if (limit !== undefined) {
|
|
98270
98487
|
localVarQueryParameter['limit'] = limit;
|
|
@@ -98288,55 +98505,6 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98288
98505
|
|
|
98289
98506
|
|
|
98290
98507
|
|
|
98291
|
-
if (xSailPointExperimental != null) {
|
|
98292
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
98293
|
-
}
|
|
98294
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
98295
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
98296
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
98297
|
-
|
|
98298
|
-
return {
|
|
98299
|
-
url: toPathString(localVarUrlObj),
|
|
98300
|
-
axiosOptions: localVarRequestOptions,
|
|
98301
|
-
};
|
|
98302
|
-
},
|
|
98303
|
-
/**
|
|
98304
|
-
* Returns a list of notification preferences for tenant.
|
|
98305
|
-
* @summary List notification preferences for tenant.
|
|
98306
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98307
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
98308
|
-
* @throws {RequiredError}
|
|
98309
|
-
*/
|
|
98310
|
-
listNotificationPreferences: async (xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
98311
|
-
if (xSailPointExperimental === undefined) {
|
|
98312
|
-
xSailPointExperimental = 'true';
|
|
98313
|
-
}
|
|
98314
|
-
|
|
98315
|
-
const localVarPath = `/notification-preferences/{key}`;
|
|
98316
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
98317
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
98318
|
-
let baseOptions;
|
|
98319
|
-
if (configuration) {
|
|
98320
|
-
baseOptions = configuration.baseOptions;
|
|
98321
|
-
}
|
|
98322
|
-
|
|
98323
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
98324
|
-
const localVarHeaderParameter = {} as any;
|
|
98325
|
-
const localVarQueryParameter = {} as any;
|
|
98326
|
-
|
|
98327
|
-
// authentication userAuth required
|
|
98328
|
-
// oauth required
|
|
98329
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98330
|
-
|
|
98331
|
-
// authentication userAuth required
|
|
98332
|
-
// oauth required
|
|
98333
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98334
|
-
|
|
98335
|
-
|
|
98336
|
-
|
|
98337
|
-
if (xSailPointExperimental != null) {
|
|
98338
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
98339
|
-
}
|
|
98340
98508
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
98341
98509
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
98342
98510
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -98352,15 +98520,10 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98352
98520
|
* @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.
|
|
98353
98521
|
* @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.
|
|
98354
98522
|
* @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*
|
|
98355
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98356
98523
|
* @param {*} [axiosOptions] Override http request option.
|
|
98357
98524
|
* @throws {RequiredError}
|
|
98358
98525
|
*/
|
|
98359
|
-
listNotificationTemplateDefaults: async (limit?: number, offset?: number, filters?: string,
|
|
98360
|
-
if (xSailPointExperimental === undefined) {
|
|
98361
|
-
xSailPointExperimental = 'true';
|
|
98362
|
-
}
|
|
98363
|
-
|
|
98526
|
+
listNotificationTemplateDefaults: async (limit?: number, offset?: number, filters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
98364
98527
|
const localVarPath = `/notification-template-defaults`;
|
|
98365
98528
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
98366
98529
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -98395,9 +98558,6 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98395
98558
|
|
|
98396
98559
|
|
|
98397
98560
|
|
|
98398
|
-
if (xSailPointExperimental != null) {
|
|
98399
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
98400
|
-
}
|
|
98401
98561
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
98402
98562
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
98403
98563
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -98414,15 +98574,10 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98414
98574
|
* @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.
|
|
98415
98575
|
* @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*
|
|
98416
98576
|
* @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**
|
|
98417
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98418
98577
|
* @param {*} [axiosOptions] Override http request option.
|
|
98419
98578
|
* @throws {RequiredError}
|
|
98420
98579
|
*/
|
|
98421
|
-
listNotificationTemplates: async (limit?: number, offset?: number, filters?: string, sorters?: string,
|
|
98422
|
-
if (xSailPointExperimental === undefined) {
|
|
98423
|
-
xSailPointExperimental = 'true';
|
|
98424
|
-
}
|
|
98425
|
-
|
|
98580
|
+
listNotificationTemplates: async (limit?: number, offset?: number, filters?: string, sorters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
98426
98581
|
const localVarPath = `/notification-templates`;
|
|
98427
98582
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
98428
98583
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -98461,9 +98616,6 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98461
98616
|
|
|
98462
98617
|
|
|
98463
98618
|
|
|
98464
|
-
if (xSailPointExperimental != null) {
|
|
98465
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
98466
|
-
}
|
|
98467
98619
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
98468
98620
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
98469
98621
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -98477,17 +98629,12 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98477
98629
|
* 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
|
|
98478
98630
|
* @summary Change mail from domain
|
|
98479
98631
|
* @param {MailFromAttributesDtoV2024} mailFromAttributesDtoV2024
|
|
98480
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98481
98632
|
* @param {*} [axiosOptions] Override http request option.
|
|
98482
98633
|
* @throws {RequiredError}
|
|
98483
98634
|
*/
|
|
98484
|
-
putMailFromAttributes: async (mailFromAttributesDtoV2024: MailFromAttributesDtoV2024,
|
|
98635
|
+
putMailFromAttributes: async (mailFromAttributesDtoV2024: MailFromAttributesDtoV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
98485
98636
|
// verify required parameter 'mailFromAttributesDtoV2024' is not null or undefined
|
|
98486
98637
|
assertParamExists('putMailFromAttributes', 'mailFromAttributesDtoV2024', mailFromAttributesDtoV2024)
|
|
98487
|
-
if (xSailPointExperimental === undefined) {
|
|
98488
|
-
xSailPointExperimental = 'true';
|
|
98489
|
-
}
|
|
98490
|
-
|
|
98491
98638
|
const localVarPath = `/mail-from-attributes`;
|
|
98492
98639
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
98493
98640
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -98512,9 +98659,6 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98512
98659
|
|
|
98513
98660
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
98514
98661
|
|
|
98515
|
-
if (xSailPointExperimental != null) {
|
|
98516
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
98517
|
-
}
|
|
98518
98662
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
98519
98663
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
98520
98664
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -98529,17 +98673,12 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98529
98673
|
* Send a Test Notification
|
|
98530
98674
|
* @summary Send test notification
|
|
98531
98675
|
* @param {SendTestNotificationRequestDtoV2024} sendTestNotificationRequestDtoV2024
|
|
98532
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98533
98676
|
* @param {*} [axiosOptions] Override http request option.
|
|
98534
98677
|
* @throws {RequiredError}
|
|
98535
98678
|
*/
|
|
98536
|
-
sendTestNotification: async (sendTestNotificationRequestDtoV2024: SendTestNotificationRequestDtoV2024,
|
|
98679
|
+
sendTestNotification: async (sendTestNotificationRequestDtoV2024: SendTestNotificationRequestDtoV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
98537
98680
|
// verify required parameter 'sendTestNotificationRequestDtoV2024' is not null or undefined
|
|
98538
98681
|
assertParamExists('sendTestNotification', 'sendTestNotificationRequestDtoV2024', sendTestNotificationRequestDtoV2024)
|
|
98539
|
-
if (xSailPointExperimental === undefined) {
|
|
98540
|
-
xSailPointExperimental = 'true';
|
|
98541
|
-
}
|
|
98542
|
-
|
|
98543
98682
|
const localVarPath = `/send-test-notification`;
|
|
98544
98683
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
98545
98684
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -98554,19 +98693,16 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98554
98693
|
|
|
98555
98694
|
// authentication userAuth required
|
|
98556
98695
|
// oauth required
|
|
98557
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
98696
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98558
98697
|
|
|
98559
98698
|
// authentication userAuth required
|
|
98560
98699
|
// oauth required
|
|
98561
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
98700
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98562
98701
|
|
|
98563
98702
|
|
|
98564
98703
|
|
|
98565
98704
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
98566
98705
|
|
|
98567
|
-
if (xSailPointExperimental != null) {
|
|
98568
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
98569
|
-
}
|
|
98570
98706
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
98571
98707
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
98572
98708
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -98591,12 +98727,11 @@ export const NotificationsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
98591
98727
|
* Create a domain to be verified via DKIM (DomainKeys Identified Mail)
|
|
98592
98728
|
* @summary Verify domain address via dkim
|
|
98593
98729
|
* @param {DomainAddressV2024} domainAddressV2024
|
|
98594
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98595
98730
|
* @param {*} [axiosOptions] Override http request option.
|
|
98596
98731
|
* @throws {RequiredError}
|
|
98597
98732
|
*/
|
|
98598
|
-
async createDomainDkim(domainAddressV2024: DomainAddressV2024,
|
|
98599
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createDomainDkim(domainAddressV2024,
|
|
98733
|
+
async createDomainDkim(domainAddressV2024: DomainAddressV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DomainStatusDtoV2024>> {
|
|
98734
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createDomainDkim(domainAddressV2024, axiosOptions);
|
|
98600
98735
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
98601
98736
|
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.createDomainDkim']?.[localVarOperationServerIndex]?.url;
|
|
98602
98737
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -98605,12 +98740,11 @@ export const NotificationsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
98605
98740
|
* 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.
|
|
98606
98741
|
* @summary Create notification template
|
|
98607
98742
|
* @param {TemplateDtoV2024} templateDtoV2024
|
|
98608
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98609
98743
|
* @param {*} [axiosOptions] Override http request option.
|
|
98610
98744
|
* @throws {RequiredError}
|
|
98611
98745
|
*/
|
|
98612
|
-
async createNotificationTemplate(templateDtoV2024: TemplateDtoV2024,
|
|
98613
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createNotificationTemplate(templateDtoV2024,
|
|
98746
|
+
async createNotificationTemplate(templateDtoV2024: TemplateDtoV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TemplateDtoV2024>> {
|
|
98747
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createNotificationTemplate(templateDtoV2024, axiosOptions);
|
|
98614
98748
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
98615
98749
|
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.createNotificationTemplate']?.[localVarOperationServerIndex]?.url;
|
|
98616
98750
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -98619,26 +98753,24 @@ export const NotificationsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
98619
98753
|
* Create a new sender email address and initiate verification process.
|
|
98620
98754
|
* @summary Create verified from address
|
|
98621
98755
|
* @param {EmailStatusDtoV2024} emailStatusDtoV2024
|
|
98622
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98623
98756
|
* @param {*} [axiosOptions] Override http request option.
|
|
98624
98757
|
* @throws {RequiredError}
|
|
98625
98758
|
*/
|
|
98626
|
-
async createVerifiedFromAddress(emailStatusDtoV2024: EmailStatusDtoV2024,
|
|
98627
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createVerifiedFromAddress(emailStatusDtoV2024,
|
|
98759
|
+
async createVerifiedFromAddress(emailStatusDtoV2024: EmailStatusDtoV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailStatusDtoV2024>> {
|
|
98760
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createVerifiedFromAddress(emailStatusDtoV2024, axiosOptions);
|
|
98628
98761
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
98629
98762
|
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.createVerifiedFromAddress']?.[localVarOperationServerIndex]?.url;
|
|
98630
98763
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
98631
98764
|
},
|
|
98632
98765
|
/**
|
|
98633
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
98766
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
98634
98767
|
* @summary Bulk delete notification templates
|
|
98635
98768
|
* @param {Array<TemplateBulkDeleteDtoV2024>} templateBulkDeleteDtoV2024
|
|
98636
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98637
98769
|
* @param {*} [axiosOptions] Override http request option.
|
|
98638
98770
|
* @throws {RequiredError}
|
|
98639
98771
|
*/
|
|
98640
|
-
async deleteNotificationTemplatesInBulk(templateBulkDeleteDtoV2024: Array<TemplateBulkDeleteDtoV2024>,
|
|
98641
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteNotificationTemplatesInBulk(templateBulkDeleteDtoV2024,
|
|
98772
|
+
async deleteNotificationTemplatesInBulk(templateBulkDeleteDtoV2024: Array<TemplateBulkDeleteDtoV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
98773
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteNotificationTemplatesInBulk(templateBulkDeleteDtoV2024, axiosOptions);
|
|
98642
98774
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
98643
98775
|
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.deleteNotificationTemplatesInBulk']?.[localVarOperationServerIndex]?.url;
|
|
98644
98776
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -98646,13 +98778,12 @@ export const NotificationsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
98646
98778
|
/**
|
|
98647
98779
|
* Delete a verified sender email address
|
|
98648
98780
|
* @summary Delete verified from address
|
|
98649
|
-
* @param {string} id
|
|
98650
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98781
|
+
* @param {string} id Unique identifier of the verified sender address to delete.
|
|
98651
98782
|
* @param {*} [axiosOptions] Override http request option.
|
|
98652
98783
|
* @throws {RequiredError}
|
|
98653
98784
|
*/
|
|
98654
|
-
async deleteVerifiedFromAddress(id: string,
|
|
98655
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVerifiedFromAddress(id,
|
|
98785
|
+
async deleteVerifiedFromAddress(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
98786
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVerifiedFromAddress(id, axiosOptions);
|
|
98656
98787
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
98657
98788
|
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.deleteVerifiedFromAddress']?.[localVarOperationServerIndex]?.url;
|
|
98658
98789
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -98660,12 +98791,13 @@ export const NotificationsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
98660
98791
|
/**
|
|
98661
98792
|
* Retrieve DKIM (DomainKeys Identified Mail) attributes for all your tenants\' AWS SES identities. Limits retrieval to 100 identities per call.
|
|
98662
98793
|
* @summary Get dkim attributes
|
|
98663
|
-
* @param {
|
|
98794
|
+
* @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.
|
|
98795
|
+
* @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.
|
|
98664
98796
|
* @param {*} [axiosOptions] Override http request option.
|
|
98665
98797
|
* @throws {RequiredError}
|
|
98666
98798
|
*/
|
|
98667
|
-
async getDkimAttributes(
|
|
98668
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getDkimAttributes(
|
|
98799
|
+
async getDkimAttributes(limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DkimAttributesV2024>>> {
|
|
98800
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getDkimAttributes(limit, offset, axiosOptions);
|
|
98669
98801
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
98670
98802
|
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.getDkimAttributes']?.[localVarOperationServerIndex]?.url;
|
|
98671
98803
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -98673,27 +98805,37 @@ export const NotificationsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
98673
98805
|
/**
|
|
98674
98806
|
* Retrieve MAIL FROM attributes for a given AWS SES identity.
|
|
98675
98807
|
* @summary Get mail from attributes
|
|
98676
|
-
* @param {string}
|
|
98677
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98808
|
+
* @param {string} identity Returns the MX and TXT record to be put in your DNS, as well as the MAIL FROM domain status
|
|
98678
98809
|
* @param {*} [axiosOptions] Override http request option.
|
|
98679
98810
|
* @throws {RequiredError}
|
|
98680
98811
|
*/
|
|
98681
|
-
async getMailFromAttributes(
|
|
98682
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getMailFromAttributes(
|
|
98812
|
+
async getMailFromAttributes(identity: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MailFromAttributesV2024>> {
|
|
98813
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getMailFromAttributes(identity, axiosOptions);
|
|
98683
98814
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
98684
98815
|
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.getMailFromAttributes']?.[localVarOperationServerIndex]?.url;
|
|
98685
98816
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
98686
98817
|
},
|
|
98818
|
+
/**
|
|
98819
|
+
* Returns a list of notification preferences for tenant.
|
|
98820
|
+
* @summary List notification preferences for tenant.
|
|
98821
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
98822
|
+
* @throws {RequiredError}
|
|
98823
|
+
*/
|
|
98824
|
+
async getNotificationPreferences(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PreferencesDtoV2024>> {
|
|
98825
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getNotificationPreferences(axiosOptions);
|
|
98826
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
98827
|
+
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.getNotificationPreferences']?.[localVarOperationServerIndex]?.url;
|
|
98828
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
98829
|
+
},
|
|
98687
98830
|
/**
|
|
98688
98831
|
* This gets a template that you have modified for your site by Id.
|
|
98689
98832
|
* @summary Get notification template by id
|
|
98690
98833
|
* @param {string} id Id of the Notification Template
|
|
98691
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98692
98834
|
* @param {*} [axiosOptions] Override http request option.
|
|
98693
98835
|
* @throws {RequiredError}
|
|
98694
98836
|
*/
|
|
98695
|
-
async getNotificationTemplate(id: string,
|
|
98696
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getNotificationTemplate(id,
|
|
98837
|
+
async getNotificationTemplate(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TemplateDtoV2024>> {
|
|
98838
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getNotificationTemplate(id, axiosOptions);
|
|
98697
98839
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
98698
98840
|
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.getNotificationTemplate']?.[localVarOperationServerIndex]?.url;
|
|
98699
98841
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -98701,12 +98843,11 @@ export const NotificationsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
98701
98843
|
/**
|
|
98702
98844
|
* 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).
|
|
98703
98845
|
* @summary Get notification template context
|
|
98704
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98705
98846
|
* @param {*} [axiosOptions] Override http request option.
|
|
98706
98847
|
* @throws {RequiredError}
|
|
98707
98848
|
*/
|
|
98708
|
-
async getNotificationsTemplateContext(
|
|
98709
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getNotificationsTemplateContext(
|
|
98849
|
+
async getNotificationsTemplateContext(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NotificationTemplateContextV2024>> {
|
|
98850
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getNotificationsTemplateContext(axiosOptions);
|
|
98710
98851
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
98711
98852
|
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.getNotificationsTemplateContext']?.[localVarOperationServerIndex]?.url;
|
|
98712
98853
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -98717,43 +98858,28 @@ export const NotificationsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
98717
98858
|
* @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.
|
|
98718
98859
|
* @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.
|
|
98719
98860
|
* @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.
|
|
98720
|
-
* @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,
|
|
98861
|
+
* @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*
|
|
98721
98862
|
* @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**
|
|
98722
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98723
98863
|
* @param {*} [axiosOptions] Override http request option.
|
|
98724
98864
|
* @throws {RequiredError}
|
|
98725
98865
|
*/
|
|
98726
|
-
async listFromAddresses(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string,
|
|
98727
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listFromAddresses(limit, offset, count, filters, sorters,
|
|
98866
|
+
async listFromAddresses(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EmailStatusDtoV2024>>> {
|
|
98867
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listFromAddresses(limit, offset, count, filters, sorters, axiosOptions);
|
|
98728
98868
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
98729
98869
|
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.listFromAddresses']?.[localVarOperationServerIndex]?.url;
|
|
98730
98870
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
98731
98871
|
},
|
|
98732
|
-
/**
|
|
98733
|
-
* Returns a list of notification preferences for tenant.
|
|
98734
|
-
* @summary List notification preferences for tenant.
|
|
98735
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98736
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
98737
|
-
* @throws {RequiredError}
|
|
98738
|
-
*/
|
|
98739
|
-
async listNotificationPreferences(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PreferencesDtoV2024>> {
|
|
98740
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listNotificationPreferences(xSailPointExperimental, axiosOptions);
|
|
98741
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
98742
|
-
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.listNotificationPreferences']?.[localVarOperationServerIndex]?.url;
|
|
98743
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
98744
|
-
},
|
|
98745
98872
|
/**
|
|
98746
98873
|
* This lists the default templates used for notifications, such as emails from IdentityNow.
|
|
98747
98874
|
* @summary List notification template defaults
|
|
98748
98875
|
* @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.
|
|
98749
98876
|
* @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.
|
|
98750
98877
|
* @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*
|
|
98751
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98752
98878
|
* @param {*} [axiosOptions] Override http request option.
|
|
98753
98879
|
* @throws {RequiredError}
|
|
98754
98880
|
*/
|
|
98755
|
-
async listNotificationTemplateDefaults(limit?: number, offset?: number, filters?: string,
|
|
98756
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listNotificationTemplateDefaults(limit, offset, filters,
|
|
98881
|
+
async listNotificationTemplateDefaults(limit?: number, offset?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TemplateDtoDefaultV2024>>> {
|
|
98882
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listNotificationTemplateDefaults(limit, offset, filters, axiosOptions);
|
|
98757
98883
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
98758
98884
|
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.listNotificationTemplateDefaults']?.[localVarOperationServerIndex]?.url;
|
|
98759
98885
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -98765,12 +98891,11 @@ export const NotificationsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
98765
98891
|
* @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.
|
|
98766
98892
|
* @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*
|
|
98767
98893
|
* @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**
|
|
98768
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98769
98894
|
* @param {*} [axiosOptions] Override http request option.
|
|
98770
98895
|
* @throws {RequiredError}
|
|
98771
98896
|
*/
|
|
98772
|
-
async listNotificationTemplates(limit?: number, offset?: number, filters?: string, sorters?: string,
|
|
98773
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listNotificationTemplates(limit, offset, filters, sorters,
|
|
98897
|
+
async listNotificationTemplates(limit?: number, offset?: number, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TemplateDtoV2024>>> {
|
|
98898
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listNotificationTemplates(limit, offset, filters, sorters, axiosOptions);
|
|
98774
98899
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
98775
98900
|
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.listNotificationTemplates']?.[localVarOperationServerIndex]?.url;
|
|
98776
98901
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -98779,12 +98904,11 @@ export const NotificationsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
98779
98904
|
* 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
|
|
98780
98905
|
* @summary Change mail from domain
|
|
98781
98906
|
* @param {MailFromAttributesDtoV2024} mailFromAttributesDtoV2024
|
|
98782
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98783
98907
|
* @param {*} [axiosOptions] Override http request option.
|
|
98784
98908
|
* @throws {RequiredError}
|
|
98785
98909
|
*/
|
|
98786
|
-
async putMailFromAttributes(mailFromAttributesDtoV2024: MailFromAttributesDtoV2024,
|
|
98787
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.putMailFromAttributes(mailFromAttributesDtoV2024,
|
|
98910
|
+
async putMailFromAttributes(mailFromAttributesDtoV2024: MailFromAttributesDtoV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MailFromAttributesV2024>> {
|
|
98911
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.putMailFromAttributes(mailFromAttributesDtoV2024, axiosOptions);
|
|
98788
98912
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
98789
98913
|
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.putMailFromAttributes']?.[localVarOperationServerIndex]?.url;
|
|
98790
98914
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -98793,12 +98917,11 @@ export const NotificationsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
98793
98917
|
* Send a Test Notification
|
|
98794
98918
|
* @summary Send test notification
|
|
98795
98919
|
* @param {SendTestNotificationRequestDtoV2024} sendTestNotificationRequestDtoV2024
|
|
98796
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98797
98920
|
* @param {*} [axiosOptions] Override http request option.
|
|
98798
98921
|
* @throws {RequiredError}
|
|
98799
98922
|
*/
|
|
98800
|
-
async sendTestNotification(sendTestNotificationRequestDtoV2024: SendTestNotificationRequestDtoV2024,
|
|
98801
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.sendTestNotification(sendTestNotificationRequestDtoV2024,
|
|
98923
|
+
async sendTestNotification(sendTestNotificationRequestDtoV2024: SendTestNotificationRequestDtoV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
98924
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.sendTestNotification(sendTestNotificationRequestDtoV2024, axiosOptions);
|
|
98802
98925
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
98803
98926
|
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.sendTestNotification']?.[localVarOperationServerIndex]?.url;
|
|
98804
98927
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -98821,7 +98944,7 @@ export const NotificationsV2024ApiFactory = function (configuration?: Configurat
|
|
|
98821
98944
|
* @throws {RequiredError}
|
|
98822
98945
|
*/
|
|
98823
98946
|
createDomainDkim(requestParameters: NotificationsV2024ApiCreateDomainDkimRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DomainStatusDtoV2024> {
|
|
98824
|
-
return localVarFp.createDomainDkim(requestParameters.domainAddressV2024,
|
|
98947
|
+
return localVarFp.createDomainDkim(requestParameters.domainAddressV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
98825
98948
|
},
|
|
98826
98949
|
/**
|
|
98827
98950
|
* 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.
|
|
@@ -98831,7 +98954,7 @@ export const NotificationsV2024ApiFactory = function (configuration?: Configurat
|
|
|
98831
98954
|
* @throws {RequiredError}
|
|
98832
98955
|
*/
|
|
98833
98956
|
createNotificationTemplate(requestParameters: NotificationsV2024ApiCreateNotificationTemplateRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TemplateDtoV2024> {
|
|
98834
|
-
return localVarFp.createNotificationTemplate(requestParameters.templateDtoV2024,
|
|
98957
|
+
return localVarFp.createNotificationTemplate(requestParameters.templateDtoV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
98835
98958
|
},
|
|
98836
98959
|
/**
|
|
98837
98960
|
* Create a new sender email address and initiate verification process.
|
|
@@ -98841,17 +98964,17 @@ export const NotificationsV2024ApiFactory = function (configuration?: Configurat
|
|
|
98841
98964
|
* @throws {RequiredError}
|
|
98842
98965
|
*/
|
|
98843
98966
|
createVerifiedFromAddress(requestParameters: NotificationsV2024ApiCreateVerifiedFromAddressRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EmailStatusDtoV2024> {
|
|
98844
|
-
return localVarFp.createVerifiedFromAddress(requestParameters.emailStatusDtoV2024,
|
|
98967
|
+
return localVarFp.createVerifiedFromAddress(requestParameters.emailStatusDtoV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
98845
98968
|
},
|
|
98846
98969
|
/**
|
|
98847
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
98970
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
98848
98971
|
* @summary Bulk delete notification templates
|
|
98849
98972
|
* @param {NotificationsV2024ApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
|
|
98850
98973
|
* @param {*} [axiosOptions] Override http request option.
|
|
98851
98974
|
* @throws {RequiredError}
|
|
98852
98975
|
*/
|
|
98853
98976
|
deleteNotificationTemplatesInBulk(requestParameters: NotificationsV2024ApiDeleteNotificationTemplatesInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
98854
|
-
return localVarFp.deleteNotificationTemplatesInBulk(requestParameters.templateBulkDeleteDtoV2024,
|
|
98977
|
+
return localVarFp.deleteNotificationTemplatesInBulk(requestParameters.templateBulkDeleteDtoV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
98855
98978
|
},
|
|
98856
98979
|
/**
|
|
98857
98980
|
* Delete a verified sender email address
|
|
@@ -98861,7 +98984,7 @@ export const NotificationsV2024ApiFactory = function (configuration?: Configurat
|
|
|
98861
98984
|
* @throws {RequiredError}
|
|
98862
98985
|
*/
|
|
98863
98986
|
deleteVerifiedFromAddress(requestParameters: NotificationsV2024ApiDeleteVerifiedFromAddressRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
98864
|
-
return localVarFp.deleteVerifiedFromAddress(requestParameters.id,
|
|
98987
|
+
return localVarFp.deleteVerifiedFromAddress(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
98865
98988
|
},
|
|
98866
98989
|
/**
|
|
98867
98990
|
* Retrieve DKIM (DomainKeys Identified Mail) attributes for all your tenants\' AWS SES identities. Limits retrieval to 100 identities per call.
|
|
@@ -98871,7 +98994,7 @@ export const NotificationsV2024ApiFactory = function (configuration?: Configurat
|
|
|
98871
98994
|
* @throws {RequiredError}
|
|
98872
98995
|
*/
|
|
98873
98996
|
getDkimAttributes(requestParameters: NotificationsV2024ApiGetDkimAttributesRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<DkimAttributesV2024>> {
|
|
98874
|
-
return localVarFp.getDkimAttributes(requestParameters.
|
|
98997
|
+
return localVarFp.getDkimAttributes(requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(axios, basePath));
|
|
98875
98998
|
},
|
|
98876
98999
|
/**
|
|
98877
99000
|
* Retrieve MAIL FROM attributes for a given AWS SES identity.
|
|
@@ -98881,7 +99004,16 @@ export const NotificationsV2024ApiFactory = function (configuration?: Configurat
|
|
|
98881
99004
|
* @throws {RequiredError}
|
|
98882
99005
|
*/
|
|
98883
99006
|
getMailFromAttributes(requestParameters: NotificationsV2024ApiGetMailFromAttributesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MailFromAttributesV2024> {
|
|
98884
|
-
return localVarFp.getMailFromAttributes(requestParameters.
|
|
99007
|
+
return localVarFp.getMailFromAttributes(requestParameters.identity, axiosOptions).then((request) => request(axios, basePath));
|
|
99008
|
+
},
|
|
99009
|
+
/**
|
|
99010
|
+
* Returns a list of notification preferences for tenant.
|
|
99011
|
+
* @summary List notification preferences for tenant.
|
|
99012
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
99013
|
+
* @throws {RequiredError}
|
|
99014
|
+
*/
|
|
99015
|
+
getNotificationPreferences(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<PreferencesDtoV2024> {
|
|
99016
|
+
return localVarFp.getNotificationPreferences(axiosOptions).then((request) => request(axios, basePath));
|
|
98885
99017
|
},
|
|
98886
99018
|
/**
|
|
98887
99019
|
* This gets a template that you have modified for your site by Id.
|
|
@@ -98891,17 +99023,16 @@ export const NotificationsV2024ApiFactory = function (configuration?: Configurat
|
|
|
98891
99023
|
* @throws {RequiredError}
|
|
98892
99024
|
*/
|
|
98893
99025
|
getNotificationTemplate(requestParameters: NotificationsV2024ApiGetNotificationTemplateRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TemplateDtoV2024> {
|
|
98894
|
-
return localVarFp.getNotificationTemplate(requestParameters.id,
|
|
99026
|
+
return localVarFp.getNotificationTemplate(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
98895
99027
|
},
|
|
98896
99028
|
/**
|
|
98897
99029
|
* 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).
|
|
98898
99030
|
* @summary Get notification template context
|
|
98899
|
-
* @param {NotificationsV2024ApiGetNotificationsTemplateContextRequest} requestParameters Request parameters.
|
|
98900
99031
|
* @param {*} [axiosOptions] Override http request option.
|
|
98901
99032
|
* @throws {RequiredError}
|
|
98902
99033
|
*/
|
|
98903
|
-
getNotificationsTemplateContext(
|
|
98904
|
-
return localVarFp.getNotificationsTemplateContext(
|
|
99034
|
+
getNotificationsTemplateContext(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NotificationTemplateContextV2024> {
|
|
99035
|
+
return localVarFp.getNotificationsTemplateContext(axiosOptions).then((request) => request(axios, basePath));
|
|
98905
99036
|
},
|
|
98906
99037
|
/**
|
|
98907
99038
|
* Retrieve a list of sender email addresses and their verification statuses
|
|
@@ -98911,17 +99042,7 @@ export const NotificationsV2024ApiFactory = function (configuration?: Configurat
|
|
|
98911
99042
|
* @throws {RequiredError}
|
|
98912
99043
|
*/
|
|
98913
99044
|
listFromAddresses(requestParameters: NotificationsV2024ApiListFromAddressesRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EmailStatusDtoV2024>> {
|
|
98914
|
-
return localVarFp.listFromAddresses(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters,
|
|
98915
|
-
},
|
|
98916
|
-
/**
|
|
98917
|
-
* Returns a list of notification preferences for tenant.
|
|
98918
|
-
* @summary List notification preferences for tenant.
|
|
98919
|
-
* @param {NotificationsV2024ApiListNotificationPreferencesRequest} requestParameters Request parameters.
|
|
98920
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
98921
|
-
* @throws {RequiredError}
|
|
98922
|
-
*/
|
|
98923
|
-
listNotificationPreferences(requestParameters: NotificationsV2024ApiListNotificationPreferencesRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<PreferencesDtoV2024> {
|
|
98924
|
-
return localVarFp.listNotificationPreferences(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
99045
|
+
return localVarFp.listFromAddresses(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(axios, basePath));
|
|
98925
99046
|
},
|
|
98926
99047
|
/**
|
|
98927
99048
|
* This lists the default templates used for notifications, such as emails from IdentityNow.
|
|
@@ -98931,7 +99052,7 @@ export const NotificationsV2024ApiFactory = function (configuration?: Configurat
|
|
|
98931
99052
|
* @throws {RequiredError}
|
|
98932
99053
|
*/
|
|
98933
99054
|
listNotificationTemplateDefaults(requestParameters: NotificationsV2024ApiListNotificationTemplateDefaultsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TemplateDtoDefaultV2024>> {
|
|
98934
|
-
return localVarFp.listNotificationTemplateDefaults(requestParameters.limit, requestParameters.offset, requestParameters.filters,
|
|
99055
|
+
return localVarFp.listNotificationTemplateDefaults(requestParameters.limit, requestParameters.offset, requestParameters.filters, axiosOptions).then((request) => request(axios, basePath));
|
|
98935
99056
|
},
|
|
98936
99057
|
/**
|
|
98937
99058
|
* This lists the templates that you have modified for your site.
|
|
@@ -98941,7 +99062,7 @@ export const NotificationsV2024ApiFactory = function (configuration?: Configurat
|
|
|
98941
99062
|
* @throws {RequiredError}
|
|
98942
99063
|
*/
|
|
98943
99064
|
listNotificationTemplates(requestParameters: NotificationsV2024ApiListNotificationTemplatesRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TemplateDtoV2024>> {
|
|
98944
|
-
return localVarFp.listNotificationTemplates(requestParameters.limit, requestParameters.offset, requestParameters.filters, requestParameters.sorters,
|
|
99065
|
+
return localVarFp.listNotificationTemplates(requestParameters.limit, requestParameters.offset, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(axios, basePath));
|
|
98945
99066
|
},
|
|
98946
99067
|
/**
|
|
98947
99068
|
* 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
|
|
@@ -98951,7 +99072,7 @@ export const NotificationsV2024ApiFactory = function (configuration?: Configurat
|
|
|
98951
99072
|
* @throws {RequiredError}
|
|
98952
99073
|
*/
|
|
98953
99074
|
putMailFromAttributes(requestParameters: NotificationsV2024ApiPutMailFromAttributesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MailFromAttributesV2024> {
|
|
98954
|
-
return localVarFp.putMailFromAttributes(requestParameters.mailFromAttributesDtoV2024,
|
|
99075
|
+
return localVarFp.putMailFromAttributes(requestParameters.mailFromAttributesDtoV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
98955
99076
|
},
|
|
98956
99077
|
/**
|
|
98957
99078
|
* Send a Test Notification
|
|
@@ -98961,7 +99082,7 @@ export const NotificationsV2024ApiFactory = function (configuration?: Configurat
|
|
|
98961
99082
|
* @throws {RequiredError}
|
|
98962
99083
|
*/
|
|
98963
99084
|
sendTestNotification(requestParameters: NotificationsV2024ApiSendTestNotificationRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
98964
|
-
return localVarFp.sendTestNotification(requestParameters.sendTestNotificationRequestDtoV2024,
|
|
99085
|
+
return localVarFp.sendTestNotification(requestParameters.sendTestNotificationRequestDtoV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
98965
99086
|
},
|
|
98966
99087
|
};
|
|
98967
99088
|
};
|
|
@@ -98978,13 +99099,6 @@ export interface NotificationsV2024ApiCreateDomainDkimRequest {
|
|
|
98978
99099
|
* @memberof NotificationsV2024ApiCreateDomainDkim
|
|
98979
99100
|
*/
|
|
98980
99101
|
readonly domainAddressV2024: DomainAddressV2024
|
|
98981
|
-
|
|
98982
|
-
/**
|
|
98983
|
-
* Use this header to enable this experimental API.
|
|
98984
|
-
* @type {string}
|
|
98985
|
-
* @memberof NotificationsV2024ApiCreateDomainDkim
|
|
98986
|
-
*/
|
|
98987
|
-
readonly xSailPointExperimental?: string
|
|
98988
99102
|
}
|
|
98989
99103
|
|
|
98990
99104
|
/**
|
|
@@ -98999,13 +99113,6 @@ export interface NotificationsV2024ApiCreateNotificationTemplateRequest {
|
|
|
98999
99113
|
* @memberof NotificationsV2024ApiCreateNotificationTemplate
|
|
99000
99114
|
*/
|
|
99001
99115
|
readonly templateDtoV2024: TemplateDtoV2024
|
|
99002
|
-
|
|
99003
|
-
/**
|
|
99004
|
-
* Use this header to enable this experimental API.
|
|
99005
|
-
* @type {string}
|
|
99006
|
-
* @memberof NotificationsV2024ApiCreateNotificationTemplate
|
|
99007
|
-
*/
|
|
99008
|
-
readonly xSailPointExperimental?: string
|
|
99009
99116
|
}
|
|
99010
99117
|
|
|
99011
99118
|
/**
|
|
@@ -99020,13 +99127,6 @@ export interface NotificationsV2024ApiCreateVerifiedFromAddressRequest {
|
|
|
99020
99127
|
* @memberof NotificationsV2024ApiCreateVerifiedFromAddress
|
|
99021
99128
|
*/
|
|
99022
99129
|
readonly emailStatusDtoV2024: EmailStatusDtoV2024
|
|
99023
|
-
|
|
99024
|
-
/**
|
|
99025
|
-
* Use this header to enable this experimental API.
|
|
99026
|
-
* @type {string}
|
|
99027
|
-
* @memberof NotificationsV2024ApiCreateVerifiedFromAddress
|
|
99028
|
-
*/
|
|
99029
|
-
readonly xSailPointExperimental?: string
|
|
99030
99130
|
}
|
|
99031
99131
|
|
|
99032
99132
|
/**
|
|
@@ -99041,13 +99141,6 @@ export interface NotificationsV2024ApiDeleteNotificationTemplatesInBulkRequest {
|
|
|
99041
99141
|
* @memberof NotificationsV2024ApiDeleteNotificationTemplatesInBulk
|
|
99042
99142
|
*/
|
|
99043
99143
|
readonly templateBulkDeleteDtoV2024: Array<TemplateBulkDeleteDtoV2024>
|
|
99044
|
-
|
|
99045
|
-
/**
|
|
99046
|
-
* Use this header to enable this experimental API.
|
|
99047
|
-
* @type {string}
|
|
99048
|
-
* @memberof NotificationsV2024ApiDeleteNotificationTemplatesInBulk
|
|
99049
|
-
*/
|
|
99050
|
-
readonly xSailPointExperimental?: string
|
|
99051
99144
|
}
|
|
99052
99145
|
|
|
99053
99146
|
/**
|
|
@@ -99057,18 +99150,11 @@ export interface NotificationsV2024ApiDeleteNotificationTemplatesInBulkRequest {
|
|
|
99057
99150
|
*/
|
|
99058
99151
|
export interface NotificationsV2024ApiDeleteVerifiedFromAddressRequest {
|
|
99059
99152
|
/**
|
|
99060
|
-
*
|
|
99153
|
+
* Unique identifier of the verified sender address to delete.
|
|
99061
99154
|
* @type {string}
|
|
99062
99155
|
* @memberof NotificationsV2024ApiDeleteVerifiedFromAddress
|
|
99063
99156
|
*/
|
|
99064
99157
|
readonly id: string
|
|
99065
|
-
|
|
99066
|
-
/**
|
|
99067
|
-
* Use this header to enable this experimental API.
|
|
99068
|
-
* @type {string}
|
|
99069
|
-
* @memberof NotificationsV2024ApiDeleteVerifiedFromAddress
|
|
99070
|
-
*/
|
|
99071
|
-
readonly xSailPointExperimental?: string
|
|
99072
99158
|
}
|
|
99073
99159
|
|
|
99074
99160
|
/**
|
|
@@ -99078,11 +99164,18 @@ export interface NotificationsV2024ApiDeleteVerifiedFromAddressRequest {
|
|
|
99078
99164
|
*/
|
|
99079
99165
|
export interface NotificationsV2024ApiGetDkimAttributesRequest {
|
|
99080
99166
|
/**
|
|
99081
|
-
*
|
|
99082
|
-
* @type {
|
|
99167
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
99168
|
+
* @type {number}
|
|
99083
99169
|
* @memberof NotificationsV2024ApiGetDkimAttributes
|
|
99084
99170
|
*/
|
|
99085
|
-
readonly
|
|
99171
|
+
readonly limit?: number
|
|
99172
|
+
|
|
99173
|
+
/**
|
|
99174
|
+
* 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.
|
|
99175
|
+
* @type {number}
|
|
99176
|
+
* @memberof NotificationsV2024ApiGetDkimAttributes
|
|
99177
|
+
*/
|
|
99178
|
+
readonly offset?: number
|
|
99086
99179
|
}
|
|
99087
99180
|
|
|
99088
99181
|
/**
|
|
@@ -99096,14 +99189,7 @@ export interface NotificationsV2024ApiGetMailFromAttributesRequest {
|
|
|
99096
99189
|
* @type {string}
|
|
99097
99190
|
* @memberof NotificationsV2024ApiGetMailFromAttributes
|
|
99098
99191
|
*/
|
|
99099
|
-
readonly
|
|
99100
|
-
|
|
99101
|
-
/**
|
|
99102
|
-
* Use this header to enable this experimental API.
|
|
99103
|
-
* @type {string}
|
|
99104
|
-
* @memberof NotificationsV2024ApiGetMailFromAttributes
|
|
99105
|
-
*/
|
|
99106
|
-
readonly xSailPointExperimental?: string
|
|
99192
|
+
readonly identity: string
|
|
99107
99193
|
}
|
|
99108
99194
|
|
|
99109
99195
|
/**
|
|
@@ -99118,27 +99204,6 @@ export interface NotificationsV2024ApiGetNotificationTemplateRequest {
|
|
|
99118
99204
|
* @memberof NotificationsV2024ApiGetNotificationTemplate
|
|
99119
99205
|
*/
|
|
99120
99206
|
readonly id: string
|
|
99121
|
-
|
|
99122
|
-
/**
|
|
99123
|
-
* Use this header to enable this experimental API.
|
|
99124
|
-
* @type {string}
|
|
99125
|
-
* @memberof NotificationsV2024ApiGetNotificationTemplate
|
|
99126
|
-
*/
|
|
99127
|
-
readonly xSailPointExperimental?: string
|
|
99128
|
-
}
|
|
99129
|
-
|
|
99130
|
-
/**
|
|
99131
|
-
* Request parameters for getNotificationsTemplateContext operation in NotificationsV2024Api.
|
|
99132
|
-
* @export
|
|
99133
|
-
* @interface NotificationsV2024ApiGetNotificationsTemplateContextRequest
|
|
99134
|
-
*/
|
|
99135
|
-
export interface NotificationsV2024ApiGetNotificationsTemplateContextRequest {
|
|
99136
|
-
/**
|
|
99137
|
-
* Use this header to enable this experimental API.
|
|
99138
|
-
* @type {string}
|
|
99139
|
-
* @memberof NotificationsV2024ApiGetNotificationsTemplateContext
|
|
99140
|
-
*/
|
|
99141
|
-
readonly xSailPointExperimental?: string
|
|
99142
99207
|
}
|
|
99143
99208
|
|
|
99144
99209
|
/**
|
|
@@ -99169,7 +99234,7 @@ export interface NotificationsV2024ApiListFromAddressesRequest {
|
|
|
99169
99234
|
readonly count?: boolean
|
|
99170
99235
|
|
|
99171
99236
|
/**
|
|
99172
|
-
* 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,
|
|
99237
|
+
* 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*
|
|
99173
99238
|
* @type {string}
|
|
99174
99239
|
* @memberof NotificationsV2024ApiListFromAddresses
|
|
99175
99240
|
*/
|
|
@@ -99181,27 +99246,6 @@ export interface NotificationsV2024ApiListFromAddressesRequest {
|
|
|
99181
99246
|
* @memberof NotificationsV2024ApiListFromAddresses
|
|
99182
99247
|
*/
|
|
99183
99248
|
readonly sorters?: string
|
|
99184
|
-
|
|
99185
|
-
/**
|
|
99186
|
-
* Use this header to enable this experimental API.
|
|
99187
|
-
* @type {string}
|
|
99188
|
-
* @memberof NotificationsV2024ApiListFromAddresses
|
|
99189
|
-
*/
|
|
99190
|
-
readonly xSailPointExperimental?: string
|
|
99191
|
-
}
|
|
99192
|
-
|
|
99193
|
-
/**
|
|
99194
|
-
* Request parameters for listNotificationPreferences operation in NotificationsV2024Api.
|
|
99195
|
-
* @export
|
|
99196
|
-
* @interface NotificationsV2024ApiListNotificationPreferencesRequest
|
|
99197
|
-
*/
|
|
99198
|
-
export interface NotificationsV2024ApiListNotificationPreferencesRequest {
|
|
99199
|
-
/**
|
|
99200
|
-
* Use this header to enable this experimental API.
|
|
99201
|
-
* @type {string}
|
|
99202
|
-
* @memberof NotificationsV2024ApiListNotificationPreferences
|
|
99203
|
-
*/
|
|
99204
|
-
readonly xSailPointExperimental?: string
|
|
99205
99249
|
}
|
|
99206
99250
|
|
|
99207
99251
|
/**
|
|
@@ -99230,13 +99274,6 @@ export interface NotificationsV2024ApiListNotificationTemplateDefaultsRequest {
|
|
|
99230
99274
|
* @memberof NotificationsV2024ApiListNotificationTemplateDefaults
|
|
99231
99275
|
*/
|
|
99232
99276
|
readonly filters?: string
|
|
99233
|
-
|
|
99234
|
-
/**
|
|
99235
|
-
* Use this header to enable this experimental API.
|
|
99236
|
-
* @type {string}
|
|
99237
|
-
* @memberof NotificationsV2024ApiListNotificationTemplateDefaults
|
|
99238
|
-
*/
|
|
99239
|
-
readonly xSailPointExperimental?: string
|
|
99240
99277
|
}
|
|
99241
99278
|
|
|
99242
99279
|
/**
|
|
@@ -99272,13 +99309,6 @@ export interface NotificationsV2024ApiListNotificationTemplatesRequest {
|
|
|
99272
99309
|
* @memberof NotificationsV2024ApiListNotificationTemplates
|
|
99273
99310
|
*/
|
|
99274
99311
|
readonly sorters?: string
|
|
99275
|
-
|
|
99276
|
-
/**
|
|
99277
|
-
* Use this header to enable this experimental API.
|
|
99278
|
-
* @type {string}
|
|
99279
|
-
* @memberof NotificationsV2024ApiListNotificationTemplates
|
|
99280
|
-
*/
|
|
99281
|
-
readonly xSailPointExperimental?: string
|
|
99282
99312
|
}
|
|
99283
99313
|
|
|
99284
99314
|
/**
|
|
@@ -99293,13 +99323,6 @@ export interface NotificationsV2024ApiPutMailFromAttributesRequest {
|
|
|
99293
99323
|
* @memberof NotificationsV2024ApiPutMailFromAttributes
|
|
99294
99324
|
*/
|
|
99295
99325
|
readonly mailFromAttributesDtoV2024: MailFromAttributesDtoV2024
|
|
99296
|
-
|
|
99297
|
-
/**
|
|
99298
|
-
* Use this header to enable this experimental API.
|
|
99299
|
-
* @type {string}
|
|
99300
|
-
* @memberof NotificationsV2024ApiPutMailFromAttributes
|
|
99301
|
-
*/
|
|
99302
|
-
readonly xSailPointExperimental?: string
|
|
99303
99326
|
}
|
|
99304
99327
|
|
|
99305
99328
|
/**
|
|
@@ -99314,13 +99337,6 @@ export interface NotificationsV2024ApiSendTestNotificationRequest {
|
|
|
99314
99337
|
* @memberof NotificationsV2024ApiSendTestNotification
|
|
99315
99338
|
*/
|
|
99316
99339
|
readonly sendTestNotificationRequestDtoV2024: SendTestNotificationRequestDtoV2024
|
|
99317
|
-
|
|
99318
|
-
/**
|
|
99319
|
-
* Use this header to enable this experimental API.
|
|
99320
|
-
* @type {string}
|
|
99321
|
-
* @memberof NotificationsV2024ApiSendTestNotification
|
|
99322
|
-
*/
|
|
99323
|
-
readonly xSailPointExperimental?: string
|
|
99324
99340
|
}
|
|
99325
99341
|
|
|
99326
99342
|
/**
|
|
@@ -99339,7 +99355,7 @@ export class NotificationsV2024Api extends BaseAPI {
|
|
|
99339
99355
|
* @memberof NotificationsV2024Api
|
|
99340
99356
|
*/
|
|
99341
99357
|
public createDomainDkim(requestParameters: NotificationsV2024ApiCreateDomainDkimRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
99342
|
-
return NotificationsV2024ApiFp(this.configuration).createDomainDkim(requestParameters.domainAddressV2024,
|
|
99358
|
+
return NotificationsV2024ApiFp(this.configuration).createDomainDkim(requestParameters.domainAddressV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
99343
99359
|
}
|
|
99344
99360
|
|
|
99345
99361
|
/**
|
|
@@ -99351,7 +99367,7 @@ export class NotificationsV2024Api extends BaseAPI {
|
|
|
99351
99367
|
* @memberof NotificationsV2024Api
|
|
99352
99368
|
*/
|
|
99353
99369
|
public createNotificationTemplate(requestParameters: NotificationsV2024ApiCreateNotificationTemplateRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
99354
|
-
return NotificationsV2024ApiFp(this.configuration).createNotificationTemplate(requestParameters.templateDtoV2024,
|
|
99370
|
+
return NotificationsV2024ApiFp(this.configuration).createNotificationTemplate(requestParameters.templateDtoV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
99355
99371
|
}
|
|
99356
99372
|
|
|
99357
99373
|
/**
|
|
@@ -99363,11 +99379,11 @@ export class NotificationsV2024Api extends BaseAPI {
|
|
|
99363
99379
|
* @memberof NotificationsV2024Api
|
|
99364
99380
|
*/
|
|
99365
99381
|
public createVerifiedFromAddress(requestParameters: NotificationsV2024ApiCreateVerifiedFromAddressRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
99366
|
-
return NotificationsV2024ApiFp(this.configuration).createVerifiedFromAddress(requestParameters.emailStatusDtoV2024,
|
|
99382
|
+
return NotificationsV2024ApiFp(this.configuration).createVerifiedFromAddress(requestParameters.emailStatusDtoV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
99367
99383
|
}
|
|
99368
99384
|
|
|
99369
99385
|
/**
|
|
99370
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
99386
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
99371
99387
|
* @summary Bulk delete notification templates
|
|
99372
99388
|
* @param {NotificationsV2024ApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
|
|
99373
99389
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -99375,7 +99391,7 @@ export class NotificationsV2024Api extends BaseAPI {
|
|
|
99375
99391
|
* @memberof NotificationsV2024Api
|
|
99376
99392
|
*/
|
|
99377
99393
|
public deleteNotificationTemplatesInBulk(requestParameters: NotificationsV2024ApiDeleteNotificationTemplatesInBulkRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
99378
|
-
return NotificationsV2024ApiFp(this.configuration).deleteNotificationTemplatesInBulk(requestParameters.templateBulkDeleteDtoV2024,
|
|
99394
|
+
return NotificationsV2024ApiFp(this.configuration).deleteNotificationTemplatesInBulk(requestParameters.templateBulkDeleteDtoV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
99379
99395
|
}
|
|
99380
99396
|
|
|
99381
99397
|
/**
|
|
@@ -99387,7 +99403,7 @@ export class NotificationsV2024Api extends BaseAPI {
|
|
|
99387
99403
|
* @memberof NotificationsV2024Api
|
|
99388
99404
|
*/
|
|
99389
99405
|
public deleteVerifiedFromAddress(requestParameters: NotificationsV2024ApiDeleteVerifiedFromAddressRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
99390
|
-
return NotificationsV2024ApiFp(this.configuration).deleteVerifiedFromAddress(requestParameters.id,
|
|
99406
|
+
return NotificationsV2024ApiFp(this.configuration).deleteVerifiedFromAddress(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
99391
99407
|
}
|
|
99392
99408
|
|
|
99393
99409
|
/**
|
|
@@ -99399,7 +99415,7 @@ export class NotificationsV2024Api extends BaseAPI {
|
|
|
99399
99415
|
* @memberof NotificationsV2024Api
|
|
99400
99416
|
*/
|
|
99401
99417
|
public getDkimAttributes(requestParameters: NotificationsV2024ApiGetDkimAttributesRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
99402
|
-
return NotificationsV2024ApiFp(this.configuration).getDkimAttributes(requestParameters.
|
|
99418
|
+
return NotificationsV2024ApiFp(this.configuration).getDkimAttributes(requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
99403
99419
|
}
|
|
99404
99420
|
|
|
99405
99421
|
/**
|
|
@@ -99411,7 +99427,18 @@ export class NotificationsV2024Api extends BaseAPI {
|
|
|
99411
99427
|
* @memberof NotificationsV2024Api
|
|
99412
99428
|
*/
|
|
99413
99429
|
public getMailFromAttributes(requestParameters: NotificationsV2024ApiGetMailFromAttributesRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
99414
|
-
return NotificationsV2024ApiFp(this.configuration).getMailFromAttributes(requestParameters.
|
|
99430
|
+
return NotificationsV2024ApiFp(this.configuration).getMailFromAttributes(requestParameters.identity, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
99431
|
+
}
|
|
99432
|
+
|
|
99433
|
+
/**
|
|
99434
|
+
* Returns a list of notification preferences for tenant.
|
|
99435
|
+
* @summary List notification preferences for tenant.
|
|
99436
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
99437
|
+
* @throws {RequiredError}
|
|
99438
|
+
* @memberof NotificationsV2024Api
|
|
99439
|
+
*/
|
|
99440
|
+
public getNotificationPreferences(axiosOptions?: RawAxiosRequestConfig) {
|
|
99441
|
+
return NotificationsV2024ApiFp(this.configuration).getNotificationPreferences(axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
99415
99442
|
}
|
|
99416
99443
|
|
|
99417
99444
|
/**
|
|
@@ -99423,19 +99450,18 @@ export class NotificationsV2024Api extends BaseAPI {
|
|
|
99423
99450
|
* @memberof NotificationsV2024Api
|
|
99424
99451
|
*/
|
|
99425
99452
|
public getNotificationTemplate(requestParameters: NotificationsV2024ApiGetNotificationTemplateRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
99426
|
-
return NotificationsV2024ApiFp(this.configuration).getNotificationTemplate(requestParameters.id,
|
|
99453
|
+
return NotificationsV2024ApiFp(this.configuration).getNotificationTemplate(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
99427
99454
|
}
|
|
99428
99455
|
|
|
99429
99456
|
/**
|
|
99430
99457
|
* 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).
|
|
99431
99458
|
* @summary Get notification template context
|
|
99432
|
-
* @param {NotificationsV2024ApiGetNotificationsTemplateContextRequest} requestParameters Request parameters.
|
|
99433
99459
|
* @param {*} [axiosOptions] Override http request option.
|
|
99434
99460
|
* @throws {RequiredError}
|
|
99435
99461
|
* @memberof NotificationsV2024Api
|
|
99436
99462
|
*/
|
|
99437
|
-
public getNotificationsTemplateContext(
|
|
99438
|
-
return NotificationsV2024ApiFp(this.configuration).getNotificationsTemplateContext(
|
|
99463
|
+
public getNotificationsTemplateContext(axiosOptions?: RawAxiosRequestConfig) {
|
|
99464
|
+
return NotificationsV2024ApiFp(this.configuration).getNotificationsTemplateContext(axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
99439
99465
|
}
|
|
99440
99466
|
|
|
99441
99467
|
/**
|
|
@@ -99447,19 +99473,7 @@ export class NotificationsV2024Api extends BaseAPI {
|
|
|
99447
99473
|
* @memberof NotificationsV2024Api
|
|
99448
99474
|
*/
|
|
99449
99475
|
public listFromAddresses(requestParameters: NotificationsV2024ApiListFromAddressesRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
99450
|
-
return NotificationsV2024ApiFp(this.configuration).listFromAddresses(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters,
|
|
99451
|
-
}
|
|
99452
|
-
|
|
99453
|
-
/**
|
|
99454
|
-
* Returns a list of notification preferences for tenant.
|
|
99455
|
-
* @summary List notification preferences for tenant.
|
|
99456
|
-
* @param {NotificationsV2024ApiListNotificationPreferencesRequest} requestParameters Request parameters.
|
|
99457
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
99458
|
-
* @throws {RequiredError}
|
|
99459
|
-
* @memberof NotificationsV2024Api
|
|
99460
|
-
*/
|
|
99461
|
-
public listNotificationPreferences(requestParameters: NotificationsV2024ApiListNotificationPreferencesRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
99462
|
-
return NotificationsV2024ApiFp(this.configuration).listNotificationPreferences(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
99476
|
+
return NotificationsV2024ApiFp(this.configuration).listFromAddresses(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
99463
99477
|
}
|
|
99464
99478
|
|
|
99465
99479
|
/**
|
|
@@ -99471,7 +99485,7 @@ export class NotificationsV2024Api extends BaseAPI {
|
|
|
99471
99485
|
* @memberof NotificationsV2024Api
|
|
99472
99486
|
*/
|
|
99473
99487
|
public listNotificationTemplateDefaults(requestParameters: NotificationsV2024ApiListNotificationTemplateDefaultsRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
99474
|
-
return NotificationsV2024ApiFp(this.configuration).listNotificationTemplateDefaults(requestParameters.limit, requestParameters.offset, requestParameters.filters,
|
|
99488
|
+
return NotificationsV2024ApiFp(this.configuration).listNotificationTemplateDefaults(requestParameters.limit, requestParameters.offset, requestParameters.filters, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
99475
99489
|
}
|
|
99476
99490
|
|
|
99477
99491
|
/**
|
|
@@ -99483,7 +99497,7 @@ export class NotificationsV2024Api extends BaseAPI {
|
|
|
99483
99497
|
* @memberof NotificationsV2024Api
|
|
99484
99498
|
*/
|
|
99485
99499
|
public listNotificationTemplates(requestParameters: NotificationsV2024ApiListNotificationTemplatesRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
99486
|
-
return NotificationsV2024ApiFp(this.configuration).listNotificationTemplates(requestParameters.limit, requestParameters.offset, requestParameters.filters, requestParameters.sorters,
|
|
99500
|
+
return NotificationsV2024ApiFp(this.configuration).listNotificationTemplates(requestParameters.limit, requestParameters.offset, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
99487
99501
|
}
|
|
99488
99502
|
|
|
99489
99503
|
/**
|
|
@@ -99495,7 +99509,7 @@ export class NotificationsV2024Api extends BaseAPI {
|
|
|
99495
99509
|
* @memberof NotificationsV2024Api
|
|
99496
99510
|
*/
|
|
99497
99511
|
public putMailFromAttributes(requestParameters: NotificationsV2024ApiPutMailFromAttributesRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
99498
|
-
return NotificationsV2024ApiFp(this.configuration).putMailFromAttributes(requestParameters.mailFromAttributesDtoV2024,
|
|
99512
|
+
return NotificationsV2024ApiFp(this.configuration).putMailFromAttributes(requestParameters.mailFromAttributesDtoV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
99499
99513
|
}
|
|
99500
99514
|
|
|
99501
99515
|
/**
|
|
@@ -99507,7 +99521,7 @@ export class NotificationsV2024Api extends BaseAPI {
|
|
|
99507
99521
|
* @memberof NotificationsV2024Api
|
|
99508
99522
|
*/
|
|
99509
99523
|
public sendTestNotification(requestParameters: NotificationsV2024ApiSendTestNotificationRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
99510
|
-
return NotificationsV2024ApiFp(this.configuration).sendTestNotification(requestParameters.sendTestNotificationRequestDtoV2024,
|
|
99524
|
+
return NotificationsV2024ApiFp(this.configuration).sendTestNotification(requestParameters.sendTestNotificationRequestDtoV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
99511
99525
|
}
|
|
99512
99526
|
}
|
|
99513
99527
|
|