opal-security 3.2.2 → 3.2.3
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/README.md +22 -22
- package/lib/commands/login.js +11 -11
- package/lib/commands/request/get.js +2 -1
- package/lib/graphql/graphql.d.ts +855 -158
- package/lib/graphql/graphql.js +107 -10
- package/lib/handler.d.ts +6 -6
- package/lib/handler.js +1 -1
- package/lib/labels.js +3 -0
- package/lib/lib/apollo.d.ts +3 -3
- package/lib/lib/apollo.js +24 -47
- package/lib/lib/request/api/mutations/create-request.d.ts +2 -2
- package/lib/lib/request/api/queries/apps.d.ts +2 -2
- package/lib/lib/request/api/queries/assets.d.ts +3 -3
- package/lib/lib/request/api/queries/assets.js +5 -5
- package/lib/lib/request/api/queries/request-defaults.d.ts +2 -2
- package/lib/lib/request/api/queries/request-defaults.js +2 -1
- package/lib/lib/request/api/queries/requests.d.ts +4 -4
- package/lib/lib/request/api/queries/roles.d.ts +3 -3
- package/lib/lib/request/api/queries/roles.js +9 -9
- package/lib/lib/request/displays.d.ts +3 -3
- package/lib/lib/request/displays.js +15 -15
- package/lib/lib/request/prompts/apps-prompt.d.ts +2 -2
- package/lib/lib/request/prompts/asset-prompt.d.ts +3 -3
- package/lib/lib/request/prompts/duration-prompt.js +3 -0
- package/lib/lib/request/prompts/role-prompt.d.ts +2 -2
- package/lib/lib/request/request-utils.d.ts +7 -8
- package/lib/lib/request/request-utils.js +17 -16
- package/lib/lib/resources.d.ts +1 -1
- package/lib/lib/sessions.d.ts +1 -1
- package/lib/lib/sessions.js +3 -2
- package/oclif.manifest.json +1 -1
- package/package.json +4 -3
package/lib/graphql/graphql.d.ts
CHANGED
|
@@ -162,6 +162,10 @@ export type Scalars = {
|
|
|
162
162
|
input: string;
|
|
163
163
|
output: string;
|
|
164
164
|
};
|
|
165
|
+
ExternalEventId: {
|
|
166
|
+
input: any;
|
|
167
|
+
output: any;
|
|
168
|
+
};
|
|
165
169
|
FirstPartyTokenId: {
|
|
166
170
|
input: string;
|
|
167
171
|
output: string;
|
|
@@ -246,6 +250,10 @@ export type Scalars = {
|
|
|
246
250
|
input: string;
|
|
247
251
|
output: string;
|
|
248
252
|
};
|
|
253
|
+
RemoteEventId: {
|
|
254
|
+
input: any;
|
|
255
|
+
output: any;
|
|
256
|
+
};
|
|
249
257
|
RemoteGroupId: {
|
|
250
258
|
input: string;
|
|
251
259
|
output: string;
|
|
@@ -266,6 +274,10 @@ export type Scalars = {
|
|
|
266
274
|
input: string;
|
|
267
275
|
output: string;
|
|
268
276
|
};
|
|
277
|
+
RequestReviewerDelegationId: {
|
|
278
|
+
input: any;
|
|
279
|
+
output: any;
|
|
280
|
+
};
|
|
269
281
|
RequestTemplateCustomFieldId: {
|
|
270
282
|
input: string;
|
|
271
283
|
output: string;
|
|
@@ -502,11 +514,12 @@ export type Access = {
|
|
|
502
514
|
* This access might be direct or indirect.
|
|
503
515
|
*/
|
|
504
516
|
latestExpiringAccessPoint: AccessPoint;
|
|
505
|
-
principalId: Scalars["
|
|
517
|
+
principalId: Scalars["EntityId"]["output"];
|
|
506
518
|
principalType: EntityType;
|
|
507
519
|
};
|
|
508
520
|
export declare enum AccessChangeType {
|
|
509
521
|
ConvertedToJit = "CONVERTED_TO_JIT",
|
|
522
|
+
Extended = "EXTENDED",
|
|
510
523
|
Other = "OTHER",
|
|
511
524
|
Revoked = "REVOKED"
|
|
512
525
|
}
|
|
@@ -514,6 +527,7 @@ export type AccessEntity = {
|
|
|
514
527
|
accessStats?: Maybe<AccessStats>;
|
|
515
528
|
associatedItems: AssociatedItemConnection;
|
|
516
529
|
id: Scalars["UUID"]["output"];
|
|
530
|
+
maxDirectUsersAllowed?: Maybe<Scalars["Int"]["output"]>;
|
|
517
531
|
/** totalGroupAccessCount: total number of groups with access to the entity (direct or indirect) */
|
|
518
532
|
totalGroupAccessCount: Scalars["Int"]["output"];
|
|
519
533
|
/** totalNHIAccessCount: total number of non-human identities with access to the entity (direct or indirect) */
|
|
@@ -587,7 +601,7 @@ export type AccessPoint = {
|
|
|
587
601
|
entityType: EntityType;
|
|
588
602
|
eventId: Scalars["EventId"]["output"];
|
|
589
603
|
expiration?: Maybe<Scalars["Time"]["output"]>;
|
|
590
|
-
principalId: Scalars["
|
|
604
|
+
principalId: Scalars["EntityId"]["output"];
|
|
591
605
|
principalName: Scalars["String"]["output"];
|
|
592
606
|
principalType: EntityType;
|
|
593
607
|
supportTicket?: Maybe<SupportTicket>;
|
|
@@ -612,6 +626,7 @@ export type AccessReview = Node & RolePermissionTargetEntity & {
|
|
|
612
626
|
itemsToReviewStats?: Maybe<OngoingAccessReviewTabStats>;
|
|
613
627
|
lastReminderAt?: Maybe<Scalars["Time"]["output"]>;
|
|
614
628
|
name: Scalars["String"]["output"];
|
|
629
|
+
permissionSources: PermissionSourceConnection;
|
|
615
630
|
reminderIncludeManager: Scalars["Boolean"]["output"];
|
|
616
631
|
reminderSchedule: Array<Scalars["Int"]["output"]>;
|
|
617
632
|
reminderTimeOfDay: Scalars["Time"]["output"];
|
|
@@ -630,10 +645,17 @@ export type AccessReview = Node & RolePermissionTargetEntity & {
|
|
|
630
645
|
updatedAt: Scalars["Time"]["output"];
|
|
631
646
|
usersToReview: UserConnection;
|
|
632
647
|
};
|
|
648
|
+
export type AccessReviewPermissionSourcesArgs = {
|
|
649
|
+
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
650
|
+
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
651
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
652
|
+
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
653
|
+
};
|
|
633
654
|
export type AccessReviewUsersToReviewArgs = {
|
|
634
655
|
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
635
656
|
filters?: AccessReviewUserFilters;
|
|
636
657
|
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
658
|
+
sortBy: UsersSortBy;
|
|
637
659
|
};
|
|
638
660
|
export declare enum AccessReviewAction {
|
|
639
661
|
Accept = "ACCEPT",
|
|
@@ -692,7 +714,6 @@ export type AccessReviewConnection = {
|
|
|
692
714
|
connectionUsers?: Maybe<Array<AccessReviewConnectionUser>>;
|
|
693
715
|
createdAt: Scalars["Time"]["output"];
|
|
694
716
|
currentUserReviewerStatus?: Maybe<AccessReviewConnectionReviewerStatus>;
|
|
695
|
-
eventId?: Maybe<Scalars["EventId"]["output"]>;
|
|
696
717
|
id: Scalars["AccessReviewConnectionId"]["output"];
|
|
697
718
|
numConnectionUsers: Scalars["Int"]["output"];
|
|
698
719
|
reviewerUsers: Array<ReviewerUser>;
|
|
@@ -791,7 +812,6 @@ export type AccessReviewGroup = {
|
|
|
791
812
|
canEditReviewers: Scalars["Boolean"]["output"];
|
|
792
813
|
createdAt: Scalars["Time"]["output"];
|
|
793
814
|
currentUserReviewerStatus?: Maybe<AccessReviewGroupReviewerStatus>;
|
|
794
|
-
eventId?: Maybe<Scalars["EventId"]["output"]>;
|
|
795
815
|
group?: Maybe<Group>;
|
|
796
816
|
groupGroups?: Maybe<Array<AccessReviewGroupGroup>>;
|
|
797
817
|
groupId: Scalars["GroupId"]["output"];
|
|
@@ -817,7 +837,6 @@ export type AccessReviewGroupGroup = {
|
|
|
817
837
|
containingGroup: Group;
|
|
818
838
|
containingGroupId: Scalars["GroupId"]["output"];
|
|
819
839
|
createdAt: Scalars["Time"]["output"];
|
|
820
|
-
eventId: Scalars["EventId"]["output"];
|
|
821
840
|
expiration?: Maybe<Scalars["Time"]["output"]>;
|
|
822
841
|
groupGroupAccess?: Maybe<GroupResourceAccess>;
|
|
823
842
|
groupResourceAccess?: Maybe<GroupResourceAccess>;
|
|
@@ -843,7 +862,7 @@ export type AccessReviewGroupItemAssignment = Node & {
|
|
|
843
862
|
groupName: Scalars["String"]["output"];
|
|
844
863
|
groupType: GroupType;
|
|
845
864
|
id: Scalars["UUID"]["output"];
|
|
846
|
-
item:
|
|
865
|
+
item: AccessEntity;
|
|
847
866
|
itemId: Scalars["UUID"]["output"];
|
|
848
867
|
itemKind: AccessReviewGroupItemKind;
|
|
849
868
|
itemName: Scalars["String"]["output"];
|
|
@@ -856,6 +875,7 @@ export type AccessReviewGroupItemAssignmentFilters = {
|
|
|
856
875
|
accessReviewId: Scalars["AccessReviewId"]["input"];
|
|
857
876
|
adminOwnerId?: InputMaybe<Scalars["OwnerId"]["input"]>;
|
|
858
877
|
assignedStatus?: InputMaybe<AccessReviewAssignedStatus>;
|
|
878
|
+
canAssignReviewers?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
859
879
|
connectionId?: InputMaybe<Scalars["ConnectionId"]["input"]>;
|
|
860
880
|
groupId?: InputMaybe<Scalars["GroupId"]["input"]>;
|
|
861
881
|
itemType?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -889,7 +909,7 @@ export type AccessReviewGroupOutput = AccessReviewGroupNotFoundError | AccessRev
|
|
|
889
909
|
export type AccessReviewGroupProposedChange = {
|
|
890
910
|
__typename?: "AccessReviewGroupProposedChange";
|
|
891
911
|
currentReviewer: ReviewerUser;
|
|
892
|
-
group:
|
|
912
|
+
group: Group;
|
|
893
913
|
proposedReviewer: ReviewerUser;
|
|
894
914
|
user: UserSmall;
|
|
895
915
|
};
|
|
@@ -902,7 +922,6 @@ export type AccessReviewGroupResource = {
|
|
|
902
922
|
/** This is nullable because this access review may not always include this resource. */
|
|
903
923
|
accessReviewResourceId?: Maybe<Scalars["AccessReviewResourceId"]["output"]>;
|
|
904
924
|
createdAt: Scalars["Time"]["output"];
|
|
905
|
-
eventId: Scalars["EventId"]["output"];
|
|
906
925
|
expiration?: Maybe<Scalars["Time"]["output"]>;
|
|
907
926
|
groupId: Scalars["GroupId"]["output"];
|
|
908
927
|
groupResourceAccess?: Maybe<GroupResourceAccess>;
|
|
@@ -912,6 +931,7 @@ export type AccessReviewGroupResource = {
|
|
|
912
931
|
resource?: Maybe<Resource>;
|
|
913
932
|
resourceId: Scalars["ResourceId"]["output"];
|
|
914
933
|
reviewerUsers?: Maybe<Array<ReviewerUser>>;
|
|
934
|
+
roleAssignment?: Maybe<RoleAssignment>;
|
|
915
935
|
statusAndOutcome: AccessReviewItemStatusAndOutcome;
|
|
916
936
|
updatedAt: Scalars["Time"]["output"];
|
|
917
937
|
};
|
|
@@ -940,7 +960,6 @@ export type AccessReviewGroupUser = {
|
|
|
940
960
|
accessReviewGroupId: Scalars["AccessReviewGroupId"]["output"];
|
|
941
961
|
createdAt: Scalars["Time"]["output"];
|
|
942
962
|
errorMessage?: Maybe<Scalars["String"]["output"]>;
|
|
943
|
-
eventId: Scalars["EventId"]["output"];
|
|
944
963
|
group?: Maybe<Group>;
|
|
945
964
|
groupId: Scalars["GroupId"]["output"];
|
|
946
965
|
groupUser?: Maybe<GroupUser>;
|
|
@@ -949,6 +968,7 @@ export type AccessReviewGroupUser = {
|
|
|
949
968
|
lastSynced?: Maybe<Scalars["Time"]["output"]>;
|
|
950
969
|
requestId?: Maybe<Scalars["RequestId"]["output"]>;
|
|
951
970
|
reviewerUsers?: Maybe<Array<ReviewerUser>>;
|
|
971
|
+
roleAssignment?: Maybe<RoleAssignment>;
|
|
952
972
|
statusAndOutcome: AccessReviewItemStatusAndOutcome;
|
|
953
973
|
statusCode?: Maybe<PropagationStatusCode>;
|
|
954
974
|
taskType?: Maybe<PropagationTaskType>;
|
|
@@ -963,7 +983,7 @@ export type AccessReviewGroupUserWarning = {
|
|
|
963
983
|
accessReviewGroupUserId: Scalars["AccessReviewGroupUserId"]["output"];
|
|
964
984
|
accessReviewGroupUserReviewerId: Scalars["AccessReviewGroupUserReviewerId"]["output"];
|
|
965
985
|
accessReviewUserWarningType: AccessReviewUserWarningType;
|
|
966
|
-
group?: Maybe<
|
|
986
|
+
group?: Maybe<Group>;
|
|
967
987
|
reviewer?: Maybe<User>;
|
|
968
988
|
reviewerId?: Maybe<Scalars["UserId"]["output"]>;
|
|
969
989
|
user?: Maybe<User>;
|
|
@@ -996,13 +1016,22 @@ export type AccessReviewItemConnection = PageConnection & {
|
|
|
996
1016
|
__typename?: "AccessReviewItemConnection";
|
|
997
1017
|
edges: Array<AccessReviewItemEdge>;
|
|
998
1018
|
pageInfo: PageInfo;
|
|
1019
|
+
reviewedGroupCount: Scalars["Int"]["output"];
|
|
1020
|
+
reviewedResourceCount: Scalars["Int"]["output"];
|
|
999
1021
|
totalCount: Scalars["Int"]["output"];
|
|
1022
|
+
totalGroupCount: Scalars["Int"]["output"];
|
|
1023
|
+
totalResourceCount: Scalars["Int"]["output"];
|
|
1000
1024
|
};
|
|
1001
1025
|
export type AccessReviewItemEdge = Edge & {
|
|
1002
1026
|
__typename?: "AccessReviewItemEdge";
|
|
1027
|
+
accessLevel: IAccessLevel;
|
|
1003
1028
|
cursor: Scalars["String"]["output"];
|
|
1004
1029
|
edgeId: AccessReviewEdgeId;
|
|
1005
1030
|
node: AccessibleItem;
|
|
1031
|
+
roleAssignment?: Maybe<RoleAssignment>;
|
|
1032
|
+
updatedAccessLevel?: Maybe<IAccessLevel>;
|
|
1033
|
+
updatedResource?: Maybe<Resource>;
|
|
1034
|
+
updatedResourceId?: Maybe<Scalars["ResourceId"]["output"]>;
|
|
1006
1035
|
userNote?: Maybe<Scalars["String"]["output"]>;
|
|
1007
1036
|
userStatus: ReviewerUserStatus;
|
|
1008
1037
|
};
|
|
@@ -1058,6 +1087,14 @@ export type AccessReviewNotStoppedError = Error & {
|
|
|
1058
1087
|
message: Scalars["String"]["output"];
|
|
1059
1088
|
};
|
|
1060
1089
|
export type AccessReviewOutput = AccessReviewNotFoundError | AccessReviewResult;
|
|
1090
|
+
export type AccessReviewPreviewSortBy = {
|
|
1091
|
+
direction?: InputMaybe<SortDirection>;
|
|
1092
|
+
field?: InputMaybe<AccessReviewPreviewSortByField>;
|
|
1093
|
+
};
|
|
1094
|
+
export declare enum AccessReviewPreviewSortByField {
|
|
1095
|
+
EntityName = "ENTITY_NAME",
|
|
1096
|
+
ReviewCount = "REVIEW_COUNT"
|
|
1097
|
+
}
|
|
1061
1098
|
export type AccessReviewProposedChange = AccessReviewGroupProposedChange | AccessReviewResourceProposedChange;
|
|
1062
1099
|
export type AccessReviewProposedChangeInput = {
|
|
1063
1100
|
accessReviewId: Scalars["AccessReviewId"]["input"];
|
|
@@ -1076,7 +1113,6 @@ export type AccessReviewResource = {
|
|
|
1076
1113
|
canEditReviewers: Scalars["Boolean"]["output"];
|
|
1077
1114
|
createdAt: Scalars["Time"]["output"];
|
|
1078
1115
|
currentUserReviewerStatus?: Maybe<AccessReviewResourceReviewerStatus>;
|
|
1079
|
-
eventId?: Maybe<Scalars["EventId"]["output"]>;
|
|
1080
1116
|
id: Scalars["AccessReviewResourceId"]["output"];
|
|
1081
1117
|
isResourceDeleted: Scalars["Boolean"]["output"];
|
|
1082
1118
|
numResourceUsers: Scalars["Int"]["output"];
|
|
@@ -1101,7 +1137,7 @@ export type AccessReviewResourcePrincipalAssignment = Node & {
|
|
|
1101
1137
|
__typename?: "AccessReviewResourcePrincipalAssignment";
|
|
1102
1138
|
accessLevelName?: Maybe<Scalars["AccessLevelName"]["output"]>;
|
|
1103
1139
|
accessLevelRemoteId?: Maybe<Scalars["AccessLevelRemoteId"]["output"]>;
|
|
1104
|
-
entity:
|
|
1140
|
+
entity: AccessEntity;
|
|
1105
1141
|
entityId: Scalars["EntityId"]["output"];
|
|
1106
1142
|
entityItemType: Scalars["String"]["output"];
|
|
1107
1143
|
entityName: Scalars["String"]["output"];
|
|
@@ -1124,6 +1160,7 @@ export type AccessReviewResourcePrincipalAssignmentsFilters = {
|
|
|
1124
1160
|
accessReviewId: Scalars["AccessReviewId"]["input"];
|
|
1125
1161
|
adminOwnerId?: InputMaybe<Scalars["OwnerId"]["input"]>;
|
|
1126
1162
|
assignedStatus?: InputMaybe<AccessReviewAssignedStatus>;
|
|
1163
|
+
canAssignReviewers?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
1127
1164
|
outcome?: InputMaybe<AccessReviewItemOutcome>;
|
|
1128
1165
|
resourcePrincipalID?: InputMaybe<Scalars["ResourceId"]["input"]>;
|
|
1129
1166
|
reviewerId?: InputMaybe<Scalars["UserId"]["input"]>;
|
|
@@ -1152,7 +1189,6 @@ export type AccessReviewResourceResource = {
|
|
|
1152
1189
|
accessReviewResourceEntityId?: Maybe<Scalars["AccessReviewResourceId"]["output"]>;
|
|
1153
1190
|
accessReviewResourcePrincipalId?: Maybe<Scalars["AccessReviewResourceId"]["output"]>;
|
|
1154
1191
|
createdAt: Scalars["Time"]["output"];
|
|
1155
|
-
eventId?: Maybe<Scalars["EventId"]["output"]>;
|
|
1156
1192
|
id: Scalars["AccessReviewRoleAssignmentId"]["output"];
|
|
1157
1193
|
isResourceEntityDeleted: Scalars["Boolean"]["output"];
|
|
1158
1194
|
isResourcePrincipalDeleted: Scalars["Boolean"]["output"];
|
|
@@ -1185,7 +1221,6 @@ export type AccessReviewResourceUser = {
|
|
|
1185
1221
|
accessReviewResourceId: Scalars["AccessReviewResourceId"]["output"];
|
|
1186
1222
|
createdAt: Scalars["Time"]["output"];
|
|
1187
1223
|
errorMessage?: Maybe<Scalars["String"]["output"]>;
|
|
1188
|
-
eventId: Scalars["EventId"]["output"];
|
|
1189
1224
|
id: Scalars["AccessReviewResourceUserId"]["output"];
|
|
1190
1225
|
isResourceDeleted: Scalars["Boolean"]["output"];
|
|
1191
1226
|
lastSynced?: Maybe<Scalars["Time"]["output"]>;
|
|
@@ -1194,6 +1229,7 @@ export type AccessReviewResourceUser = {
|
|
|
1194
1229
|
resourceId: Scalars["ResourceId"]["output"];
|
|
1195
1230
|
resourceUser?: Maybe<ResourceUser>;
|
|
1196
1231
|
reviewerUsers?: Maybe<Array<ReviewerUser>>;
|
|
1232
|
+
roleAssignment?: Maybe<RoleAssignment>;
|
|
1197
1233
|
statusAndOutcome: AccessReviewItemStatusAndOutcome;
|
|
1198
1234
|
statusCode?: Maybe<PropagationStatusCode>;
|
|
1199
1235
|
supportTicket?: Maybe<SupportTicket>;
|
|
@@ -1345,6 +1381,7 @@ export type AccessReviewTemplate = Node & RolePermissionTargetEntity & {
|
|
|
1345
1381
|
monthSchedule: Array<Scalars["Int"]["output"]>;
|
|
1346
1382
|
name: Scalars["String"]["output"];
|
|
1347
1383
|
nextScheduledRun: Scalars["Time"]["output"];
|
|
1384
|
+
permissionSources: PermissionSourceConnection;
|
|
1348
1385
|
reminderIncludeManager: Scalars["Boolean"]["output"];
|
|
1349
1386
|
reminderSchedule: Array<Scalars["Int"]["output"]>;
|
|
1350
1387
|
reminderTimeOfDay: Scalars["Time"]["output"];
|
|
@@ -1358,6 +1395,12 @@ export type AccessReviewTemplate = Node & RolePermissionTargetEntity & {
|
|
|
1358
1395
|
timeZone: Scalars["String"]["output"];
|
|
1359
1396
|
updatedAt: Scalars["Time"]["output"];
|
|
1360
1397
|
};
|
|
1398
|
+
export type AccessReviewTemplatePermissionSourcesArgs = {
|
|
1399
|
+
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
1400
|
+
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
1401
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1402
|
+
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1403
|
+
};
|
|
1361
1404
|
export type AccessReviewTemplateInput = {
|
|
1362
1405
|
accessReviewTemplateId: Scalars["AccessReviewTemplateId"]["input"];
|
|
1363
1406
|
};
|
|
@@ -1404,7 +1447,7 @@ export type AccessReviewUserAssignment = Node & {
|
|
|
1404
1447
|
accessReviewObjectId: Scalars["UUID"]["output"];
|
|
1405
1448
|
connectionId?: Maybe<Scalars["ConnectionId"]["output"]>;
|
|
1406
1449
|
connectionType?: Maybe<ConnectionType>;
|
|
1407
|
-
entity:
|
|
1450
|
+
entity: AccessEntity;
|
|
1408
1451
|
entityName: Scalars["String"]["output"];
|
|
1409
1452
|
groupId?: Maybe<Scalars["GroupId"]["output"]>;
|
|
1410
1453
|
groupType?: Maybe<GroupType>;
|
|
@@ -1429,6 +1472,7 @@ export type AccessReviewUserAssignmentFilters = {
|
|
|
1429
1472
|
accessReviewId: Scalars["AccessReviewId"]["input"];
|
|
1430
1473
|
adminOwnerId?: InputMaybe<Scalars["OwnerId"]["input"]>;
|
|
1431
1474
|
assignedStatus?: InputMaybe<AccessReviewAssignedStatus>;
|
|
1475
|
+
canAssignReviewers?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
1432
1476
|
connectionId?: InputMaybe<Scalars["ConnectionId"]["input"]>;
|
|
1433
1477
|
outcome?: InputMaybe<AccessReviewItemOutcome>;
|
|
1434
1478
|
reviewerId?: InputMaybe<Scalars["UserId"]["input"]>;
|
|
@@ -1447,6 +1491,7 @@ export type AccessReviewUserAssignmentsResult = PageConnection & {
|
|
|
1447
1491
|
export type AccessReviewUserFilters = {
|
|
1448
1492
|
for?: InputMaybe<Scalars["UserId"]["input"]>;
|
|
1449
1493
|
status?: InputMaybe<Array<ReviewerUserStatus>>;
|
|
1494
|
+
userFullName?: InputMaybe<Scalars["String"]["input"]>;
|
|
1450
1495
|
};
|
|
1451
1496
|
export type AccessReviewUserInput = {
|
|
1452
1497
|
accessReviewId: Scalars["AccessReviewId"]["input"];
|
|
@@ -1479,6 +1524,7 @@ export type AccessReviewUsersResult = {
|
|
|
1479
1524
|
accessReviewUsers: Array<AccessReviewUser>;
|
|
1480
1525
|
};
|
|
1481
1526
|
export type AccessReviewsInput = {
|
|
1527
|
+
searchQuery?: InputMaybe<Scalars["String"]["input"]>;
|
|
1482
1528
|
/**
|
|
1483
1529
|
* status filter: by default, accessReviews will return ALL access reviews for
|
|
1484
1530
|
* the org, otherwise it will only return access reviews with the given status
|
|
@@ -1490,6 +1536,9 @@ export type AccessReviewsResult = {
|
|
|
1490
1536
|
__typename?: "AccessReviewsResult";
|
|
1491
1537
|
accessReviews: Array<AccessReview>;
|
|
1492
1538
|
};
|
|
1539
|
+
export type AccessReviewsTemplateFilters = {
|
|
1540
|
+
searchQuery?: InputMaybe<Scalars["String"]["input"]>;
|
|
1541
|
+
};
|
|
1493
1542
|
export type AccessRuleCondition = {
|
|
1494
1543
|
__typename?: "AccessRuleCondition";
|
|
1495
1544
|
ruleClauses: RuleClauses;
|
|
@@ -1508,6 +1557,7 @@ export declare enum AccessRuleStatus {
|
|
|
1508
1557
|
export type AccessScope = {
|
|
1509
1558
|
createdAfter?: InputMaybe<Scalars["Time"]["input"]>;
|
|
1510
1559
|
expiresAfter?: InputMaybe<Scalars["Time"]["input"]>;
|
|
1560
|
+
showHiddenGrants?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
1511
1561
|
vulnerabilities?: InputMaybe<Array<RecommendationsSubscoreType>>;
|
|
1512
1562
|
};
|
|
1513
1563
|
export type AccessStats = {
|
|
@@ -1527,6 +1577,7 @@ export type AccessTypeData = {
|
|
|
1527
1577
|
type: AccessType;
|
|
1528
1578
|
};
|
|
1529
1579
|
export type AccessibleItem = {
|
|
1580
|
+
accessStats?: Maybe<AccessStats>;
|
|
1530
1581
|
createdAt: Scalars["Time"]["output"];
|
|
1531
1582
|
id: Scalars["UUID"]["output"];
|
|
1532
1583
|
isManaged: Scalars["Boolean"]["output"];
|
|
@@ -1643,7 +1694,7 @@ export type AddGroupTagsResult = {
|
|
|
1643
1694
|
entries: Array<AddGroupTagsEntryOutput>;
|
|
1644
1695
|
};
|
|
1645
1696
|
export type AddGroupUserInput = {
|
|
1646
|
-
accessLevel
|
|
1697
|
+
accessLevel: GroupAccessLevelInput;
|
|
1647
1698
|
durationInMinutes?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1648
1699
|
groupId: Scalars["GroupId"]["input"];
|
|
1649
1700
|
userId: Scalars["UserId"]["input"];
|
|
@@ -1704,11 +1755,11 @@ export type AddResourceUsersResult = {
|
|
|
1704
1755
|
taskId: Scalars["PushTaskId"]["output"];
|
|
1705
1756
|
};
|
|
1706
1757
|
export type AddRoleAssignmentInput = {
|
|
1707
|
-
accessLevel
|
|
1758
|
+
accessLevel: AccessLevelInput;
|
|
1708
1759
|
durationInMinutes?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1709
1760
|
entityID: Scalars["EntityId"]["input"];
|
|
1710
1761
|
entityType: EntityType;
|
|
1711
|
-
principalID: Scalars["
|
|
1762
|
+
principalID: Scalars["EntityId"]["input"];
|
|
1712
1763
|
principalType: EntityType;
|
|
1713
1764
|
};
|
|
1714
1765
|
export type AddRoleAssignmentsEntryOutput = AddRoleAssignmentsEntryResult;
|
|
@@ -1755,16 +1806,6 @@ export declare enum AldwinRole {
|
|
|
1755
1806
|
GlobalRequester = "GLOBAL_REQUESTER",
|
|
1756
1807
|
ReadOnlyAdmin = "READ_ONLY_ADMIN"
|
|
1757
1808
|
}
|
|
1758
|
-
export type AllPrincipalsConnection = PageConnection & {
|
|
1759
|
-
__typename?: "AllPrincipalsConnection";
|
|
1760
|
-
pageInfo: PageInfo;
|
|
1761
|
-
principals: Array<PrincipalEdge>;
|
|
1762
|
-
totalCount: Scalars["Int"]["output"];
|
|
1763
|
-
};
|
|
1764
|
-
export type AllPrincipalsFilters = {
|
|
1765
|
-
entityTypes: Array<EntityType>;
|
|
1766
|
-
searchQuery?: InputMaybe<Scalars["String"]["input"]>;
|
|
1767
|
-
};
|
|
1768
1809
|
export type AllowedToCreateOrganizationsOutput = AllowedToCreateOrganizationsResult;
|
|
1769
1810
|
export type AllowedToCreateOrganizationsResult = {
|
|
1770
1811
|
__typename?: "AllowedToCreateOrganizationsResult";
|
|
@@ -1828,8 +1869,10 @@ export declare enum AppCategory {
|
|
|
1828
1869
|
Custom = "CUSTOM",
|
|
1829
1870
|
Databases = "DATABASES",
|
|
1830
1871
|
DeveloperTools = "DEVELOPER_TOOLS",
|
|
1872
|
+
HrSystems = "HR_SYSTEMS",
|
|
1831
1873
|
Identity = "IDENTITY",
|
|
1832
|
-
OktaApp = "OKTA_APP"
|
|
1874
|
+
OktaApp = "OKTA_APP",
|
|
1875
|
+
SaasApps = "SAAS_APPS"
|
|
1833
1876
|
}
|
|
1834
1877
|
export type AppConnection = PageConnection & {
|
|
1835
1878
|
__typename?: "AppConnection";
|
|
@@ -1850,6 +1893,7 @@ export type AppEntity = {
|
|
|
1850
1893
|
healthStatus?: Maybe<HealthStatus>;
|
|
1851
1894
|
id: Scalars["UUID"]["output"];
|
|
1852
1895
|
imageUrl?: Maybe<Scalars["String"]["output"]>;
|
|
1896
|
+
maxDirectUsersAllowed?: Maybe<Scalars["Int"]["output"]>;
|
|
1853
1897
|
totalGroupAccessCount: Scalars["Int"]["output"];
|
|
1854
1898
|
totalNHIAccessCount: Scalars["Int"]["output"];
|
|
1855
1899
|
totalResourceCount: Scalars["Int"]["output"];
|
|
@@ -1986,6 +2030,7 @@ export type AssignmentsSortBy = {
|
|
|
1986
2030
|
export declare enum AssignmentsSortByField {
|
|
1987
2031
|
EntityName = "ENTITY_NAME",
|
|
1988
2032
|
PrincipalName = "PRINCIPAL_NAME",
|
|
2033
|
+
ReviewerName = "REVIEWER_NAME",
|
|
1989
2034
|
Type = "TYPE"
|
|
1990
2035
|
}
|
|
1991
2036
|
export type AssociatedItemConnection = PageConnection & {
|
|
@@ -2091,15 +2136,18 @@ export declare enum AuthType {
|
|
|
2091
2136
|
Aws = "AWS",
|
|
2092
2137
|
AwsSso = "AWS_SSO",
|
|
2093
2138
|
AzureAd = "AZURE_AD",
|
|
2139
|
+
Coupa = "COUPA",
|
|
2094
2140
|
Custom = "CUSTOM",
|
|
2095
2141
|
CustomConnector = "CUSTOM_CONNECTOR",
|
|
2096
2142
|
Databricks = "DATABRICKS",
|
|
2143
|
+
DatastaxAstra = "DATASTAX_ASTRA",
|
|
2097
2144
|
Duo = "DUO",
|
|
2098
2145
|
Gcp = "GCP",
|
|
2099
2146
|
GitHub = "GIT_HUB",
|
|
2100
2147
|
GitLab = "GIT_LAB",
|
|
2101
2148
|
GoogleGroups = "GOOGLE_GROUPS",
|
|
2102
2149
|
GoogleWorkspace = "GOOGLE_WORKSPACE",
|
|
2150
|
+
Ilevel = "ILEVEL",
|
|
2103
2151
|
Ldap = "LDAP",
|
|
2104
2152
|
Mongo = "MONGO",
|
|
2105
2153
|
MongoAtlas = "MONGO_ATLAS",
|
|
@@ -2121,8 +2169,6 @@ export type AuthUser = {
|
|
|
2121
2169
|
isReadOnlyAdmin: Scalars["Boolean"]["output"];
|
|
2122
2170
|
opalAdminExpirationTime?: Maybe<Scalars["Time"]["output"]>;
|
|
2123
2171
|
organization: Organization;
|
|
2124
|
-
/** @deprecated use scopedRolePermissions */
|
|
2125
|
-
organizationAuthorizedActions?: Maybe<Array<Scalars["AuthorizedAction"]["output"]>>;
|
|
2126
2172
|
scopedRolePermissions: Array<ScopedRolePermission>;
|
|
2127
2173
|
user: User;
|
|
2128
2174
|
};
|
|
@@ -2273,7 +2319,7 @@ export type BulkImportRemoteItemsResult = {
|
|
|
2273
2319
|
__typename?: "BulkImportRemoteItemsResult";
|
|
2274
2320
|
importedGroups?: Maybe<Array<Group>>;
|
|
2275
2321
|
importedResources?: Maybe<Array<Resource>>;
|
|
2276
|
-
|
|
2322
|
+
syncTasks: Array<SyncTask>;
|
|
2277
2323
|
};
|
|
2278
2324
|
export type BulkRequestTooLargeError = Error & {
|
|
2279
2325
|
__typename?: "BulkRequestTooLargeError";
|
|
@@ -2304,10 +2350,11 @@ export type BulkUpdateItemsInput = {
|
|
|
2304
2350
|
resourceIds?: InputMaybe<Array<Scalars["ResourceId"]["input"]>>;
|
|
2305
2351
|
updateInfo: UpdateItemsInput;
|
|
2306
2352
|
};
|
|
2307
|
-
export type BulkUpdateItemsOutput = BulkUpdateItemsResult | CannotUpdateConfigurationTemplateError | GroupMaxDurationTooLargeError | GroupNotFoundError | InvalidReviewerSettingsError | InvalidUpdateGroupVisibilityGroupError | InvalidUpdateResourceVisibilityGroupError | ResourceMaxDurationTooLargeError | ResourceNotFoundError | TagNotFoundError | TooManyGroupLeadersError;
|
|
2353
|
+
export type BulkUpdateItemsOutput = BulkUpdateItemsResult | CannotUpdateConfigurationTemplateError | GroupMaxDurationTooLargeError | GroupNotFoundError | InvalidReviewerSettingsError | InvalidUpdateGroupVisibilityGroupError | InvalidUpdateItemsInputError | InvalidUpdateResourceVisibilityGroupError | ResourceMaxDurationTooLargeError | ResourceNotFoundError | TagNotFoundError | TooManyGroupLeadersError;
|
|
2308
2354
|
export type BulkUpdateItemsResult = {
|
|
2309
2355
|
__typename?: "BulkUpdateItemsResult";
|
|
2310
|
-
|
|
2356
|
+
deferredUpdateCount: Scalars["Int"]["output"];
|
|
2357
|
+
syncTasks?: Maybe<Array<SyncTask>>;
|
|
2311
2358
|
updatedGroups?: Maybe<Array<Group>>;
|
|
2312
2359
|
updatedResources?: Maybe<Array<Resource>>;
|
|
2313
2360
|
};
|
|
@@ -2316,13 +2363,12 @@ export type Bundle = BaseEntity & Node & RolePermissionTargetEntity & {
|
|
|
2316
2363
|
adminOwner: Owner;
|
|
2317
2364
|
adminOwnerId: Scalars["OwnerId"]["output"];
|
|
2318
2365
|
allowedPermissions: Array<RolePermissionKey>;
|
|
2319
|
-
/** @deprecated use allowedPermissions */
|
|
2320
|
-
authorizedActions?: Maybe<Array<Scalars["AuthorizedAction"]["output"]>>;
|
|
2321
2366
|
createdAt: Scalars["Time"]["output"];
|
|
2322
2367
|
description?: Maybe<Scalars["String"]["output"]>;
|
|
2323
2368
|
id: Scalars["UUID"]["output"];
|
|
2324
2369
|
items: BundleItemConnection;
|
|
2325
2370
|
name: Scalars["String"]["output"];
|
|
2371
|
+
permissionSources: PermissionSourceConnection;
|
|
2326
2372
|
serviceTypes?: Maybe<Array<ServiceType>>;
|
|
2327
2373
|
totalNumGroups: Scalars["Int"]["output"];
|
|
2328
2374
|
totalNumItems: Scalars["Int"]["output"];
|
|
@@ -2339,6 +2385,12 @@ export type BundleItemsArgs = {
|
|
|
2339
2385
|
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2340
2386
|
sortBy?: BundleItemsSortBy;
|
|
2341
2387
|
};
|
|
2388
|
+
export type BundlePermissionSourcesArgs = {
|
|
2389
|
+
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
2390
|
+
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
2391
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2392
|
+
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2393
|
+
};
|
|
2342
2394
|
export type BundleConnection = PageConnection & {
|
|
2343
2395
|
__typename?: "BundleConnection";
|
|
2344
2396
|
edges: Array<BundleEdge>;
|
|
@@ -2482,6 +2534,7 @@ export type BundleVisibilityGroupResult = {
|
|
|
2482
2534
|
bundleVisibilityGroup: BundleVisibilityGroup;
|
|
2483
2535
|
};
|
|
2484
2536
|
export type BundlesFilter = {
|
|
2537
|
+
bundleIds?: InputMaybe<Array<Scalars["BundleId"]["input"]>>;
|
|
2485
2538
|
searchQuery?: InputMaybe<StringFilter>;
|
|
2486
2539
|
};
|
|
2487
2540
|
export type BundlesInput = {
|
|
@@ -2554,7 +2607,7 @@ export type CertIsTooLargeError = Error & {
|
|
|
2554
2607
|
export type ClearPropagationStatusInput = {
|
|
2555
2608
|
accessLevelRemoteId: Scalars["AccessLevelRemoteId"]["input"];
|
|
2556
2609
|
entityId: Scalars["EntityId"]["input"];
|
|
2557
|
-
principalId: Scalars["
|
|
2610
|
+
principalId: Scalars["EntityId"]["input"];
|
|
2558
2611
|
};
|
|
2559
2612
|
export type ClearPropagationStatusOutput = ClearPropagationStatusResult;
|
|
2560
2613
|
export type ClearPropagationStatusResult = {
|
|
@@ -2571,6 +2624,7 @@ export type ClosedRequestMetricsResult = {
|
|
|
2571
2624
|
};
|
|
2572
2625
|
export type CodeFlowInput = {
|
|
2573
2626
|
code: Scalars["String"]["input"];
|
|
2627
|
+
installationId?: InputMaybe<Scalars["String"]["input"]>;
|
|
2574
2628
|
state: Scalars["String"]["input"];
|
|
2575
2629
|
};
|
|
2576
2630
|
export type CommonMetadata = {
|
|
@@ -2611,6 +2665,8 @@ export type ConfigurationTemplate = {
|
|
|
2611
2665
|
breakGlassUsers: Array<User>;
|
|
2612
2666
|
customRequestNotification?: Maybe<Scalars["String"]["output"]>;
|
|
2613
2667
|
id: Scalars["ConfigurationId"]["output"];
|
|
2668
|
+
maxDirectUsersAllowed?: Maybe<Scalars["Int"]["output"]>;
|
|
2669
|
+
maxUsersExceededMessage?: Maybe<Scalars["String"]["output"]>;
|
|
2614
2670
|
name: Scalars["String"]["output"];
|
|
2615
2671
|
onCallSchedules: Array<OnCallSchedule>;
|
|
2616
2672
|
requestConfigs: Array<RequestConfiguration>;
|
|
@@ -2673,6 +2729,7 @@ export type Connection = AccessEntity & AppEntity & BaseEntity & DisplayableEnti
|
|
|
2673
2729
|
autoImportGroupResources: Scalars["Boolean"]["output"];
|
|
2674
2730
|
childrenDefaultConfigTemplate?: Maybe<ConfigurationTemplate>;
|
|
2675
2731
|
connectionType: ConnectionType;
|
|
2732
|
+
connectionTypeMetadata: ConnectionTypeMetadata;
|
|
2676
2733
|
connectionUsers: Array<ConnectionUser>;
|
|
2677
2734
|
createdAt: Scalars["Time"]["output"];
|
|
2678
2735
|
description: Scalars["String"]["output"];
|
|
@@ -2689,6 +2746,7 @@ export type Connection = AccessEntity & AppEntity & BaseEntity & DisplayableEnti
|
|
|
2689
2746
|
importVisibility: Visibility;
|
|
2690
2747
|
importVisibilityGroups: Array<ConnectionVisibilityGroup>;
|
|
2691
2748
|
isDeleted: Scalars["Boolean"]["output"];
|
|
2749
|
+
maxDirectUsersAllowed?: Maybe<Scalars["Int"]["output"]>;
|
|
2692
2750
|
metadata?: Maybe<ConnectionMetadataOutput>;
|
|
2693
2751
|
name: Scalars["String"]["output"];
|
|
2694
2752
|
numGroups: Scalars["Int"]["output"];
|
|
@@ -2696,6 +2754,8 @@ export type Connection = AccessEntity & AppEntity & BaseEntity & DisplayableEnti
|
|
|
2696
2754
|
numUsers: Scalars["Int"]["output"];
|
|
2697
2755
|
numVisibleGroups: Scalars["Int"]["output"];
|
|
2698
2756
|
numVisibleResources: Scalars["Int"]["output"];
|
|
2757
|
+
permissionSources: PermissionSourceConnection;
|
|
2758
|
+
provisionConfigurationInfos: Array<ProvisionConfigurationInfo>;
|
|
2699
2759
|
resources: Array<Resource>;
|
|
2700
2760
|
totalGroupAccessCount: Scalars["Int"]["output"];
|
|
2701
2761
|
totalNHIAccessCount: Scalars["Int"]["output"];
|
|
@@ -2718,6 +2778,12 @@ export type ConnectionAssociatedItemsArgs = {
|
|
|
2718
2778
|
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2719
2779
|
sortBy?: InputMaybe<AssociatedItemsSortBy>;
|
|
2720
2780
|
};
|
|
2781
|
+
export type ConnectionPermissionSourcesArgs = {
|
|
2782
|
+
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
2783
|
+
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
2784
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2785
|
+
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2786
|
+
};
|
|
2721
2787
|
export type ConnectionAccessAlreadyReviewedError = Error & {
|
|
2722
2788
|
__typename?: "ConnectionAccessAlreadyReviewedError";
|
|
2723
2789
|
message: Scalars["String"]["output"];
|
|
@@ -2756,14 +2822,17 @@ export type ConnectionCredentialsInput = {
|
|
|
2756
2822
|
aws?: InputMaybe<AwsConnectionCredentialsInput>;
|
|
2757
2823
|
awsSso?: InputMaybe<AwsssoConnectionCredentialsInput>;
|
|
2758
2824
|
azureAd?: InputMaybe<AzureAdConnectionCredentialsInput>;
|
|
2825
|
+
coupa?: InputMaybe<CoupaConnectionCredentialsInput>;
|
|
2759
2826
|
customConnector?: InputMaybe<CustomConnectorCredentials>;
|
|
2760
2827
|
databricks?: InputMaybe<DatabricksConnectionCredentialsInput>;
|
|
2828
|
+
datastaxAstra?: InputMaybe<DatastaxAstraConnectionCredentialsInput>;
|
|
2761
2829
|
duo?: InputMaybe<DuoCredentialsInput>;
|
|
2762
2830
|
gcp?: InputMaybe<GcpServiceAccountCredentialsInput>;
|
|
2763
2831
|
gitHub?: InputMaybe<GitHubConnectionCredentialsInput>;
|
|
2764
2832
|
gitLab?: InputMaybe<GitLabConnectionCredentialsInput>;
|
|
2765
2833
|
googleGroups?: InputMaybe<GcpServiceAccountCredentialsInput>;
|
|
2766
2834
|
googleWorkspace?: InputMaybe<GcpServiceAccountCredentialsInput>;
|
|
2835
|
+
ilevel?: InputMaybe<ILevelConnectionCredentialsInput>;
|
|
2767
2836
|
ldap?: InputMaybe<LdapConnectionCredentialsInput>;
|
|
2768
2837
|
mongo?: InputMaybe<MongoConnectionCredentialsInput>;
|
|
2769
2838
|
mongoAtlas?: InputMaybe<MongoAtlasConnectionCredentialsInput>;
|
|
@@ -2798,6 +2867,7 @@ export type ConnectionMetadataInput = {
|
|
|
2798
2867
|
awsSso?: InputMaybe<AwsssoConnectionMetadataInput>;
|
|
2799
2868
|
azureAd?: InputMaybe<AzureAdConnectionMetadataInput>;
|
|
2800
2869
|
connectionType: ConnectionType;
|
|
2870
|
+
coupa?: InputMaybe<CoupaConnectionMetadataInput>;
|
|
2801
2871
|
customConnector?: InputMaybe<CustomConnectorMetadataInput>;
|
|
2802
2872
|
databricks?: InputMaybe<DatabricksConnectionMetadataInput>;
|
|
2803
2873
|
duo?: InputMaybe<DuoConnectionMetadataInput>;
|
|
@@ -2806,6 +2876,7 @@ export type ConnectionMetadataInput = {
|
|
|
2806
2876
|
gitLab?: InputMaybe<GitLabConnectionMetadataInput>;
|
|
2807
2877
|
googleGroups?: InputMaybe<GoogleGroupsConnectionMetadataInput>;
|
|
2808
2878
|
googleWorkspace?: InputMaybe<GoogleWorkspaceConnectionMetadataInput>;
|
|
2879
|
+
ilevel?: InputMaybe<ILevelConnectionMetadataInput>;
|
|
2809
2880
|
ldap?: InputMaybe<LdapConnectionMetadataInput>;
|
|
2810
2881
|
mongo?: InputMaybe<MongoConnectionMetadataInput>;
|
|
2811
2882
|
mongoAtlas?: InputMaybe<MongoAtlasConnectionMetadataInput>;
|
|
@@ -2818,12 +2889,38 @@ export type ConnectionMetadataInput = {
|
|
|
2818
2889
|
teleport?: InputMaybe<TeleportConnectionMetadataInput>;
|
|
2819
2890
|
workday?: InputMaybe<WorkdayConnectionMetadataInput>;
|
|
2820
2891
|
};
|
|
2821
|
-
export type ConnectionMetadataOutput = AdConnectionMetadata | AwsssoConnectionMetadata | AwsConnectionMetadata | AzureAdConnectionMetadata | CustomConnectorConnectionMetadata | DatabricksConnectionMetadata | DuoConnectionMetadata | GcpConnectionMetadata | GitHubConnectionMetadata | GitLabConnectionMetadata | GoogleGroupsConnectionMetadata | GoogleWorkspaceConnectionMetadata | LdapConnectionMetadata | MongoAtlasConnectionMetadata | MongoConnectionMetadata | MySqlMariaDbConnectionMetadata | OktaDirectoryConnectionMetadata | PagerDutyConnectionMetadata | PostgresConnectionMetadata | PropagationTicketConnectionMetadata | SalesforceConnectionMetadata | SnowflakeConnectionMetadata | TailscaleConnectionMetadata | TeleportConnectionMetadata | WorkdayConnectionMetadata;
|
|
2892
|
+
export type ConnectionMetadataOutput = AdConnectionMetadata | AwsssoConnectionMetadata | AwsConnectionMetadata | AzureAdConnectionMetadata | CoupaConnectionMetadata | CustomConnectorConnectionMetadata | DatabricksConnectionMetadata | DatastaxAstraConnectionMetadata | DuoConnectionMetadata | GcpConnectionMetadata | GitHubConnectionMetadata | GitLabConnectionMetadata | GoogleGroupsConnectionMetadata | GoogleWorkspaceConnectionMetadata | ILevelConnectionMetadata | LdapConnectionMetadata | MongoAtlasConnectionMetadata | MongoConnectionMetadata | MySqlMariaDbConnectionMetadata | OktaDirectoryConnectionMetadata | PagerDutyConnectionMetadata | PostgresConnectionMetadata | PropagationTicketConnectionMetadata | SalesforceConnectionMetadata | SnowflakeConnectionMetadata | TailscaleConnectionMetadata | TeleportConnectionMetadata | WorkdayConnectionMetadata;
|
|
2822
2893
|
export type ConnectionNotFoundError = Error & {
|
|
2823
2894
|
__typename?: "ConnectionNotFoundError";
|
|
2824
2895
|
message: Scalars["String"]["output"];
|
|
2825
2896
|
};
|
|
2826
2897
|
export type ConnectionOutput = ConnectionNotFoundError | ConnectionResult;
|
|
2898
|
+
export type ConnectionPreview = Node & {
|
|
2899
|
+
__typename?: "ConnectionPreview";
|
|
2900
|
+
connection: Connection;
|
|
2901
|
+
connectionUserCount: Scalars["Int"]["output"];
|
|
2902
|
+
id: Scalars["UUID"]["output"];
|
|
2903
|
+
reviewCount: Scalars["Int"]["output"];
|
|
2904
|
+
truncatedConnectionUsers: Array<ConnectionUser>;
|
|
2905
|
+
};
|
|
2906
|
+
export type ConnectionPreviewConnection = PageConnection & {
|
|
2907
|
+
__typename?: "ConnectionPreviewConnection";
|
|
2908
|
+
edges: Array<ConnectionPreviewEdge>;
|
|
2909
|
+
filteredConnectionCount: Scalars["Int"]["output"];
|
|
2910
|
+
pageInfo: PageInfo;
|
|
2911
|
+
totalCount: Scalars["Int"]["output"];
|
|
2912
|
+
totalReviewCount: Scalars["Int"]["output"];
|
|
2913
|
+
};
|
|
2914
|
+
export type ConnectionPreviewEdge = Edge & {
|
|
2915
|
+
__typename?: "ConnectionPreviewEdge";
|
|
2916
|
+
cursor: Scalars["String"]["output"];
|
|
2917
|
+
node: ConnectionPreview;
|
|
2918
|
+
};
|
|
2919
|
+
export type ConnectionPreviewInput = {
|
|
2920
|
+
filters?: FiltersInput;
|
|
2921
|
+
hideEmpty?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
2922
|
+
sortBy: AccessReviewPreviewSortBy;
|
|
2923
|
+
};
|
|
2827
2924
|
export type ConnectionResult = {
|
|
2828
2925
|
__typename?: "ConnectionResult";
|
|
2829
2926
|
connection: Connection;
|
|
@@ -2842,15 +2939,18 @@ export declare enum ConnectionType {
|
|
|
2842
2939
|
Aws = "AWS",
|
|
2843
2940
|
AwsSso = "AWS_SSO",
|
|
2844
2941
|
AzureAd = "AZURE_AD",
|
|
2942
|
+
Coupa = "COUPA",
|
|
2845
2943
|
Custom = "CUSTOM",
|
|
2846
2944
|
CustomConnector = "CUSTOM_CONNECTOR",
|
|
2847
2945
|
Databricks = "DATABRICKS",
|
|
2946
|
+
DatastaxAstra = "DATASTAX_ASTRA",
|
|
2848
2947
|
Duo = "DUO",
|
|
2849
2948
|
Gcp = "GCP",
|
|
2850
2949
|
GitHub = "GIT_HUB",
|
|
2851
2950
|
GitLab = "GIT_LAB",
|
|
2852
2951
|
GoogleGroups = "GOOGLE_GROUPS",
|
|
2853
2952
|
GoogleWorkspace = "GOOGLE_WORKSPACE",
|
|
2953
|
+
Ilevel = "ILEVEL",
|
|
2854
2954
|
Ldap = "LDAP",
|
|
2855
2955
|
Mariadb = "MARIADB",
|
|
2856
2956
|
Mongo = "MONGO",
|
|
@@ -2866,6 +2966,10 @@ export declare enum ConnectionType {
|
|
|
2866
2966
|
Teleport = "TELEPORT",
|
|
2867
2967
|
Workday = "WORKDAY"
|
|
2868
2968
|
}
|
|
2969
|
+
export type ConnectionTypeMetadata = {
|
|
2970
|
+
__typename?: "ConnectionTypeMetadata";
|
|
2971
|
+
ingestsRemoteUsers: Scalars["Boolean"]["output"];
|
|
2972
|
+
};
|
|
2869
2973
|
export type ConnectionUnhealthyError = Error & {
|
|
2870
2974
|
__typename?: "ConnectionUnhealthyError";
|
|
2871
2975
|
message: Scalars["String"]["output"];
|
|
@@ -2948,6 +3052,7 @@ export type CountFilteredConnectionsInput = {
|
|
|
2948
3052
|
export type CountFilteredConnectionsOutput = {
|
|
2949
3053
|
__typename?: "CountFilteredConnectionsOutput";
|
|
2950
3054
|
totalNumConnections: Scalars["Int"]["output"];
|
|
3055
|
+
totalNumReviews: Scalars["Int"]["output"];
|
|
2951
3056
|
};
|
|
2952
3057
|
export type CountFilteredGroupsInput = {
|
|
2953
3058
|
filters?: InputMaybe<FiltersInput>;
|
|
@@ -2966,6 +3071,17 @@ export type CountFilteredResourcesResult = {
|
|
|
2966
3071
|
__typename?: "CountFilteredResourcesResult";
|
|
2967
3072
|
totalNumResources: Scalars["Int"]["output"];
|
|
2968
3073
|
};
|
|
3074
|
+
export type CoupaConnectionCredentialsInput = {
|
|
3075
|
+
clientId: Scalars["String"]["input"];
|
|
3076
|
+
clientSecret: Scalars["String"]["input"];
|
|
3077
|
+
};
|
|
3078
|
+
export type CoupaConnectionMetadata = {
|
|
3079
|
+
__typename?: "CoupaConnectionMetadata";
|
|
3080
|
+
hostname: Scalars["String"]["output"];
|
|
3081
|
+
};
|
|
3082
|
+
export type CoupaConnectionMetadataInput = {
|
|
3083
|
+
hostname: Scalars["String"]["input"];
|
|
3084
|
+
};
|
|
2969
3085
|
export type CreateAccessReviewTemplateInput = {
|
|
2970
3086
|
accessReviewDuration: Scalars["Int"]["input"];
|
|
2971
3087
|
endUserView: AccessReviewEndUserView;
|
|
@@ -3024,6 +3140,8 @@ export type CreateConfigurationTemplateInput = {
|
|
|
3024
3140
|
adminOwnerId: Scalars["OwnerId"]["input"];
|
|
3025
3141
|
breakGlassUsersIds: Array<Scalars["UserId"]["input"]>;
|
|
3026
3142
|
customRequestNotification?: InputMaybe<NullableString>;
|
|
3143
|
+
maxDirectUsersAllowed?: InputMaybe<NullableInt>;
|
|
3144
|
+
maxUsersExceededMessage?: InputMaybe<NullableString>;
|
|
3027
3145
|
messageChannelIds: Array<Scalars["MessageChannelId"]["input"]>;
|
|
3028
3146
|
name: Scalars["String"]["input"];
|
|
3029
3147
|
onCallSchedules: Array<OnCallScheduleInput>;
|
|
@@ -3257,7 +3375,7 @@ export type CreateRequestCommentInput = {
|
|
|
3257
3375
|
comment: Scalars["String"]["input"];
|
|
3258
3376
|
requestId: Scalars["RequestId"]["input"];
|
|
3259
3377
|
};
|
|
3260
|
-
export type CreateRequestCommentOutput = CreateRequestCommentResult;
|
|
3378
|
+
export type CreateRequestCommentOutput = CreateRequestCommentResult | RequestNotFoundError;
|
|
3261
3379
|
export type CreateRequestCommentResult = {
|
|
3262
3380
|
__typename?: "CreateRequestCommentResult";
|
|
3263
3381
|
request: Request;
|
|
@@ -3272,7 +3390,7 @@ export type CreateRequestInput = {
|
|
|
3272
3390
|
targetGroupId?: InputMaybe<Scalars["GroupId"]["input"]>;
|
|
3273
3391
|
targetUserId?: InputMaybe<Scalars["UserId"]["input"]>;
|
|
3274
3392
|
};
|
|
3275
|
-
export type CreateRequestOutput = BulkRequestTooLargeError | CreateRequestResult | GroupNestingNotAllowedError | ItemCannotBeRequestedError | LinkedGroupNotRequestableError | MfaInvalidError | NoManagerSetForRequestingUserError | NoReviewersSetForGroupError | NoReviewersSetForOwnerError | NoReviewersSetForResourceError | RequestDurationTooLargeError | RequestFieldValueMissingError | RequestReasonBelowMinLengthError | RequestReasonMissingError | RequestRequiresUserAuthTokenForConnectionError | TargetUserHasNestedAccessError | UserCannotRequestAccessForTargetGroupError;
|
|
3393
|
+
export type CreateRequestOutput = BulkRequestTooLargeError | CreateRequestResult | GroupNestingNotAllowedError | ItemCannotBeRequestedError | ItemsAtCapacityError | LinkedGroupNotRequestableError | MfaInvalidError | NoManagerSetForRequestingUserError | NoReviewersSetForGroupError | NoReviewersSetForOwnerError | NoReviewersSetForResourceError | RequestDurationTooLargeError | RequestFieldValueMissingError | RequestReasonBelowMinLengthError | RequestReasonMissingError | RequestRequiresUserAuthTokenForConnectionError | TargetUserHasNestedAccessError | UserCannotRequestAccessForTargetGroupError;
|
|
3276
3394
|
export type CreateRequestProposalInput = {
|
|
3277
3395
|
adminOwnerId: Scalars["OwnerId"]["input"];
|
|
3278
3396
|
connectionId: Scalars["ConnectionId"]["input"];
|
|
@@ -3291,6 +3409,22 @@ export type CreateRequestResult = {
|
|
|
3291
3409
|
__typename?: "CreateRequestResult";
|
|
3292
3410
|
request: Request;
|
|
3293
3411
|
};
|
|
3412
|
+
export type CreateRequestReviewerDelegationInput = {
|
|
3413
|
+
delegateUserId: Scalars["UserId"]["input"];
|
|
3414
|
+
endTime: Scalars["Time"]["input"];
|
|
3415
|
+
reason: Scalars["String"]["input"];
|
|
3416
|
+
startTime: Scalars["Time"]["input"];
|
|
3417
|
+
targetUserId?: InputMaybe<Scalars["UserId"]["input"]>;
|
|
3418
|
+
};
|
|
3419
|
+
export type CreateRequestReviewerDelegationInvalidError = Error & {
|
|
3420
|
+
__typename?: "CreateRequestReviewerDelegationInvalidError";
|
|
3421
|
+
message: Scalars["String"]["output"];
|
|
3422
|
+
};
|
|
3423
|
+
export type CreateRequestReviewerDelegationOutput = CreateRequestReviewerDelegationInvalidError | CreateRequestReviewerDelegationResult;
|
|
3424
|
+
export type CreateRequestReviewerDelegationResult = {
|
|
3425
|
+
__typename?: "CreateRequestReviewerDelegationResult";
|
|
3426
|
+
delegation: RequestReviewerDelegation;
|
|
3427
|
+
};
|
|
3294
3428
|
export type CreateRequestTemplateInput = {
|
|
3295
3429
|
customFields?: InputMaybe<Array<RequestTemplateCustomFieldInput>>;
|
|
3296
3430
|
name: Scalars["String"]["input"];
|
|
@@ -3298,7 +3432,7 @@ export type CreateRequestTemplateInput = {
|
|
|
3298
3432
|
export type CreateRequestTemplateOutput = CreateRequestTemplateResult | RequestTemplateNameExistsError;
|
|
3299
3433
|
export type CreateRequestTemplateResult = {
|
|
3300
3434
|
__typename?: "CreateRequestTemplateResult";
|
|
3301
|
-
requestTemplate:
|
|
3435
|
+
requestTemplate: RequestTemplate;
|
|
3302
3436
|
};
|
|
3303
3437
|
export type CreateResourceCustomAccessLevelEntryOutput = CreateResourceCustomAccessLevelEntryResult;
|
|
3304
3438
|
export type CreateResourceCustomAccessLevelEntryResult = {
|
|
@@ -3380,7 +3514,7 @@ export type CreateResourcesOutput = CreateResourcesResult;
|
|
|
3380
3514
|
export type CreateResourcesResult = {
|
|
3381
3515
|
__typename?: "CreateResourcesResult";
|
|
3382
3516
|
entries: Array<CreateResourceEntryOutput>;
|
|
3383
|
-
|
|
3517
|
+
syncTasks?: Maybe<Array<SyncTask>>;
|
|
3384
3518
|
};
|
|
3385
3519
|
export type CreateSamlConnectionInput = {
|
|
3386
3520
|
certFile?: InputMaybe<Scalars["Upload"]["input"]>;
|
|
@@ -3427,6 +3561,11 @@ export type CreateTagResult = {
|
|
|
3427
3561
|
__typename?: "CreateTagResult";
|
|
3428
3562
|
tag: Tag;
|
|
3429
3563
|
};
|
|
3564
|
+
export type CreateTestOrgResult = {
|
|
3565
|
+
__typename?: "CreateTestOrgResult";
|
|
3566
|
+
orgID: Scalars["OrganizationId"]["output"];
|
|
3567
|
+
success: Scalars["Boolean"]["output"];
|
|
3568
|
+
};
|
|
3430
3569
|
export type CreateThirdPartyIntegrationInput = {
|
|
3431
3570
|
codeFlow?: InputMaybe<CodeFlowInput>;
|
|
3432
3571
|
metadata?: InputMaybe<ThirdPartyIntegrationMetadataInput>;
|
|
@@ -3450,9 +3589,9 @@ export type CreateWebhookInfoResult = {
|
|
|
3450
3589
|
export type CurrentUserGroupAccess = {
|
|
3451
3590
|
__typename?: "CurrentUserGroupAccess";
|
|
3452
3591
|
groupId: Scalars["GroupId"]["output"];
|
|
3453
|
-
|
|
3592
|
+
groupUsers: Array<GroupUser>;
|
|
3454
3593
|
hasBreakGlass: Scalars["Boolean"]["output"];
|
|
3455
|
-
|
|
3594
|
+
pendingRequests: Array<Request>;
|
|
3456
3595
|
};
|
|
3457
3596
|
export type CurrentUserResourceAccess = {
|
|
3458
3597
|
__typename?: "CurrentUserResourceAccess";
|
|
@@ -3505,6 +3644,21 @@ export type CustomFieldExistsError = Error & {
|
|
|
3505
3644
|
__typename?: "CustomFieldExistsError";
|
|
3506
3645
|
message: Scalars["String"]["output"];
|
|
3507
3646
|
};
|
|
3647
|
+
export type CustomSearchLink = {
|
|
3648
|
+
__typename?: "CustomSearchLink";
|
|
3649
|
+
customSearchLink?: Maybe<Scalars["String"]["output"]>;
|
|
3650
|
+
customSearchLinkDescription?: Maybe<Scalars["String"]["output"]>;
|
|
3651
|
+
customSearchLinkTitle?: Maybe<Scalars["String"]["output"]>;
|
|
3652
|
+
};
|
|
3653
|
+
export type CustomSearchLinkInput = {
|
|
3654
|
+
customSearchLinkDescription: Scalars["String"]["input"];
|
|
3655
|
+
customSearchLinkTitle: Scalars["String"]["input"];
|
|
3656
|
+
enabled: Scalars["Boolean"]["input"];
|
|
3657
|
+
};
|
|
3658
|
+
export type CustomSearchLinkInvalidError = Error & {
|
|
3659
|
+
__typename?: "CustomSearchLinkInvalidError";
|
|
3660
|
+
message: Scalars["String"]["output"];
|
|
3661
|
+
};
|
|
3508
3662
|
export type CustomerSupportSettingsInvalid = Error & {
|
|
3509
3663
|
__typename?: "CustomerSupportSettingsInvalid";
|
|
3510
3664
|
message: Scalars["String"]["output"];
|
|
@@ -3522,6 +3676,22 @@ export type DatabricksConnectionMetadataInput = {
|
|
|
3522
3676
|
accountId: Scalars["String"]["input"];
|
|
3523
3677
|
accountLoginUrl: Scalars["String"]["input"];
|
|
3524
3678
|
};
|
|
3679
|
+
export type DatastaxAstraConnectionCredentialsInput = {
|
|
3680
|
+
token: Scalars["String"]["input"];
|
|
3681
|
+
};
|
|
3682
|
+
export type DatastaxAstraConnectionMetadata = {
|
|
3683
|
+
__typename?: "DatastaxAstraConnectionMetadata";
|
|
3684
|
+
placeholder?: Maybe<Scalars["Boolean"]["output"]>;
|
|
3685
|
+
};
|
|
3686
|
+
export type DefaultNotification = {
|
|
3687
|
+
__typename?: "DefaultNotification";
|
|
3688
|
+
enabled?: Maybe<Scalars["Boolean"]["output"]>;
|
|
3689
|
+
type: NotificationType;
|
|
3690
|
+
};
|
|
3691
|
+
export type DefaultNotificationsInput = {
|
|
3692
|
+
enabled: Scalars["Boolean"]["input"];
|
|
3693
|
+
type: NotificationType;
|
|
3694
|
+
};
|
|
3525
3695
|
export type DeleteAccessReviewTemplatesInput = {
|
|
3526
3696
|
ids: Array<Scalars["AccessReviewTemplateId"]["input"]>;
|
|
3527
3697
|
};
|
|
@@ -3615,10 +3785,6 @@ export type DeleteGroupResult = {
|
|
|
3615
3785
|
__typename?: "DeleteGroupResult";
|
|
3616
3786
|
success: Scalars["Boolean"]["output"];
|
|
3617
3787
|
};
|
|
3618
|
-
export type DeleteGroupUserPropStatusResult = {
|
|
3619
|
-
__typename?: "DeleteGroupUserPropStatusResult";
|
|
3620
|
-
success: Scalars["Boolean"]["output"];
|
|
3621
|
-
};
|
|
3622
3788
|
export type DeleteGroupsInput = {
|
|
3623
3789
|
ids: Array<Scalars["GroupId"]["input"]>;
|
|
3624
3790
|
};
|
|
@@ -3668,13 +3834,25 @@ export type DeleteOwnersResult = {
|
|
|
3668
3834
|
__typename?: "DeleteOwnersResult";
|
|
3669
3835
|
owners: Array<Owner>;
|
|
3670
3836
|
};
|
|
3837
|
+
export type DeleteRequestReviewerDelegationInput = {
|
|
3838
|
+
delegationId: Scalars["RequestReviewerDelegationId"]["input"];
|
|
3839
|
+
};
|
|
3840
|
+
export type DeleteRequestReviewerDelegationInvalidError = Error & {
|
|
3841
|
+
__typename?: "DeleteRequestReviewerDelegationInvalidError";
|
|
3842
|
+
message: Scalars["String"]["output"];
|
|
3843
|
+
};
|
|
3844
|
+
export type DeleteRequestReviewerDelegationOutput = DeleteRequestReviewerDelegationInvalidError | DeleteRequestReviewerDelegationResult;
|
|
3845
|
+
export type DeleteRequestReviewerDelegationResult = {
|
|
3846
|
+
__typename?: "DeleteRequestReviewerDelegationResult";
|
|
3847
|
+
success: Scalars["Boolean"]["output"];
|
|
3848
|
+
};
|
|
3671
3849
|
export type DeleteRequestTemplateInput = {
|
|
3672
3850
|
id: Scalars["RequestTemplateId"]["input"];
|
|
3673
3851
|
};
|
|
3674
3852
|
export type DeleteRequestTemplateOutput = DeleteRequestTemplateResult;
|
|
3675
3853
|
export type DeleteRequestTemplateResult = {
|
|
3676
3854
|
__typename?: "DeleteRequestTemplateResult";
|
|
3677
|
-
|
|
3855
|
+
requestTemplateId: Scalars["RequestTemplateId"]["output"];
|
|
3678
3856
|
};
|
|
3679
3857
|
export type DeleteResourceCustomAccessLevelsEntryResult = {
|
|
3680
3858
|
__typename?: "DeleteResourceCustomAccessLevelsEntryResult";
|
|
@@ -3822,6 +4000,15 @@ export type EdgeMetadata = {
|
|
|
3822
4000
|
accessType?: Maybe<AccessTypeData>;
|
|
3823
4001
|
lastUsageTime?: Maybe<Scalars["Time"]["output"]>;
|
|
3824
4002
|
};
|
|
4003
|
+
export type EnableDefaultNotificationsForAllError = Error & {
|
|
4004
|
+
__typename?: "EnableDefaultNotificationsForAllError";
|
|
4005
|
+
message: Scalars["String"]["output"];
|
|
4006
|
+
};
|
|
4007
|
+
export type EnableDefaultNotificationsForAllOutput = EnableDefaultNotificationsForAllError | EnableDefaultNotificationsForAllResult;
|
|
4008
|
+
export type EnableDefaultNotificationsForAllResult = {
|
|
4009
|
+
__typename?: "EnableDefaultNotificationsForAllResult";
|
|
4010
|
+
success: Scalars["Boolean"]["output"];
|
|
4011
|
+
};
|
|
3825
4012
|
export type EndDateFilter = {
|
|
3826
4013
|
date: Scalars["String"]["input"];
|
|
3827
4014
|
};
|
|
@@ -3853,9 +4040,41 @@ export type EntityIdTupleInput = {
|
|
|
3853
4040
|
entityId: Scalars["UUID"]["input"];
|
|
3854
4041
|
entityType: EntityType;
|
|
3855
4042
|
};
|
|
4043
|
+
export type EntityPermissionEdge = Edge & {
|
|
4044
|
+
__typename?: "EntityPermissionEdge";
|
|
4045
|
+
access?: Maybe<Access>;
|
|
4046
|
+
accessLevel: AccessLevel;
|
|
4047
|
+
cursor: Scalars["String"]["output"];
|
|
4048
|
+
from: AccessibleItem;
|
|
4049
|
+
node: AccessibleItem;
|
|
4050
|
+
propagationStatus?: Maybe<PropagationStatus>;
|
|
4051
|
+
};
|
|
4052
|
+
export type EntityPermissionsConnection = PageConnection & {
|
|
4053
|
+
__typename?: "EntityPermissionsConnection";
|
|
4054
|
+
edges: Array<EntityPermissionEdge>;
|
|
4055
|
+
pageInfo: PageInfo;
|
|
4056
|
+
totalCount: Scalars["Int"]["output"];
|
|
4057
|
+
totalItemsCount: Scalars["Int"]["output"];
|
|
4058
|
+
};
|
|
4059
|
+
export type EntityPermissionsFilters = {
|
|
4060
|
+
directAccessOnly?: Scalars["Boolean"]["input"];
|
|
4061
|
+
entityType?: InputMaybe<EntityTypeFilter>;
|
|
4062
|
+
includeUnmanaged?: Scalars["Boolean"]["input"];
|
|
4063
|
+
name?: InputMaybe<StringFilter>;
|
|
4064
|
+
propagationStatuses?: InputMaybe<Array<PropagationStatusCode>>;
|
|
4065
|
+
};
|
|
4066
|
+
export type EntityPermissionsSortBy = {
|
|
4067
|
+
direction: SortDirection;
|
|
4068
|
+
field: EntityPermissionsSortByField;
|
|
4069
|
+
};
|
|
4070
|
+
export declare enum EntityPermissionsSortByField {
|
|
4071
|
+
AccessLevelName = "ACCESS_LEVEL_NAME",
|
|
4072
|
+
Name = "NAME"
|
|
4073
|
+
}
|
|
3856
4074
|
export type EntityScope = {
|
|
3857
4075
|
entityIDs?: InputMaybe<Array<Scalars["EntityId"]["input"]>>;
|
|
3858
4076
|
entitySubtypes?: InputMaybe<EntitySubtypes>;
|
|
4077
|
+
entityTagIDs?: InputMaybe<Array<Scalars["TagId"]["input"]>>;
|
|
3859
4078
|
entityTypes?: InputMaybe<Array<EntityType>>;
|
|
3860
4079
|
};
|
|
3861
4080
|
export type EntitySubtypes = {
|
|
@@ -3880,6 +4099,7 @@ export declare enum EntityType {
|
|
|
3880
4099
|
Bundle = "BUNDLE",
|
|
3881
4100
|
ConfigurationTemplate = "CONFIGURATION_TEMPLATE",
|
|
3882
4101
|
Connection = "CONNECTION",
|
|
4102
|
+
ConnectionUser = "CONNECTION_USER",
|
|
3883
4103
|
Event = "EVENT",
|
|
3884
4104
|
EventFilter = "EVENT_FILTER",
|
|
3885
4105
|
EventStreamConnection = "EVENT_STREAM_CONNECTION",
|
|
@@ -4026,13 +4246,17 @@ export type EventStream = {
|
|
|
4026
4246
|
id: Scalars["EventStreamId"]["output"];
|
|
4027
4247
|
};
|
|
4028
4248
|
export declare enum EventType {
|
|
4249
|
+
AccessExtended = "ACCESS_EXTENDED",
|
|
4029
4250
|
AccessReviewsCreated = "ACCESS_REVIEWS_CREATED",
|
|
4251
|
+
AccessReviewsReportUpdated = "ACCESS_REVIEWS_REPORT_UPDATED",
|
|
4030
4252
|
AccessReviewsUpdated = "ACCESS_REVIEWS_UPDATED",
|
|
4031
4253
|
AccessReviewAutoAssignReviewerByApprovers = "ACCESS_REVIEW_AUTO_ASSIGN_REVIEWER_BY_APPROVERS",
|
|
4032
4254
|
AccessReviewAutoAssignReviewerByManager = "ACCESS_REVIEW_AUTO_ASSIGN_REVIEWER_BY_MANAGER",
|
|
4033
4255
|
AccessReviewAutoAssignReviewerByOwningTeamAdmin = "ACCESS_REVIEW_AUTO_ASSIGN_REVIEWER_BY_OWNING_TEAM_ADMIN",
|
|
4034
4256
|
AccessReviewConnectionReviewed = "ACCESS_REVIEW_CONNECTION_REVIEWED",
|
|
4035
4257
|
AccessReviewConnectionReviewersUpdated = "ACCESS_REVIEW_CONNECTION_REVIEWERS_UPDATED",
|
|
4258
|
+
AccessReviewDelegationCreated = "ACCESS_REVIEW_DELEGATION_CREATED",
|
|
4259
|
+
AccessReviewDelegationDeleted = "ACCESS_REVIEW_DELEGATION_DELETED",
|
|
4036
4260
|
AccessReviewGroupAccessToGroupAccepted = "ACCESS_REVIEW_GROUP_ACCESS_TO_GROUP_ACCEPTED",
|
|
4037
4261
|
AccessReviewGroupAccessToGroupRevoked = "ACCESS_REVIEW_GROUP_ACCESS_TO_GROUP_REVOKED",
|
|
4038
4262
|
AccessReviewGroupAccessToGroupRevokedDecision = "ACCESS_REVIEW_GROUP_ACCESS_TO_GROUP_REVOKED_DECISION",
|
|
@@ -4094,6 +4318,8 @@ export declare enum EventType {
|
|
|
4094
4318
|
ConfigurationTemplateCreated = "CONFIGURATION_TEMPLATE_CREATED",
|
|
4095
4319
|
ConfigurationTemplateCustomRequestNotificationUpdated = "CONFIGURATION_TEMPLATE_CUSTOM_REQUEST_NOTIFICATION_UPDATED",
|
|
4096
4320
|
ConfigurationTemplateDeleted = "CONFIGURATION_TEMPLATE_DELETED",
|
|
4321
|
+
ConfigurationTemplateMaxDirectUsersAllowedUpdated = "CONFIGURATION_TEMPLATE_MAX_DIRECT_USERS_ALLOWED_UPDATED",
|
|
4322
|
+
ConfigurationTemplateMaxUsersExceededMessageUpdated = "CONFIGURATION_TEMPLATE_MAX_USERS_EXCEEDED_MESSAGE_UPDATED",
|
|
4097
4323
|
ConfigurationTemplateNameUpdated = "CONFIGURATION_TEMPLATE_NAME_UPDATED",
|
|
4098
4324
|
ConfigurationTemplateOncallSchedulesUpdated = "CONFIGURATION_TEMPLATE_ONCALL_SCHEDULES_UPDATED",
|
|
4099
4325
|
ConfigurationTemplateRequestConfigDeleted = "CONFIGURATION_TEMPLATE_REQUEST_CONFIG_DELETED",
|
|
@@ -4124,6 +4350,8 @@ export declare enum EventType {
|
|
|
4124
4350
|
ConnectionVisibilityGroupsRemoved = "CONNECTION_VISIBILITY_GROUPS_REMOVED",
|
|
4125
4351
|
ConnectionVisibilityUpdated = "CONNECTION_VISIBILITY_UPDATED",
|
|
4126
4352
|
ConnectionWebhookEnabledUpdated = "CONNECTION_WEBHOOK_ENABLED_UPDATED",
|
|
4353
|
+
EntityTagAdded = "ENTITY_TAG_ADDED",
|
|
4354
|
+
EntityTagRemoved = "ENTITY_TAG_REMOVED",
|
|
4127
4355
|
EventMonitorEventsDetected = "EVENT_MONITOR_EVENTS_DETECTED",
|
|
4128
4356
|
EventStreamConnectionsCreated = "EVENT_STREAM_CONNECTIONS_CREATED",
|
|
4129
4357
|
EventStreamConnectionsDeleted = "EVENT_STREAM_CONNECTIONS_DELETED",
|
|
@@ -4146,6 +4374,8 @@ export declare enum EventType {
|
|
|
4146
4374
|
GroupBindingUpdated = "GROUP_BINDING_UPDATED",
|
|
4147
4375
|
GroupConfigurationTemplateUpdated = "GROUP_CONFIGURATION_TEMPLATE_UPDATED",
|
|
4148
4376
|
GroupCustomRequestNotificationUpdated = "GROUP_CUSTOM_REQUEST_NOTIFICATION_UPDATED",
|
|
4377
|
+
GroupExtensionsDurationInMinutesUpdated = "GROUP_EXTENSIONS_DURATION_IN_MINUTES_UPDATED",
|
|
4378
|
+
GroupExtensionsEnabledUpdated = "GROUP_EXTENSIONS_ENABLED_UPDATED",
|
|
4149
4379
|
GroupFoldersCreated = "GROUP_FOLDERS_CREATED",
|
|
4150
4380
|
GroupFoldersDeleted = "GROUP_FOLDERS_DELETED",
|
|
4151
4381
|
GroupFunctionUpdated = "GROUP_FUNCTION_UPDATED",
|
|
@@ -4153,7 +4383,9 @@ export declare enum EventType {
|
|
|
4153
4383
|
GroupIsRequestableUpdated = "GROUP_IS_REQUESTABLE_UPDATED",
|
|
4154
4384
|
GroupLeadersCreated = "GROUP_LEADERS_CREATED",
|
|
4155
4385
|
GroupLeadersRemoved = "GROUP_LEADERS_REMOVED",
|
|
4386
|
+
GroupMaxDirectUsersAllowedUpdated = "GROUP_MAX_DIRECT_USERS_ALLOWED_UPDATED",
|
|
4156
4387
|
GroupMaxDurationUpdated = "GROUP_MAX_DURATION_UPDATED",
|
|
4388
|
+
GroupMaxUsersExceededMessageUpdated = "GROUP_MAX_USERS_EXCEEDED_MESSAGE_UPDATED",
|
|
4157
4389
|
GroupNameUpdated = "GROUP_NAME_UPDATED",
|
|
4158
4390
|
GroupRecommendedDurationUpdated = "GROUP_RECOMMENDED_DURATION_UPDATED",
|
|
4159
4391
|
GroupRemovedFromBinding = "GROUP_REMOVED_FROM_BINDING",
|
|
@@ -4218,6 +4450,7 @@ export declare enum EventType {
|
|
|
4218
4450
|
PropagatedRemoveUserFromResource = "PROPAGATED_REMOVE_USER_FROM_RESOURCE",
|
|
4219
4451
|
PropagationComputeRemoteUserPushTasks = "PROPAGATION_COMPUTE_REMOTE_USER_PUSH_TASKS",
|
|
4220
4452
|
PropagationFailureAddResourceToGroup = "PROPAGATION_FAILURE_ADD_RESOURCE_TO_GROUP",
|
|
4453
|
+
PropagationFailureAddUserToConnection = "PROPAGATION_FAILURE_ADD_USER_TO_CONNECTION",
|
|
4221
4454
|
PropagationFailureAddUserToGroup = "PROPAGATION_FAILURE_ADD_USER_TO_GROUP",
|
|
4222
4455
|
PropagationFailureAddUserToResource = "PROPAGATION_FAILURE_ADD_USER_TO_RESOURCE",
|
|
4223
4456
|
PropagationFailureRemoveResourceFromGroup = "PROPAGATION_FAILURE_REMOVE_RESOURCE_FROM_GROUP",
|
|
@@ -4229,6 +4462,7 @@ export declare enum EventType {
|
|
|
4229
4462
|
PropagationManualAddUserToResource = "PROPAGATION_MANUAL_ADD_USER_TO_RESOURCE",
|
|
4230
4463
|
PropagationManualRemoveUserFromResource = "PROPAGATION_MANUAL_REMOVE_USER_FROM_RESOURCE",
|
|
4231
4464
|
PropagationSuccessAddResourceToGroup = "PROPAGATION_SUCCESS_ADD_RESOURCE_TO_GROUP",
|
|
4465
|
+
PropagationSuccessAddUserToConnection = "PROPAGATION_SUCCESS_ADD_USER_TO_CONNECTION",
|
|
4232
4466
|
PropagationSuccessAddUserToGroup = "PROPAGATION_SUCCESS_ADD_USER_TO_GROUP",
|
|
4233
4467
|
PropagationSuccessAddUserToResource = "PROPAGATION_SUCCESS_ADD_USER_TO_RESOURCE",
|
|
4234
4468
|
PropagationSuccessRemoveResourceFromGroup = "PROPAGATION_SUCCESS_REMOVE_RESOURCE_FROM_GROUP",
|
|
@@ -4275,6 +4509,7 @@ export declare enum EventType {
|
|
|
4275
4509
|
RequestResourceRequested = "REQUEST_RESOURCE_REQUESTED",
|
|
4276
4510
|
RequestReviewersAddedToRequests = "REQUEST_REVIEWERS_ADDED_TO_REQUESTS",
|
|
4277
4511
|
RequestReviewersApproved = "REQUEST_REVIEWERS_APPROVED",
|
|
4512
|
+
RequestReviewersApprovedOnBehalfOf = "REQUEST_REVIEWERS_APPROVED_ON_BEHALF_OF",
|
|
4278
4513
|
RequestReviewersDenied = "REQUEST_REVIEWERS_DENIED",
|
|
4279
4514
|
RequestSkipManagerAddedToRequests = "REQUEST_SKIP_MANAGER_ADDED_TO_REQUESTS",
|
|
4280
4515
|
RequestSupportTicketAdded = "REQUEST_SUPPORT_TICKET_ADDED",
|
|
@@ -4297,10 +4532,14 @@ export declare enum EventType {
|
|
|
4297
4532
|
ResourceConfigurationTemplateUpdated = "RESOURCE_CONFIGURATION_TEMPLATE_UPDATED",
|
|
4298
4533
|
ResourceConnectRequireMfaUpdated = "RESOURCE_CONNECT_REQUIRE_MFA_UPDATED",
|
|
4299
4534
|
ResourceCustomRequestNotificationUpdated = "RESOURCE_CUSTOM_REQUEST_NOTIFICATION_UPDATED",
|
|
4535
|
+
ResourceExtensionsDurationInMinutesUpdated = "RESOURCE_EXTENSIONS_DURATION_IN_MINUTES_UPDATED",
|
|
4536
|
+
ResourceExtensionsEnabledUpdated = "RESOURCE_EXTENSIONS_ENABLED_UPDATED",
|
|
4300
4537
|
ResourceFoldersCreated = "RESOURCE_FOLDERS_CREATED",
|
|
4301
4538
|
ResourceFoldersDeleted = "RESOURCE_FOLDERS_DELETED",
|
|
4302
4539
|
ResourceIsRequestableUpdated = "RESOURCE_IS_REQUESTABLE_UPDATED",
|
|
4540
|
+
ResourceMaxDirectUsersAllowedUpdated = "RESOURCE_MAX_DIRECT_USERS_ALLOWED_UPDATED",
|
|
4303
4541
|
ResourceMaxDurationUpdated = "RESOURCE_MAX_DURATION_UPDATED",
|
|
4542
|
+
ResourceMaxUsersExceededMessageUpdated = "RESOURCE_MAX_USERS_EXCEEDED_MESSAGE_UPDATED",
|
|
4304
4543
|
ResourceNameUpdated = "RESOURCE_NAME_UPDATED",
|
|
4305
4544
|
ResourceRecommendedDurationUpdated = "RESOURCE_RECOMMENDED_DURATION_UPDATED",
|
|
4306
4545
|
ResourceRequestRequireMfaUpdated = "RESOURCE_REQUEST_REQUIRE_MFA_UPDATED",
|
|
@@ -4372,6 +4611,60 @@ export type Exclusion = {
|
|
|
4372
4611
|
__typename?: "Exclusion";
|
|
4373
4612
|
users: Array<User>;
|
|
4374
4613
|
};
|
|
4614
|
+
export type ExtendRoleAssignmentOutput = RoleAssignment | UserFacingError;
|
|
4615
|
+
export type ExternalEvent = Node & {
|
|
4616
|
+
__typename?: "ExternalEvent";
|
|
4617
|
+
actor: Principal;
|
|
4618
|
+
actorID?: Maybe<EntityIdTuple>;
|
|
4619
|
+
connection: Connection;
|
|
4620
|
+
connectionID: Scalars["ConnectionId"]["output"];
|
|
4621
|
+
createdAt: Scalars["Time"]["output"];
|
|
4622
|
+
entity: EntityDisplayInfo;
|
|
4623
|
+
entityID: EntityIdTuple;
|
|
4624
|
+
eventTime: Scalars["Time"]["output"];
|
|
4625
|
+
eventType: ExternalEventType;
|
|
4626
|
+
id: Scalars["UUID"]["output"];
|
|
4627
|
+
remoteID: Scalars["RemoteEventId"]["output"];
|
|
4628
|
+
secondaryEntity?: Maybe<EntityDisplayInfo>;
|
|
4629
|
+
secondaryEntityID?: Maybe<EntityIdTuple>;
|
|
4630
|
+
};
|
|
4631
|
+
export type ExternalEventConnection = PageConnection & {
|
|
4632
|
+
__typename?: "ExternalEventConnection";
|
|
4633
|
+
edges: Array<ExternalEventEdge>;
|
|
4634
|
+
pageInfo: PageInfo;
|
|
4635
|
+
totalCount: Scalars["Int"]["output"];
|
|
4636
|
+
};
|
|
4637
|
+
export type ExternalEventEdge = Edge & {
|
|
4638
|
+
__typename?: "ExternalEventEdge";
|
|
4639
|
+
cursor: Scalars["String"]["output"];
|
|
4640
|
+
node: ExternalEvent;
|
|
4641
|
+
};
|
|
4642
|
+
export declare enum ExternalEventType {
|
|
4643
|
+
GroupsCreated = "GROUPS_CREATED",
|
|
4644
|
+
GroupsDeleted = "GROUPS_DELETED",
|
|
4645
|
+
GroupAddedToResource = "GROUP_ADDED_TO_RESOURCE",
|
|
4646
|
+
GroupRemovedFromResource = "GROUP_REMOVED_FROM_RESOURCE",
|
|
4647
|
+
GroupUsed = "GROUP_USED",
|
|
4648
|
+
LoginSuccess = "LOGIN_SUCCESS",
|
|
4649
|
+
ResourcesCreated = "RESOURCES_CREATED",
|
|
4650
|
+
ResourcesDeleted = "RESOURCES_DELETED",
|
|
4651
|
+
ResourceRead = "RESOURCE_READ",
|
|
4652
|
+
UserAddedToGroup = "USER_ADDED_TO_GROUP",
|
|
4653
|
+
UserAddedToResource = "USER_ADDED_TO_RESOURCE",
|
|
4654
|
+
UserRemovedFromGroup = "USER_REMOVED_FROM_GROUP",
|
|
4655
|
+
UserRemovedFromResource = "USER_REMOVED_FROM_RESOURCE"
|
|
4656
|
+
}
|
|
4657
|
+
export type ExternalEventsFilters = {
|
|
4658
|
+
actor?: InputMaybe<EntityIdTupleInput>;
|
|
4659
|
+
secondaryEntity: EntityIdTupleInput;
|
|
4660
|
+
};
|
|
4661
|
+
export type ExternalEventsSortBy = {
|
|
4662
|
+
direction: SortDirection;
|
|
4663
|
+
field: ExternalEventsSortByFields;
|
|
4664
|
+
};
|
|
4665
|
+
export declare enum ExternalEventsSortByFields {
|
|
4666
|
+
EventTime = "EVENT_TIME"
|
|
4667
|
+
}
|
|
4375
4668
|
export type Factor = {
|
|
4376
4669
|
__typename?: "Factor";
|
|
4377
4670
|
factorCreatedAt?: Maybe<Scalars["Time"]["output"]>;
|
|
@@ -4519,8 +4812,14 @@ export declare enum GeneralSettingType {
|
|
|
4519
4812
|
AccessExpiringNotifications = "ACCESS_EXPIRING_NOTIFICATIONS",
|
|
4520
4813
|
AccessReviewReminders = "ACCESS_REVIEW_REMINDERS",
|
|
4521
4814
|
AccessRuleFailsafe = "ACCESS_RULE_FAILSAFE",
|
|
4815
|
+
AiAccessRequestGrading = "AI_ACCESS_REQUEST_GRADING",
|
|
4816
|
+
AiAllFeatures = "AI_ALL_FEATURES",
|
|
4817
|
+
AiCustomRoleDescriptionGenerator = "AI_CUSTOM_ROLE_DESCRIPTION_GENERATOR",
|
|
4818
|
+
AiCustomRoleSummary = "AI_CUSTOM_ROLE_SUMMARY",
|
|
4819
|
+
AiRiskCenterAskOpal = "AI_RISK_CENTER_ASK_OPAL",
|
|
4522
4820
|
AutoMergeUsersByEmail = "AUTO_MERGE_USERS_BY_EMAIL",
|
|
4523
4821
|
DisableNonAdminLogins = "DISABLE_NON_ADMIN_LOGINS",
|
|
4822
|
+
DisableRequestDelegation = "DISABLE_REQUEST_DELEGATION",
|
|
4524
4823
|
GlobalRequesterRole = "GLOBAL_REQUESTER_ROLE",
|
|
4525
4824
|
NestedGroups = "NESTED_GROUPS",
|
|
4526
4825
|
RequireManagerCc = "REQUIRE_MANAGER_CC",
|
|
@@ -4530,6 +4829,7 @@ export declare enum GeneralSettingType {
|
|
|
4530
4829
|
ToxicSetBlockRequest = "TOXIC_SET_BLOCK_REQUEST",
|
|
4531
4830
|
UserDeprovisionDeleteDeprovisioned = "USER_DEPROVISION_DELETE_DEPROVISIONED",
|
|
4532
4831
|
UserImpersonation = "USER_IMPERSONATION",
|
|
4832
|
+
UserRevokeEndSystemAccessDeprovisioned = "USER_REVOKE_END_SYSTEM_ACCESS_DEPROVISIONED",
|
|
4533
4833
|
UseOidcMfaForGatingOpalActions = "USE_OIDC_MFA_FOR_GATING_OPAL_ACTIONS",
|
|
4534
4834
|
UseOktaMfaForGatingOpalActions = "USE_OKTA_MFA_FOR_GATING_OPAL_ACTIONS"
|
|
4535
4835
|
}
|
|
@@ -4538,16 +4838,25 @@ export type GenerateChannelNameInput = {
|
|
|
4538
4838
|
itemName: Scalars["String"]["input"];
|
|
4539
4839
|
};
|
|
4540
4840
|
export type GitHubConnectionCredentialsInput = {
|
|
4541
|
-
adminToken
|
|
4542
|
-
|
|
4543
|
-
|
|
4841
|
+
adminToken?: InputMaybe<Scalars["String"]["input"]>;
|
|
4842
|
+
appClientId?: InputMaybe<Scalars["String"]["input"]>;
|
|
4843
|
+
appClientSecret?: InputMaybe<Scalars["String"]["input"]>;
|
|
4844
|
+
clientId?: InputMaybe<Scalars["String"]["input"]>;
|
|
4845
|
+
clientSecret?: InputMaybe<Scalars["String"]["input"]>;
|
|
4846
|
+
privateKey?: InputMaybe<Scalars["String"]["input"]>;
|
|
4544
4847
|
};
|
|
4545
4848
|
export type GitHubConnectionMetadata = {
|
|
4546
4849
|
__typename?: "GitHubConnectionMetadata";
|
|
4850
|
+
appName?: Maybe<Scalars["String"]["output"]>;
|
|
4851
|
+
installationId?: Maybe<Scalars["Int"]["output"]>;
|
|
4547
4852
|
orgName: Scalars["String"]["output"];
|
|
4853
|
+
samlUserIngestionEnabled: Scalars["Boolean"]["output"];
|
|
4548
4854
|
};
|
|
4549
4855
|
export type GitHubConnectionMetadataInput = {
|
|
4856
|
+
appName?: InputMaybe<Scalars["String"]["input"]>;
|
|
4857
|
+
installationId?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4550
4858
|
orgName: Scalars["String"]["input"];
|
|
4859
|
+
samlUserIngestionEnabled: Scalars["Boolean"]["input"];
|
|
4551
4860
|
};
|
|
4552
4861
|
export type GitLabConnectionCredentialsInput = {
|
|
4553
4862
|
appSecret: Scalars["String"]["input"];
|
|
@@ -4608,8 +4917,6 @@ export type Group = AccessEntity & AccessibleItem & BaseEntity & ConnectionEntit
|
|
|
4608
4917
|
allowedPermissions: Array<RolePermissionKey>;
|
|
4609
4918
|
associatedItems: AssociatedItemConnection;
|
|
4610
4919
|
auditMessageChannels?: Maybe<Array<MessageChannel>>;
|
|
4611
|
-
/** @deprecated use allowedPermissions */
|
|
4612
|
-
authorizedActions?: Maybe<Array<Scalars["AuthorizedAction"]["output"]>>;
|
|
4613
4920
|
breakGlassUsers: Array<GroupBreakGlassUser>;
|
|
4614
4921
|
canHaveUsageData: Scalars["Boolean"]["output"];
|
|
4615
4922
|
commonMetadata: CommonMetadata;
|
|
@@ -4621,6 +4928,7 @@ export type Group = AccessEntity & AccessibleItem & BaseEntity & ConnectionEntit
|
|
|
4621
4928
|
currentUserAccess: CurrentUserGroupAccess;
|
|
4622
4929
|
customRequestNotification?: Maybe<Scalars["String"]["output"]>;
|
|
4623
4930
|
description: Scalars["String"]["output"];
|
|
4931
|
+
entityPermissions: EntityPermissionsConnection;
|
|
4624
4932
|
groupBinding?: Maybe<GroupBinding>;
|
|
4625
4933
|
groupBindingId?: Maybe<Scalars["GroupBindingId"]["output"]>;
|
|
4626
4934
|
/** @deprecated Do not use groupGroups, use containingGroups instead. */
|
|
@@ -4637,12 +4945,15 @@ export type Group = AccessEntity & AccessibleItem & BaseEntity & ConnectionEntit
|
|
|
4637
4945
|
isManaged: Scalars["Boolean"]["output"];
|
|
4638
4946
|
isOnCallSynced: Scalars["Boolean"]["output"];
|
|
4639
4947
|
isRequestable: Scalars["Boolean"]["output"];
|
|
4948
|
+
maxDirectUsersAllowed?: Maybe<Scalars["Int"]["output"]>;
|
|
4949
|
+
maxUsersExceededMessage?: Maybe<Scalars["String"]["output"]>;
|
|
4640
4950
|
memberGroups: Array<GroupGroup>;
|
|
4641
4951
|
name: Scalars["String"]["output"];
|
|
4642
4952
|
numGroupUsers: Scalars["Int"]["output"];
|
|
4643
4953
|
onCallSchedules?: Maybe<Array<GroupOnCallSchedule>>;
|
|
4644
4954
|
paginatedGroupUsers: PaginatedGroupUsersOutput;
|
|
4645
4955
|
parentApp?: Maybe<AppEntity>;
|
|
4956
|
+
permissionSources: PermissionSourceConnection;
|
|
4646
4957
|
principalAssignmentsForEntity: Array<RoleAssignment>;
|
|
4647
4958
|
remoteId?: Maybe<Scalars["RemoteGroupId"]["output"]>;
|
|
4648
4959
|
remoteName: Scalars["String"]["output"];
|
|
@@ -4679,9 +4990,26 @@ export type GroupAssociatedItemsArgs = {
|
|
|
4679
4990
|
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
4680
4991
|
sortBy?: InputMaybe<AssociatedItemsSortBy>;
|
|
4681
4992
|
};
|
|
4993
|
+
export type GroupContainingGroupsArgs = {
|
|
4994
|
+
includeUnmanaged?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
4995
|
+
};
|
|
4996
|
+
export type GroupEntityPermissionsArgs = {
|
|
4997
|
+
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
4998
|
+
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
4999
|
+
filters?: EntityPermissionsFilters;
|
|
5000
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5001
|
+
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5002
|
+
sortBy?: EntityPermissionsSortBy;
|
|
5003
|
+
};
|
|
4682
5004
|
export type GroupPaginatedGroupUsersArgs = {
|
|
4683
5005
|
input?: InputMaybe<PaginatedGroupUsersInput>;
|
|
4684
5006
|
};
|
|
5007
|
+
export type GroupPermissionSourcesArgs = {
|
|
5008
|
+
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
5009
|
+
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
5010
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5011
|
+
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
5012
|
+
};
|
|
4685
5013
|
export type GroupAccessAlreadyReviewedError = Error & {
|
|
4686
5014
|
__typename?: "GroupAccessAlreadyReviewedError";
|
|
4687
5015
|
message: Scalars["String"]["output"];
|
|
@@ -4702,7 +5030,7 @@ export type GroupAccessLevelsInput = {
|
|
|
4702
5030
|
export type GroupAccessLevelsOutput = GroupAccessLevelsResult | GroupNotFoundError;
|
|
4703
5031
|
export type GroupAccessLevelsResult = {
|
|
4704
5032
|
__typename?: "GroupAccessLevelsResult";
|
|
4705
|
-
accessLevels
|
|
5033
|
+
accessLevels: Array<GroupAccessLevel>;
|
|
4706
5034
|
groupId: Scalars["GroupId"]["output"];
|
|
4707
5035
|
};
|
|
4708
5036
|
export type GroupAccessRequestFrequencyReminderOutOfBoundsError = Error & {
|
|
@@ -4945,6 +5273,36 @@ export type GroupOnCallSchedulesResult = {
|
|
|
4945
5273
|
groupOnCallSchedules: Array<GroupOnCallSchedule>;
|
|
4946
5274
|
};
|
|
4947
5275
|
export type GroupOutput = GroupNotFoundError | GroupResult;
|
|
5276
|
+
export type GroupPreview = Node & {
|
|
5277
|
+
__typename?: "GroupPreview";
|
|
5278
|
+
group: Group;
|
|
5279
|
+
groupGroupCount: Scalars["Int"]["output"];
|
|
5280
|
+
groupResourceCount: Scalars["Int"]["output"];
|
|
5281
|
+
groupUserCount: Scalars["Int"]["output"];
|
|
5282
|
+
id: Scalars["UUID"]["output"];
|
|
5283
|
+
reviewCount: Scalars["Int"]["output"];
|
|
5284
|
+
truncatedGroupGroups: Array<GroupGroup>;
|
|
5285
|
+
truncatedGroupResources: Array<GroupResource>;
|
|
5286
|
+
truncatedGroupUsers: Array<GroupUser>;
|
|
5287
|
+
};
|
|
5288
|
+
export type GroupPreviewConnection = PageConnection & {
|
|
5289
|
+
__typename?: "GroupPreviewConnection";
|
|
5290
|
+
edges: Array<GroupPreviewEdge>;
|
|
5291
|
+
filteredGroupCount: Scalars["Int"]["output"];
|
|
5292
|
+
pageInfo: PageInfo;
|
|
5293
|
+
totalCount: Scalars["Int"]["output"];
|
|
5294
|
+
totalReviewCount: Scalars["Int"]["output"];
|
|
5295
|
+
};
|
|
5296
|
+
export type GroupPreviewEdge = Edge & {
|
|
5297
|
+
__typename?: "GroupPreviewEdge";
|
|
5298
|
+
cursor: Scalars["String"]["output"];
|
|
5299
|
+
node: GroupPreview;
|
|
5300
|
+
};
|
|
5301
|
+
export type GroupPreviewFilters = {
|
|
5302
|
+
filters?: FiltersInput;
|
|
5303
|
+
hideEmpty?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
5304
|
+
includeGroupBindings?: Scalars["Boolean"]["input"];
|
|
5305
|
+
};
|
|
4948
5306
|
export type GroupRequestConfigurationOutput = {
|
|
4949
5307
|
__typename?: "GroupRequestConfigurationOutput";
|
|
4950
5308
|
accessLevelRemoteId?: Maybe<Scalars["AccessLevelRemoteId"]["output"]>;
|
|
@@ -4953,6 +5311,7 @@ export type GroupRequestConfigurationOutput = {
|
|
|
4953
5311
|
};
|
|
4954
5312
|
export type GroupRequestStatusCountsInput = {
|
|
4955
5313
|
groupId: Scalars["GroupId"]["input"];
|
|
5314
|
+
userId?: InputMaybe<Scalars["UserId"]["input"]>;
|
|
4956
5315
|
};
|
|
4957
5316
|
export type GroupRequestStatusCountsOutput = GroupNotFoundError | GroupRequestStatusCountsResult;
|
|
4958
5317
|
export type GroupRequestStatusCountsResult = {
|
|
@@ -4971,6 +5330,7 @@ export type GroupResource = {
|
|
|
4971
5330
|
resource?: Maybe<Resource>;
|
|
4972
5331
|
resourceId: Scalars["ResourceId"]["output"];
|
|
4973
5332
|
source: GroupResourceSource;
|
|
5333
|
+
userUsage?: Maybe<Scalars["Int"]["output"]>;
|
|
4974
5334
|
};
|
|
4975
5335
|
export type GroupResourceAccess = {
|
|
4976
5336
|
__typename?: "GroupResourceAccess";
|
|
@@ -5032,11 +5392,6 @@ export type GroupResult = {
|
|
|
5032
5392
|
__typename?: "GroupResult";
|
|
5033
5393
|
group: Group;
|
|
5034
5394
|
};
|
|
5035
|
-
export type GroupSmall = {
|
|
5036
|
-
__typename?: "GroupSmall";
|
|
5037
|
-
id: Scalars["GroupId"]["output"];
|
|
5038
|
-
name: Scalars["String"]["output"];
|
|
5039
|
-
};
|
|
5040
5395
|
export type GroupSuggestion = {
|
|
5041
5396
|
__typename?: "GroupSuggestion";
|
|
5042
5397
|
group?: Maybe<Group>;
|
|
@@ -5104,8 +5459,9 @@ export type GroupTypesWithCountsResult = {
|
|
|
5104
5459
|
export type GroupUser = {
|
|
5105
5460
|
__typename?: "GroupUser";
|
|
5106
5461
|
access?: Maybe<GroupUserAccess>;
|
|
5107
|
-
accessLevel
|
|
5462
|
+
accessLevel: GroupAccessLevel;
|
|
5108
5463
|
accessStats?: Maybe<AccessStats>;
|
|
5464
|
+
extendability: RequestConfiguration;
|
|
5109
5465
|
group?: Maybe<Group>;
|
|
5110
5466
|
groupId: Scalars["GroupId"]["output"];
|
|
5111
5467
|
lastUsedAt?: Maybe<Scalars["Time"]["output"]>;
|
|
@@ -5117,6 +5473,7 @@ export type GroupUser = {
|
|
|
5117
5473
|
};
|
|
5118
5474
|
export type GroupUserAccess = {
|
|
5119
5475
|
__typename?: "GroupUserAccess";
|
|
5476
|
+
accessLevel: GroupAccessLevel;
|
|
5120
5477
|
/**
|
|
5121
5478
|
* Describes attributes of `userId`'s direct access to `groupId`. If unset, this user does not have
|
|
5122
5479
|
* direct access to the group.
|
|
@@ -5138,7 +5495,7 @@ export type GroupUserAccess = {
|
|
|
5138
5495
|
};
|
|
5139
5496
|
export type GroupUserAccessPoint = {
|
|
5140
5497
|
__typename?: "GroupUserAccessPoint";
|
|
5141
|
-
accessLevel
|
|
5498
|
+
accessLevel: GroupAccessLevel;
|
|
5142
5499
|
createdAt: Scalars["Time"]["output"];
|
|
5143
5500
|
eventId: Scalars["EventId"]["output"];
|
|
5144
5501
|
expiration?: Maybe<Scalars["Time"]["output"]>;
|
|
@@ -5166,6 +5523,7 @@ export type GroupUserFiltersInput = {
|
|
|
5166
5523
|
neverUsedOnly?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
5167
5524
|
permanentAccessOnly?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
5168
5525
|
propagationStatuses?: InputMaybe<Array<PropagationStatusCode>>;
|
|
5526
|
+
searchQuery?: InputMaybe<Scalars["String"]["input"]>;
|
|
5169
5527
|
team?: InputMaybe<Scalars["String"]["input"]>;
|
|
5170
5528
|
title?: InputMaybe<Scalars["String"]["input"]>;
|
|
5171
5529
|
userFullName?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -5249,11 +5607,20 @@ export type IAccessLevel = {
|
|
|
5249
5607
|
accessLevelName: Scalars["AccessLevelName"]["output"];
|
|
5250
5608
|
accessLevelRemoteId: Scalars["AccessLevelRemoteId"]["output"];
|
|
5251
5609
|
};
|
|
5252
|
-
export
|
|
5253
|
-
|
|
5254
|
-
|
|
5255
|
-
|
|
5256
|
-
|
|
5610
|
+
export type ILevelConnectionCredentialsInput = {
|
|
5611
|
+
clientSecret: Scalars["String"]["input"];
|
|
5612
|
+
};
|
|
5613
|
+
export type ILevelConnectionMetadata = {
|
|
5614
|
+
__typename?: "ILevelConnectionMetadata";
|
|
5615
|
+
clientId: Scalars["String"]["output"];
|
|
5616
|
+
isSandbox: Scalars["Boolean"]["output"];
|
|
5617
|
+
passwordStrategy: Scalars["String"]["output"];
|
|
5618
|
+
};
|
|
5619
|
+
export type ILevelConnectionMetadataInput = {
|
|
5620
|
+
clientId: Scalars["String"]["input"];
|
|
5621
|
+
isSandbox: Scalars["Boolean"]["input"];
|
|
5622
|
+
passwordStrategy: Scalars["String"]["input"];
|
|
5623
|
+
};
|
|
5257
5624
|
export type IdpConnection = {
|
|
5258
5625
|
__typename?: "IdpConnection";
|
|
5259
5626
|
connection: Connection;
|
|
@@ -5278,6 +5645,7 @@ export type IdpConnectionResult = {
|
|
|
5278
5645
|
idpConnections: Array<IdpConnection>;
|
|
5279
5646
|
};
|
|
5280
5647
|
export declare enum IdpConnectionType {
|
|
5648
|
+
ActiveDirectory = "ACTIVE_DIRECTORY",
|
|
5281
5649
|
AzureAd = "AZURE_AD",
|
|
5282
5650
|
Google = "GOOGLE",
|
|
5283
5651
|
Okta = "OKTA",
|
|
@@ -5361,13 +5729,9 @@ export type ImportCustomResourceInfo = {
|
|
|
5361
5729
|
usersWithAccess: Array<ImportCustomResourceUserInfo>;
|
|
5362
5730
|
};
|
|
5363
5731
|
export type ImportCustomResourceUserInfo = {
|
|
5364
|
-
|
|
5365
|
-
|
|
5366
|
-
|
|
5367
|
-
* permitted.
|
|
5368
|
-
* (TODO: we can support import functionality for resources with access levels by
|
|
5369
|
-
* allowing other descriptors)
|
|
5370
|
-
*/
|
|
5732
|
+
accessLevelName: Scalars["AccessLevelName"]["input"];
|
|
5733
|
+
accessLevelRemoteId: Scalars["AccessLevelRemoteId"]["input"];
|
|
5734
|
+
/** Deprecated: do not use. */
|
|
5371
5735
|
cellContent: Scalars["String"]["input"];
|
|
5372
5736
|
email: Scalars["String"]["input"];
|
|
5373
5737
|
};
|
|
@@ -5565,6 +5929,10 @@ export type InvalidUpdateGroupVisibilityGroupError = Error & {
|
|
|
5565
5929
|
__typename?: "InvalidUpdateGroupVisibilityGroupError";
|
|
5566
5930
|
message: Scalars["String"]["output"];
|
|
5567
5931
|
};
|
|
5932
|
+
export type InvalidUpdateItemsInputError = Error & {
|
|
5933
|
+
__typename?: "InvalidUpdateItemsInputError";
|
|
5934
|
+
message: Scalars["String"]["output"];
|
|
5935
|
+
};
|
|
5568
5936
|
export type InvalidUpdateResourceVisibilityGroupError = Error & {
|
|
5569
5937
|
__typename?: "InvalidUpdateResourceVisibilityGroupError";
|
|
5570
5938
|
message: Scalars["String"]["output"];
|
|
@@ -5602,10 +5970,15 @@ export type ItemTypeFilter = {
|
|
|
5602
5970
|
not?: InputMaybe<ItemTypeFilter>;
|
|
5603
5971
|
notIn?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
5604
5972
|
};
|
|
5973
|
+
export type ItemsAtCapacityError = Error & {
|
|
5974
|
+
__typename?: "ItemsAtCapacityError";
|
|
5975
|
+
groupIds?: Maybe<Array<Scalars["GroupId"]["output"]>>;
|
|
5976
|
+
message: Scalars["String"]["output"];
|
|
5977
|
+
resourceIds?: Maybe<Array<Scalars["ResourceId"]["output"]>>;
|
|
5978
|
+
};
|
|
5605
5979
|
export type JiraMetadataInput = {
|
|
5606
5980
|
email: Scalars["String"]["input"];
|
|
5607
5981
|
orgUrl: Scalars["String"]["input"];
|
|
5608
|
-
projectName: Scalars["String"]["input"];
|
|
5609
5982
|
};
|
|
5610
5983
|
export type LdapConnectionCredentialsInput = {
|
|
5611
5984
|
rootPassword: Scalars["String"]["input"];
|
|
@@ -5775,7 +6148,6 @@ export type MetricsInput = {
|
|
|
5775
6148
|
resourceIds?: InputMaybe<Array<Scalars["ResourceId"]["input"]>>;
|
|
5776
6149
|
startDate: Scalars["Time"]["input"];
|
|
5777
6150
|
tagIds?: InputMaybe<Array<Scalars["TagId"]["input"]>>;
|
|
5778
|
-
timezone: Scalars["String"]["input"];
|
|
5779
6151
|
};
|
|
5780
6152
|
export type MfaCallbackInput = {
|
|
5781
6153
|
code: Scalars["String"]["input"];
|
|
@@ -5802,6 +6174,13 @@ export type ModifyAccessAction = {
|
|
|
5802
6174
|
__typename?: "ModifyAccessAction";
|
|
5803
6175
|
durationInDays: Scalars["Int"]["output"];
|
|
5804
6176
|
};
|
|
6177
|
+
export type ModifyRecommendationsEdgeHideActionInput = {
|
|
6178
|
+
roleAssignmentKeys: Array<RoleAssignmentKeyInput>;
|
|
6179
|
+
};
|
|
6180
|
+
export type ModifyRecommendationsEdgeHideActionOutput = {
|
|
6181
|
+
__typename?: "ModifyRecommendationsEdgeHideActionOutput";
|
|
6182
|
+
roleAssignments: Array<RoleAssignment>;
|
|
6183
|
+
};
|
|
5805
6184
|
export type MongoAtlasConnectionCredentialsInput = {
|
|
5806
6185
|
privateKey: Scalars["String"]["input"];
|
|
5807
6186
|
projectID: Scalars["String"]["input"];
|
|
@@ -5885,6 +6264,7 @@ export type Mutation = {
|
|
|
5885
6264
|
__typename?: "Mutation";
|
|
5886
6265
|
addBigData: AddBigDataOutput;
|
|
5887
6266
|
addConnectionUsers: AddConnectionUsersOutput;
|
|
6267
|
+
addFavorite?: Maybe<Scalars["Boolean"]["output"]>;
|
|
5888
6268
|
addGroupGroups: AddGroupGroupsOutput;
|
|
5889
6269
|
addGroupResources: AddGroupResourcesOutput;
|
|
5890
6270
|
addGroupTags: AddGroupTagsOutput;
|
|
@@ -5911,6 +6291,7 @@ export type Mutation = {
|
|
|
5911
6291
|
createConfigurationTemplate: CreateConfigurationTemplateOutput;
|
|
5912
6292
|
createConnection: CreateConnectionOutput;
|
|
5913
6293
|
createConnectionForIdp: CreateIdpConnectionOutput;
|
|
6294
|
+
createE2ETestOrganization: CreateTestOrgResult;
|
|
5914
6295
|
createEventFilter: CreateEventFilterOutput;
|
|
5915
6296
|
createEventStream: CreateEventStreamOutput;
|
|
5916
6297
|
createFirstPartyToken: CreateFirstPartyTokenOutput;
|
|
@@ -5920,15 +6301,16 @@ export type Mutation = {
|
|
|
5920
6301
|
createIdpConnection: CreateIdpConnectionOutput;
|
|
5921
6302
|
createIdpConnectionUserAttributeImportMapping: CreateIdpConnectionUserAttributeImportMappingOutput;
|
|
5922
6303
|
createItems: CreateItemsOutput;
|
|
5923
|
-
createOpalScopedRole?: Maybe<CreateOpalScopedRoleOutput>;
|
|
5924
6304
|
createOrUpdateOidcProvider: CreateOrUpdateOidcProviderOutput;
|
|
5925
6305
|
createOrganization: CreateOrganizationOutput;
|
|
5926
6306
|
createOwner: CreateOwnerOutput;
|
|
5927
6307
|
createOwners: CreateOwnersOutput;
|
|
6308
|
+
createRecommendationsEdgeHideAction: ModifyRecommendationsEdgeHideActionOutput;
|
|
5928
6309
|
createRemoteMessageChannel: CreateRemoteMessageChannelOutput;
|
|
5929
6310
|
createRequest: CreateRequestOutput;
|
|
5930
6311
|
createRequestComment: CreateRequestCommentOutput;
|
|
5931
6312
|
createRequestProposal: CreateRequestProposalOutput;
|
|
6313
|
+
createRequestReviewerDelegation: CreateRequestReviewerDelegationOutput;
|
|
5932
6314
|
createRequestTemplate: CreateRequestTemplateOutput;
|
|
5933
6315
|
/** @deprecated Use createItems instead. */
|
|
5934
6316
|
createResource: CreateResourceOutput;
|
|
@@ -5950,10 +6332,10 @@ export type Mutation = {
|
|
|
5950
6332
|
deleteConnection: DeleteConnectionOutput;
|
|
5951
6333
|
deleteEventFilter: DeleteEventFilterOutput;
|
|
5952
6334
|
deleteEventStream: DeleteEventStreamOutput;
|
|
6335
|
+
deleteFavorite?: Maybe<Scalars["Boolean"]["output"]>;
|
|
5953
6336
|
deleteFirstPartyTokens: DeleteFirstPartyTokensOutput;
|
|
5954
6337
|
deleteGroup: DeleteGroupOutput;
|
|
5955
6338
|
deleteGroupBindings: DeleteGroupBindingsOutput;
|
|
5956
|
-
deleteGroupUserPropStatus: DeleteGroupUserPropStatusResult;
|
|
5957
6339
|
deleteGroups: DeleteGroupsOutput;
|
|
5958
6340
|
deleteIdpConnection: DeleteIdpConnectionOutput;
|
|
5959
6341
|
deleteIdpConnectionUserAttributeImportMapping: DeleteIdpConnectionUserAttributeImportMappingOutput;
|
|
@@ -5961,6 +6343,8 @@ export type Mutation = {
|
|
|
5961
6343
|
deleteOrganization: DeleteOrganizationOutput;
|
|
5962
6344
|
deleteOwner: DeleteOwnerOutput;
|
|
5963
6345
|
deleteOwners: DeleteOwnersOutput;
|
|
6346
|
+
deleteRecommendationsEdgeHideAction: ModifyRecommendationsEdgeHideActionOutput;
|
|
6347
|
+
deleteRequestReviewerDelegation: DeleteRequestReviewerDelegationOutput;
|
|
5964
6348
|
deleteRequestTemplate: DeleteRequestTemplateOutput;
|
|
5965
6349
|
deleteResourceCustomAccessLevels: DeleteResourceCustomAccessLevelsOutput;
|
|
5966
6350
|
deleteResources: DeleteResourcesOutput;
|
|
@@ -5975,7 +6359,9 @@ export type Mutation = {
|
|
|
5975
6359
|
dismissGroupBindingSuggestions: DismissGroupBindingSuggestionsOutput;
|
|
5976
6360
|
dismissRecommendationsSubscores: DismissRecommendationsSubscoresOutput;
|
|
5977
6361
|
dismissSyncErrors: DismissSyncErrorsOutput;
|
|
6362
|
+
enableDefaultNotificationsForAll: EnableDefaultNotificationsForAllOutput;
|
|
5978
6363
|
escalateRequestToSkipManager: EscalateRequestToSkipManagerOutput;
|
|
6364
|
+
extendRoleAssignment: ExtendRoleAssignmentOutput;
|
|
5979
6365
|
forfeitGroup: ForfeitGroupOutput;
|
|
5980
6366
|
forfeitResource: ForfeitResourceOutput;
|
|
5981
6367
|
/** @deprecated Use bulkUpdateItems with importUnmanagedItems set to true */
|
|
@@ -6054,7 +6440,6 @@ export type Mutation = {
|
|
|
6054
6440
|
updateGroupUsers: UpdateGroupUsersOutput;
|
|
6055
6441
|
updateIdpConnection: UpdateIdpConnectionOutput;
|
|
6056
6442
|
updateIdpGroupMappings: IdpGroupMappingsOutput;
|
|
6057
|
-
updateOpalScopedRole?: Maybe<UpdateOpalScopedRoleOutput>;
|
|
6058
6443
|
updateOrganizationSettings: UpdateOrganizationSettingsOutput;
|
|
6059
6444
|
updateOwner: UpdateOwnerOutput;
|
|
6060
6445
|
updateRequestTemplate: UpdateRequestTemplateOutput;
|
|
@@ -6065,7 +6450,6 @@ export type Mutation = {
|
|
|
6065
6450
|
updateResources: UpdateResourcesOutput;
|
|
6066
6451
|
updateRoleAssignments: UpdateRoleAssignmentsOutput;
|
|
6067
6452
|
updateSamlConnection: UpdateSamlConnectionOutput;
|
|
6068
|
-
updateScopedRoleAssignments: UpdateRoleAssignmentsOutput;
|
|
6069
6453
|
updateUser: UpdateUserOutput;
|
|
6070
6454
|
updateUserManager: UpdateUserManagerOutput;
|
|
6071
6455
|
updateUserSettings: UpdateUserSettingsOutput;
|
|
@@ -6083,6 +6467,9 @@ export type MutationAddBigDataArgs = {
|
|
|
6083
6467
|
export type MutationAddConnectionUsersArgs = {
|
|
6084
6468
|
input: AddConnectionUsersInput;
|
|
6085
6469
|
};
|
|
6470
|
+
export type MutationAddFavoriteArgs = {
|
|
6471
|
+
entityIdTuple?: InputMaybe<EntityIdTupleInput>;
|
|
6472
|
+
};
|
|
6086
6473
|
export type MutationAddGroupGroupsArgs = {
|
|
6087
6474
|
input: AddGroupGroupsInput;
|
|
6088
6475
|
};
|
|
@@ -6182,9 +6569,6 @@ export type MutationCreateIdpConnectionUserAttributeImportMappingArgs = {
|
|
|
6182
6569
|
export type MutationCreateItemsArgs = {
|
|
6183
6570
|
input: CreateItemsInput;
|
|
6184
6571
|
};
|
|
6185
|
-
export type MutationCreateOpalScopedRoleArgs = {
|
|
6186
|
-
input: CreateOpalScopedRoleInput;
|
|
6187
|
-
};
|
|
6188
6572
|
export type MutationCreateOrUpdateOidcProviderArgs = {
|
|
6189
6573
|
input: CreateOrUpdateOidcProviderInput;
|
|
6190
6574
|
};
|
|
@@ -6197,6 +6581,9 @@ export type MutationCreateOwnerArgs = {
|
|
|
6197
6581
|
export type MutationCreateOwnersArgs = {
|
|
6198
6582
|
input: CreateOwnersInput;
|
|
6199
6583
|
};
|
|
6584
|
+
export type MutationCreateRecommendationsEdgeHideActionArgs = {
|
|
6585
|
+
input: ModifyRecommendationsEdgeHideActionInput;
|
|
6586
|
+
};
|
|
6200
6587
|
export type MutationCreateRemoteMessageChannelArgs = {
|
|
6201
6588
|
input: CreateRemoteMessageChannelInput;
|
|
6202
6589
|
};
|
|
@@ -6209,6 +6596,9 @@ export type MutationCreateRequestCommentArgs = {
|
|
|
6209
6596
|
export type MutationCreateRequestProposalArgs = {
|
|
6210
6597
|
input: CreateRequestProposalInput;
|
|
6211
6598
|
};
|
|
6599
|
+
export type MutationCreateRequestReviewerDelegationArgs = {
|
|
6600
|
+
input: CreateRequestReviewerDelegationInput;
|
|
6601
|
+
};
|
|
6212
6602
|
export type MutationCreateRequestTemplateArgs = {
|
|
6213
6603
|
input: CreateRequestTemplateInput;
|
|
6214
6604
|
};
|
|
@@ -6266,6 +6656,9 @@ export type MutationDeleteEventFilterArgs = {
|
|
|
6266
6656
|
export type MutationDeleteEventStreamArgs = {
|
|
6267
6657
|
input: DeleteEventStreamInput;
|
|
6268
6658
|
};
|
|
6659
|
+
export type MutationDeleteFavoriteArgs = {
|
|
6660
|
+
entityIdTuple?: InputMaybe<EntityIdTupleInput>;
|
|
6661
|
+
};
|
|
6269
6662
|
export type MutationDeleteFirstPartyTokensArgs = {
|
|
6270
6663
|
input: DeleteFirstPartyTokensInput;
|
|
6271
6664
|
};
|
|
@@ -6275,9 +6668,6 @@ export type MutationDeleteGroupArgs = {
|
|
|
6275
6668
|
export type MutationDeleteGroupBindingsArgs = {
|
|
6276
6669
|
input: DeleteGroupBindingsInput;
|
|
6277
6670
|
};
|
|
6278
|
-
export type MutationDeleteGroupUserPropStatusArgs = {
|
|
6279
|
-
accessReviewGroupUserId: Scalars["AccessReviewGroupUserId"]["input"];
|
|
6280
|
-
};
|
|
6281
6671
|
export type MutationDeleteGroupsArgs = {
|
|
6282
6672
|
input: DeleteGroupsInput;
|
|
6283
6673
|
};
|
|
@@ -6296,6 +6686,12 @@ export type MutationDeleteOwnerArgs = {
|
|
|
6296
6686
|
export type MutationDeleteOwnersArgs = {
|
|
6297
6687
|
input: DeleteOwnersInput;
|
|
6298
6688
|
};
|
|
6689
|
+
export type MutationDeleteRecommendationsEdgeHideActionArgs = {
|
|
6690
|
+
input: ModifyRecommendationsEdgeHideActionInput;
|
|
6691
|
+
};
|
|
6692
|
+
export type MutationDeleteRequestReviewerDelegationArgs = {
|
|
6693
|
+
input: DeleteRequestReviewerDelegationInput;
|
|
6694
|
+
};
|
|
6299
6695
|
export type MutationDeleteRequestTemplateArgs = {
|
|
6300
6696
|
input: DeleteRequestTemplateInput;
|
|
6301
6697
|
};
|
|
@@ -6335,6 +6731,9 @@ export type MutationDismissSyncErrorsArgs = {
|
|
|
6335
6731
|
export type MutationEscalateRequestToSkipManagerArgs = {
|
|
6336
6732
|
input: EscalateRequestToSkipManagerInput;
|
|
6337
6733
|
};
|
|
6734
|
+
export type MutationExtendRoleAssignmentArgs = {
|
|
6735
|
+
input: RoleAssignmentKeyInput;
|
|
6736
|
+
};
|
|
6338
6737
|
export type MutationForfeitGroupArgs = {
|
|
6339
6738
|
input: ForfeitGroupInput;
|
|
6340
6739
|
};
|
|
@@ -6536,9 +6935,6 @@ export type MutationUpdateIdpConnectionArgs = {
|
|
|
6536
6935
|
export type MutationUpdateIdpGroupMappingsArgs = {
|
|
6537
6936
|
input: IdpGroupMappingsUpdateInput;
|
|
6538
6937
|
};
|
|
6539
|
-
export type MutationUpdateOpalScopedRoleArgs = {
|
|
6540
|
-
input: UpdateOpalScopedRoleInput;
|
|
6541
|
-
};
|
|
6542
6938
|
export type MutationUpdateOrganizationSettingsArgs = {
|
|
6543
6939
|
input: UpdateOrganizationSettingsInput;
|
|
6544
6940
|
};
|
|
@@ -6566,9 +6962,6 @@ export type MutationUpdateRoleAssignmentsArgs = {
|
|
|
6566
6962
|
export type MutationUpdateSamlConnectionArgs = {
|
|
6567
6963
|
input: UpdateSamlConnectionInput;
|
|
6568
6964
|
};
|
|
6569
|
-
export type MutationUpdateScopedRoleAssignmentsArgs = {
|
|
6570
|
-
input: UpdateScopedRoleAssignmentsInput;
|
|
6571
|
-
};
|
|
6572
6965
|
export type MutationUpdateUserArgs = {
|
|
6573
6966
|
input: UpdateUserInput;
|
|
6574
6967
|
};
|
|
@@ -6680,6 +7073,13 @@ export type NotSessionableError = Error & {
|
|
|
6680
7073
|
__typename?: "NotSessionableError";
|
|
6681
7074
|
message: Scalars["String"]["output"];
|
|
6682
7075
|
};
|
|
7076
|
+
export type NotificationPreference = {
|
|
7077
|
+
__typename?: "NotificationPreference";
|
|
7078
|
+
isDefault: Scalars["Boolean"]["output"];
|
|
7079
|
+
isEnabled: Scalars["Boolean"]["output"];
|
|
7080
|
+
isIntegrated: Scalars["Boolean"]["output"];
|
|
7081
|
+
type: NotificationType;
|
|
7082
|
+
};
|
|
6683
7083
|
export declare enum NotificationType {
|
|
6684
7084
|
Email = "EMAIL",
|
|
6685
7085
|
GoogleChat = "GOOGLE_CHAT",
|
|
@@ -6720,7 +7120,8 @@ export type NullableUserId = {
|
|
|
6720
7120
|
};
|
|
6721
7121
|
export declare enum OidcProviderType {
|
|
6722
7122
|
AwsSession = "AWS_SESSION",
|
|
6723
|
-
Mfa = "MFA"
|
|
7123
|
+
Mfa = "MFA",
|
|
7124
|
+
Signin = "SIGNIN"
|
|
6724
7125
|
}
|
|
6725
7126
|
export type ObjectFilter = {
|
|
6726
7127
|
objectId: Scalars["String"]["input"];
|
|
@@ -6903,8 +7304,10 @@ export type OrganizationSettings = {
|
|
|
6903
7304
|
auditTicketProvider?: Maybe<TicketProvider>;
|
|
6904
7305
|
authSessionExpirationInMinutes: Scalars["Int"]["output"];
|
|
6905
7306
|
createdAt: Scalars["Time"]["output"];
|
|
7307
|
+
customSearchLink?: Maybe<CustomSearchLink>;
|
|
6906
7308
|
customerSupportExpiresAt: Scalars["Time"]["output"];
|
|
6907
7309
|
customerSupportGatingAllowed: Scalars["Boolean"]["output"];
|
|
7310
|
+
defaultNotifications?: Maybe<Array<DefaultNotification>>;
|
|
6908
7311
|
dryRunModeEnabled?: Maybe<Scalars["Boolean"]["output"]>;
|
|
6909
7312
|
errorNotificationSetting: ErrorNotificationSettingType;
|
|
6910
7313
|
generalSettings: Array<GeneralSettingType>;
|
|
@@ -6912,6 +7315,7 @@ export type OrganizationSettings = {
|
|
|
6912
7315
|
isRemoteReadOnly?: Maybe<Scalars["Boolean"]["output"]>;
|
|
6913
7316
|
maxGroupDurationInMinutes?: Maybe<Scalars["Int"]["output"]>;
|
|
6914
7317
|
maxResourceDurationInMinutes?: Maybe<Scalars["Int"]["output"]>;
|
|
7318
|
+
maxUsersExceededMessage?: Maybe<Scalars["String"]["output"]>;
|
|
6915
7319
|
reasonMinWordCount?: Maybe<Scalars["Int"]["output"]>;
|
|
6916
7320
|
roleCreationReviewerOwner?: Maybe<Owner>;
|
|
6917
7321
|
roleCreationReviewerOwnerId?: Maybe<Scalars["OwnerId"]["output"]>;
|
|
@@ -6969,8 +7373,11 @@ export type Owner = BaseEntity & Node & {
|
|
|
6969
7373
|
name: Scalars["String"]["output"];
|
|
6970
7374
|
ownedConfigurationTemplates: Array<OwnedConfigurationTemplate>;
|
|
6971
7375
|
ownedGroups: Array<OwnedGroup>;
|
|
7376
|
+
ownedGroupsCount: Scalars["Int"]["output"];
|
|
6972
7377
|
ownedResources: Array<OwnedResource>;
|
|
7378
|
+
ownedResourcesCount: Scalars["Int"]["output"];
|
|
6973
7379
|
ownerUsers: Array<OwnerUser>;
|
|
7380
|
+
ownerUsersCount: Scalars["Int"]["output"];
|
|
6974
7381
|
reviewerMessageChannel?: Maybe<MessageChannel>;
|
|
6975
7382
|
reviewerMessageChannelId?: Maybe<Scalars["MessageChannelId"]["output"]>;
|
|
6976
7383
|
sourceGroup?: Maybe<Group>;
|
|
@@ -7022,6 +7429,7 @@ export type OwnerUserAlreadyExists = Error & {
|
|
|
7022
7429
|
export type OwnersFiltersInput = {
|
|
7023
7430
|
searchQuery?: InputMaybe<Scalars["String"]["input"]>;
|
|
7024
7431
|
sourceGroupIds?: InputMaybe<Array<Scalars["GroupId"]["input"]>>;
|
|
7432
|
+
userIds?: InputMaybe<Array<Scalars["UserId"]["input"]>>;
|
|
7025
7433
|
};
|
|
7026
7434
|
export type OwnersInput = {
|
|
7027
7435
|
cursor?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -7117,7 +7525,7 @@ export type PaginatedSubEventsSortBy = {
|
|
|
7117
7525
|
};
|
|
7118
7526
|
export type PaginatedUserGroupsInput = {
|
|
7119
7527
|
cursor?: InputMaybe<Scalars["String"]["input"]>;
|
|
7120
|
-
filters?:
|
|
7528
|
+
filters?: GroupUserFiltersInput;
|
|
7121
7529
|
maxNumEntries?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7122
7530
|
sortBy?: InputMaybe<PaginatedGroupUsersSortBy>;
|
|
7123
7531
|
};
|
|
@@ -7129,7 +7537,7 @@ export type PaginatedUserGroupsOutput = {
|
|
|
7129
7537
|
};
|
|
7130
7538
|
export type PaginatedUserResourcesInput = {
|
|
7131
7539
|
cursor?: InputMaybe<Scalars["String"]["input"]>;
|
|
7132
|
-
filters?:
|
|
7540
|
+
filters?: ResourceUserFiltersInput;
|
|
7133
7541
|
maxNumEntries?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7134
7542
|
sortBy?: InputMaybe<PaginatedResourceUsersSortBy>;
|
|
7135
7543
|
};
|
|
@@ -7156,6 +7564,18 @@ export type PerformReviewResult = {
|
|
|
7156
7564
|
__typename?: "PerformReviewResult";
|
|
7157
7565
|
success: Scalars["Boolean"]["output"];
|
|
7158
7566
|
};
|
|
7567
|
+
export type PermissionSourceConnection = PageConnection & {
|
|
7568
|
+
__typename?: "PermissionSourceConnection";
|
|
7569
|
+
edges: Array<PermissionSourceEdge>;
|
|
7570
|
+
pageInfo: PageInfo;
|
|
7571
|
+
totalCount: Scalars["Int"]["output"];
|
|
7572
|
+
};
|
|
7573
|
+
export type PermissionSourceEdge = Edge & {
|
|
7574
|
+
__typename?: "PermissionSourceEdge";
|
|
7575
|
+
cursor: Scalars["String"]["output"];
|
|
7576
|
+
node: Resource;
|
|
7577
|
+
rolePermissions: Array<RolePermissionKey>;
|
|
7578
|
+
};
|
|
7159
7579
|
export type PostgresConnectionCredentialsInput = {
|
|
7160
7580
|
rootPassword: Scalars["String"]["input"];
|
|
7161
7581
|
rootUserName: Scalars["String"]["input"];
|
|
@@ -7184,7 +7604,8 @@ export type PrincipalEdge = Edge & {
|
|
|
7184
7604
|
node: Principal;
|
|
7185
7605
|
};
|
|
7186
7606
|
export type PrincipalScope = {
|
|
7187
|
-
principalIDs?: InputMaybe<Array<Scalars["
|
|
7607
|
+
principalIDs?: InputMaybe<Array<Scalars["EntityId"]["input"]>>;
|
|
7608
|
+
principalTagIDs?: InputMaybe<Array<Scalars["TagId"]["input"]>>;
|
|
7188
7609
|
principalTypes?: InputMaybe<Array<EntityType>>;
|
|
7189
7610
|
};
|
|
7190
7611
|
export type PrincipalSearchOptions = {
|
|
@@ -7239,6 +7660,7 @@ export declare enum PropagationStatusCode {
|
|
|
7239
7660
|
Success = "SUCCESS"
|
|
7240
7661
|
}
|
|
7241
7662
|
export declare enum PropagationTaskType {
|
|
7663
|
+
ConnectionsCreateEntities = "CONNECTIONS_CREATE_ENTITIES",
|
|
7242
7664
|
ConnectionsDeleteUsers = "CONNECTIONS_DELETE_USERS",
|
|
7243
7665
|
GroupsCreateGroups = "GROUPS_CREATE_GROUPS",
|
|
7244
7666
|
GroupsCreateResources = "GROUPS_CREATE_RESOURCES",
|
|
@@ -7271,11 +7693,54 @@ export type PropagationTicketOwnerMetadata = {
|
|
|
7271
7693
|
owner?: Maybe<Owner>;
|
|
7272
7694
|
ownerId?: Maybe<Scalars["OwnerId"]["output"]>;
|
|
7273
7695
|
};
|
|
7696
|
+
export type ProvisionConfiguration = Node & {
|
|
7697
|
+
__typename?: "ProvisionConfiguration";
|
|
7698
|
+
connectionId: Scalars["ConnectionId"]["output"];
|
|
7699
|
+
entityItemType: Scalars["String"]["output"];
|
|
7700
|
+
entityItemTypeDisplayName: Scalars["String"]["output"];
|
|
7701
|
+
id: Scalars["UUID"]["output"];
|
|
7702
|
+
provisionStrategy: ProvisionStrategy;
|
|
7703
|
+
provisioningAction: ProvisioningAction;
|
|
7704
|
+
};
|
|
7705
|
+
export type ProvisionConfigurationInfo = {
|
|
7706
|
+
__typename?: "ProvisionConfigurationInfo";
|
|
7707
|
+
enabled: Scalars["Boolean"]["output"];
|
|
7708
|
+
entityItemType: Scalars["String"]["output"];
|
|
7709
|
+
entityItemTypeDisplayName: Scalars["String"]["output"];
|
|
7710
|
+
provisionStrategy: ProvisionStrategy;
|
|
7711
|
+
provisioningAction: ProvisioningAction;
|
|
7712
|
+
};
|
|
7713
|
+
export type ProvisionConfigurationInput = {
|
|
7714
|
+
entityItemType: Scalars["String"]["input"];
|
|
7715
|
+
provisionStrategy: ProvisionStrategy;
|
|
7716
|
+
provisioningAction: ProvisioningAction;
|
|
7717
|
+
};
|
|
7718
|
+
export type ProvisionEntityStatus = {
|
|
7719
|
+
__typename?: "ProvisionEntityStatus";
|
|
7720
|
+
action: Scalars["String"]["output"];
|
|
7721
|
+
connectionId: Scalars["ConnectionId"]["output"];
|
|
7722
|
+
entityId: Scalars["EntityId"]["output"];
|
|
7723
|
+
entityItemType: Scalars["String"]["output"];
|
|
7724
|
+
errorMessage?: Maybe<Scalars["String"]["output"]>;
|
|
7725
|
+
statusCode: PropagationStatusCode;
|
|
7726
|
+
};
|
|
7274
7727
|
export declare enum ProvisionSource {
|
|
7275
7728
|
External = "EXTERNAL",
|
|
7276
7729
|
Opal = "OPAL",
|
|
7277
7730
|
Unknown = "UNKNOWN"
|
|
7278
7731
|
}
|
|
7732
|
+
export declare enum ProvisionStrategy {
|
|
7733
|
+
None = "NONE",
|
|
7734
|
+
PushEntityToConnection = "PUSH_ENTITY_TO_CONNECTION"
|
|
7735
|
+
}
|
|
7736
|
+
export declare enum ProvisioningAction {
|
|
7737
|
+
Create = "CREATE",
|
|
7738
|
+
Delete = "DELETE"
|
|
7739
|
+
}
|
|
7740
|
+
export type ProvisioningPushTaskResult = {
|
|
7741
|
+
__typename?: "ProvisioningPushTaskResult";
|
|
7742
|
+
propStatuses: Array<ProvisionEntityStatus>;
|
|
7743
|
+
};
|
|
7279
7744
|
export type PubsubPublishConnection = {
|
|
7280
7745
|
__typename?: "PubsubPublishConnection";
|
|
7281
7746
|
connectionType: PubsubPublishConnectionType;
|
|
@@ -7327,7 +7792,7 @@ export type PushTaskComplete = {
|
|
|
7327
7792
|
result: PushTaskCompleteResult;
|
|
7328
7793
|
taskType: PropagationTaskType;
|
|
7329
7794
|
};
|
|
7330
|
-
export type PushTaskCompleteResult = ConnectionUserPushTaskResult | RoleAssignmentPushTaskResult;
|
|
7795
|
+
export type PushTaskCompleteResult = ConnectionUserPushTaskResult | ProvisioningPushTaskResult | RoleAssignmentPushTaskResult;
|
|
7331
7796
|
export type PushTaskInput = {
|
|
7332
7797
|
id: Scalars["PushTaskId"]["input"];
|
|
7333
7798
|
};
|
|
@@ -7377,7 +7842,7 @@ export type Query = {
|
|
|
7377
7842
|
accessReviews: AccessReviewsOutput;
|
|
7378
7843
|
activeGroupRequestConfigurations: Array<GroupRequestConfigurationOutput>;
|
|
7379
7844
|
activeResourceRequestConfigurations: Array<ResourceRequestConfigurationOutput>;
|
|
7380
|
-
|
|
7845
|
+
allDelegations: RequestReviewerDelegationConnection;
|
|
7381
7846
|
allowedToCreateOrganizations: AllowedToCreateOrganizationsOutput;
|
|
7382
7847
|
allowedToUseAldwin: AllowedToUseAldwinOutput;
|
|
7383
7848
|
app: AppOutput;
|
|
@@ -7402,6 +7867,7 @@ export type Query = {
|
|
|
7402
7867
|
configurationTemplate: ConfigurationTemplateOutput;
|
|
7403
7868
|
configurationTemplates: ConfigurationTemplatesOutput;
|
|
7404
7869
|
connection: ConnectionOutput;
|
|
7870
|
+
connectionPreview: ConnectionPreviewConnection;
|
|
7405
7871
|
connections: ConnectionsOutput;
|
|
7406
7872
|
countFilteredConnections: CountFilteredConnectionsOutput;
|
|
7407
7873
|
countFilteredGroups: CountFilteredGroupsOutput;
|
|
@@ -7414,6 +7880,7 @@ export type Query = {
|
|
|
7414
7880
|
eventFilter: EventFilterOutput;
|
|
7415
7881
|
eventFilters: EventFiltersOutput;
|
|
7416
7882
|
events: EventsOutput;
|
|
7883
|
+
externalEvents: ExternalEventConnection;
|
|
7417
7884
|
filteredConnections: FilteredConnectionsOutput;
|
|
7418
7885
|
filteredGroups: FilteredGroupsOutput;
|
|
7419
7886
|
filteredResources: FilteredResourcesOutput;
|
|
@@ -7427,6 +7894,7 @@ export type Query = {
|
|
|
7427
7894
|
groupBindings: GroupBindingsOutput;
|
|
7428
7895
|
groupGroupAccess: GroupGroupAccessOutput;
|
|
7429
7896
|
groupOnCallSchedules: GroupOnCallSchedulesOutput;
|
|
7897
|
+
groupPreview: GroupPreviewConnection;
|
|
7430
7898
|
groupRequestStatusCounts: GroupRequestStatusCountsOutput;
|
|
7431
7899
|
groupTypesWithCounts: GroupTypesWithCountsOutput;
|
|
7432
7900
|
groups: GroupsOutput;
|
|
@@ -7456,6 +7924,7 @@ export type Query = {
|
|
|
7456
7924
|
owners: OwnersOutput;
|
|
7457
7925
|
principals: PrincipalsOutput;
|
|
7458
7926
|
priorityOrder: UserAttributePriorityOutput;
|
|
7927
|
+
provisionConfiguration?: Maybe<ProvisionConfiguration>;
|
|
7459
7928
|
pushTask: PushTaskOutput;
|
|
7460
7929
|
recommendationsMetrics: Array<Maybe<RecommendationsMetricList>>;
|
|
7461
7930
|
recommendationsMetricsGraph: RecommendationsMetricsGraph;
|
|
@@ -7468,10 +7937,12 @@ export type Query = {
|
|
|
7468
7937
|
requestTemplates: RequestTemplatesOutput;
|
|
7469
7938
|
requestTemplatesWithFields: RequestTemplatesWithFieldsOutput;
|
|
7470
7939
|
requests: RequestsOutput;
|
|
7940
|
+
requestsConnection: RequestConnection;
|
|
7471
7941
|
resource: ResourceOutput;
|
|
7472
7942
|
resourceAncestors: ResourcesOutput;
|
|
7473
7943
|
resourceCustomAccessLevel: ResourceCustomAccessLevelOutput;
|
|
7474
7944
|
resourceCustomAccessLevels: ResourceCustomAccessLevelsOutput;
|
|
7945
|
+
resourcePreview: ResourcePreviewConnection;
|
|
7475
7946
|
resourceRequestStatusCounts: ResourceRequestStatusCountsOutput;
|
|
7476
7947
|
resourceTags: ResourceTagsOutput;
|
|
7477
7948
|
resourceTypesWithCounts: ResourceTypesWithCountsOutput;
|
|
@@ -7485,12 +7956,12 @@ export type Query = {
|
|
|
7485
7956
|
setupState: SetupStateResult;
|
|
7486
7957
|
signInMethod?: Maybe<SignInMethodOutput>;
|
|
7487
7958
|
startAccessReviewStats: StartAccessReviewStatsOutput;
|
|
7488
|
-
suggestedAccessToRemediateForEntity: SuggestedAccessList;
|
|
7489
7959
|
suggestions: SuggestionsOutput;
|
|
7490
7960
|
supportTicket: SupportTicketOutput;
|
|
7491
7961
|
supportTickets: SupportTicketsOutput;
|
|
7492
7962
|
syncStatus: SyncStatusOutput;
|
|
7493
7963
|
syncTask: SyncTaskOutput;
|
|
7964
|
+
syncTasks: SyncTasksOutput;
|
|
7494
7965
|
tag: TagOutput;
|
|
7495
7966
|
tags: TagsOutput;
|
|
7496
7967
|
teams: TeamsOutput;
|
|
@@ -7501,6 +7972,7 @@ export type Query = {
|
|
|
7501
7972
|
topBulkSuggestions: RecommendationsBulkSuggestionConnection;
|
|
7502
7973
|
uiNotifications: Array<UiNotification>;
|
|
7503
7974
|
user: UserOutput;
|
|
7975
|
+
userDelegations: UserDelegationsOutput;
|
|
7504
7976
|
userSettings: UserSettingsOutput;
|
|
7505
7977
|
userTags: Array<UserTag>;
|
|
7506
7978
|
users: UsersOutput;
|
|
@@ -7581,6 +8053,9 @@ export type QueryAccessReviewStatsArgs = {
|
|
|
7581
8053
|
export type QueryAccessReviewTemplateArgs = {
|
|
7582
8054
|
input: AccessReviewTemplateInput;
|
|
7583
8055
|
};
|
|
8056
|
+
export type QueryAccessReviewTemplatesArgs = {
|
|
8057
|
+
filters?: InputMaybe<AccessReviewsTemplateFilters>;
|
|
8058
|
+
};
|
|
7584
8059
|
export type QueryAccessReviewUserArgs = {
|
|
7585
8060
|
input: AccessReviewUserInput;
|
|
7586
8061
|
};
|
|
@@ -7604,12 +8079,13 @@ export type QueryActiveGroupRequestConfigurationsArgs = {
|
|
|
7604
8079
|
export type QueryActiveResourceRequestConfigurationsArgs = {
|
|
7605
8080
|
input: ActiveResourceRequestConfigurationInput;
|
|
7606
8081
|
};
|
|
7607
|
-
export type
|
|
8082
|
+
export type QueryAllDelegationsArgs = {
|
|
7608
8083
|
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
7609
8084
|
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
8085
|
+
filters?: InputMaybe<RequestReviewerDelegationsFilter>;
|
|
7610
8086
|
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7611
|
-
input: AllPrincipalsFilters;
|
|
7612
8087
|
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8088
|
+
sortBy?: InputMaybe<RequestReviewerDelegationsSortBy>;
|
|
7613
8089
|
};
|
|
7614
8090
|
export type QueryAppArgs = {
|
|
7615
8091
|
id: Scalars["UUID"]["input"];
|
|
@@ -7668,6 +8144,13 @@ export type QueryConfigurationTemplateArgs = {
|
|
|
7668
8144
|
export type QueryConnectionArgs = {
|
|
7669
8145
|
input: ConnectionInput;
|
|
7670
8146
|
};
|
|
8147
|
+
export type QueryConnectionPreviewArgs = {
|
|
8148
|
+
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
8149
|
+
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
8150
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8151
|
+
input: ConnectionPreviewInput;
|
|
8152
|
+
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8153
|
+
};
|
|
7671
8154
|
export type QueryConnectionsArgs = {
|
|
7672
8155
|
input: ConnectionsInput;
|
|
7673
8156
|
};
|
|
@@ -7699,6 +8182,14 @@ export type QueryEventFilterArgs = {
|
|
|
7699
8182
|
export type QueryEventsArgs = {
|
|
7700
8183
|
input: EventsInput;
|
|
7701
8184
|
};
|
|
8185
|
+
export type QueryExternalEventsArgs = {
|
|
8186
|
+
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
8187
|
+
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
8188
|
+
filters: ExternalEventsFilters;
|
|
8189
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8190
|
+
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8191
|
+
sortBy?: ExternalEventsSortBy;
|
|
8192
|
+
};
|
|
7702
8193
|
export type QueryFilteredConnectionsArgs = {
|
|
7703
8194
|
input: FilteredConnectionsInput;
|
|
7704
8195
|
};
|
|
@@ -7729,6 +8220,14 @@ export type QueryGroupBindingsArgs = {
|
|
|
7729
8220
|
export type QueryGroupGroupAccessArgs = {
|
|
7730
8221
|
input: GroupGroupAccessInput;
|
|
7731
8222
|
};
|
|
8223
|
+
export type QueryGroupPreviewArgs = {
|
|
8224
|
+
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
8225
|
+
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
8226
|
+
filters: GroupPreviewFilters;
|
|
8227
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8228
|
+
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8229
|
+
sortBy: AccessReviewPreviewSortBy;
|
|
8230
|
+
};
|
|
7732
8231
|
export type QueryGroupRequestStatusCountsArgs = {
|
|
7733
8232
|
input: GroupRequestStatusCountsInput;
|
|
7734
8233
|
};
|
|
@@ -7784,11 +8283,15 @@ export type QueryOwnersArgs = {
|
|
|
7784
8283
|
export type QueryPrincipalsArgs = {
|
|
7785
8284
|
input: PrincipalsInput;
|
|
7786
8285
|
};
|
|
8286
|
+
export type QueryProvisionConfigurationArgs = {
|
|
8287
|
+
connectionId: Scalars["ConnectionId"]["input"];
|
|
8288
|
+
entityItemType: Scalars["String"]["input"];
|
|
8289
|
+
provisioningAction: ProvisioningAction;
|
|
8290
|
+
};
|
|
7787
8291
|
export type QueryPushTaskArgs = {
|
|
7788
8292
|
input: PushTaskInput;
|
|
7789
8293
|
};
|
|
7790
8294
|
export type QueryRecommendationsMetricsArgs = {
|
|
7791
|
-
identityCategory: IdentityCategory;
|
|
7792
8295
|
metricTypes: Array<RecommendationsMetricType>;
|
|
7793
8296
|
numDays: Scalars["Int"]["input"];
|
|
7794
8297
|
};
|
|
@@ -7816,6 +8319,9 @@ export type QueryRequestTemplatesWithFieldsArgs = {
|
|
|
7816
8319
|
export type QueryRequestsArgs = {
|
|
7817
8320
|
input: RequestsInput;
|
|
7818
8321
|
};
|
|
8322
|
+
export type QueryRequestsConnectionArgs = {
|
|
8323
|
+
input: RequestsRelayInput;
|
|
8324
|
+
};
|
|
7819
8325
|
export type QueryResourceArgs = {
|
|
7820
8326
|
input: ResourceInput;
|
|
7821
8327
|
};
|
|
@@ -7828,6 +8334,14 @@ export type QueryResourceCustomAccessLevelArgs = {
|
|
|
7828
8334
|
export type QueryResourceCustomAccessLevelsArgs = {
|
|
7829
8335
|
input: ResourceCustomAccessLevelsInput;
|
|
7830
8336
|
};
|
|
8337
|
+
export type QueryResourcePreviewArgs = {
|
|
8338
|
+
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
8339
|
+
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
8340
|
+
filters: ResourcePreviewFilters;
|
|
8341
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8342
|
+
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8343
|
+
sortBy: AccessReviewPreviewSortBy;
|
|
8344
|
+
};
|
|
7831
8345
|
export type QueryResourceRequestStatusCountsArgs = {
|
|
7832
8346
|
input: ResourceRequestStatusCountsInput;
|
|
7833
8347
|
};
|
|
@@ -7858,10 +8372,6 @@ export type QuerySignInMethodArgs = {
|
|
|
7858
8372
|
export type QueryStartAccessReviewStatsArgs = {
|
|
7859
8373
|
input: StartAccessReviewStatsInput;
|
|
7860
8374
|
};
|
|
7861
|
-
export type QuerySuggestedAccessToRemediateForEntityArgs = {
|
|
7862
|
-
entityKey: RecommendationsEntityKey;
|
|
7863
|
-
type: RecommendationsSubscoreType;
|
|
7864
|
-
};
|
|
7865
8375
|
export type QuerySuggestionsArgs = {
|
|
7866
8376
|
input?: InputMaybe<SuggestionsInput>;
|
|
7867
8377
|
};
|
|
@@ -7877,6 +8387,9 @@ export type QuerySyncStatusArgs = {
|
|
|
7877
8387
|
export type QuerySyncTaskArgs = {
|
|
7878
8388
|
input: SyncTaskInput;
|
|
7879
8389
|
};
|
|
8390
|
+
export type QuerySyncTasksArgs = {
|
|
8391
|
+
input: SyncTasksInput;
|
|
8392
|
+
};
|
|
7880
8393
|
export type QueryTagArgs = {
|
|
7881
8394
|
input: TagInput;
|
|
7882
8395
|
};
|
|
@@ -8166,7 +8679,7 @@ export type RemoveConnectionUserInput = {
|
|
|
8166
8679
|
export type RemoveConnectionUsersInput = {
|
|
8167
8680
|
connectionUsers: Array<RemoveConnectionUserInput>;
|
|
8168
8681
|
};
|
|
8169
|
-
export type RemoveConnectionUsersOutput = ConnectionNotFoundError | ConnectionUserNotFound | RemoveConnectionUsersResult;
|
|
8682
|
+
export type RemoveConnectionUsersOutput = ConnectionNotFoundError | ConnectionUserNotFound | RemoveConnectionUsersResult | UserFacingError;
|
|
8170
8683
|
export type RemoveConnectionUsersResult = {
|
|
8171
8684
|
__typename?: "RemoveConnectionUsersResult";
|
|
8172
8685
|
success: Scalars["Boolean"]["output"];
|
|
@@ -8221,6 +8734,7 @@ export type RemoveGroupTagsResult = {
|
|
|
8221
8734
|
success: Scalars["Boolean"]["output"];
|
|
8222
8735
|
};
|
|
8223
8736
|
export type RemoveGroupUserInput = {
|
|
8737
|
+
accessLevel: GroupAccessLevelInput;
|
|
8224
8738
|
groupId: Scalars["GroupId"]["input"];
|
|
8225
8739
|
userId: Scalars["UserId"]["input"];
|
|
8226
8740
|
};
|
|
@@ -8281,7 +8795,7 @@ export type RemoveRoleAssignmentInput = {
|
|
|
8281
8795
|
accessLevel?: InputMaybe<AccessLevelInput>;
|
|
8282
8796
|
entityID: Scalars["EntityId"]["input"];
|
|
8283
8797
|
entityType: EntityType;
|
|
8284
|
-
principalID: Scalars["
|
|
8798
|
+
principalID: Scalars["EntityId"]["input"];
|
|
8285
8799
|
principalType: EntityType;
|
|
8286
8800
|
};
|
|
8287
8801
|
export type RemoveRoleAssignmentsEntryOutput = RemoveRoleAssignmentsEntryResult;
|
|
@@ -8379,6 +8893,8 @@ export type RequestComment = {
|
|
|
8379
8893
|
};
|
|
8380
8894
|
export type RequestConfigInput = {
|
|
8381
8895
|
autoApprove?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
8896
|
+
extensionsDurationInMinutes?: InputMaybe<NullableInt>;
|
|
8897
|
+
extensionsEnabled?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
8382
8898
|
groupIds?: InputMaybe<Array<Scalars["GroupId"]["input"]>>;
|
|
8383
8899
|
id?: InputMaybe<Scalars["RequestConfigurationId"]["input"]>;
|
|
8384
8900
|
isRequestable?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
@@ -8395,6 +8911,8 @@ export type RequestConfigInput = {
|
|
|
8395
8911
|
export type RequestConfiguration = {
|
|
8396
8912
|
__typename?: "RequestConfiguration";
|
|
8397
8913
|
autoApproval: Scalars["Boolean"]["output"];
|
|
8914
|
+
extensionsDurationInMinutes?: Maybe<Scalars["Int"]["output"]>;
|
|
8915
|
+
extensionsEnabled: Scalars["Boolean"]["output"];
|
|
8398
8916
|
groupId?: Maybe<Scalars["GroupId"]["output"]>;
|
|
8399
8917
|
groupIds?: Maybe<Array<Scalars["GroupId"]["output"]>>;
|
|
8400
8918
|
id: Scalars["RequestConfigurationId"]["output"];
|
|
@@ -8418,6 +8936,12 @@ export type RequestConfigurationResourceInput = {
|
|
|
8418
8936
|
accessLevelRemoteId?: InputMaybe<Scalars["AccessLevelRemoteId"]["input"]>;
|
|
8419
8937
|
resourceId: Scalars["ResourceId"]["input"];
|
|
8420
8938
|
};
|
|
8939
|
+
export type RequestConnection = PageConnection & {
|
|
8940
|
+
__typename?: "RequestConnection";
|
|
8941
|
+
edges: Array<RequestEdge>;
|
|
8942
|
+
pageInfo: PageInfo;
|
|
8943
|
+
totalCount: Scalars["Int"]["output"];
|
|
8944
|
+
};
|
|
8421
8945
|
export type RequestCustomMetadata = {
|
|
8422
8946
|
__typename?: "RequestCustomMetadata";
|
|
8423
8947
|
fieldName: Scalars["String"]["output"];
|
|
@@ -8446,6 +8970,7 @@ export type RequestDefaults = {
|
|
|
8446
8970
|
__typename?: "RequestDefaults";
|
|
8447
8971
|
defaultDurationInMinutes: Scalars["Int"]["output"];
|
|
8448
8972
|
durationOptions: Array<DurationOption>;
|
|
8973
|
+
maxDirectUsersAllowed?: Maybe<Scalars["Int"]["output"]>;
|
|
8449
8974
|
maxDurationInMinutes?: Maybe<Scalars["Int"]["output"]>;
|
|
8450
8975
|
messages: Array<RequestMessage>;
|
|
8451
8976
|
reasonOptional: Scalars["Boolean"]["output"];
|
|
@@ -8462,6 +8987,11 @@ export type RequestDurationTooLargeError = Error & {
|
|
|
8462
8987
|
__typename?: "RequestDurationTooLargeError";
|
|
8463
8988
|
message: Scalars["String"]["output"];
|
|
8464
8989
|
};
|
|
8990
|
+
export type RequestEdge = Edge & {
|
|
8991
|
+
__typename?: "RequestEdge";
|
|
8992
|
+
cursor: Scalars["String"]["output"];
|
|
8993
|
+
node: Request;
|
|
8994
|
+
};
|
|
8465
8995
|
export type RequestFieldValueMissingError = Error & {
|
|
8466
8996
|
__typename?: "RequestFieldValueMissingError";
|
|
8467
8997
|
fieldName: Scalars["String"]["output"];
|
|
@@ -8481,6 +9011,9 @@ export type RequestInput = {
|
|
|
8481
9011
|
};
|
|
8482
9012
|
export type RequestItemStages = {
|
|
8483
9013
|
__typename?: "RequestItemStages";
|
|
9014
|
+
accessLevel: AccessLevel;
|
|
9015
|
+
item?: Maybe<AccessibleItem>;
|
|
9016
|
+
itemId: Scalars["UUID"]["output"];
|
|
8484
9017
|
requestedItemName: Scalars["String"]["output"];
|
|
8485
9018
|
requestedRoleName?: Maybe<Scalars["String"]["output"]>;
|
|
8486
9019
|
stages: Array<RequestStage>;
|
|
@@ -8492,6 +9025,8 @@ export type RequestMessage = {
|
|
|
8492
9025
|
level: RequestMessageLevel;
|
|
8493
9026
|
};
|
|
8494
9027
|
export declare enum RequestMessageCode {
|
|
9028
|
+
EntityNotRequestable = "ENTITY_NOT_REQUESTABLE",
|
|
9029
|
+
ItemAtCapacity = "ITEM_AT_CAPACITY",
|
|
8495
9030
|
LinkedGroupNotRequestable = "LINKED_GROUP_NOT_REQUESTABLE",
|
|
8496
9031
|
NestedGroupAccessNotAllowed = "NESTED_GROUP_ACCESS_NOT_ALLOWED",
|
|
8497
9032
|
RequestResetsAccessDuration = "REQUEST_RESETS_ACCESS_DURATION",
|
|
@@ -8526,6 +9061,15 @@ export type RequestReasonMissingError = Error & {
|
|
|
8526
9061
|
message: Scalars["String"]["output"];
|
|
8527
9062
|
resourceIds?: Maybe<Array<Scalars["ResourceId"]["output"]>>;
|
|
8528
9063
|
};
|
|
9064
|
+
export type RequestRelayFilters = {
|
|
9065
|
+
endDate?: InputMaybe<EndDateFilter>;
|
|
9066
|
+
from?: InputMaybe<Scalars["UserId"]["input"]>;
|
|
9067
|
+
includedEntities?: InputMaybe<Array<Scalars["EntityId"]["input"]>>;
|
|
9068
|
+
searchQuery?: InputMaybe<Scalars["String"]["input"]>;
|
|
9069
|
+
startDate?: InputMaybe<StartDateFilter>;
|
|
9070
|
+
status?: InputMaybe<RequestStatus>;
|
|
9071
|
+
to?: InputMaybe<Scalars["UserId"]["input"]>;
|
|
9072
|
+
};
|
|
8529
9073
|
export type RequestRequiresUserAuthTokenForConnectionError = Error & {
|
|
8530
9074
|
__typename?: "RequestRequiresUserAuthTokenForConnectionError";
|
|
8531
9075
|
connection?: Maybe<Connection>;
|
|
@@ -8543,10 +9087,50 @@ export type RequestReviewer = {
|
|
|
8543
9087
|
owner?: Maybe<Owner>;
|
|
8544
9088
|
ownerId?: Maybe<Scalars["OwnerId"]["output"]>;
|
|
8545
9089
|
reviewerAction?: Maybe<ReviewerAction>;
|
|
9090
|
+
reviewerActionOnBehalfOfUser?: Maybe<User>;
|
|
9091
|
+
reviewerActionOnBehalfOfUserId?: Maybe<Scalars["UserId"]["output"]>;
|
|
8546
9092
|
reviewerType: RequestApprovalType;
|
|
8547
9093
|
user?: Maybe<User>;
|
|
8548
9094
|
userId: Scalars["UserId"]["output"];
|
|
8549
9095
|
};
|
|
9096
|
+
export type RequestReviewerDelegation = {
|
|
9097
|
+
__typename?: "RequestReviewerDelegation";
|
|
9098
|
+
createdAt: Scalars["Time"]["output"];
|
|
9099
|
+
delegateUser: User;
|
|
9100
|
+
delegateUserId: Scalars["UserId"]["output"];
|
|
9101
|
+
delegatorUser: User;
|
|
9102
|
+
delegatorUserId: Scalars["UserId"]["output"];
|
|
9103
|
+
endTime: Scalars["Time"]["output"];
|
|
9104
|
+
id: Scalars["RequestReviewerDelegationId"]["output"];
|
|
9105
|
+
reason: Scalars["String"]["output"];
|
|
9106
|
+
startTime: Scalars["Time"]["output"];
|
|
9107
|
+
updatedAt: Scalars["Time"]["output"];
|
|
9108
|
+
};
|
|
9109
|
+
export type RequestReviewerDelegationConnection = PageConnection & {
|
|
9110
|
+
__typename?: "RequestReviewerDelegationConnection";
|
|
9111
|
+
edges: Array<RequestReviewerDelegationEdge>;
|
|
9112
|
+
pageInfo: PageInfo;
|
|
9113
|
+
totalCount: Scalars["Int"]["output"];
|
|
9114
|
+
};
|
|
9115
|
+
export type RequestReviewerDelegationEdge = Edge & {
|
|
9116
|
+
__typename?: "RequestReviewerDelegationEdge";
|
|
9117
|
+
cursor: Scalars["String"]["output"];
|
|
9118
|
+
node: RequestReviewerDelegation;
|
|
9119
|
+
};
|
|
9120
|
+
export type RequestReviewerDelegationsFilter = {
|
|
9121
|
+
afterTime?: InputMaybe<Scalars["Time"]["input"]>;
|
|
9122
|
+
beforeTime?: InputMaybe<Scalars["Time"]["input"]>;
|
|
9123
|
+
searchQuery?: InputMaybe<Scalars["String"]["input"]>;
|
|
9124
|
+
};
|
|
9125
|
+
export type RequestReviewerDelegationsSortBy = {
|
|
9126
|
+
direction?: InputMaybe<SortDirection>;
|
|
9127
|
+
field?: InputMaybe<RequestReviewerDelegationsSortByField>;
|
|
9128
|
+
};
|
|
9129
|
+
export declare enum RequestReviewerDelegationsSortByField {
|
|
9130
|
+
CreatedAt = "CREATED_AT",
|
|
9131
|
+
EndTime = "END_TIME",
|
|
9132
|
+
StartTime = "START_TIME"
|
|
9133
|
+
}
|
|
8550
9134
|
export type RequestStage = {
|
|
8551
9135
|
__typename?: "RequestStage";
|
|
8552
9136
|
operator: ReviewStageOperator;
|
|
@@ -8622,15 +9206,10 @@ export type RequestTemplateResult = {
|
|
|
8622
9206
|
__typename?: "RequestTemplateResult";
|
|
8623
9207
|
requestTemplate?: Maybe<RequestTemplate>;
|
|
8624
9208
|
};
|
|
8625
|
-
export type RequestTemplateSimple = {
|
|
8626
|
-
__typename?: "RequestTemplateSimple";
|
|
8627
|
-
id: Scalars["RequestTemplateId"]["output"];
|
|
8628
|
-
name: Scalars["String"]["output"];
|
|
8629
|
-
};
|
|
8630
9209
|
export type RequestTemplatesOutput = RequestTemplatesResult;
|
|
8631
9210
|
export type RequestTemplatesResult = {
|
|
8632
9211
|
__typename?: "RequestTemplatesResult";
|
|
8633
|
-
requestTemplates: Array<
|
|
9212
|
+
requestTemplates: Array<RequestTemplate>;
|
|
8634
9213
|
};
|
|
8635
9214
|
export type RequestTemplatesWithFieldsInput = {
|
|
8636
9215
|
fetchAll?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
@@ -8647,14 +9226,14 @@ export declare enum RequestType {
|
|
|
8647
9226
|
}
|
|
8648
9227
|
export type RequestedGroup = {
|
|
8649
9228
|
__typename?: "RequestedGroup";
|
|
8650
|
-
accessLevel
|
|
9229
|
+
accessLevel: GroupAccessLevel;
|
|
8651
9230
|
group?: Maybe<Group>;
|
|
8652
9231
|
groupId: Scalars["GroupId"]["output"];
|
|
8653
9232
|
propagationStatus?: Maybe<PropagationStatus>;
|
|
8654
9233
|
targetUserAccess?: Maybe<UserGroupAccess>;
|
|
8655
9234
|
};
|
|
8656
9235
|
export type RequestedGroupInput = {
|
|
8657
|
-
accessLevel
|
|
9236
|
+
accessLevel: GroupAccessLevelInput;
|
|
8658
9237
|
groupId: Scalars["GroupId"]["input"];
|
|
8659
9238
|
};
|
|
8660
9239
|
export type RequestedResource = {
|
|
@@ -8677,6 +9256,14 @@ export type RequestsInput = {
|
|
|
8677
9256
|
sortBy?: RequestsSortBy;
|
|
8678
9257
|
};
|
|
8679
9258
|
export type RequestsOutput = RequestsResult;
|
|
9259
|
+
export type RequestsRelayInput = {
|
|
9260
|
+
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
9261
|
+
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
9262
|
+
filters?: RequestRelayFilters;
|
|
9263
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9264
|
+
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9265
|
+
sortBy?: RequestsSortBy;
|
|
9266
|
+
};
|
|
8680
9267
|
export type RequestsResult = {
|
|
8681
9268
|
__typename?: "RequestsResult";
|
|
8682
9269
|
cursor?: Maybe<Scalars["String"]["output"]>;
|
|
@@ -8748,8 +9335,6 @@ export type Resource = AccessEntity & AccessibleItem & AppEntity & BaseEntity &
|
|
|
8748
9335
|
ancestorPathToResource?: Maybe<Scalars["String"]["output"]>;
|
|
8749
9336
|
associatedItems: AssociatedItemConnection;
|
|
8750
9337
|
auditMessageChannels?: Maybe<Array<MessageChannel>>;
|
|
8751
|
-
/** @deprecated use allowedPermissions */
|
|
8752
|
-
authorizedActions?: Maybe<Array<Scalars["AuthorizedAction"]["output"]>>;
|
|
8753
9338
|
canHaveUsageData: Scalars["Boolean"]["output"];
|
|
8754
9339
|
childResources?: Maybe<Array<Resource>>;
|
|
8755
9340
|
commonMetadata: CommonMetadata;
|
|
@@ -8771,6 +9356,8 @@ export type Resource = AccessEntity & AccessibleItem & AppEntity & BaseEntity &
|
|
|
8771
9356
|
isDeleted: Scalars["Boolean"]["output"];
|
|
8772
9357
|
isManaged: Scalars["Boolean"]["output"];
|
|
8773
9358
|
isRequestable: Scalars["Boolean"]["output"];
|
|
9359
|
+
maxDirectUsersAllowed?: Maybe<Scalars["Int"]["output"]>;
|
|
9360
|
+
maxUsersExceededMessage?: Maybe<Scalars["String"]["output"]>;
|
|
8774
9361
|
metadata?: Maybe<ResourceMetadata>;
|
|
8775
9362
|
name: Scalars["String"]["output"];
|
|
8776
9363
|
/** @deprecated do not use, it doesn't include non-visible resources */
|
|
@@ -8785,6 +9372,7 @@ export type Resource = AccessEntity & AccessibleItem & AppEntity & BaseEntity &
|
|
|
8785
9372
|
paginatedResourceUsers: PaginatedResourceUsersOutput;
|
|
8786
9373
|
parentResource?: Maybe<Resource>;
|
|
8787
9374
|
parentResourceId?: Maybe<Scalars["ResourceId"]["output"]>;
|
|
9375
|
+
permissionSources: PermissionSourceConnection;
|
|
8788
9376
|
principalAssignmentsForEntity: Array<RoleAssignment>;
|
|
8789
9377
|
remoteId: Scalars["RemoteResourceId"]["output"];
|
|
8790
9378
|
remoteName: Scalars["String"]["output"];
|
|
@@ -8798,9 +9386,14 @@ export type Resource = AccessEntity & AccessibleItem & AppEntity & BaseEntity &
|
|
|
8798
9386
|
riskSensitivity?: Maybe<RiskSensitivityDetails>;
|
|
8799
9387
|
/**
|
|
8800
9388
|
* The role permissions assigned to this resource. It will only be available if
|
|
8801
|
-
* ResourceType is OPAL_SCOPED_ROLE
|
|
9389
|
+
* ResourceType is OPAL_SCOPED_ROLE or OPAL_ROLE (simulated as scoped role)
|
|
9390
|
+
*
|
|
9391
|
+
* Params:
|
|
9392
|
+
* for: will allow you to get scoped role permissions for a specific entity,
|
|
9393
|
+
* this is helpful if you want to simulate "what permissions do I get on this
|
|
9394
|
+
* entity?"
|
|
8802
9395
|
*/
|
|
8803
|
-
scopedRolePermissions
|
|
9396
|
+
scopedRolePermissions: Array<ScopedRolePermission>;
|
|
8804
9397
|
serviceType: ServiceType;
|
|
8805
9398
|
tags: Array<ResourceTag>;
|
|
8806
9399
|
ticketPropagation?: Maybe<TicketPropagation>;
|
|
@@ -8829,6 +9422,12 @@ export type ResourceAssociatedItemsArgs = {
|
|
|
8829
9422
|
export type ResourcePaginatedResourceUsersArgs = {
|
|
8830
9423
|
input?: InputMaybe<PaginatedResourceUsersInput>;
|
|
8831
9424
|
};
|
|
9425
|
+
export type ResourcePermissionSourcesArgs = {
|
|
9426
|
+
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
9427
|
+
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
9428
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9429
|
+
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9430
|
+
};
|
|
8832
9431
|
export type ResourceAccessAlreadyReviewedError = Error & {
|
|
8833
9432
|
__typename?: "ResourceAccessAlreadyReviewedError";
|
|
8834
9433
|
message: Scalars["String"]["output"];
|
|
@@ -8921,6 +9520,35 @@ export type ResourceNotFoundError = Error & {
|
|
|
8921
9520
|
message: Scalars["String"]["output"];
|
|
8922
9521
|
};
|
|
8923
9522
|
export type ResourceOutput = ResourceNotFoundError | ResourceResult;
|
|
9523
|
+
export type ResourcePreview = Node & {
|
|
9524
|
+
__typename?: "ResourcePreview";
|
|
9525
|
+
groupResourceCount: Scalars["Int"]["output"];
|
|
9526
|
+
id: Scalars["UUID"]["output"];
|
|
9527
|
+
resource: Resource;
|
|
9528
|
+
resourceToResourceAssignmentCount: Scalars["Int"]["output"];
|
|
9529
|
+
resourceUserCount: Scalars["Int"]["output"];
|
|
9530
|
+
reviewCount: Scalars["Int"]["output"];
|
|
9531
|
+
truncatedGroupResources: Array<GroupResource>;
|
|
9532
|
+
truncatedResourceToResourceAssignments: Array<RoleAssignment>;
|
|
9533
|
+
truncatedResourceUsers: Array<ResourceUser>;
|
|
9534
|
+
};
|
|
9535
|
+
export type ResourcePreviewConnection = PageConnection & {
|
|
9536
|
+
__typename?: "ResourcePreviewConnection";
|
|
9537
|
+
edges: Array<ResourcePreviewEdge>;
|
|
9538
|
+
filteredCount: Scalars["Int"]["output"];
|
|
9539
|
+
pageInfo: PageInfo;
|
|
9540
|
+
totalCount: Scalars["Int"]["output"];
|
|
9541
|
+
totalReviewCount: Scalars["Int"]["output"];
|
|
9542
|
+
};
|
|
9543
|
+
export type ResourcePreviewEdge = Edge & {
|
|
9544
|
+
__typename?: "ResourcePreviewEdge";
|
|
9545
|
+
cursor: Scalars["String"]["output"];
|
|
9546
|
+
node: ResourcePreview;
|
|
9547
|
+
};
|
|
9548
|
+
export type ResourcePreviewFilters = {
|
|
9549
|
+
filters?: FiltersInput;
|
|
9550
|
+
hideEmpty?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
9551
|
+
};
|
|
8924
9552
|
export type ResourceProposal = {
|
|
8925
9553
|
__typename?: "ResourceProposal";
|
|
8926
9554
|
adminOwnerId: Scalars["OwnerId"]["output"];
|
|
@@ -8942,6 +9570,7 @@ export type ResourceRequestConfigurationOutput = {
|
|
|
8942
9570
|
};
|
|
8943
9571
|
export type ResourceRequestStatusCountsInput = {
|
|
8944
9572
|
resourceId: Scalars["ResourceId"]["input"];
|
|
9573
|
+
userId?: InputMaybe<Scalars["UserId"]["input"]>;
|
|
8945
9574
|
};
|
|
8946
9575
|
export type ResourceRequestStatusCountsOutput = ResourceNotFoundError | ResourceRequestStatusCountsResult;
|
|
8947
9576
|
export type ResourceRequestStatusCountsResult = {
|
|
@@ -8952,11 +9581,6 @@ export type ResourceResult = {
|
|
|
8952
9581
|
__typename?: "ResourceResult";
|
|
8953
9582
|
resource: Resource;
|
|
8954
9583
|
};
|
|
8955
|
-
export type ResourceRoleKey = {
|
|
8956
|
-
__typename?: "ResourceRoleKey";
|
|
8957
|
-
accessLevelRemoteId?: Maybe<Scalars["String"]["output"]>;
|
|
8958
|
-
resourceId: Scalars["ResourceId"]["output"];
|
|
8959
|
-
};
|
|
8960
9584
|
export type ResourceSmall = {
|
|
8961
9585
|
__typename?: "ResourceSmall";
|
|
8962
9586
|
id: Scalars["ResourceId"]["output"];
|
|
@@ -9005,6 +9629,7 @@ export declare enum ResourceType {
|
|
|
9005
9629
|
AwsEc2Instance = "AWS_EC2_INSTANCE",
|
|
9006
9630
|
AwsEksCluster = "AWS_EKS_CLUSTER",
|
|
9007
9631
|
AwsIamRole = "AWS_IAM_ROLE",
|
|
9632
|
+
AwsOrganizationalUnit = "AWS_ORGANIZATIONAL_UNIT",
|
|
9008
9633
|
AwsRdsMysqlCluster = "AWS_RDS_MYSQL_CLUSTER",
|
|
9009
9634
|
AwsRdsMysqlInstance = "AWS_RDS_MYSQL_INSTANCE",
|
|
9010
9635
|
AwsRdsPostgresCluster = "AWS_RDS_POSTGRES_CLUSTER",
|
|
@@ -9023,9 +9648,11 @@ export declare enum ResourceType {
|
|
|
9023
9648
|
AzureSubscription = "AZURE_SUBSCRIPTION",
|
|
9024
9649
|
AzureUserAssignedManagedIdentity = "AZURE_USER_ASSIGNED_MANAGED_Identity",
|
|
9025
9650
|
AzureVirtualMachine = "AZURE_VIRTUAL_MACHINE",
|
|
9651
|
+
CoupaRole = "COUPA_ROLE",
|
|
9026
9652
|
Custom = "CUSTOM",
|
|
9027
9653
|
CustomConnector = "CUSTOM_CONNECTOR",
|
|
9028
9654
|
DatabricksAccountServicePrincipal = "DATABRICKS_ACCOUNT_SERVICE_PRINCIPAL",
|
|
9655
|
+
DatastaxAstraRole = "DATASTAX_ASTRA_ROLE",
|
|
9029
9656
|
GcpBigQueryDataset = "GCP_BIG_QUERY_DATASET",
|
|
9030
9657
|
GcpBigQueryTable = "GCP_BIG_QUERY_TABLE",
|
|
9031
9658
|
GcpBucket = "GCP_BUCKET",
|
|
@@ -9041,6 +9668,7 @@ export declare enum ResourceType {
|
|
|
9041
9668
|
GitHubRepo = "GIT_HUB_REPO",
|
|
9042
9669
|
GitLabProject = "GIT_LAB_PROJECT",
|
|
9043
9670
|
GoogleWorkspaceRole = "GOOGLE_WORKSPACE_ROLE",
|
|
9671
|
+
IlevelAdvancedRole = "ILEVEL_ADVANCED_ROLE",
|
|
9044
9672
|
MariadbInstance = "MARIADB_INSTANCE",
|
|
9045
9673
|
MongoAtlasInstance = "MONGO_ATLAS_INSTANCE",
|
|
9046
9674
|
MongoInstance = "MONGO_INSTANCE",
|
|
@@ -9103,6 +9731,7 @@ export type ResourceUser = {
|
|
|
9103
9731
|
access?: Maybe<ResourceUserAccess>;
|
|
9104
9732
|
accessLevel: ResourceAccessLevel;
|
|
9105
9733
|
accessStats?: Maybe<AccessStats>;
|
|
9734
|
+
extendability: RequestConfiguration;
|
|
9106
9735
|
id: Scalars["UUID"]["output"];
|
|
9107
9736
|
mostRecentSessionEnded?: Maybe<Scalars["Time"]["output"]>;
|
|
9108
9737
|
propagationStatus?: Maybe<PropagationStatus>;
|
|
@@ -9169,6 +9798,7 @@ export type ResourceUserFiltersInput = {
|
|
|
9169
9798
|
resourceIds?: InputMaybe<Array<Scalars["ResourceId"]["input"]>>;
|
|
9170
9799
|
resourceName?: InputMaybe<Scalars["String"]["input"]>;
|
|
9171
9800
|
resourceTypes?: InputMaybe<Array<ResourceType>>;
|
|
9801
|
+
searchQuery?: InputMaybe<Scalars["String"]["input"]>;
|
|
9172
9802
|
userFullName?: InputMaybe<Scalars["String"]["input"]>;
|
|
9173
9803
|
};
|
|
9174
9804
|
export declare enum ResourceUserSortByField {
|
|
@@ -9338,15 +9968,16 @@ export type RoleAssignment = {
|
|
|
9338
9968
|
entityID: Scalars["EntityId"]["output"];
|
|
9339
9969
|
entityType: EntityType;
|
|
9340
9970
|
id: Scalars["RoleAssignmentId"]["output"];
|
|
9971
|
+
isHidden?: Maybe<Scalars["Boolean"]["output"]>;
|
|
9341
9972
|
lastUsedAt?: Maybe<Scalars["Time"]["output"]>;
|
|
9342
9973
|
principal?: Maybe<Principal>;
|
|
9343
|
-
principalID: Scalars["
|
|
9974
|
+
principalID: Scalars["EntityId"]["output"];
|
|
9344
9975
|
principalType: EntityType;
|
|
9345
9976
|
propagationStatus?: Maybe<PropagationStatus>;
|
|
9346
9977
|
provisionSource: ProvisionSource;
|
|
9347
9978
|
suggestion?: Maybe<RoleAssignmentSuggestion>;
|
|
9348
9979
|
};
|
|
9349
|
-
export type RoleAssignmentAction = InvestigateEventAction | ModifyAccessAction | RuleInsightAction;
|
|
9980
|
+
export type RoleAssignmentAction = InvestigateEventAction | ModifyAccessAction | RuleInsightAction | SubmitHiddenGrantFeedback;
|
|
9350
9981
|
export type RoleAssignmentAlreadyExists = Error & {
|
|
9351
9982
|
__typename?: "RoleAssignmentAlreadyExists";
|
|
9352
9983
|
message: Scalars["String"]["output"];
|
|
@@ -9357,6 +9988,9 @@ export type RoleAssignmentConnection = PageConnection & {
|
|
|
9357
9988
|
roleAssignments: Array<RoleAssignment>;
|
|
9358
9989
|
totalCount: Scalars["Int"]["output"];
|
|
9359
9990
|
};
|
|
9991
|
+
export type RoleAssignmentConnectionTotalCountArgs = {
|
|
9992
|
+
scope?: InputMaybe<RoleAssignmentScope>;
|
|
9993
|
+
};
|
|
9360
9994
|
export type RoleAssignmentEntity = {
|
|
9361
9995
|
accessLevels?: Maybe<Array<IAccessLevel>>;
|
|
9362
9996
|
id: Scalars["UUID"]["output"];
|
|
@@ -9373,6 +10007,13 @@ export type RoleAssignmentEntityTypeScope = {
|
|
|
9373
10007
|
groupTypes?: InputMaybe<Array<GroupType>>;
|
|
9374
10008
|
resourceTypes?: InputMaybe<Array<ResourceType>>;
|
|
9375
10009
|
};
|
|
10010
|
+
export type RoleAssignmentKeyInput = {
|
|
10011
|
+
accessLevel: AccessLevelInput;
|
|
10012
|
+
entityID: Scalars["EntityId"]["input"];
|
|
10013
|
+
entityType: EntityType;
|
|
10014
|
+
principalID: Scalars["EntityId"]["input"];
|
|
10015
|
+
principalType: EntityType;
|
|
10016
|
+
};
|
|
9376
10017
|
export type RoleAssignmentNotFoundError = Error & {
|
|
9377
10018
|
__typename?: "RoleAssignmentNotFoundError";
|
|
9378
10019
|
message: Scalars["String"]["output"];
|
|
@@ -9444,7 +10085,7 @@ export declare enum RoleAssignmentsSortByField {
|
|
|
9444
10085
|
VulnerabilityCount = "VULNERABILITY_COUNT"
|
|
9445
10086
|
}
|
|
9446
10087
|
export declare enum RolePermission {
|
|
9447
|
-
|
|
10088
|
+
AssignUarReviewers = "ASSIGN_UAR_REVIEWERS",
|
|
9448
10089
|
Create = "CREATE",
|
|
9449
10090
|
Delete = "DELETE",
|
|
9450
10091
|
EditAssignments = "EDIT_ASSIGNMENTS",
|
|
@@ -9457,6 +10098,9 @@ export declare enum RolePermission {
|
|
|
9457
10098
|
Import = "IMPORT",
|
|
9458
10099
|
Read = "READ",
|
|
9459
10100
|
ReadAssignments = "READ_ASSIGNMENTS",
|
|
10101
|
+
ReadSettings = "READ_SETTINGS",
|
|
10102
|
+
RequestOnBehalf = "REQUEST_ON_BEHALF",
|
|
10103
|
+
ResetMfa = "RESET_MFA",
|
|
9460
10104
|
SendReminders = "SEND_REMINDERS",
|
|
9461
10105
|
Stop = "STOP",
|
|
9462
10106
|
Sync = "SYNC"
|
|
@@ -9469,6 +10113,13 @@ export type RolePermissionKey = {
|
|
|
9469
10113
|
export type RolePermissionTargetEntity = {
|
|
9470
10114
|
allowedPermissions: Array<RolePermissionKey>;
|
|
9471
10115
|
id: Scalars["UUID"]["output"];
|
|
10116
|
+
permissionSources: PermissionSourceConnection;
|
|
10117
|
+
};
|
|
10118
|
+
export type RolePermissionTargetEntityPermissionSourcesArgs = {
|
|
10119
|
+
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
10120
|
+
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
10121
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10122
|
+
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9472
10123
|
};
|
|
9473
10124
|
export declare enum RolePermissionTargetType {
|
|
9474
10125
|
AccessReview = "ACCESS_REVIEW",
|
|
@@ -9607,9 +10258,11 @@ export declare enum ServiceType {
|
|
|
9607
10258
|
AwsIam = "AWS_IAM",
|
|
9608
10259
|
AwsSso = "AWS_SSO",
|
|
9609
10260
|
AzureAd = "AZURE_AD",
|
|
10261
|
+
Coupa = "COUPA",
|
|
9610
10262
|
Custom = "CUSTOM",
|
|
9611
10263
|
CustomConnector = "CUSTOM_CONNECTOR",
|
|
9612
10264
|
Databricks = "DATABRICKS",
|
|
10265
|
+
DatastaxAstra = "DATASTAX_ASTRA",
|
|
9613
10266
|
Duo = "DUO",
|
|
9614
10267
|
GcpBigQuery = "GCP_BIG_QUERY",
|
|
9615
10268
|
GcpIam = "GCP_IAM",
|
|
@@ -9845,7 +10498,7 @@ export type StartSyncInput = {
|
|
|
9845
10498
|
export type StartSyncOutput = AccessReviewNotFoundError | ConnectionNotFoundError | GroupNotFoundError | InvalidSyncTypeError | ResourceNotFoundError | StartSyncResult;
|
|
9846
10499
|
export type StartSyncResult = {
|
|
9847
10500
|
__typename?: "StartSyncResult";
|
|
9848
|
-
|
|
10501
|
+
syncTasks: Array<SyncTask>;
|
|
9849
10502
|
};
|
|
9850
10503
|
export type StopAccessReviewInput = {
|
|
9851
10504
|
id: Scalars["AccessReviewId"]["input"];
|
|
@@ -9898,11 +10551,9 @@ export declare enum SubEventsSortByField {
|
|
|
9898
10551
|
Entity_3Name = "ENTITY_3_NAME",
|
|
9899
10552
|
Entity_4Name = "ENTITY_4_NAME"
|
|
9900
10553
|
}
|
|
9901
|
-
export type
|
|
9902
|
-
__typename?: "
|
|
9903
|
-
|
|
9904
|
-
type: RecommendationsSubscoreType;
|
|
9905
|
-
userRoleKeys?: Maybe<Array<UserRoleKey>>;
|
|
10554
|
+
export type SubmitHiddenGrantFeedback = {
|
|
10555
|
+
__typename?: "SubmitHiddenGrantFeedback";
|
|
10556
|
+
isHidden?: Maybe<Scalars["Boolean"]["output"]>;
|
|
9906
10557
|
};
|
|
9907
10558
|
export type Suggestion = GroupSuggestion | ResourceSuggestion;
|
|
9908
10559
|
export type SuggestionCounts = {
|
|
@@ -9911,6 +10562,7 @@ export type SuggestionCounts = {
|
|
|
9911
10562
|
totalCount: Scalars["Int"]["output"];
|
|
9912
10563
|
};
|
|
9913
10564
|
export type SuggestionsInput = {
|
|
10565
|
+
favoritesOnly?: Scalars["Boolean"]["input"];
|
|
9914
10566
|
numMaxSuggestions?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9915
10567
|
};
|
|
9916
10568
|
export type SuggestionsOutput = SuggestionsResult;
|
|
@@ -9952,6 +10604,7 @@ export type SupportTicketResult = {
|
|
|
9952
10604
|
ticket: SupportTicket;
|
|
9953
10605
|
};
|
|
9954
10606
|
export type SupportTicketsInput = {
|
|
10607
|
+
searchQuery?: InputMaybe<Scalars["String"]["input"]>;
|
|
9955
10608
|
thirdPartyProvider: ThirdPartyProvider;
|
|
9956
10609
|
};
|
|
9957
10610
|
export type SupportTicketsOutput = SupportTicketApiKeyNotFoundError | SupportTicketsResult | UserFacingError;
|
|
@@ -10025,6 +10678,14 @@ export type SyncTaskStep = {
|
|
|
10025
10678
|
numItemsCompleted: Scalars["Int"]["output"];
|
|
10026
10679
|
totalNumItems: Scalars["Int"]["output"];
|
|
10027
10680
|
};
|
|
10681
|
+
export type SyncTasksInput = {
|
|
10682
|
+
ids?: InputMaybe<Array<Scalars["SyncTaskId"]["input"]>>;
|
|
10683
|
+
};
|
|
10684
|
+
export type SyncTasksOutput = SyncTaskNotFoundError | SyncTasksResult;
|
|
10685
|
+
export type SyncTasksResult = {
|
|
10686
|
+
__typename?: "SyncTasksResult";
|
|
10687
|
+
syncTasks: Array<SyncTask>;
|
|
10688
|
+
};
|
|
10028
10689
|
export declare enum SyncType {
|
|
10029
10690
|
PullConnectionsAll = "PULL_CONNECTIONS_ALL",
|
|
10030
10691
|
PullConnectionsAllGroups = "PULL_CONNECTIONS_ALL_GROUPS",
|
|
@@ -10153,6 +10814,8 @@ export type TailscaleConnectionMetadataInput = {
|
|
|
10153
10814
|
};
|
|
10154
10815
|
export type TailscaleCredentialsInput = {
|
|
10155
10816
|
apiToken: Scalars["String"]["input"];
|
|
10817
|
+
oauthClientId: Scalars["String"]["input"];
|
|
10818
|
+
oauthClientSecret: Scalars["String"]["input"];
|
|
10156
10819
|
};
|
|
10157
10820
|
export type TargetUserHasNestedAccessError = Error & {
|
|
10158
10821
|
__typename?: "TargetUserHasNestedAccessError";
|
|
@@ -10161,6 +10824,7 @@ export type TargetUserHasNestedAccessError = Error & {
|
|
|
10161
10824
|
};
|
|
10162
10825
|
export declare enum TaskTrigger {
|
|
10163
10826
|
AccessExpired = "ACCESS_EXPIRED",
|
|
10827
|
+
AccessExtended = "ACCESS_EXTENDED",
|
|
10164
10828
|
AccessReview = "ACCESS_REVIEW",
|
|
10165
10829
|
AdminAction = "ADMIN_ACTION",
|
|
10166
10830
|
BreakGlassUsed = "BREAK_GLASS_USED",
|
|
@@ -10254,14 +10918,20 @@ export type ThirdPartyIntegration = {
|
|
|
10254
10918
|
connectionId?: Maybe<Scalars["ConnectionId"]["output"]>;
|
|
10255
10919
|
id: Scalars["ThirdPartyTokenId"]["output"];
|
|
10256
10920
|
integrationType: IntegrationType;
|
|
10257
|
-
|
|
10921
|
+
metadata?: Maybe<ThirdPartyIntegrationMetadata>;
|
|
10258
10922
|
thirdPartyProvider: ThirdPartyProvider;
|
|
10259
10923
|
};
|
|
10924
|
+
export type ThirdPartyIntegrationGitHubMetadata = {
|
|
10925
|
+
__typename?: "ThirdPartyIntegrationGitHubMetadata";
|
|
10926
|
+
appName: Scalars["String"]["output"];
|
|
10927
|
+
targetId: Scalars["Int"]["output"];
|
|
10928
|
+
};
|
|
10260
10929
|
export type ThirdPartyIntegrationInput = {
|
|
10261
10930
|
connectionId?: InputMaybe<Scalars["ConnectionId"]["input"]>;
|
|
10262
10931
|
thirdPartyProvider: ThirdPartyProvider;
|
|
10263
10932
|
userId?: InputMaybe<Scalars["UserId"]["input"]>;
|
|
10264
10933
|
};
|
|
10934
|
+
export type ThirdPartyIntegrationMetadata = ThirdPartyIntegrationGitHubMetadata | ThirdPartyIntegrationSlackMetadata;
|
|
10265
10935
|
export type ThirdPartyIntegrationMetadataInput = {
|
|
10266
10936
|
googlechat?: InputMaybe<GoogleChatMetadataInput>;
|
|
10267
10937
|
jira?: InputMaybe<JiraMetadataInput>;
|
|
@@ -10299,6 +10969,8 @@ export type ThirdPartyIntegrationsResult = {
|
|
|
10299
10969
|
export declare enum ThirdPartyProvider {
|
|
10300
10970
|
Auth0 = "AUTH0",
|
|
10301
10971
|
GitHub = "GIT_HUB",
|
|
10972
|
+
GitHubConnection = "GIT_HUB_CONNECTION",
|
|
10973
|
+
GitHubRegistration = "GIT_HUB_REGISTRATION",
|
|
10302
10974
|
GitLab = "GIT_LAB",
|
|
10303
10975
|
GitLabConnection = "GIT_LAB_CONNECTION",
|
|
10304
10976
|
GoogleChat = "GOOGLE_CHAT",
|
|
@@ -10414,6 +11086,7 @@ export type UiNotification = {
|
|
|
10414
11086
|
userId: Scalars["UserId"]["output"];
|
|
10415
11087
|
};
|
|
10416
11088
|
export declare enum UiSource {
|
|
11089
|
+
Catalog = "CATALOG",
|
|
10417
11090
|
PublicApi = "PUBLIC_API",
|
|
10418
11091
|
ThreatCenter = "THREAT_CENTER",
|
|
10419
11092
|
Unknown = "UNKNOWN"
|
|
@@ -10522,6 +11195,8 @@ export type UpdateConfigurationTemplateInput = {
|
|
|
10522
11195
|
breakGlassUsersIds?: InputMaybe<Array<Scalars["UserId"]["input"]>>;
|
|
10523
11196
|
customRequestNotification?: InputMaybe<NullableString>;
|
|
10524
11197
|
id: Scalars["ConfigurationId"]["input"];
|
|
11198
|
+
maxDirectUsersAllowed?: InputMaybe<NullableInt>;
|
|
11199
|
+
maxUsersExceededMessage?: InputMaybe<NullableString>;
|
|
10525
11200
|
messageChannelIds?: InputMaybe<Array<Scalars["MessageChannelId"]["input"]>>;
|
|
10526
11201
|
name?: InputMaybe<Scalars["String"]["input"]>;
|
|
10527
11202
|
onCallScheduleIds?: InputMaybe<Array<Scalars["OnCallScheduleId"]["input"]>>;
|
|
@@ -10552,6 +11227,7 @@ export type UpdateConnectionInput = {
|
|
|
10552
11227
|
importVisibilityGroupsIds?: InputMaybe<Array<Scalars["GroupId"]["input"]>>;
|
|
10553
11228
|
metadata?: InputMaybe<ConnectionMetadataInput>;
|
|
10554
11229
|
name?: InputMaybe<Scalars["String"]["input"]>;
|
|
11230
|
+
provisionConfigurations?: InputMaybe<Array<ProvisionConfigurationInput>>;
|
|
10555
11231
|
visibility?: InputMaybe<Visibility>;
|
|
10556
11232
|
visibilityGroupIds?: InputMaybe<Array<Scalars["GroupId"]["input"]>>;
|
|
10557
11233
|
webhookEnabled?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
@@ -10660,7 +11336,7 @@ export type UpdateGroupResult = {
|
|
|
10660
11336
|
group: Group;
|
|
10661
11337
|
};
|
|
10662
11338
|
export type UpdateGroupUserInput = {
|
|
10663
|
-
accessLevel
|
|
11339
|
+
accessLevel: GroupAccessLevelInput;
|
|
10664
11340
|
durationInMinutes?: InputMaybe<NullableInt>;
|
|
10665
11341
|
groupId: Scalars["GroupId"]["input"];
|
|
10666
11342
|
userId: Scalars["UserId"]["input"];
|
|
@@ -10709,6 +11385,8 @@ export type UpdateItemsInput = {
|
|
|
10709
11385
|
forkConfigurationTemplates?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
10710
11386
|
groupAccessRuleCondition?: InputMaybe<AccessRuleConditionInput>;
|
|
10711
11387
|
groupLeaderUserIds?: InputMaybe<Array<Scalars["UserId"]["input"]>>;
|
|
11388
|
+
maxDirectUsersAllowed?: InputMaybe<NullableInt>;
|
|
11389
|
+
maxUsersExceededMessage?: InputMaybe<NullableString>;
|
|
10712
11390
|
messageChannelIds?: InputMaybe<Array<Scalars["MessageChannelId"]["input"]>>;
|
|
10713
11391
|
name?: InputMaybe<Scalars["String"]["input"]>;
|
|
10714
11392
|
onCallSchedules?: InputMaybe<Array<OnCallScheduleInput>>;
|
|
@@ -10735,19 +11413,22 @@ export type UpdateOrganizationSettingsInput = {
|
|
|
10735
11413
|
auditTicketProvider?: InputMaybe<NullableTicketProvider>;
|
|
10736
11414
|
authSessionExpirationInMinutes?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10737
11415
|
createOrUpdateOidcProviderInput?: InputMaybe<CreateOrUpdateOidcProviderInput>;
|
|
11416
|
+
customSearchLink?: InputMaybe<CustomSearchLinkInput>;
|
|
10738
11417
|
customerSupportExpiresAt?: InputMaybe<Scalars["Time"]["input"]>;
|
|
11418
|
+
defaultNotifications?: InputMaybe<DefaultNotificationsInput>;
|
|
10739
11419
|
dryRunModeEnabled?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
10740
11420
|
errorNotificationSetting?: InputMaybe<ErrorNotificationSettingType>;
|
|
10741
11421
|
isRemoteReadOnly?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
10742
11422
|
maxGroupDurationInMinutes?: InputMaybe<NullableInt>;
|
|
10743
11423
|
maxResourceDurationInMinutes?: InputMaybe<NullableInt>;
|
|
11424
|
+
maxUsersExceededMessage?: InputMaybe<Scalars["String"]["input"]>;
|
|
10744
11425
|
reasonMinWordCount?: InputMaybe<NullableInt>;
|
|
10745
11426
|
roleCreationReviewerOwnerId?: InputMaybe<NullableOwnerId>;
|
|
10746
11427
|
settings?: InputMaybe<Array<GeneralSettingType>>;
|
|
10747
11428
|
syncErrorHandlerOwnerId?: InputMaybe<NullableOwnerId>;
|
|
10748
11429
|
unusedAccessThresholdInDays?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10749
11430
|
};
|
|
10750
|
-
export type UpdateOrganizationSettingsOutput = AccessExpiringNotificationsInvalidError | AccessRequestEscalationPeriodInvalidError | AuthSessionExpirationInvalidError | CustomerSupportSettingsInvalid | OidcIssuerNotValidError | OrgMaxGroupDurationInvalidError | OrgMaxResourceDurationInvalidError | OrganizationSettingsNotFoundError | ReasonMinWordCountInvalidError | UpdateOrganizationSettingsResult;
|
|
11431
|
+
export type UpdateOrganizationSettingsOutput = AccessExpiringNotificationsInvalidError | AccessRequestEscalationPeriodInvalidError | AuthSessionExpirationInvalidError | CustomSearchLinkInvalidError | CustomerSupportSettingsInvalid | OidcIssuerNotValidError | OrgMaxGroupDurationInvalidError | OrgMaxResourceDurationInvalidError | OrganizationSettingsNotFoundError | ReasonMinWordCountInvalidError | UpdateOrganizationSettingsResult;
|
|
10751
11432
|
export type UpdateOrganizationSettingsResult = {
|
|
10752
11433
|
__typename?: "UpdateOrganizationSettingsResult";
|
|
10753
11434
|
settings: OrganizationSettings;
|
|
@@ -10777,7 +11458,7 @@ export type UpdateRequestTemplateInput = {
|
|
|
10777
11458
|
export type UpdateRequestTemplateOutput = CustomFieldExistsError | RequestTemplateNameExistsError | UpdateRequestTemplateResult;
|
|
10778
11459
|
export type UpdateRequestTemplateResult = {
|
|
10779
11460
|
__typename?: "UpdateRequestTemplateResult";
|
|
10780
|
-
requestTemplate:
|
|
11461
|
+
requestTemplate: RequestTemplate;
|
|
10781
11462
|
};
|
|
10782
11463
|
export type UpdateResourceCustomAccessLevelInput = {
|
|
10783
11464
|
id: Scalars["ResourceCustomAccessLevelId"]["input"];
|
|
@@ -10834,11 +11515,11 @@ export type UpdateReviewerStagesInput = {
|
|
|
10834
11515
|
stages?: InputMaybe<Array<ReviewerInputStage>>;
|
|
10835
11516
|
};
|
|
10836
11517
|
export type UpdateRoleAssignmentInput = {
|
|
10837
|
-
accessLevel
|
|
11518
|
+
accessLevel: AccessLevelInput;
|
|
10838
11519
|
entityID: Scalars["EntityId"]["input"];
|
|
10839
11520
|
entityType: EntityType;
|
|
10840
11521
|
newDurationInMinutes?: InputMaybe<NullableInt>;
|
|
10841
|
-
principalID: Scalars["
|
|
11522
|
+
principalID: Scalars["EntityId"]["input"];
|
|
10842
11523
|
principalType: EntityType;
|
|
10843
11524
|
};
|
|
10844
11525
|
export type UpdateRoleAssignmentResult = {
|
|
@@ -10945,7 +11626,10 @@ export type User = BaseEntity & DisplayableEntity & Node & Principal & RolePermi
|
|
|
10945
11626
|
organizationId: Scalars["OrganizationId"]["output"];
|
|
10946
11627
|
paginatedUserGroups: PaginatedUserGroupsOutput;
|
|
10947
11628
|
paginatedUserResources: PaginatedUserResourcesOutput;
|
|
11629
|
+
permissionSources: PermissionSourceConnection;
|
|
10948
11630
|
position: Scalars["String"]["output"];
|
|
11631
|
+
requestReviewerDelegationsGiven: Array<RequestReviewerDelegation>;
|
|
11632
|
+
requestReviewerDelegationsReceived: Array<RequestReviewerDelegation>;
|
|
10949
11633
|
secondaryEmails: Array<Scalars["String"]["output"]>;
|
|
10950
11634
|
teamAttr?: Maybe<Scalars["String"]["output"]>;
|
|
10951
11635
|
updatedAt: Scalars["Time"]["output"];
|
|
@@ -10961,10 +11645,16 @@ export type UserAccessReviewItemsArgs = {
|
|
|
10961
11645
|
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10962
11646
|
};
|
|
10963
11647
|
export type UserPaginatedUserGroupsArgs = {
|
|
10964
|
-
input?:
|
|
11648
|
+
input?: PaginatedUserGroupsInput;
|
|
10965
11649
|
};
|
|
10966
11650
|
export type UserPaginatedUserResourcesArgs = {
|
|
10967
|
-
input?:
|
|
11651
|
+
input?: PaginatedUserResourcesInput;
|
|
11652
|
+
};
|
|
11653
|
+
export type UserPermissionSourcesArgs = {
|
|
11654
|
+
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
11655
|
+
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
11656
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11657
|
+
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10968
11658
|
};
|
|
10969
11659
|
export type UserUserTagsArgs = {
|
|
10970
11660
|
input?: InputMaybe<UserTagsByTagInput>;
|
|
@@ -10994,10 +11684,21 @@ export type UserCannotRequestAccessForTargetGroupError = Error & {
|
|
|
10994
11684
|
};
|
|
10995
11685
|
export type UserConnection = PageConnection & {
|
|
10996
11686
|
__typename?: "UserConnection";
|
|
11687
|
+
assignedCount: Scalars["Int"]["output"];
|
|
10997
11688
|
edges: Array<UserEdge>;
|
|
10998
11689
|
pageInfo: PageInfo;
|
|
11690
|
+
reviewedCount: Scalars["Int"]["output"];
|
|
10999
11691
|
totalCount: Scalars["Int"]["output"];
|
|
11000
11692
|
};
|
|
11693
|
+
export type UserDelegationsNotFoundError = Error & {
|
|
11694
|
+
__typename?: "UserDelegationsNotFoundError";
|
|
11695
|
+
message: Scalars["String"]["output"];
|
|
11696
|
+
};
|
|
11697
|
+
export type UserDelegationsOutput = UserDelegationsNotFoundError | UserDelegationsResult;
|
|
11698
|
+
export type UserDelegationsResult = {
|
|
11699
|
+
__typename?: "UserDelegationsResult";
|
|
11700
|
+
delegations: Array<RequestReviewerDelegation>;
|
|
11701
|
+
};
|
|
11001
11702
|
export type UserEdge = Edge & {
|
|
11002
11703
|
__typename?: "UserEdge";
|
|
11003
11704
|
cursor: Scalars["String"]["output"];
|
|
@@ -11070,16 +11771,13 @@ export type UserResult = {
|
|
|
11070
11771
|
__typename?: "UserResult";
|
|
11071
11772
|
user: User;
|
|
11072
11773
|
};
|
|
11073
|
-
export type UserRoleKey = {
|
|
11074
|
-
__typename?: "UserRoleKey";
|
|
11075
|
-
accessLevelRemoteId?: Maybe<Scalars["String"]["output"]>;
|
|
11076
|
-
userId: Scalars["UserId"]["output"];
|
|
11077
|
-
};
|
|
11078
11774
|
export type UserSettings = {
|
|
11079
11775
|
__typename?: "UserSettings";
|
|
11080
|
-
allNotifications
|
|
11776
|
+
allNotifications?: Maybe<Array<NotificationType>>;
|
|
11081
11777
|
createdAt: Scalars["Time"]["output"];
|
|
11082
11778
|
id: Scalars["UserId"]["output"];
|
|
11779
|
+
notificationPreferences?: Maybe<Array<NotificationPreference>>;
|
|
11780
|
+
/** @deprecated use notificationPreferences instead */
|
|
11083
11781
|
updatedAt: Scalars["Time"]["output"];
|
|
11084
11782
|
};
|
|
11085
11783
|
export type UserSettingsInvalidError = Error & {
|
|
@@ -11145,7 +11843,7 @@ export type UsersInput = {
|
|
|
11145
11843
|
teamFilter?: InputMaybe<TeamFilter>;
|
|
11146
11844
|
titleFilter?: InputMaybe<TitleFilter>;
|
|
11147
11845
|
userEmails?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
11148
|
-
userIds?: InputMaybe<Array<Scalars["
|
|
11846
|
+
userIds?: InputMaybe<Array<Scalars["UserId"]["input"]>>;
|
|
11149
11847
|
};
|
|
11150
11848
|
export type UsersOutput = UsersResult;
|
|
11151
11849
|
export type UsersResult = {
|
|
@@ -11162,6 +11860,8 @@ export declare enum UsersSortByField {
|
|
|
11162
11860
|
CreatedAt = "CREATED_AT",
|
|
11163
11861
|
Email = "EMAIL",
|
|
11164
11862
|
FirstName = "FIRST_NAME",
|
|
11863
|
+
FullName = "FULL_NAME",
|
|
11864
|
+
HrIdpStatus = "HR_IDP_STATUS",
|
|
11165
11865
|
LastName = "LAST_NAME",
|
|
11166
11866
|
Manager = "MANAGER",
|
|
11167
11867
|
Team = "TEAM",
|
|
@@ -11388,11 +12088,6 @@ export declare enum RequestDecisionLevel {
|
|
|
11388
12088
|
Admin = "ADMIN",
|
|
11389
12089
|
Regular = "REGULAR"
|
|
11390
12090
|
}
|
|
11391
|
-
export type UpdateScopedRoleAssignmentsInput = {
|
|
11392
|
-
newDurationInMinutes?: InputMaybe<NullableInt>;
|
|
11393
|
-
scope?: InputMaybe<RoleAssignmentSearchScope>;
|
|
11394
|
-
source?: InputMaybe<UiSource>;
|
|
11395
|
-
};
|
|
11396
12091
|
export type GetGroupQueryVariables = Exact<{
|
|
11397
12092
|
id: Scalars["GroupId"]["input"];
|
|
11398
12093
|
}>;
|
|
@@ -11479,6 +12174,8 @@ export type CreateRequestMutation = {
|
|
|
11479
12174
|
} | {
|
|
11480
12175
|
__typename?: "ItemCannotBeRequestedError";
|
|
11481
12176
|
message: string;
|
|
12177
|
+
} | {
|
|
12178
|
+
__typename?: "ItemsAtCapacityError";
|
|
11482
12179
|
} | {
|
|
11483
12180
|
__typename?: "LinkedGroupNotRequestableError";
|
|
11484
12181
|
message: string;
|
|
@@ -11725,11 +12422,11 @@ export type RequestFieldsFragment = {
|
|
|
11725
12422
|
GroupFieldsFragment: GroupFieldsFragment;
|
|
11726
12423
|
};
|
|
11727
12424
|
}) | null;
|
|
11728
|
-
accessLevel
|
|
12425
|
+
accessLevel: {
|
|
11729
12426
|
__typename?: "GroupAccessLevel";
|
|
11730
12427
|
accessLevelName: string;
|
|
11731
12428
|
accessLevelRemoteId: string;
|
|
11732
|
-
}
|
|
12429
|
+
};
|
|
11733
12430
|
}>;
|
|
11734
12431
|
} & {
|
|
11735
12432
|
" $fragmentName"?: "RequestFieldsFragment";
|
|
@@ -11839,11 +12536,11 @@ export type GroupAccessLevelsQuery = {
|
|
|
11839
12536
|
groupAccessLevels: {
|
|
11840
12537
|
__typename?: "GroupAccessLevelsResult";
|
|
11841
12538
|
groupId: string;
|
|
11842
|
-
accessLevels
|
|
12539
|
+
accessLevels: Array<{
|
|
11843
12540
|
__typename?: "GroupAccessLevel";
|
|
11844
12541
|
accessLevelName: string;
|
|
11845
12542
|
accessLevelRemoteId: string;
|
|
11846
|
-
}
|
|
12543
|
+
}>;
|
|
11847
12544
|
} | {
|
|
11848
12545
|
__typename?: "GroupNotFoundError";
|
|
11849
12546
|
};
|