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/beta/api.ts
CHANGED
|
@@ -1123,11 +1123,11 @@ export interface AccessProfileBeta {
|
|
|
1123
1123
|
*/
|
|
1124
1124
|
'provisioningCriteria'?: ProvisioningCriteriaLevel1Beta | null;
|
|
1125
1125
|
/**
|
|
1126
|
-
*
|
|
1127
|
-
* @type {Array<
|
|
1126
|
+
* List of additional owner references beyond the primary owner. Each entry may be an identity (IDENTITY) or a governance group (GOVERNANCE_GROUP).
|
|
1127
|
+
* @type {Array<AdditionalOwnerRefBeta>}
|
|
1128
1128
|
* @memberof AccessProfileBeta
|
|
1129
1129
|
*/
|
|
1130
|
-
'additionalOwners'?: Array<
|
|
1130
|
+
'additionalOwners'?: Array<AdditionalOwnerRefBeta> | null;
|
|
1131
1131
|
}
|
|
1132
1132
|
/**
|
|
1133
1133
|
*
|
|
@@ -4233,6 +4233,39 @@ export interface ActivateCampaignOptionsBeta {
|
|
|
4233
4233
|
*/
|
|
4234
4234
|
'timeZone'?: string;
|
|
4235
4235
|
}
|
|
4236
|
+
/**
|
|
4237
|
+
* Reference to an additional owner (identity or governance group).
|
|
4238
|
+
* @export
|
|
4239
|
+
* @interface AdditionalOwnerRefBeta
|
|
4240
|
+
*/
|
|
4241
|
+
export interface AdditionalOwnerRefBeta {
|
|
4242
|
+
/**
|
|
4243
|
+
* Type of the additional owner; IDENTITY for an identity, GOVERNANCE_GROUP for a governance group.
|
|
4244
|
+
* @type {string}
|
|
4245
|
+
* @memberof AdditionalOwnerRefBeta
|
|
4246
|
+
*/
|
|
4247
|
+
'type'?: AdditionalOwnerRefBetaTypeBeta;
|
|
4248
|
+
/**
|
|
4249
|
+
* ID of the identity or governance group.
|
|
4250
|
+
* @type {string}
|
|
4251
|
+
* @memberof AdditionalOwnerRefBeta
|
|
4252
|
+
*/
|
|
4253
|
+
'id'?: string;
|
|
4254
|
+
/**
|
|
4255
|
+
* 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.
|
|
4256
|
+
* @type {string}
|
|
4257
|
+
* @memberof AdditionalOwnerRefBeta
|
|
4258
|
+
*/
|
|
4259
|
+
'name'?: string | null;
|
|
4260
|
+
}
|
|
4261
|
+
|
|
4262
|
+
export const AdditionalOwnerRefBetaTypeBeta = {
|
|
4263
|
+
Identity: 'IDENTITY',
|
|
4264
|
+
GovernanceGroup: 'GOVERNANCE_GROUP'
|
|
4265
|
+
} as const;
|
|
4266
|
+
|
|
4267
|
+
export type AdditionalOwnerRefBetaTypeBeta = typeof AdditionalOwnerRefBetaTypeBeta[keyof typeof AdditionalOwnerRefBetaTypeBeta];
|
|
4268
|
+
|
|
4236
4269
|
/**
|
|
4237
4270
|
*
|
|
4238
4271
|
* @export
|
|
@@ -9725,11 +9758,17 @@ export interface DkimAttributesBeta {
|
|
|
9725
9758
|
*/
|
|
9726
9759
|
'dkimTokens'?: Array<string>;
|
|
9727
9760
|
/**
|
|
9728
|
-
* The current status if the domain /identity has been verified. Ie
|
|
9761
|
+
* The current status if the domain /identity has been verified. Ie SUCCESS, FAILED, PENDING
|
|
9729
9762
|
* @type {string}
|
|
9730
9763
|
* @memberof DkimAttributesBeta
|
|
9731
9764
|
*/
|
|
9732
9765
|
'dkimVerificationStatus'?: string;
|
|
9766
|
+
/**
|
|
9767
|
+
* The AWS SES region the domain is associated with
|
|
9768
|
+
* @type {string}
|
|
9769
|
+
* @memberof DkimAttributesBeta
|
|
9770
|
+
*/
|
|
9771
|
+
'region'?: string;
|
|
9733
9772
|
}
|
|
9734
9773
|
/**
|
|
9735
9774
|
*
|
|
@@ -9764,10 +9803,10 @@ export interface DomainStatusDtoBeta {
|
|
|
9764
9803
|
'domain'?: string;
|
|
9765
9804
|
/**
|
|
9766
9805
|
* DKIM is enabled for this domain
|
|
9767
|
-
* @type {
|
|
9806
|
+
* @type {boolean}
|
|
9768
9807
|
* @memberof DomainStatusDtoBeta
|
|
9769
9808
|
*/
|
|
9770
|
-
'dkimEnabled'?:
|
|
9809
|
+
'dkimEnabled'?: boolean;
|
|
9771
9810
|
/**
|
|
9772
9811
|
* DKIM tokens required for authentication
|
|
9773
9812
|
* @type {Array<string>}
|
|
@@ -9780,6 +9819,12 @@ export interface DomainStatusDtoBeta {
|
|
|
9780
9819
|
* @memberof DomainStatusDtoBeta
|
|
9781
9820
|
*/
|
|
9782
9821
|
'dkimVerificationStatus'?: string;
|
|
9822
|
+
/**
|
|
9823
|
+
* The AWS SES region the domain is associated with
|
|
9824
|
+
* @type {string}
|
|
9825
|
+
* @memberof DomainStatusDtoBeta
|
|
9826
|
+
*/
|
|
9827
|
+
'region'?: string;
|
|
9783
9828
|
}
|
|
9784
9829
|
/**
|
|
9785
9830
|
* An enumeration of the types of DTOs supported within the IdentityNow infrastructure.
|
|
@@ -9904,35 +9949,42 @@ export interface EmailNotificationOptionBeta {
|
|
|
9904
9949
|
*/
|
|
9905
9950
|
export interface EmailStatusDtoBeta {
|
|
9906
9951
|
/**
|
|
9907
|
-
*
|
|
9952
|
+
* Unique identifier for the verified sender address
|
|
9908
9953
|
* @type {string}
|
|
9909
9954
|
* @memberof EmailStatusDtoBeta
|
|
9910
9955
|
*/
|
|
9911
9956
|
'id'?: string | null;
|
|
9912
9957
|
/**
|
|
9913
|
-
*
|
|
9958
|
+
* The verified sender email address
|
|
9914
9959
|
* @type {string}
|
|
9915
9960
|
* @memberof EmailStatusDtoBeta
|
|
9916
9961
|
*/
|
|
9917
9962
|
'email'?: string;
|
|
9918
9963
|
/**
|
|
9919
|
-
*
|
|
9964
|
+
* Whether the sender address is verified by domain
|
|
9920
9965
|
* @type {boolean}
|
|
9921
9966
|
* @memberof EmailStatusDtoBeta
|
|
9922
9967
|
*/
|
|
9923
9968
|
'isVerifiedByDomain'?: boolean;
|
|
9924
9969
|
/**
|
|
9925
|
-
*
|
|
9970
|
+
* The verification status of the sender address
|
|
9926
9971
|
* @type {string}
|
|
9927
9972
|
* @memberof EmailStatusDtoBeta
|
|
9928
9973
|
*/
|
|
9929
9974
|
'verificationStatus'?: EmailStatusDtoBetaVerificationStatusBeta;
|
|
9975
|
+
/**
|
|
9976
|
+
* The AWS SES region the sender address is associated with
|
|
9977
|
+
* @type {string}
|
|
9978
|
+
* @memberof EmailStatusDtoBeta
|
|
9979
|
+
*/
|
|
9980
|
+
'region'?: string;
|
|
9930
9981
|
}
|
|
9931
9982
|
|
|
9932
9983
|
export const EmailStatusDtoBetaVerificationStatusBeta = {
|
|
9933
9984
|
Pending: 'PENDING',
|
|
9934
9985
|
Success: 'SUCCESS',
|
|
9935
|
-
Failed: 'FAILED'
|
|
9986
|
+
Failed: 'FAILED',
|
|
9987
|
+
Na: 'NA'
|
|
9936
9988
|
} as const;
|
|
9937
9989
|
|
|
9938
9990
|
export type EmailStatusDtoBetaVerificationStatusBeta = typeof EmailStatusDtoBetaVerificationStatusBeta[keyof typeof EmailStatusDtoBetaVerificationStatusBeta];
|
|
@@ -17734,15 +17786,13 @@ export interface MatchTermBeta {
|
|
|
17734
17786
|
'children'?: Array<{ [key: string]: any; }> | null;
|
|
17735
17787
|
}
|
|
17736
17788
|
/**
|
|
17737
|
-
*
|
|
17789
|
+
* The notification medium (EMAIL, SLACK, or TEAMS)
|
|
17738
17790
|
* @export
|
|
17739
17791
|
* @enum {string}
|
|
17740
17792
|
*/
|
|
17741
17793
|
|
|
17742
17794
|
export const MediumBeta = {
|
|
17743
17795
|
Email: 'EMAIL',
|
|
17744
|
-
Sms: 'SMS',
|
|
17745
|
-
Phone: 'PHONE',
|
|
17746
17796
|
Slack: 'SLACK',
|
|
17747
17797
|
Teams: 'TEAMS'
|
|
17748
17798
|
} as const;
|
|
@@ -24336,6 +24386,12 @@ export interface RoleBeta {
|
|
|
24336
24386
|
* @memberof RoleBeta
|
|
24337
24387
|
*/
|
|
24338
24388
|
'owner': OwnerReferenceBeta;
|
|
24389
|
+
/**
|
|
24390
|
+
* List of additional owner references beyond the primary owner. Each entry may be an identity (IDENTITY) or a governance group (GOVERNANCE_GROUP).
|
|
24391
|
+
* @type {Array<AdditionalOwnerRefBeta>}
|
|
24392
|
+
* @memberof RoleBeta
|
|
24393
|
+
*/
|
|
24394
|
+
'additionalOwners'?: Array<AdditionalOwnerRefBeta> | null;
|
|
24339
24395
|
/**
|
|
24340
24396
|
*
|
|
24341
24397
|
* @type {Array<AccessProfileRefBeta>}
|
|
@@ -27513,12 +27569,36 @@ export interface SendTestNotificationRequestDtoBeta {
|
|
|
27513
27569
|
* @memberof SendTestNotificationRequestDtoBeta
|
|
27514
27570
|
*/
|
|
27515
27571
|
'medium'?: SendTestNotificationRequestDtoBetaMediumBeta;
|
|
27572
|
+
/**
|
|
27573
|
+
* The locale for the message text.
|
|
27574
|
+
* @type {string}
|
|
27575
|
+
* @memberof SendTestNotificationRequestDtoBeta
|
|
27576
|
+
*/
|
|
27577
|
+
'locale'?: string;
|
|
27516
27578
|
/**
|
|
27517
27579
|
* A Json object that denotes the context specific to the template.
|
|
27518
27580
|
* @type {object}
|
|
27519
27581
|
* @memberof SendTestNotificationRequestDtoBeta
|
|
27520
27582
|
*/
|
|
27521
27583
|
'context'?: object;
|
|
27584
|
+
/**
|
|
27585
|
+
* A list of override recipient email addresses for the test notification.
|
|
27586
|
+
* @type {Array<string>}
|
|
27587
|
+
* @memberof SendTestNotificationRequestDtoBeta
|
|
27588
|
+
*/
|
|
27589
|
+
'recipientEmailList'?: Array<string>;
|
|
27590
|
+
/**
|
|
27591
|
+
* A list of CC email addresses for the test notification.
|
|
27592
|
+
* @type {Array<string>}
|
|
27593
|
+
* @memberof SendTestNotificationRequestDtoBeta
|
|
27594
|
+
*/
|
|
27595
|
+
'carbonCopy'?: Array<string>;
|
|
27596
|
+
/**
|
|
27597
|
+
* A list of BCC email addresses for the test notification.
|
|
27598
|
+
* @type {Array<string>}
|
|
27599
|
+
* @memberof SendTestNotificationRequestDtoBeta
|
|
27600
|
+
*/
|
|
27601
|
+
'blindCarbonCopy'?: Array<string>;
|
|
27522
27602
|
}
|
|
27523
27603
|
|
|
27524
27604
|
export const SendTestNotificationRequestDtoBetaMediumBeta = {
|
|
@@ -31592,13 +31672,13 @@ export interface TaskStatusMessageParametersInnerBeta {
|
|
|
31592
31672
|
*/
|
|
31593
31673
|
export interface TemplateBulkDeleteDtoBeta {
|
|
31594
31674
|
/**
|
|
31595
|
-
*
|
|
31675
|
+
* The template key to delete
|
|
31596
31676
|
* @type {string}
|
|
31597
31677
|
* @memberof TemplateBulkDeleteDtoBeta
|
|
31598
31678
|
*/
|
|
31599
31679
|
'key': string;
|
|
31600
31680
|
/**
|
|
31601
|
-
*
|
|
31681
|
+
* The notification medium (EMAIL, SLACK, or TEAMS)
|
|
31602
31682
|
* @type {string}
|
|
31603
31683
|
* @memberof TemplateBulkDeleteDtoBeta
|
|
31604
31684
|
*/
|
|
@@ -31613,8 +31693,8 @@ export interface TemplateBulkDeleteDtoBeta {
|
|
|
31613
31693
|
|
|
31614
31694
|
export const TemplateBulkDeleteDtoBetaMediumBeta = {
|
|
31615
31695
|
Email: 'EMAIL',
|
|
31616
|
-
|
|
31617
|
-
|
|
31696
|
+
Slack: 'SLACK',
|
|
31697
|
+
Teams: 'TEAMS'
|
|
31618
31698
|
} as const;
|
|
31619
31699
|
|
|
31620
31700
|
export type TemplateBulkDeleteDtoBetaMediumBeta = typeof TemplateBulkDeleteDtoBetaMediumBeta[keyof typeof TemplateBulkDeleteDtoBetaMediumBeta];
|
|
@@ -31713,22 +31793,20 @@ export interface TemplateDtoBeta {
|
|
|
31713
31793
|
'modified'?: string;
|
|
31714
31794
|
/**
|
|
31715
31795
|
*
|
|
31716
|
-
* @type {
|
|
31796
|
+
* @type {TemplateDtoSlackTemplateBeta}
|
|
31717
31797
|
* @memberof TemplateDtoBeta
|
|
31718
31798
|
*/
|
|
31719
|
-
'slackTemplate'?:
|
|
31799
|
+
'slackTemplate'?: TemplateDtoSlackTemplateBeta;
|
|
31720
31800
|
/**
|
|
31721
31801
|
*
|
|
31722
|
-
* @type {
|
|
31802
|
+
* @type {TemplateDtoTeamsTemplateBeta}
|
|
31723
31803
|
* @memberof TemplateDtoBeta
|
|
31724
31804
|
*/
|
|
31725
|
-
'teamsTemplate'?:
|
|
31805
|
+
'teamsTemplate'?: TemplateDtoTeamsTemplateBeta;
|
|
31726
31806
|
}
|
|
31727
31807
|
|
|
31728
31808
|
export const TemplateDtoBetaMediumBeta = {
|
|
31729
31809
|
Email: 'EMAIL',
|
|
31730
|
-
Phone: 'PHONE',
|
|
31731
|
-
Sms: 'SMS',
|
|
31732
31810
|
Slack: 'SLACK',
|
|
31733
31811
|
Teams: 'TEAMS'
|
|
31734
31812
|
} as const;
|
|
@@ -31825,14 +31903,158 @@ export interface TemplateDtoDefaultBeta {
|
|
|
31825
31903
|
|
|
31826
31904
|
export const TemplateDtoDefaultBetaMediumBeta = {
|
|
31827
31905
|
Email: 'EMAIL',
|
|
31828
|
-
Phone: 'PHONE',
|
|
31829
|
-
Sms: 'SMS',
|
|
31830
31906
|
Slack: 'SLACK',
|
|
31831
31907
|
Teams: 'TEAMS'
|
|
31832
31908
|
} as const;
|
|
31833
31909
|
|
|
31834
31910
|
export type TemplateDtoDefaultBetaMediumBeta = typeof TemplateDtoDefaultBetaMediumBeta[keyof typeof TemplateDtoDefaultBetaMediumBeta];
|
|
31835
31911
|
|
|
31912
|
+
/**
|
|
31913
|
+
*
|
|
31914
|
+
* @export
|
|
31915
|
+
* @interface TemplateDtoSlackTemplateBeta
|
|
31916
|
+
*/
|
|
31917
|
+
export interface TemplateDtoSlackTemplateBeta {
|
|
31918
|
+
/**
|
|
31919
|
+
* The template key
|
|
31920
|
+
* @type {string}
|
|
31921
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31922
|
+
*/
|
|
31923
|
+
'key'?: string | null;
|
|
31924
|
+
/**
|
|
31925
|
+
* The main text content of the Slack message
|
|
31926
|
+
* @type {string}
|
|
31927
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31928
|
+
*/
|
|
31929
|
+
'text'?: string;
|
|
31930
|
+
/**
|
|
31931
|
+
* JSON string of Slack Block Kit blocks for rich formatting
|
|
31932
|
+
* @type {string}
|
|
31933
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31934
|
+
*/
|
|
31935
|
+
'blocks'?: string | null;
|
|
31936
|
+
/**
|
|
31937
|
+
* JSON string of Slack attachments
|
|
31938
|
+
* @type {string}
|
|
31939
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31940
|
+
*/
|
|
31941
|
+
'attachments'?: string;
|
|
31942
|
+
/**
|
|
31943
|
+
* The type of notification
|
|
31944
|
+
* @type {string}
|
|
31945
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31946
|
+
*/
|
|
31947
|
+
'notificationType'?: string | null;
|
|
31948
|
+
/**
|
|
31949
|
+
* The approval request ID
|
|
31950
|
+
* @type {string}
|
|
31951
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31952
|
+
*/
|
|
31953
|
+
'approvalId'?: string | null;
|
|
31954
|
+
/**
|
|
31955
|
+
* The request ID
|
|
31956
|
+
* @type {string}
|
|
31957
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31958
|
+
*/
|
|
31959
|
+
'requestId'?: string | null;
|
|
31960
|
+
/**
|
|
31961
|
+
* The ID of the user who made the request
|
|
31962
|
+
* @type {string}
|
|
31963
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31964
|
+
*/
|
|
31965
|
+
'requestedById'?: string | null;
|
|
31966
|
+
/**
|
|
31967
|
+
* Whether this is a subscription notification
|
|
31968
|
+
* @type {boolean}
|
|
31969
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31970
|
+
*/
|
|
31971
|
+
'isSubscription'?: boolean | null;
|
|
31972
|
+
/**
|
|
31973
|
+
*
|
|
31974
|
+
* @type {TemplateSlackAutoApprovalDataBeta}
|
|
31975
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31976
|
+
*/
|
|
31977
|
+
'autoApprovalData'?: TemplateSlackAutoApprovalDataBeta | null;
|
|
31978
|
+
/**
|
|
31979
|
+
*
|
|
31980
|
+
* @type {TemplateSlackCustomFieldsBeta}
|
|
31981
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31982
|
+
*/
|
|
31983
|
+
'customFields'?: TemplateSlackCustomFieldsBeta | null;
|
|
31984
|
+
}
|
|
31985
|
+
/**
|
|
31986
|
+
*
|
|
31987
|
+
* @export
|
|
31988
|
+
* @interface TemplateDtoTeamsTemplateBeta
|
|
31989
|
+
*/
|
|
31990
|
+
export interface TemplateDtoTeamsTemplateBeta {
|
|
31991
|
+
/**
|
|
31992
|
+
* The template key
|
|
31993
|
+
* @type {string}
|
|
31994
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
31995
|
+
*/
|
|
31996
|
+
'key'?: string | null;
|
|
31997
|
+
/**
|
|
31998
|
+
* The title of the Teams message
|
|
31999
|
+
* @type {string}
|
|
32000
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32001
|
+
*/
|
|
32002
|
+
'title'?: string | null;
|
|
32003
|
+
/**
|
|
32004
|
+
* The main text content of the Teams message
|
|
32005
|
+
* @type {string}
|
|
32006
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32007
|
+
*/
|
|
32008
|
+
'text'?: string;
|
|
32009
|
+
/**
|
|
32010
|
+
* JSON string of the Teams adaptive card
|
|
32011
|
+
* @type {string}
|
|
32012
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32013
|
+
*/
|
|
32014
|
+
'messageJSON'?: string | null;
|
|
32015
|
+
/**
|
|
32016
|
+
* Whether this is a subscription notification
|
|
32017
|
+
* @type {boolean}
|
|
32018
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32019
|
+
*/
|
|
32020
|
+
'isSubscription'?: boolean | null;
|
|
32021
|
+
/**
|
|
32022
|
+
* The approval request ID
|
|
32023
|
+
* @type {string}
|
|
32024
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32025
|
+
*/
|
|
32026
|
+
'approvalId'?: string | null;
|
|
32027
|
+
/**
|
|
32028
|
+
* The request ID
|
|
32029
|
+
* @type {string}
|
|
32030
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32031
|
+
*/
|
|
32032
|
+
'requestId'?: string | null;
|
|
32033
|
+
/**
|
|
32034
|
+
* The ID of the user who made the request
|
|
32035
|
+
* @type {string}
|
|
32036
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32037
|
+
*/
|
|
32038
|
+
'requestedById'?: string | null;
|
|
32039
|
+
/**
|
|
32040
|
+
* The type of notification
|
|
32041
|
+
* @type {string}
|
|
32042
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32043
|
+
*/
|
|
32044
|
+
'notificationType'?: string | null;
|
|
32045
|
+
/**
|
|
32046
|
+
*
|
|
32047
|
+
* @type {TemplateSlackAutoApprovalDataBeta}
|
|
32048
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32049
|
+
*/
|
|
32050
|
+
'autoApprovalData'?: TemplateSlackAutoApprovalDataBeta | null;
|
|
32051
|
+
/**
|
|
32052
|
+
*
|
|
32053
|
+
* @type {TemplateSlackCustomFieldsBeta}
|
|
32054
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32055
|
+
*/
|
|
32056
|
+
'customFields'?: TemplateSlackCustomFieldsBeta | null;
|
|
32057
|
+
}
|
|
31836
32058
|
/**
|
|
31837
32059
|
*
|
|
31838
32060
|
* @export
|
|
@@ -31840,31 +32062,31 @@ export type TemplateDtoDefaultBetaMediumBeta = typeof TemplateDtoDefaultBetaMedi
|
|
|
31840
32062
|
*/
|
|
31841
32063
|
export interface TemplateSlackAutoApprovalDataBeta {
|
|
31842
32064
|
/**
|
|
31843
|
-
*
|
|
32065
|
+
* Whether the request was auto-approved
|
|
31844
32066
|
* @type {string}
|
|
31845
32067
|
* @memberof TemplateSlackAutoApprovalDataBeta
|
|
31846
32068
|
*/
|
|
31847
32069
|
'isAutoApproved'?: string | null;
|
|
31848
32070
|
/**
|
|
31849
|
-
*
|
|
32071
|
+
* The item ID
|
|
31850
32072
|
* @type {string}
|
|
31851
32073
|
* @memberof TemplateSlackAutoApprovalDataBeta
|
|
31852
32074
|
*/
|
|
31853
32075
|
'itemId'?: string | null;
|
|
31854
32076
|
/**
|
|
31855
|
-
*
|
|
32077
|
+
* The item type
|
|
31856
32078
|
* @type {string}
|
|
31857
32079
|
* @memberof TemplateSlackAutoApprovalDataBeta
|
|
31858
32080
|
*/
|
|
31859
32081
|
'itemType'?: string | null;
|
|
31860
32082
|
/**
|
|
31861
|
-
*
|
|
32083
|
+
* JSON message for auto-approval
|
|
31862
32084
|
* @type {string}
|
|
31863
32085
|
* @memberof TemplateSlackAutoApprovalDataBeta
|
|
31864
32086
|
*/
|
|
31865
32087
|
'autoApprovalMessageJSON'?: string | null;
|
|
31866
32088
|
/**
|
|
31867
|
-
*
|
|
32089
|
+
* Title for auto-approval
|
|
31868
32090
|
* @type {string}
|
|
31869
32091
|
* @memberof TemplateSlackAutoApprovalDataBeta
|
|
31870
32092
|
*/
|
|
@@ -31877,55 +32099,55 @@ export interface TemplateSlackAutoApprovalDataBeta {
|
|
|
31877
32099
|
*/
|
|
31878
32100
|
export interface TemplateSlackBeta {
|
|
31879
32101
|
/**
|
|
31880
|
-
*
|
|
32102
|
+
* The template key
|
|
31881
32103
|
* @type {string}
|
|
31882
32104
|
* @memberof TemplateSlackBeta
|
|
31883
32105
|
*/
|
|
31884
32106
|
'key'?: string | null;
|
|
31885
32107
|
/**
|
|
31886
|
-
*
|
|
32108
|
+
* The main text content of the Slack message
|
|
31887
32109
|
* @type {string}
|
|
31888
32110
|
* @memberof TemplateSlackBeta
|
|
31889
32111
|
*/
|
|
31890
32112
|
'text'?: string;
|
|
31891
32113
|
/**
|
|
31892
|
-
*
|
|
32114
|
+
* JSON string of Slack Block Kit blocks for rich formatting
|
|
31893
32115
|
* @type {string}
|
|
31894
32116
|
* @memberof TemplateSlackBeta
|
|
31895
32117
|
*/
|
|
31896
32118
|
'blocks'?: string | null;
|
|
31897
32119
|
/**
|
|
31898
|
-
*
|
|
32120
|
+
* JSON string of Slack attachments
|
|
31899
32121
|
* @type {string}
|
|
31900
32122
|
* @memberof TemplateSlackBeta
|
|
31901
32123
|
*/
|
|
31902
32124
|
'attachments'?: string;
|
|
31903
32125
|
/**
|
|
31904
|
-
*
|
|
32126
|
+
* The type of notification
|
|
31905
32127
|
* @type {string}
|
|
31906
32128
|
* @memberof TemplateSlackBeta
|
|
31907
32129
|
*/
|
|
31908
32130
|
'notificationType'?: string | null;
|
|
31909
32131
|
/**
|
|
31910
|
-
*
|
|
32132
|
+
* The approval request ID
|
|
31911
32133
|
* @type {string}
|
|
31912
32134
|
* @memberof TemplateSlackBeta
|
|
31913
32135
|
*/
|
|
31914
32136
|
'approvalId'?: string | null;
|
|
31915
32137
|
/**
|
|
31916
|
-
*
|
|
32138
|
+
* The request ID
|
|
31917
32139
|
* @type {string}
|
|
31918
32140
|
* @memberof TemplateSlackBeta
|
|
31919
32141
|
*/
|
|
31920
32142
|
'requestId'?: string | null;
|
|
31921
32143
|
/**
|
|
31922
|
-
*
|
|
32144
|
+
* The ID of the user who made the request
|
|
31923
32145
|
* @type {string}
|
|
31924
32146
|
* @memberof TemplateSlackBeta
|
|
31925
32147
|
*/
|
|
31926
32148
|
'requestedById'?: string | null;
|
|
31927
32149
|
/**
|
|
31928
|
-
*
|
|
32150
|
+
* Whether this is a subscription notification
|
|
31929
32151
|
* @type {boolean}
|
|
31930
32152
|
* @memberof TemplateSlackBeta
|
|
31931
32153
|
*/
|
|
@@ -31950,25 +32172,25 @@ export interface TemplateSlackBeta {
|
|
|
31950
32172
|
*/
|
|
31951
32173
|
export interface TemplateSlackCustomFieldsBeta {
|
|
31952
32174
|
/**
|
|
31953
|
-
*
|
|
32175
|
+
* The type of request
|
|
31954
32176
|
* @type {string}
|
|
31955
32177
|
* @memberof TemplateSlackCustomFieldsBeta
|
|
31956
32178
|
*/
|
|
31957
32179
|
'requestType'?: string | null;
|
|
31958
32180
|
/**
|
|
31959
|
-
*
|
|
32181
|
+
* Whether the request contains a deny action
|
|
31960
32182
|
* @type {string}
|
|
31961
32183
|
* @memberof TemplateSlackCustomFieldsBeta
|
|
31962
32184
|
*/
|
|
31963
32185
|
'containsDeny'?: string | null;
|
|
31964
32186
|
/**
|
|
31965
|
-
*
|
|
32187
|
+
* The campaign ID
|
|
31966
32188
|
* @type {string}
|
|
31967
32189
|
* @memberof TemplateSlackCustomFieldsBeta
|
|
31968
32190
|
*/
|
|
31969
32191
|
'campaignId'?: string | null;
|
|
31970
32192
|
/**
|
|
31971
|
-
*
|
|
32193
|
+
* The campaign status
|
|
31972
32194
|
* @type {string}
|
|
31973
32195
|
* @memberof TemplateSlackCustomFieldsBeta
|
|
31974
32196
|
*/
|
|
@@ -31981,55 +32203,55 @@ export interface TemplateSlackCustomFieldsBeta {
|
|
|
31981
32203
|
*/
|
|
31982
32204
|
export interface TemplateTeamsBeta {
|
|
31983
32205
|
/**
|
|
31984
|
-
*
|
|
32206
|
+
* The template key
|
|
31985
32207
|
* @type {string}
|
|
31986
32208
|
* @memberof TemplateTeamsBeta
|
|
31987
32209
|
*/
|
|
31988
32210
|
'key'?: string | null;
|
|
31989
32211
|
/**
|
|
31990
|
-
*
|
|
32212
|
+
* The title of the Teams message
|
|
31991
32213
|
* @type {string}
|
|
31992
32214
|
* @memberof TemplateTeamsBeta
|
|
31993
32215
|
*/
|
|
31994
32216
|
'title'?: string | null;
|
|
31995
32217
|
/**
|
|
31996
|
-
*
|
|
32218
|
+
* The main text content of the Teams message
|
|
31997
32219
|
* @type {string}
|
|
31998
32220
|
* @memberof TemplateTeamsBeta
|
|
31999
32221
|
*/
|
|
32000
32222
|
'text'?: string;
|
|
32001
32223
|
/**
|
|
32002
|
-
*
|
|
32224
|
+
* JSON string of the Teams adaptive card
|
|
32003
32225
|
* @type {string}
|
|
32004
32226
|
* @memberof TemplateTeamsBeta
|
|
32005
32227
|
*/
|
|
32006
32228
|
'messageJSON'?: string | null;
|
|
32007
32229
|
/**
|
|
32008
|
-
*
|
|
32230
|
+
* Whether this is a subscription notification
|
|
32009
32231
|
* @type {boolean}
|
|
32010
32232
|
* @memberof TemplateTeamsBeta
|
|
32011
32233
|
*/
|
|
32012
32234
|
'isSubscription'?: boolean | null;
|
|
32013
32235
|
/**
|
|
32014
|
-
*
|
|
32236
|
+
* The approval request ID
|
|
32015
32237
|
* @type {string}
|
|
32016
32238
|
* @memberof TemplateTeamsBeta
|
|
32017
32239
|
*/
|
|
32018
32240
|
'approvalId'?: string | null;
|
|
32019
32241
|
/**
|
|
32020
|
-
*
|
|
32242
|
+
* The request ID
|
|
32021
32243
|
* @type {string}
|
|
32022
32244
|
* @memberof TemplateTeamsBeta
|
|
32023
32245
|
*/
|
|
32024
32246
|
'requestId'?: string | null;
|
|
32025
32247
|
/**
|
|
32026
|
-
*
|
|
32248
|
+
* The ID of the user who made the request
|
|
32027
32249
|
* @type {string}
|
|
32028
32250
|
* @memberof TemplateTeamsBeta
|
|
32029
32251
|
*/
|
|
32030
32252
|
'requestedById'?: string | null;
|
|
32031
32253
|
/**
|
|
32032
|
-
*
|
|
32254
|
+
* The type of notification
|
|
32033
32255
|
* @type {string}
|
|
32034
32256
|
* @memberof TemplateTeamsBeta
|
|
32035
32257
|
*/
|
|
@@ -35949,7 +36171,7 @@ export const AccessProfilesBetaApiAxiosParamCreator = function (configuration?:
|
|
|
35949
36171
|
};
|
|
35950
36172
|
},
|
|
35951
36173
|
/**
|
|
35952
|
-
* This API updates an existing Access Profile. The following fields are patchable: **name**, **description**, **enabled**, **owner**, **requestable**, **accessRequestConfig**, **revokeRequestConfig**, **segments**, **entitlements**, **provisioningCriteria** A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. In addition, a 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.
|
|
36174
|
+
* This API updates an existing Access Profile. The following fields are patchable: **name**, **description**, **enabled**, **owner**, **additionalOwners**, **requestable**, **accessRequestConfig**, **revokeRequestConfig**, **segments**, **entitlements**, **provisioningCriteria** A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. In addition, a 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.
|
|
35953
36175
|
* @summary Patch a specified access profile
|
|
35954
36176
|
* @param {string} id ID of the Access Profile to patch
|
|
35955
36177
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta
|
|
@@ -36141,7 +36363,7 @@ export const AccessProfilesBetaApiFp = function(configuration?: Configuration) {
|
|
|
36141
36363
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
36142
36364
|
},
|
|
36143
36365
|
/**
|
|
36144
|
-
* This API updates an existing Access Profile. The following fields are patchable: **name**, **description**, **enabled**, **owner**, **requestable**, **accessRequestConfig**, **revokeRequestConfig**, **segments**, **entitlements**, **provisioningCriteria** A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. In addition, a 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.
|
|
36366
|
+
* This API updates an existing Access Profile. The following fields are patchable: **name**, **description**, **enabled**, **owner**, **additionalOwners**, **requestable**, **accessRequestConfig**, **revokeRequestConfig**, **segments**, **entitlements**, **provisioningCriteria** A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. In addition, a 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.
|
|
36145
36367
|
* @summary Patch a specified access profile
|
|
36146
36368
|
* @param {string} id ID of the Access Profile to patch
|
|
36147
36369
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta
|
|
@@ -36238,7 +36460,7 @@ export const AccessProfilesBetaApiFactory = function (configuration?: Configurat
|
|
|
36238
36460
|
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));
|
|
36239
36461
|
},
|
|
36240
36462
|
/**
|
|
36241
|
-
* This API updates an existing Access Profile. The following fields are patchable: **name**, **description**, **enabled**, **owner**, **requestable**, **accessRequestConfig**, **revokeRequestConfig**, **segments**, **entitlements**, **provisioningCriteria** A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. In addition, a 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.
|
|
36463
|
+
* This API updates an existing Access Profile. The following fields are patchable: **name**, **description**, **enabled**, **owner**, **additionalOwners**, **requestable**, **accessRequestConfig**, **revokeRequestConfig**, **segments**, **entitlements**, **provisioningCriteria** A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. In addition, a 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.
|
|
36242
36464
|
* @summary Patch a specified access profile
|
|
36243
36465
|
* @param {AccessProfilesBetaApiPatchAccessProfileRequest} requestParameters Request parameters.
|
|
36244
36466
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -36543,7 +36765,7 @@ export class AccessProfilesBetaApi extends BaseAPI {
|
|
|
36543
36765
|
}
|
|
36544
36766
|
|
|
36545
36767
|
/**
|
|
36546
|
-
* This API updates an existing Access Profile. The following fields are patchable: **name**, **description**, **enabled**, **owner**, **requestable**, **accessRequestConfig**, **revokeRequestConfig**, **segments**, **entitlements**, **provisioningCriteria** A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. In addition, a 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.
|
|
36768
|
+
* This API updates an existing Access Profile. The following fields are patchable: **name**, **description**, **enabled**, **owner**, **additionalOwners**, **requestable**, **accessRequestConfig**, **revokeRequestConfig**, **segments**, **entitlements**, **provisioningCriteria** A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. In addition, a 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.
|
|
36547
36769
|
* @summary Patch a specified access profile
|
|
36548
36770
|
* @param {AccessProfilesBetaApiPatchAccessProfileRequest} requestParameters Request parameters.
|
|
36549
36771
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -72165,7 +72387,7 @@ export const NotificationsBetaApiAxiosParamCreator = function (configuration?: C
|
|
|
72165
72387
|
};
|
|
72166
72388
|
},
|
|
72167
72389
|
/**
|
|
72168
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
72390
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
72169
72391
|
* @summary Bulk delete notification templates
|
|
72170
72392
|
* @param {Array<TemplateBulkDeleteDtoBeta>} templateBulkDeleteDtoBeta
|
|
72171
72393
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -72764,7 +72986,7 @@ export const NotificationsBetaApiFp = function(configuration?: Configuration) {
|
|
|
72764
72986
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
72765
72987
|
},
|
|
72766
72988
|
/**
|
|
72767
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
72989
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
72768
72990
|
* @summary Bulk delete notification templates
|
|
72769
72991
|
* @param {Array<TemplateBulkDeleteDtoBeta>} templateBulkDeleteDtoBeta
|
|
72770
72992
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -72967,7 +73189,7 @@ export const NotificationsBetaApiFactory = function (configuration?: Configurati
|
|
|
72967
73189
|
return localVarFp.createVerifiedFromAddress(requestParameters.emailStatusDtoBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
72968
73190
|
},
|
|
72969
73191
|
/**
|
|
72970
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
73192
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
72971
73193
|
* @summary Bulk delete notification templates
|
|
72972
73194
|
* @param {NotificationsBetaApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
|
|
72973
73195
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -73376,7 +73598,7 @@ export class NotificationsBetaApi extends BaseAPI {
|
|
|
73376
73598
|
}
|
|
73377
73599
|
|
|
73378
73600
|
/**
|
|
73379
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
73601
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
73380
73602
|
* @summary Bulk delete notification templates
|
|
73381
73603
|
* @param {NotificationsBetaApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
|
|
73382
73604
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -78703,7 +78925,7 @@ export const RolesBetaApiAxiosParamCreator = function (configuration?: Configura
|
|
|
78703
78925
|
};
|
|
78704
78926
|
},
|
|
78705
78927
|
/**
|
|
78706
|
-
* 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.
|
|
78928
|
+
* 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.
|
|
78707
78929
|
* @summary Patch a specified role
|
|
78708
78930
|
* @param {string} id ID of the Role to patch
|
|
78709
78931
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta
|
|
@@ -78869,7 +79091,7 @@ export const RolesBetaApiFp = function(configuration?: Configuration) {
|
|
|
78869
79091
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
78870
79092
|
},
|
|
78871
79093
|
/**
|
|
78872
|
-
* 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.
|
|
79094
|
+
* 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.
|
|
78873
79095
|
* @summary Patch a specified role
|
|
78874
79096
|
* @param {string} id ID of the Role to patch
|
|
78875
79097
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta
|
|
@@ -78963,7 +79185,7 @@ export const RolesBetaApiFactory = function (configuration?: Configuration, base
|
|
|
78963
79185
|
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));
|
|
78964
79186
|
},
|
|
78965
79187
|
/**
|
|
78966
|
-
* 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.
|
|
79188
|
+
* 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.
|
|
78967
79189
|
* @summary Patch a specified role
|
|
78968
79190
|
* @param {RolesBetaApiPatchRoleRequest} requestParameters Request parameters.
|
|
78969
79191
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -79305,7 +79527,7 @@ export class RolesBetaApi extends BaseAPI {
|
|
|
79305
79527
|
}
|
|
79306
79528
|
|
|
79307
79529
|
/**
|
|
79308
|
-
* 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.
|
|
79530
|
+
* 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.
|
|
79309
79531
|
* @summary Patch a specified role
|
|
79310
79532
|
* @param {RolesBetaApiPatchRoleRequest} requestParameters Request parameters.
|
|
79311
79533
|
* @param {*} [axiosOptions] Override http request option.
|