sailpoint-api-client 1.8.2 → 1.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/beta/README.md +2 -2
- package/beta/api.ts +287 -65
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +283 -64
- package/dist/beta/api.js +35 -36
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/nerm/common.js +2 -2
- package/dist/nermv2025/common.js +2 -2
- package/dist/v2024/api.d.ts +288 -69
- package/dist/v2024/api.js +49 -52
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/api.d.ts +292 -73
- package/dist/v2025/api.js +55 -58
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +691 -0
- package/dist/v2026/api.js +635 -2
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +2 -2
- package/dist/v3/api.d.ts +47 -11
- package/dist/v3/api.js +22 -18
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +2 -2
- package/nerm/README.md +2 -2
- package/nerm/common.ts +2 -2
- package/nerm/package.json +1 -1
- package/nermv2025/README.md +2 -2
- package/nermv2025/common.ts +2 -2
- package/nermv2025/package.json +1 -1
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +299 -80
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +303 -84
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +1010 -0
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +50 -11
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/v2024/api.ts
CHANGED
|
@@ -2021,11 +2021,11 @@ export interface AccessProfileV2024 {
|
|
|
2021
2021
|
*/
|
|
2022
2022
|
'provisioningCriteria'?: ProvisioningCriteriaLevel1V2024 | null;
|
|
2023
2023
|
/**
|
|
2024
|
-
*
|
|
2025
|
-
* @type {Array<
|
|
2024
|
+
* List of additional owner references beyond the primary owner. Each entry may be an identity (IDENTITY) or a governance group (GOVERNANCE_GROUP).
|
|
2025
|
+
* @type {Array<AdditionalOwnerRefV2024>}
|
|
2026
2026
|
* @memberof AccessProfileV2024
|
|
2027
2027
|
*/
|
|
2028
|
-
'additionalOwners'?: Array<
|
|
2028
|
+
'additionalOwners'?: Array<AdditionalOwnerRefV2024> | null;
|
|
2029
2029
|
}
|
|
2030
2030
|
/**
|
|
2031
2031
|
*
|
|
@@ -5704,6 +5704,39 @@ export const ActivityInsightsV2024UsageDaysStateV2024 = {
|
|
|
5704
5704
|
|
|
5705
5705
|
export type ActivityInsightsV2024UsageDaysStateV2024 = typeof ActivityInsightsV2024UsageDaysStateV2024[keyof typeof ActivityInsightsV2024UsageDaysStateV2024];
|
|
5706
5706
|
|
|
5707
|
+
/**
|
|
5708
|
+
* Reference to an additional owner (identity or governance group).
|
|
5709
|
+
* @export
|
|
5710
|
+
* @interface AdditionalOwnerRefV2024
|
|
5711
|
+
*/
|
|
5712
|
+
export interface AdditionalOwnerRefV2024 {
|
|
5713
|
+
/**
|
|
5714
|
+
* Type of the additional owner; IDENTITY for an identity, GOVERNANCE_GROUP for a governance group.
|
|
5715
|
+
* @type {string}
|
|
5716
|
+
* @memberof AdditionalOwnerRefV2024
|
|
5717
|
+
*/
|
|
5718
|
+
'type'?: AdditionalOwnerRefV2024TypeV2024;
|
|
5719
|
+
/**
|
|
5720
|
+
* ID of the identity or governance group.
|
|
5721
|
+
* @type {string}
|
|
5722
|
+
* @memberof AdditionalOwnerRefV2024
|
|
5723
|
+
*/
|
|
5724
|
+
'id'?: string;
|
|
5725
|
+
/**
|
|
5726
|
+
* Display name. It may be left null or omitted on input. If set, it must match the current display name of the identity or governance group, otherwise a 400 Bad Request error may result.
|
|
5727
|
+
* @type {string}
|
|
5728
|
+
* @memberof AdditionalOwnerRefV2024
|
|
5729
|
+
*/
|
|
5730
|
+
'name'?: string | null;
|
|
5731
|
+
}
|
|
5732
|
+
|
|
5733
|
+
export const AdditionalOwnerRefV2024TypeV2024 = {
|
|
5734
|
+
Identity: 'IDENTITY',
|
|
5735
|
+
GovernanceGroup: 'GOVERNANCE_GROUP'
|
|
5736
|
+
} as const;
|
|
5737
|
+
|
|
5738
|
+
export type AdditionalOwnerRefV2024TypeV2024 = typeof AdditionalOwnerRefV2024TypeV2024[keyof typeof AdditionalOwnerRefV2024TypeV2024];
|
|
5739
|
+
|
|
5707
5740
|
/**
|
|
5708
5741
|
*
|
|
5709
5742
|
* @export
|
|
@@ -14301,11 +14334,17 @@ export interface DkimAttributesV2024 {
|
|
|
14301
14334
|
*/
|
|
14302
14335
|
'dkimTokens'?: Array<string>;
|
|
14303
14336
|
/**
|
|
14304
|
-
* 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
|
|
14305
14338
|
* @type {string}
|
|
14306
14339
|
* @memberof DkimAttributesV2024
|
|
14307
14340
|
*/
|
|
14308
14341
|
'dkimVerificationStatus'?: string;
|
|
14342
|
+
/**
|
|
14343
|
+
* The AWS SES region the domain is associated with
|
|
14344
|
+
* @type {string}
|
|
14345
|
+
* @memberof DkimAttributesV2024
|
|
14346
|
+
*/
|
|
14347
|
+
'region'?: string;
|
|
14309
14348
|
}
|
|
14310
14349
|
/**
|
|
14311
14350
|
*
|
|
@@ -14397,10 +14436,10 @@ export interface DomainStatusDtoV2024 {
|
|
|
14397
14436
|
'domain'?: string;
|
|
14398
14437
|
/**
|
|
14399
14438
|
* DKIM is enabled for this domain
|
|
14400
|
-
* @type {
|
|
14439
|
+
* @type {boolean}
|
|
14401
14440
|
* @memberof DomainStatusDtoV2024
|
|
14402
14441
|
*/
|
|
14403
|
-
'dkimEnabled'?:
|
|
14442
|
+
'dkimEnabled'?: boolean;
|
|
14404
14443
|
/**
|
|
14405
14444
|
* DKIM tokens required for authentication
|
|
14406
14445
|
* @type {Array<string>}
|
|
@@ -14413,6 +14452,12 @@ export interface DomainStatusDtoV2024 {
|
|
|
14413
14452
|
* @memberof DomainStatusDtoV2024
|
|
14414
14453
|
*/
|
|
14415
14454
|
'dkimVerificationStatus'?: string;
|
|
14455
|
+
/**
|
|
14456
|
+
* The AWS SES region the domain is associated with
|
|
14457
|
+
* @type {string}
|
|
14458
|
+
* @memberof DomainStatusDtoV2024
|
|
14459
|
+
*/
|
|
14460
|
+
'region'?: string;
|
|
14416
14461
|
}
|
|
14417
14462
|
/**
|
|
14418
14463
|
*
|
|
@@ -14652,35 +14697,42 @@ export interface EmailNotificationOptionV2024 {
|
|
|
14652
14697
|
*/
|
|
14653
14698
|
export interface EmailStatusDtoV2024 {
|
|
14654
14699
|
/**
|
|
14655
|
-
*
|
|
14700
|
+
* Unique identifier for the verified sender address
|
|
14656
14701
|
* @type {string}
|
|
14657
14702
|
* @memberof EmailStatusDtoV2024
|
|
14658
14703
|
*/
|
|
14659
14704
|
'id'?: string | null;
|
|
14660
14705
|
/**
|
|
14661
|
-
*
|
|
14706
|
+
* The verified sender email address
|
|
14662
14707
|
* @type {string}
|
|
14663
14708
|
* @memberof EmailStatusDtoV2024
|
|
14664
14709
|
*/
|
|
14665
14710
|
'email'?: string;
|
|
14666
14711
|
/**
|
|
14667
|
-
*
|
|
14712
|
+
* Whether the sender address is verified by domain
|
|
14668
14713
|
* @type {boolean}
|
|
14669
14714
|
* @memberof EmailStatusDtoV2024
|
|
14670
14715
|
*/
|
|
14671
14716
|
'isVerifiedByDomain'?: boolean;
|
|
14672
14717
|
/**
|
|
14673
|
-
*
|
|
14718
|
+
* The verification status of the sender address
|
|
14674
14719
|
* @type {string}
|
|
14675
14720
|
* @memberof EmailStatusDtoV2024
|
|
14676
14721
|
*/
|
|
14677
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;
|
|
14678
14729
|
}
|
|
14679
14730
|
|
|
14680
14731
|
export const EmailStatusDtoV2024VerificationStatusV2024 = {
|
|
14681
14732
|
Pending: 'PENDING',
|
|
14682
14733
|
Success: 'SUCCESS',
|
|
14683
|
-
Failed: 'FAILED'
|
|
14734
|
+
Failed: 'FAILED',
|
|
14735
|
+
Na: 'NA'
|
|
14684
14736
|
} as const;
|
|
14685
14737
|
|
|
14686
14738
|
export type EmailStatusDtoV2024VerificationStatusV2024 = typeof EmailStatusDtoV2024VerificationStatusV2024[keyof typeof EmailStatusDtoV2024VerificationStatusV2024];
|
|
@@ -24703,15 +24755,13 @@ export interface MatchTermV2024 {
|
|
|
24703
24755
|
'children'?: Array<{ [key: string]: any; }> | null;
|
|
24704
24756
|
}
|
|
24705
24757
|
/**
|
|
24706
|
-
*
|
|
24758
|
+
* The notification medium (EMAIL, SLACK, or TEAMS)
|
|
24707
24759
|
* @export
|
|
24708
24760
|
* @enum {string}
|
|
24709
24761
|
*/
|
|
24710
24762
|
|
|
24711
24763
|
export const MediumV2024 = {
|
|
24712
24764
|
Email: 'EMAIL',
|
|
24713
|
-
Sms: 'SMS',
|
|
24714
|
-
Phone: 'PHONE',
|
|
24715
24765
|
Slack: 'SLACK',
|
|
24716
24766
|
Teams: 'TEAMS'
|
|
24717
24767
|
} as const;
|
|
@@ -35310,6 +35360,12 @@ export interface RoleV2024 {
|
|
|
35310
35360
|
* @memberof RoleV2024
|
|
35311
35361
|
*/
|
|
35312
35362
|
'owner': OwnerReferenceV2024 | null;
|
|
35363
|
+
/**
|
|
35364
|
+
* List of additional owner references beyond the primary owner. Each entry may be an identity (IDENTITY) or a governance group (GOVERNANCE_GROUP).
|
|
35365
|
+
* @type {Array<AdditionalOwnerRefV2024>}
|
|
35366
|
+
* @memberof RoleV2024
|
|
35367
|
+
*/
|
|
35368
|
+
'additionalOwners'?: Array<AdditionalOwnerRefV2024> | null;
|
|
35313
35369
|
/**
|
|
35314
35370
|
*
|
|
35315
35371
|
* @type {Array<AccessProfileRefV2024>}
|
|
@@ -37789,12 +37845,36 @@ export interface SendTestNotificationRequestDtoV2024 {
|
|
|
37789
37845
|
* @memberof SendTestNotificationRequestDtoV2024
|
|
37790
37846
|
*/
|
|
37791
37847
|
'medium'?: SendTestNotificationRequestDtoV2024MediumV2024;
|
|
37848
|
+
/**
|
|
37849
|
+
* The locale for the message text.
|
|
37850
|
+
* @type {string}
|
|
37851
|
+
* @memberof SendTestNotificationRequestDtoV2024
|
|
37852
|
+
*/
|
|
37853
|
+
'locale'?: string;
|
|
37792
37854
|
/**
|
|
37793
37855
|
* A Json object that denotes the context specific to the template.
|
|
37794
37856
|
* @type {object}
|
|
37795
37857
|
* @memberof SendTestNotificationRequestDtoV2024
|
|
37796
37858
|
*/
|
|
37797
37859
|
'context'?: object;
|
|
37860
|
+
/**
|
|
37861
|
+
* A list of override recipient email addresses for the test notification.
|
|
37862
|
+
* @type {Array<string>}
|
|
37863
|
+
* @memberof SendTestNotificationRequestDtoV2024
|
|
37864
|
+
*/
|
|
37865
|
+
'recipientEmailList'?: Array<string>;
|
|
37866
|
+
/**
|
|
37867
|
+
* A list of CC email addresses for the test notification.
|
|
37868
|
+
* @type {Array<string>}
|
|
37869
|
+
* @memberof SendTestNotificationRequestDtoV2024
|
|
37870
|
+
*/
|
|
37871
|
+
'carbonCopy'?: Array<string>;
|
|
37872
|
+
/**
|
|
37873
|
+
* A list of BCC email addresses for the test notification.
|
|
37874
|
+
* @type {Array<string>}
|
|
37875
|
+
* @memberof SendTestNotificationRequestDtoV2024
|
|
37876
|
+
*/
|
|
37877
|
+
'blindCarbonCopy'?: Array<string>;
|
|
37798
37878
|
}
|
|
37799
37879
|
|
|
37800
37880
|
export const SendTestNotificationRequestDtoV2024MediumV2024 = {
|
|
@@ -42466,13 +42546,13 @@ export type TaskStatusV2024CompletionStatusV2024 = typeof TaskStatusV2024Complet
|
|
|
42466
42546
|
*/
|
|
42467
42547
|
export interface TemplateBulkDeleteDtoV2024 {
|
|
42468
42548
|
/**
|
|
42469
|
-
*
|
|
42549
|
+
* The template key to delete
|
|
42470
42550
|
* @type {string}
|
|
42471
42551
|
* @memberof TemplateBulkDeleteDtoV2024
|
|
42472
42552
|
*/
|
|
42473
42553
|
'key': string;
|
|
42474
42554
|
/**
|
|
42475
|
-
*
|
|
42555
|
+
* The notification medium (EMAIL, SLACK, or TEAMS)
|
|
42476
42556
|
* @type {string}
|
|
42477
42557
|
* @memberof TemplateBulkDeleteDtoV2024
|
|
42478
42558
|
*/
|
|
@@ -42487,8 +42567,8 @@ export interface TemplateBulkDeleteDtoV2024 {
|
|
|
42487
42567
|
|
|
42488
42568
|
export const TemplateBulkDeleteDtoV2024MediumV2024 = {
|
|
42489
42569
|
Email: 'EMAIL',
|
|
42490
|
-
|
|
42491
|
-
|
|
42570
|
+
Slack: 'SLACK',
|
|
42571
|
+
Teams: 'TEAMS'
|
|
42492
42572
|
} as const;
|
|
42493
42573
|
|
|
42494
42574
|
export type TemplateBulkDeleteDtoV2024MediumV2024 = typeof TemplateBulkDeleteDtoV2024MediumV2024[keyof typeof TemplateBulkDeleteDtoV2024MediumV2024];
|
|
@@ -42583,14 +42663,158 @@ export interface TemplateDtoDefaultV2024 {
|
|
|
42583
42663
|
|
|
42584
42664
|
export const TemplateDtoDefaultV2024MediumV2024 = {
|
|
42585
42665
|
Email: 'EMAIL',
|
|
42586
|
-
Phone: 'PHONE',
|
|
42587
|
-
Sms: 'SMS',
|
|
42588
42666
|
Slack: 'SLACK',
|
|
42589
42667
|
Teams: 'TEAMS'
|
|
42590
42668
|
} as const;
|
|
42591
42669
|
|
|
42592
42670
|
export type TemplateDtoDefaultV2024MediumV2024 = typeof TemplateDtoDefaultV2024MediumV2024[keyof typeof TemplateDtoDefaultV2024MediumV2024];
|
|
42593
42671
|
|
|
42672
|
+
/**
|
|
42673
|
+
*
|
|
42674
|
+
* @export
|
|
42675
|
+
* @interface TemplateDtoSlackTemplateV2024
|
|
42676
|
+
*/
|
|
42677
|
+
export interface TemplateDtoSlackTemplateV2024 {
|
|
42678
|
+
/**
|
|
42679
|
+
* The template key
|
|
42680
|
+
* @type {string}
|
|
42681
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42682
|
+
*/
|
|
42683
|
+
'key'?: string | null;
|
|
42684
|
+
/**
|
|
42685
|
+
* The main text content of the Slack message
|
|
42686
|
+
* @type {string}
|
|
42687
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42688
|
+
*/
|
|
42689
|
+
'text'?: string;
|
|
42690
|
+
/**
|
|
42691
|
+
* JSON string of Slack Block Kit blocks for rich formatting
|
|
42692
|
+
* @type {string}
|
|
42693
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42694
|
+
*/
|
|
42695
|
+
'blocks'?: string | null;
|
|
42696
|
+
/**
|
|
42697
|
+
* JSON string of Slack attachments
|
|
42698
|
+
* @type {string}
|
|
42699
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42700
|
+
*/
|
|
42701
|
+
'attachments'?: string;
|
|
42702
|
+
/**
|
|
42703
|
+
* The type of notification
|
|
42704
|
+
* @type {string}
|
|
42705
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42706
|
+
*/
|
|
42707
|
+
'notificationType'?: string | null;
|
|
42708
|
+
/**
|
|
42709
|
+
* The approval request ID
|
|
42710
|
+
* @type {string}
|
|
42711
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42712
|
+
*/
|
|
42713
|
+
'approvalId'?: string | null;
|
|
42714
|
+
/**
|
|
42715
|
+
* The request ID
|
|
42716
|
+
* @type {string}
|
|
42717
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42718
|
+
*/
|
|
42719
|
+
'requestId'?: string | null;
|
|
42720
|
+
/**
|
|
42721
|
+
* The ID of the user who made the request
|
|
42722
|
+
* @type {string}
|
|
42723
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42724
|
+
*/
|
|
42725
|
+
'requestedById'?: string | null;
|
|
42726
|
+
/**
|
|
42727
|
+
* Whether this is a subscription notification
|
|
42728
|
+
* @type {boolean}
|
|
42729
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42730
|
+
*/
|
|
42731
|
+
'isSubscription'?: boolean | null;
|
|
42732
|
+
/**
|
|
42733
|
+
*
|
|
42734
|
+
* @type {TemplateSlackAutoApprovalDataV2024}
|
|
42735
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42736
|
+
*/
|
|
42737
|
+
'autoApprovalData'?: TemplateSlackAutoApprovalDataV2024 | null;
|
|
42738
|
+
/**
|
|
42739
|
+
*
|
|
42740
|
+
* @type {TemplateSlackCustomFieldsV2024}
|
|
42741
|
+
* @memberof TemplateDtoSlackTemplateV2024
|
|
42742
|
+
*/
|
|
42743
|
+
'customFields'?: TemplateSlackCustomFieldsV2024 | null;
|
|
42744
|
+
}
|
|
42745
|
+
/**
|
|
42746
|
+
*
|
|
42747
|
+
* @export
|
|
42748
|
+
* @interface TemplateDtoTeamsTemplateV2024
|
|
42749
|
+
*/
|
|
42750
|
+
export interface TemplateDtoTeamsTemplateV2024 {
|
|
42751
|
+
/**
|
|
42752
|
+
* The template key
|
|
42753
|
+
* @type {string}
|
|
42754
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42755
|
+
*/
|
|
42756
|
+
'key'?: string | null;
|
|
42757
|
+
/**
|
|
42758
|
+
* The title of the Teams message
|
|
42759
|
+
* @type {string}
|
|
42760
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42761
|
+
*/
|
|
42762
|
+
'title'?: string | null;
|
|
42763
|
+
/**
|
|
42764
|
+
* The main text content of the Teams message
|
|
42765
|
+
* @type {string}
|
|
42766
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42767
|
+
*/
|
|
42768
|
+
'text'?: string;
|
|
42769
|
+
/**
|
|
42770
|
+
* JSON string of the Teams adaptive card
|
|
42771
|
+
* @type {string}
|
|
42772
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42773
|
+
*/
|
|
42774
|
+
'messageJSON'?: string | null;
|
|
42775
|
+
/**
|
|
42776
|
+
* Whether this is a subscription notification
|
|
42777
|
+
* @type {boolean}
|
|
42778
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42779
|
+
*/
|
|
42780
|
+
'isSubscription'?: boolean | null;
|
|
42781
|
+
/**
|
|
42782
|
+
* The approval request ID
|
|
42783
|
+
* @type {string}
|
|
42784
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42785
|
+
*/
|
|
42786
|
+
'approvalId'?: string | null;
|
|
42787
|
+
/**
|
|
42788
|
+
* The request ID
|
|
42789
|
+
* @type {string}
|
|
42790
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42791
|
+
*/
|
|
42792
|
+
'requestId'?: string | null;
|
|
42793
|
+
/**
|
|
42794
|
+
* The ID of the user who made the request
|
|
42795
|
+
* @type {string}
|
|
42796
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42797
|
+
*/
|
|
42798
|
+
'requestedById'?: string | null;
|
|
42799
|
+
/**
|
|
42800
|
+
* The type of notification
|
|
42801
|
+
* @type {string}
|
|
42802
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42803
|
+
*/
|
|
42804
|
+
'notificationType'?: string | null;
|
|
42805
|
+
/**
|
|
42806
|
+
*
|
|
42807
|
+
* @type {TemplateSlackAutoApprovalDataV2024}
|
|
42808
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42809
|
+
*/
|
|
42810
|
+
'autoApprovalData'?: TemplateSlackAutoApprovalDataV2024 | null;
|
|
42811
|
+
/**
|
|
42812
|
+
*
|
|
42813
|
+
* @type {TemplateSlackCustomFieldsV2024}
|
|
42814
|
+
* @memberof TemplateDtoTeamsTemplateV2024
|
|
42815
|
+
*/
|
|
42816
|
+
'customFields'?: TemplateSlackCustomFieldsV2024 | null;
|
|
42817
|
+
}
|
|
42594
42818
|
/**
|
|
42595
42819
|
*
|
|
42596
42820
|
* @export
|
|
@@ -42685,22 +42909,20 @@ export interface TemplateDtoV2024 {
|
|
|
42685
42909
|
'modified'?: string;
|
|
42686
42910
|
/**
|
|
42687
42911
|
*
|
|
42688
|
-
* @type {
|
|
42912
|
+
* @type {TemplateDtoSlackTemplateV2024}
|
|
42689
42913
|
* @memberof TemplateDtoV2024
|
|
42690
42914
|
*/
|
|
42691
|
-
'slackTemplate'?:
|
|
42915
|
+
'slackTemplate'?: TemplateDtoSlackTemplateV2024;
|
|
42692
42916
|
/**
|
|
42693
42917
|
*
|
|
42694
|
-
* @type {
|
|
42918
|
+
* @type {TemplateDtoTeamsTemplateV2024}
|
|
42695
42919
|
* @memberof TemplateDtoV2024
|
|
42696
42920
|
*/
|
|
42697
|
-
'teamsTemplate'?:
|
|
42921
|
+
'teamsTemplate'?: TemplateDtoTeamsTemplateV2024;
|
|
42698
42922
|
}
|
|
42699
42923
|
|
|
42700
42924
|
export const TemplateDtoV2024MediumV2024 = {
|
|
42701
42925
|
Email: 'EMAIL',
|
|
42702
|
-
Phone: 'PHONE',
|
|
42703
|
-
Sms: 'SMS',
|
|
42704
42926
|
Slack: 'SLACK',
|
|
42705
42927
|
Teams: 'TEAMS'
|
|
42706
42928
|
} as const;
|
|
@@ -42714,31 +42936,31 @@ export type TemplateDtoV2024MediumV2024 = typeof TemplateDtoV2024MediumV2024[key
|
|
|
42714
42936
|
*/
|
|
42715
42937
|
export interface TemplateSlackAutoApprovalDataV2024 {
|
|
42716
42938
|
/**
|
|
42717
|
-
*
|
|
42939
|
+
* Whether the request was auto-approved
|
|
42718
42940
|
* @type {string}
|
|
42719
42941
|
* @memberof TemplateSlackAutoApprovalDataV2024
|
|
42720
42942
|
*/
|
|
42721
42943
|
'isAutoApproved'?: string | null;
|
|
42722
42944
|
/**
|
|
42723
|
-
*
|
|
42945
|
+
* The item ID
|
|
42724
42946
|
* @type {string}
|
|
42725
42947
|
* @memberof TemplateSlackAutoApprovalDataV2024
|
|
42726
42948
|
*/
|
|
42727
42949
|
'itemId'?: string | null;
|
|
42728
42950
|
/**
|
|
42729
|
-
*
|
|
42951
|
+
* The item type
|
|
42730
42952
|
* @type {string}
|
|
42731
42953
|
* @memberof TemplateSlackAutoApprovalDataV2024
|
|
42732
42954
|
*/
|
|
42733
42955
|
'itemType'?: string | null;
|
|
42734
42956
|
/**
|
|
42735
|
-
*
|
|
42957
|
+
* JSON message for auto-approval
|
|
42736
42958
|
* @type {string}
|
|
42737
42959
|
* @memberof TemplateSlackAutoApprovalDataV2024
|
|
42738
42960
|
*/
|
|
42739
42961
|
'autoApprovalMessageJSON'?: string | null;
|
|
42740
42962
|
/**
|
|
42741
|
-
*
|
|
42963
|
+
* Title for auto-approval
|
|
42742
42964
|
* @type {string}
|
|
42743
42965
|
* @memberof TemplateSlackAutoApprovalDataV2024
|
|
42744
42966
|
*/
|
|
@@ -42751,25 +42973,25 @@ export interface TemplateSlackAutoApprovalDataV2024 {
|
|
|
42751
42973
|
*/
|
|
42752
42974
|
export interface TemplateSlackCustomFieldsV2024 {
|
|
42753
42975
|
/**
|
|
42754
|
-
*
|
|
42976
|
+
* The type of request
|
|
42755
42977
|
* @type {string}
|
|
42756
42978
|
* @memberof TemplateSlackCustomFieldsV2024
|
|
42757
42979
|
*/
|
|
42758
42980
|
'requestType'?: string | null;
|
|
42759
42981
|
/**
|
|
42760
|
-
*
|
|
42982
|
+
* Whether the request contains a deny action
|
|
42761
42983
|
* @type {string}
|
|
42762
42984
|
* @memberof TemplateSlackCustomFieldsV2024
|
|
42763
42985
|
*/
|
|
42764
42986
|
'containsDeny'?: string | null;
|
|
42765
42987
|
/**
|
|
42766
|
-
*
|
|
42988
|
+
* The campaign ID
|
|
42767
42989
|
* @type {string}
|
|
42768
42990
|
* @memberof TemplateSlackCustomFieldsV2024
|
|
42769
42991
|
*/
|
|
42770
42992
|
'campaignId'?: string | null;
|
|
42771
42993
|
/**
|
|
42772
|
-
*
|
|
42994
|
+
* The campaign status
|
|
42773
42995
|
* @type {string}
|
|
42774
42996
|
* @memberof TemplateSlackCustomFieldsV2024
|
|
42775
42997
|
*/
|
|
@@ -42782,55 +43004,55 @@ export interface TemplateSlackCustomFieldsV2024 {
|
|
|
42782
43004
|
*/
|
|
42783
43005
|
export interface TemplateSlackV2024 {
|
|
42784
43006
|
/**
|
|
42785
|
-
*
|
|
43007
|
+
* The template key
|
|
42786
43008
|
* @type {string}
|
|
42787
43009
|
* @memberof TemplateSlackV2024
|
|
42788
43010
|
*/
|
|
42789
43011
|
'key'?: string | null;
|
|
42790
43012
|
/**
|
|
42791
|
-
*
|
|
43013
|
+
* The main text content of the Slack message
|
|
42792
43014
|
* @type {string}
|
|
42793
43015
|
* @memberof TemplateSlackV2024
|
|
42794
43016
|
*/
|
|
42795
43017
|
'text'?: string;
|
|
42796
43018
|
/**
|
|
42797
|
-
*
|
|
43019
|
+
* JSON string of Slack Block Kit blocks for rich formatting
|
|
42798
43020
|
* @type {string}
|
|
42799
43021
|
* @memberof TemplateSlackV2024
|
|
42800
43022
|
*/
|
|
42801
43023
|
'blocks'?: string | null;
|
|
42802
43024
|
/**
|
|
42803
|
-
*
|
|
43025
|
+
* JSON string of Slack attachments
|
|
42804
43026
|
* @type {string}
|
|
42805
43027
|
* @memberof TemplateSlackV2024
|
|
42806
43028
|
*/
|
|
42807
43029
|
'attachments'?: string;
|
|
42808
43030
|
/**
|
|
42809
|
-
*
|
|
43031
|
+
* The type of notification
|
|
42810
43032
|
* @type {string}
|
|
42811
43033
|
* @memberof TemplateSlackV2024
|
|
42812
43034
|
*/
|
|
42813
43035
|
'notificationType'?: string | null;
|
|
42814
43036
|
/**
|
|
42815
|
-
*
|
|
43037
|
+
* The approval request ID
|
|
42816
43038
|
* @type {string}
|
|
42817
43039
|
* @memberof TemplateSlackV2024
|
|
42818
43040
|
*/
|
|
42819
43041
|
'approvalId'?: string | null;
|
|
42820
43042
|
/**
|
|
42821
|
-
*
|
|
43043
|
+
* The request ID
|
|
42822
43044
|
* @type {string}
|
|
42823
43045
|
* @memberof TemplateSlackV2024
|
|
42824
43046
|
*/
|
|
42825
43047
|
'requestId'?: string | null;
|
|
42826
43048
|
/**
|
|
42827
|
-
*
|
|
43049
|
+
* The ID of the user who made the request
|
|
42828
43050
|
* @type {string}
|
|
42829
43051
|
* @memberof TemplateSlackV2024
|
|
42830
43052
|
*/
|
|
42831
43053
|
'requestedById'?: string | null;
|
|
42832
43054
|
/**
|
|
42833
|
-
*
|
|
43055
|
+
* Whether this is a subscription notification
|
|
42834
43056
|
* @type {boolean}
|
|
42835
43057
|
* @memberof TemplateSlackV2024
|
|
42836
43058
|
*/
|
|
@@ -42855,55 +43077,55 @@ export interface TemplateSlackV2024 {
|
|
|
42855
43077
|
*/
|
|
42856
43078
|
export interface TemplateTeamsV2024 {
|
|
42857
43079
|
/**
|
|
42858
|
-
*
|
|
43080
|
+
* The template key
|
|
42859
43081
|
* @type {string}
|
|
42860
43082
|
* @memberof TemplateTeamsV2024
|
|
42861
43083
|
*/
|
|
42862
43084
|
'key'?: string | null;
|
|
42863
43085
|
/**
|
|
42864
|
-
*
|
|
43086
|
+
* The title of the Teams message
|
|
42865
43087
|
* @type {string}
|
|
42866
43088
|
* @memberof TemplateTeamsV2024
|
|
42867
43089
|
*/
|
|
42868
43090
|
'title'?: string | null;
|
|
42869
43091
|
/**
|
|
42870
|
-
*
|
|
43092
|
+
* The main text content of the Teams message
|
|
42871
43093
|
* @type {string}
|
|
42872
43094
|
* @memberof TemplateTeamsV2024
|
|
42873
43095
|
*/
|
|
42874
43096
|
'text'?: string;
|
|
42875
43097
|
/**
|
|
42876
|
-
*
|
|
43098
|
+
* JSON string of the Teams adaptive card
|
|
42877
43099
|
* @type {string}
|
|
42878
43100
|
* @memberof TemplateTeamsV2024
|
|
42879
43101
|
*/
|
|
42880
43102
|
'messageJSON'?: string | null;
|
|
42881
43103
|
/**
|
|
42882
|
-
*
|
|
43104
|
+
* Whether this is a subscription notification
|
|
42883
43105
|
* @type {boolean}
|
|
42884
43106
|
* @memberof TemplateTeamsV2024
|
|
42885
43107
|
*/
|
|
42886
43108
|
'isSubscription'?: boolean | null;
|
|
42887
43109
|
/**
|
|
42888
|
-
*
|
|
43110
|
+
* The approval request ID
|
|
42889
43111
|
* @type {string}
|
|
42890
43112
|
* @memberof TemplateTeamsV2024
|
|
42891
43113
|
*/
|
|
42892
43114
|
'approvalId'?: string | null;
|
|
42893
43115
|
/**
|
|
42894
|
-
*
|
|
43116
|
+
* The request ID
|
|
42895
43117
|
* @type {string}
|
|
42896
43118
|
* @memberof TemplateTeamsV2024
|
|
42897
43119
|
*/
|
|
42898
43120
|
'requestId'?: string | null;
|
|
42899
43121
|
/**
|
|
42900
|
-
*
|
|
43122
|
+
* The ID of the user who made the request
|
|
42901
43123
|
* @type {string}
|
|
42902
43124
|
* @memberof TemplateTeamsV2024
|
|
42903
43125
|
*/
|
|
42904
43126
|
'requestedById'?: string | null;
|
|
42905
43127
|
/**
|
|
42906
|
-
*
|
|
43128
|
+
* The type of notification
|
|
42907
43129
|
* @type {string}
|
|
42908
43130
|
* @memberof TemplateTeamsV2024
|
|
42909
43131
|
*/
|
|
@@ -47008,7 +47230,7 @@ export const AccessProfilesV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
47008
47230
|
};
|
|
47009
47231
|
},
|
|
47010
47232
|
/**
|
|
47011
|
-
* This API updates an existing Access Profile. The following fields are patchable: **name** **description** **enabled** **owner** **requestable** **accessRequestConfig** **revokeRequestConfig** **segments** **entitlements** **provisioningCriteria** **source** (must be updated with entitlements belonging to new source in the same API call) If you need to change the `source` of the access profile, you can do so only if you update the `entitlements` in the same API call. The new entitlements can only come from the target source that you want to change to. Look for the example \"Replace Source\" in the examples dropdown. A user with SOURCE_SUBADMIN may only use this API to patch Access Profiles which are associated with Sources they are able to administer. > The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters. > You can only add or replace **entitlements** that exist on the source that the access profile is attached to. You can use the **list entitlements** endpoint with the **filters** query parameter to get a list of available entitlements on the access profile\'s source.
|
|
47233
|
+
* This API updates an existing Access Profile. The following fields are patchable: **name** **description** **enabled** **owner** **additionalOwners** **requestable** **accessRequestConfig** **revokeRequestConfig** **segments** **entitlements** **provisioningCriteria** **source** (must be updated with entitlements belonging to new source in the same API call) If you need to change the `source` of the access profile, you can do so only if you update the `entitlements` in the same API call. The new entitlements can only come from the target source that you want to change to. Look for the example \"Replace Source\" in the examples dropdown. A user with SOURCE_SUBADMIN may only use this API to patch Access Profiles which are associated with Sources they are able to administer. > The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters. > You can only add or replace **entitlements** that exist on the source that the access profile is attached to. You can use the **list entitlements** endpoint with the **filters** query parameter to get a list of available entitlements on the access profile\'s source.
|
|
47012
47234
|
* @summary Patch a specified access profile
|
|
47013
47235
|
* @param {string} id ID of the Access Profile to patch
|
|
47014
47236
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
@@ -47208,7 +47430,7 @@ export const AccessProfilesV2024ApiFp = function(configuration?: Configuration)
|
|
|
47208
47430
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
47209
47431
|
},
|
|
47210
47432
|
/**
|
|
47211
|
-
* This API updates an existing Access Profile. The following fields are patchable: **name** **description** **enabled** **owner** **requestable** **accessRequestConfig** **revokeRequestConfig** **segments** **entitlements** **provisioningCriteria** **source** (must be updated with entitlements belonging to new source in the same API call) If you need to change the `source` of the access profile, you can do so only if you update the `entitlements` in the same API call. The new entitlements can only come from the target source that you want to change to. Look for the example \"Replace Source\" in the examples dropdown. A user with SOURCE_SUBADMIN may only use this API to patch Access Profiles which are associated with Sources they are able to administer. > The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters. > You can only add or replace **entitlements** that exist on the source that the access profile is attached to. You can use the **list entitlements** endpoint with the **filters** query parameter to get a list of available entitlements on the access profile\'s source.
|
|
47433
|
+
* This API updates an existing Access Profile. The following fields are patchable: **name** **description** **enabled** **owner** **additionalOwners** **requestable** **accessRequestConfig** **revokeRequestConfig** **segments** **entitlements** **provisioningCriteria** **source** (must be updated with entitlements belonging to new source in the same API call) If you need to change the `source` of the access profile, you can do so only if you update the `entitlements` in the same API call. The new entitlements can only come from the target source that you want to change to. Look for the example \"Replace Source\" in the examples dropdown. A user with SOURCE_SUBADMIN may only use this API to patch Access Profiles which are associated with Sources they are able to administer. > The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters. > You can only add or replace **entitlements** that exist on the source that the access profile is attached to. You can use the **list entitlements** endpoint with the **filters** query parameter to get a list of available entitlements on the access profile\'s source.
|
|
47212
47434
|
* @summary Patch a specified access profile
|
|
47213
47435
|
* @param {string} id ID of the Access Profile to patch
|
|
47214
47436
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
@@ -47306,7 +47528,7 @@ export const AccessProfilesV2024ApiFactory = function (configuration?: Configura
|
|
|
47306
47528
|
return localVarFp.listAccessProfiles(requestParameters.forSubadmin, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, requestParameters.forSegmentIds, requestParameters.includeUnsegmented, axiosOptions).then((request) => request(axios, basePath));
|
|
47307
47529
|
},
|
|
47308
47530
|
/**
|
|
47309
|
-
* This API updates an existing Access Profile. The following fields are patchable: **name** **description** **enabled** **owner** **requestable** **accessRequestConfig** **revokeRequestConfig** **segments** **entitlements** **provisioningCriteria** **source** (must be updated with entitlements belonging to new source in the same API call) If you need to change the `source` of the access profile, you can do so only if you update the `entitlements` in the same API call. The new entitlements can only come from the target source that you want to change to. Look for the example \"Replace Source\" in the examples dropdown. A user with SOURCE_SUBADMIN may only use this API to patch Access Profiles which are associated with Sources they are able to administer. > The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters. > You can only add or replace **entitlements** that exist on the source that the access profile is attached to. You can use the **list entitlements** endpoint with the **filters** query parameter to get a list of available entitlements on the access profile\'s source.
|
|
47531
|
+
* This API updates an existing Access Profile. The following fields are patchable: **name** **description** **enabled** **owner** **additionalOwners** **requestable** **accessRequestConfig** **revokeRequestConfig** **segments** **entitlements** **provisioningCriteria** **source** (must be updated with entitlements belonging to new source in the same API call) If you need to change the `source` of the access profile, you can do so only if you update the `entitlements` in the same API call. The new entitlements can only come from the target source that you want to change to. Look for the example \"Replace Source\" in the examples dropdown. A user with SOURCE_SUBADMIN may only use this API to patch Access Profiles which are associated with Sources they are able to administer. > The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters. > You can only add or replace **entitlements** that exist on the source that the access profile is attached to. You can use the **list entitlements** endpoint with the **filters** query parameter to get a list of available entitlements on the access profile\'s source.
|
|
47310
47532
|
* @summary Patch a specified access profile
|
|
47311
47533
|
* @param {AccessProfilesV2024ApiPatchAccessProfileRequest} requestParameters Request parameters.
|
|
47312
47534
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -47618,7 +47840,7 @@ export class AccessProfilesV2024Api extends BaseAPI {
|
|
|
47618
47840
|
}
|
|
47619
47841
|
|
|
47620
47842
|
/**
|
|
47621
|
-
* This API updates an existing Access Profile. The following fields are patchable: **name** **description** **enabled** **owner** **requestable** **accessRequestConfig** **revokeRequestConfig** **segments** **entitlements** **provisioningCriteria** **source** (must be updated with entitlements belonging to new source in the same API call) If you need to change the `source` of the access profile, you can do so only if you update the `entitlements` in the same API call. The new entitlements can only come from the target source that you want to change to. Look for the example \"Replace Source\" in the examples dropdown. A user with SOURCE_SUBADMIN may only use this API to patch Access Profiles which are associated with Sources they are able to administer. > The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters. > You can only add or replace **entitlements** that exist on the source that the access profile is attached to. You can use the **list entitlements** endpoint with the **filters** query parameter to get a list of available entitlements on the access profile\'s source.
|
|
47843
|
+
* This API updates an existing Access Profile. The following fields are patchable: **name** **description** **enabled** **owner** **additionalOwners** **requestable** **accessRequestConfig** **revokeRequestConfig** **segments** **entitlements** **provisioningCriteria** **source** (must be updated with entitlements belonging to new source in the same API call) If you need to change the `source` of the access profile, you can do so only if you update the `entitlements` in the same API call. The new entitlements can only come from the target source that you want to change to. Look for the example \"Replace Source\" in the examples dropdown. A user with SOURCE_SUBADMIN may only use this API to patch Access Profiles which are associated with Sources they are able to administer. > The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters. > You can only add or replace **entitlements** that exist on the source that the access profile is attached to. You can use the **list entitlements** endpoint with the **filters** query parameter to get a list of available entitlements on the access profile\'s source.
|
|
47622
47844
|
* @summary Patch a specified access profile
|
|
47623
47845
|
* @param {AccessProfilesV2024ApiPatchAccessProfileRequest} requestParameters Request parameters.
|
|
47624
47846
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -97894,7 +98116,7 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
97894
98116
|
};
|
|
97895
98117
|
},
|
|
97896
98118
|
/**
|
|
97897
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
98119
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
97898
98120
|
* @summary Bulk delete notification templates
|
|
97899
98121
|
* @param {Array<TemplateBulkDeleteDtoV2024>} templateBulkDeleteDtoV2024
|
|
97900
98122
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
@@ -98044,19 +98266,20 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98044
98266
|
/**
|
|
98045
98267
|
* Retrieve MAIL FROM attributes for a given AWS SES identity.
|
|
98046
98268
|
* @summary Get mail from attributes
|
|
98047
|
-
* @param {string}
|
|
98269
|
+
* @param {string} identity Returns the MX and TXT record to be put in your DNS, as well as the MAIL FROM domain status
|
|
98048
98270
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98049
98271
|
* @param {*} [axiosOptions] Override http request option.
|
|
98050
98272
|
* @throws {RequiredError}
|
|
98051
98273
|
*/
|
|
98052
|
-
getMailFromAttributes: async (
|
|
98053
|
-
// verify required parameter '
|
|
98054
|
-
assertParamExists('getMailFromAttributes', '
|
|
98274
|
+
getMailFromAttributes: async (identity: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
98275
|
+
// verify required parameter 'identity' is not null or undefined
|
|
98276
|
+
assertParamExists('getMailFromAttributes', 'identity', identity)
|
|
98055
98277
|
if (xSailPointExperimental === undefined) {
|
|
98056
98278
|
xSailPointExperimental = 'true';
|
|
98057
98279
|
}
|
|
98058
98280
|
|
|
98059
|
-
const localVarPath = `/mail-from-attributes/{identity}
|
|
98281
|
+
const localVarPath = `/mail-from-attributes/{identity}`
|
|
98282
|
+
.replace(`{${"identity"}}`, encodeURIComponent(String(identity)));
|
|
98060
98283
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
98061
98284
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
98062
98285
|
let baseOptions;
|
|
@@ -98076,10 +98299,6 @@ export const NotificationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
98076
98299
|
// oauth required
|
|
98077
98300
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
98078
98301
|
|
|
98079
|
-
if (id !== undefined) {
|
|
98080
|
-
localVarQueryParameter['id'] = id;
|
|
98081
|
-
}
|
|
98082
|
-
|
|
98083
98302
|
|
|
98084
98303
|
|
|
98085
98304
|
if (xSailPointExperimental != null) {
|
|
@@ -98591,7 +98810,7 @@ export const NotificationsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
98591
98810
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
98592
98811
|
},
|
|
98593
98812
|
/**
|
|
98594
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
98813
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
98595
98814
|
* @summary Bulk delete notification templates
|
|
98596
98815
|
* @param {Array<TemplateBulkDeleteDtoV2024>} templateBulkDeleteDtoV2024
|
|
98597
98816
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
@@ -98634,13 +98853,13 @@ export const NotificationsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
98634
98853
|
/**
|
|
98635
98854
|
* Retrieve MAIL FROM attributes for a given AWS SES identity.
|
|
98636
98855
|
* @summary Get mail from attributes
|
|
98637
|
-
* @param {string}
|
|
98856
|
+
* @param {string} identity Returns the MX and TXT record to be put in your DNS, as well as the MAIL FROM domain status
|
|
98638
98857
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
98639
98858
|
* @param {*} [axiosOptions] Override http request option.
|
|
98640
98859
|
* @throws {RequiredError}
|
|
98641
98860
|
*/
|
|
98642
|
-
async getMailFromAttributes(
|
|
98643
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getMailFromAttributes(
|
|
98861
|
+
async getMailFromAttributes(identity: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MailFromAttributesV2024>> {
|
|
98862
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getMailFromAttributes(identity, xSailPointExperimental, axiosOptions);
|
|
98644
98863
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
98645
98864
|
const localVarOperationServerBasePath = operationServerMap['NotificationsV2024Api.getMailFromAttributes']?.[localVarOperationServerIndex]?.url;
|
|
98646
98865
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -98805,7 +99024,7 @@ export const NotificationsV2024ApiFactory = function (configuration?: Configurat
|
|
|
98805
99024
|
return localVarFp.createVerifiedFromAddress(requestParameters.emailStatusDtoV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
98806
99025
|
},
|
|
98807
99026
|
/**
|
|
98808
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
99027
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
98809
99028
|
* @summary Bulk delete notification templates
|
|
98810
99029
|
* @param {NotificationsV2024ApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
|
|
98811
99030
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -98842,7 +99061,7 @@ export const NotificationsV2024ApiFactory = function (configuration?: Configurat
|
|
|
98842
99061
|
* @throws {RequiredError}
|
|
98843
99062
|
*/
|
|
98844
99063
|
getMailFromAttributes(requestParameters: NotificationsV2024ApiGetMailFromAttributesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MailFromAttributesV2024> {
|
|
98845
|
-
return localVarFp.getMailFromAttributes(requestParameters.
|
|
99064
|
+
return localVarFp.getMailFromAttributes(requestParameters.identity, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
98846
99065
|
},
|
|
98847
99066
|
/**
|
|
98848
99067
|
* This gets a template that you have modified for your site by Id.
|
|
@@ -99057,7 +99276,7 @@ export interface NotificationsV2024ApiGetMailFromAttributesRequest {
|
|
|
99057
99276
|
* @type {string}
|
|
99058
99277
|
* @memberof NotificationsV2024ApiGetMailFromAttributes
|
|
99059
99278
|
*/
|
|
99060
|
-
readonly
|
|
99279
|
+
readonly identity: string
|
|
99061
99280
|
|
|
99062
99281
|
/**
|
|
99063
99282
|
* Use this header to enable this experimental API.
|
|
@@ -99328,7 +99547,7 @@ export class NotificationsV2024Api extends BaseAPI {
|
|
|
99328
99547
|
}
|
|
99329
99548
|
|
|
99330
99549
|
/**
|
|
99331
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
99550
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
99332
99551
|
* @summary Bulk delete notification templates
|
|
99333
99552
|
* @param {NotificationsV2024ApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
|
|
99334
99553
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -99372,7 +99591,7 @@ export class NotificationsV2024Api extends BaseAPI {
|
|
|
99372
99591
|
* @memberof NotificationsV2024Api
|
|
99373
99592
|
*/
|
|
99374
99593
|
public getMailFromAttributes(requestParameters: NotificationsV2024ApiGetMailFromAttributesRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
99375
|
-
return NotificationsV2024ApiFp(this.configuration).getMailFromAttributes(requestParameters.
|
|
99594
|
+
return NotificationsV2024ApiFp(this.configuration).getMailFromAttributes(requestParameters.identity, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
99376
99595
|
}
|
|
99377
99596
|
|
|
99378
99597
|
/**
|
|
@@ -105745,7 +105964,7 @@ export const RolesV2024ApiAxiosParamCreator = function (configuration?: Configur
|
|
|
105745
105964
|
};
|
|
105746
105965
|
},
|
|
105747
105966
|
/**
|
|
105748
|
-
* This API updates an existing role using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: * name * description * enabled * owner * accessProfiles * entitlements * membership * requestable * accessRequestConfig * revokeRequestConfig * segments * accessModelMetadata A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all access profiles included in the role are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters. When you use this API to modify a role\'s membership identities, you can only modify up to a limit of 500 membership identities at a time.
|
|
105967
|
+
* This API updates an existing role using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: * name * description * enabled * owner * additionalOwners * accessProfiles * entitlements * membership * requestable * accessRequestConfig * revokeRequestConfig * segments * accessModelMetadata A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all access profiles included in the role are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters. When you use this API to modify a role\'s membership identities, you can only modify up to a limit of 500 membership identities at a time.
|
|
105749
105968
|
* @summary Patch a specified role
|
|
105750
105969
|
* @param {string} id ID of the Role to patch
|
|
105751
105970
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
@@ -106211,7 +106430,7 @@ export const RolesV2024ApiFp = function(configuration?: Configuration) {
|
|
|
106211
106430
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
106212
106431
|
},
|
|
106213
106432
|
/**
|
|
106214
|
-
* This API updates an existing role using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: * name * description * enabled * owner * accessProfiles * entitlements * membership * requestable * accessRequestConfig * revokeRequestConfig * segments * accessModelMetadata A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all access profiles included in the role are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters. When you use this API to modify a role\'s membership identities, you can only modify up to a limit of 500 membership identities at a time.
|
|
106433
|
+
* This API updates an existing role using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: * name * description * enabled * owner * additionalOwners * accessProfiles * entitlements * membership * requestable * accessRequestConfig * revokeRequestConfig * segments * accessModelMetadata A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all access profiles included in the role are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters. When you use this API to modify a role\'s membership identities, you can only modify up to a limit of 500 membership identities at a time.
|
|
106215
106434
|
* @summary Patch a specified role
|
|
106216
106435
|
* @param {string} id ID of the Role to patch
|
|
106217
106436
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
@@ -106408,7 +106627,7 @@ export const RolesV2024ApiFactory = function (configuration?: Configuration, bas
|
|
|
106408
106627
|
return localVarFp.listRoles(requestParameters.forSubadmin, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, requestParameters.forSegmentIds, requestParameters.includeUnsegmented, axiosOptions).then((request) => request(axios, basePath));
|
|
106409
106628
|
},
|
|
106410
106629
|
/**
|
|
106411
|
-
* This API updates an existing role using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: * name * description * enabled * owner * accessProfiles * entitlements * membership * requestable * accessRequestConfig * revokeRequestConfig * segments * accessModelMetadata A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all access profiles included in the role are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters. When you use this API to modify a role\'s membership identities, you can only modify up to a limit of 500 membership identities at a time.
|
|
106630
|
+
* This API updates an existing role using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: * name * description * enabled * owner * additionalOwners * accessProfiles * entitlements * membership * requestable * accessRequestConfig * revokeRequestConfig * segments * accessModelMetadata A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all access profiles included in the role are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters. When you use this API to modify a role\'s membership identities, you can only modify up to a limit of 500 membership identities at a time.
|
|
106412
106631
|
* @summary Patch a specified role
|
|
106413
106632
|
* @param {RolesV2024ApiPatchRoleRequest} requestParameters Request parameters.
|
|
106414
106633
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -107017,7 +107236,7 @@ export class RolesV2024Api extends BaseAPI {
|
|
|
107017
107236
|
}
|
|
107018
107237
|
|
|
107019
107238
|
/**
|
|
107020
|
-
* This API updates an existing role using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: * name * description * enabled * owner * accessProfiles * entitlements * membership * requestable * accessRequestConfig * revokeRequestConfig * segments * accessModelMetadata A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all access profiles included in the role are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters. When you use this API to modify a role\'s membership identities, you can only modify up to a limit of 500 membership identities at a time.
|
|
107239
|
+
* This API updates an existing role using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: * name * description * enabled * owner * additionalOwners * accessProfiles * entitlements * membership * requestable * accessRequestConfig * revokeRequestConfig * segments * accessModelMetadata A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all access profiles included in the role are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters. When you use this API to modify a role\'s membership identities, you can only modify up to a limit of 500 membership identities at a time.
|
|
107021
107240
|
* @summary Patch a specified role
|
|
107022
107241
|
* @param {RolesV2024ApiPatchRoleRequest} requestParameters Request parameters.
|
|
107023
107242
|
* @param {*} [axiosOptions] Override http request option.
|