@microsoft/typespec-msgraph-reference 1.0.10 → 1.0.11

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.
@@ -250,6 +250,14 @@ namespace reference.`microsoft.graph` {
250
250
  value: string | null;
251
251
  }
252
252
 
253
+ @complex model approvalSettings {
254
+ approvalMode: string | null;
255
+ approvalStages: unifiedApprovalStage[] | null;
256
+ isApprovalRequired: boolean | null;
257
+ isApprovalRequiredForExtension: boolean | null;
258
+ isRequestorJustificationRequired: boolean | null;
259
+ }
260
+
253
261
  @complex model assignedLabel {
254
262
  displayName: string | null;
255
263
  labelId: string | null;
@@ -1577,6 +1585,12 @@ namespace reference.`microsoft.graph` {
1577
1585
  @complex model exclusionGroupAssignmentTarget extends groupAssignmentTarget {
1578
1586
  }
1579
1587
 
1588
+ @complex model expirationPattern {
1589
+ `duration`: duration | null;
1590
+ endDateTime: offsetDateTime | null;
1591
+ type: expirationPatternType | null;
1592
+ }
1593
+
1580
1594
  @complex model expressionInputObject {
1581
1595
  definition: objectDefinition | null;
1582
1596
  properties: stringKeyObjectValuePair[] | null;
@@ -1762,6 +1776,11 @@ namespace reference.`microsoft.graph` {
1762
1776
  includedGroups: string[] | null;
1763
1777
  }
1764
1778
 
1779
+ @complex model groupMembers extends subjectSet {
1780
+ description: string | null;
1781
+ groupId: string | null;
1782
+ }
1783
+
1765
1784
  @complex model hashes {
1766
1785
  crc32Hash: string | null;
1767
1786
  quickXorHash: string | null;
@@ -3512,6 +3531,12 @@ namespace reference.`microsoft.graph` {
3512
3531
  content: stream | null;
3513
3532
  }
3514
3533
 
3534
+ @complex model requestSchedule {
3535
+ expiration: expirationPattern | null;
3536
+ recurrence: patternedRecurrence | null;
3537
+ startDateTime: offsetDateTime | null;
3538
+ }
3539
+
3515
3540
  @complex model requestSignatureVerification {
3516
3541
  allowedWeakAlgorithms: weakAlgorithms | null;
3517
3542
  isSignedRequestRequired: boolean;
@@ -3867,6 +3892,11 @@ namespace reference.`microsoft.graph` {
3867
3892
  failureReason: string | null;
3868
3893
  }
3869
3894
 
3895
+ @complex model singleUser extends subjectSet {
3896
+ description: string | null;
3897
+ userId: string | null;
3898
+ }
3899
+
3870
3900
  @complex model siteArchivalDetails {
3871
3901
  archiveStatus: siteArchiveStatus | null;
3872
3902
  }
@@ -3923,6 +3953,10 @@ namespace reference.`microsoft.graph` {
3923
3953
  value: string | null;
3924
3954
  }
3925
3955
 
3956
+ @abstract
3957
+ @complex model subjectSet {
3958
+ }
3959
+
3926
3960
  @complex model synchronizationError {
3927
3961
  code: string | null;
3928
3962
  message: string | null;
@@ -4072,6 +4106,11 @@ namespace reference.`microsoft.graph` {
4072
4106
  @complex model thumbnailColumn {
4073
4107
  }
4074
4108
 
4109
+ @complex model ticketInfo {
4110
+ ticketNumber: string | null;
4111
+ ticketSystem: string | null;
4112
+ }
4113
+
4075
4114
  @complex model timeConstraint {
4076
4115
  activityDomain: activityDomain | null;
4077
4116
  timeSlots: timeSlot[] | null;
@@ -4105,6 +4144,24 @@ namespace reference.`microsoft.graph` {
4105
4144
  textAlignment: titleAreaTextAlignmentType | null;
4106
4145
  }
4107
4146
 
4147
+ @complex model unifiedApprovalStage {
4148
+ approvalStageTimeOutInDays: int32 | null;
4149
+ escalationApprovers: subjectSet[] | null;
4150
+ escalationTimeInMinutes: int32 | null;
4151
+ isApproverJustificationRequired: boolean | null;
4152
+ isEscalationEnabled: boolean | null;
4153
+ primaryApprovers: subjectSet[] | null;
4154
+ }
4155
+
4156
+ @complex model unifiedRoleManagementPolicyRuleTarget {
4157
+ caller: string | null;
4158
+ enforcedSettings: string[] | null;
4159
+ inheritableSettings: string[] | null;
4160
+ level: string | null;
4161
+ operations: unifiedRoleManagementPolicyRuleTargetOperations[] | null;
4162
+ @references targetObjects: directoryObject[];
4163
+ }
4164
+
4108
4165
  @complex model unifiedRolePermission {
4109
4166
  allowedResourceActions: string[];
4110
4167
  condition: string | null;
@@ -5999,6 +6056,20 @@ namespace reference.`microsoft.graph` {
5999
6056
  resourceId: guid | null;
6000
6057
  }
6001
6058
 
6059
+ @entity model approval extends entity {
6060
+ @contains stages: approvalStage[];
6061
+ }
6062
+
6063
+ @entity model approvalStage extends entity {
6064
+ assignedToMe: boolean | null;
6065
+ displayName: string | null;
6066
+ justification: string | null;
6067
+ reviewedBy: identity | null;
6068
+ reviewedDateTime: offsetDateTime | null;
6069
+ reviewResult: string | null;
6070
+ status: string | null;
6071
+ }
6072
+
6002
6073
  @entity model approvedClientApp extends entity {
6003
6074
  displayName: string | null;
6004
6075
  }
@@ -6654,7 +6725,7 @@ namespace reference.`microsoft.graph` {
6654
6725
  /**
6655
6726
  * Singleton entity that acts as a container for all device app management functionality.
6656
6727
  */
6657
- @entity model deviceAppManagement extends entity {
6728
+ @entity model deviceAppManagement extends MsGraph.SharedModels.entity {
6658
6729
  /**
6659
6730
  * Whether the account is enabled for syncing applications from the Microsoft Store for Business.
6660
6731
  */
@@ -8622,6 +8693,10 @@ namespace reference.`microsoft.graph` {
8622
8693
  @contains conditionalAccess: conditionalAccessRoot | null;
8623
8694
  }
8624
8695
 
8696
+ @entity model identityGovernance extends MsGraph.SharedModels.entity {
8697
+ @contains privilegedAccess: privilegedAccessRoot | null;
8698
+ }
8699
+
8625
8700
  @entity model identityProtectionRoot extends MsGraph.SharedModels.entity {
8626
8701
  @contains riskDetections: riskDetection[];
8627
8702
  @contains riskyServicePrincipals: riskyServicePrincipal[];
@@ -11797,6 +11872,8 @@ namespace reference.`microsoft.graph` {
11797
11872
  @contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
11798
11873
  @contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
11799
11874
  @contains permissionGrantPolicies: permissionGrantPolicy[];
11875
+ @contains roleManagementPolicies: unifiedRoleManagementPolicy[];
11876
+ @contains roleManagementPolicyAssignments: unifiedRoleManagementPolicyAssignment[];
11800
11877
  @contains tokenIssuancePolicies: tokenIssuancePolicy[];
11801
11878
  @contains tokenLifetimePolicies: tokenLifetimePolicy[];
11802
11879
  }
@@ -11818,6 +11895,106 @@ namespace reference.`microsoft.graph` {
11818
11895
  @contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
11819
11896
  }
11820
11897
 
11898
+ @entity model privilegedAccessGroup extends entity {
11899
+ @contains assignmentScheduleInstances: privilegedAccessGroupAssignmentScheduleInstance[];
11900
+ @contains assignmentScheduleRequests: privilegedAccessGroupAssignmentScheduleRequest[];
11901
+ @contains assignmentSchedules: privilegedAccessGroupAssignmentSchedule[];
11902
+ @contains eligibilityScheduleInstances: privilegedAccessGroupEligibilityScheduleInstance[];
11903
+ @contains eligibilityScheduleRequests: privilegedAccessGroupEligibilityScheduleRequest[];
11904
+ @contains eligibilitySchedules: privilegedAccessGroupEligibilitySchedule[];
11905
+ }
11906
+
11907
+ @entity model privilegedAccessGroupAssignmentSchedule extends privilegedAccessSchedule {
11908
+ accessId: privilegedAccessGroupRelationships | null;
11909
+ assignmentType: privilegedAccessGroupAssignmentType | null;
11910
+ groupId: string | null;
11911
+ memberType: privilegedAccessGroupMemberType | null;
11912
+ principalId: string | null;
11913
+ @references activatedUsing: privilegedAccessGroupEligibilitySchedule | null;
11914
+ @references group: group | null;
11915
+ @references principal: directoryObject | null;
11916
+ }
11917
+
11918
+ @entity model privilegedAccessGroupAssignmentScheduleInstance extends privilegedAccessScheduleInstance {
11919
+ accessId: privilegedAccessGroupRelationships | null;
11920
+ assignmentScheduleId: string | null;
11921
+ assignmentType: privilegedAccessGroupAssignmentType | null;
11922
+ groupId: string | null;
11923
+ memberType: privilegedAccessGroupMemberType | null;
11924
+ principalId: string | null;
11925
+ @references activatedUsing: privilegedAccessGroupEligibilityScheduleInstance | null;
11926
+ @references group: group | null;
11927
+ @references principal: directoryObject | null;
11928
+ }
11929
+
11930
+ @entity model privilegedAccessGroupAssignmentScheduleRequest extends privilegedAccessScheduleRequest {
11931
+ accessId: privilegedAccessGroupRelationships | null;
11932
+ groupId: string | null;
11933
+ principalId: string | null;
11934
+ targetScheduleId: string | null;
11935
+ @references activatedUsing: privilegedAccessGroupEligibilitySchedule | null;
11936
+ @references group: group | null;
11937
+ @references principal: directoryObject | null;
11938
+ @references targetSchedule: privilegedAccessGroupEligibilitySchedule | null;
11939
+ }
11940
+
11941
+ @entity model privilegedAccessGroupEligibilitySchedule extends privilegedAccessSchedule {
11942
+ accessId: privilegedAccessGroupRelationships | null;
11943
+ groupId: string | null;
11944
+ memberType: privilegedAccessGroupMemberType | null;
11945
+ principalId: string | null;
11946
+ @references group: group | null;
11947
+ @references principal: directoryObject | null;
11948
+ }
11949
+
11950
+ @entity model privilegedAccessGroupEligibilityScheduleInstance extends privilegedAccessScheduleInstance {
11951
+ accessId: privilegedAccessGroupRelationships | null;
11952
+ eligibilityScheduleId: string | null;
11953
+ groupId: string | null;
11954
+ memberType: privilegedAccessGroupMemberType | null;
11955
+ principalId: string | null;
11956
+ @references group: group | null;
11957
+ @references principal: directoryObject | null;
11958
+ }
11959
+
11960
+ @entity model privilegedAccessGroupEligibilityScheduleRequest extends privilegedAccessScheduleRequest {
11961
+ accessId: privilegedAccessGroupRelationships | null;
11962
+ groupId: string | null;
11963
+ principalId: string | null;
11964
+ targetScheduleId: string | null;
11965
+ @references group: group | null;
11966
+ @references principal: directoryObject | null;
11967
+ @references targetSchedule: privilegedAccessGroupEligibilitySchedule | null;
11968
+ }
11969
+
11970
+ @entity model privilegedAccessRoot extends entity {
11971
+ @contains group: privilegedAccessGroup | null;
11972
+ }
11973
+
11974
+ @abstract
11975
+ @entity model privilegedAccessSchedule extends entity {
11976
+ @computed createdDateTime: offsetDateTime | null;
11977
+ createdUsing: string | null;
11978
+ modifiedDateTime: offsetDateTime | null;
11979
+ scheduleInfo: requestSchedule | null;
11980
+ status: string | null;
11981
+ }
11982
+
11983
+ @abstract
11984
+ @entity model privilegedAccessScheduleInstance extends entity {
11985
+ endDateTime: offsetDateTime | null;
11986
+ startDateTime: offsetDateTime | null;
11987
+ }
11988
+
11989
+ @abstract
11990
+ @entity model privilegedAccessScheduleRequest extends request {
11991
+ action: scheduleRequestActions | null;
11992
+ isValidationOnly: boolean | null;
11993
+ justification: string | null;
11994
+ scheduleInfo: requestSchedule | null;
11995
+ ticketInfo: ticketInfo | null;
11996
+ }
11997
+
11821
11998
  @entity model profileCardProperty extends entity {
11822
11999
  annotations: profileCardAnnotation[] | null;
11823
12000
  directoryPropertyName: string | null;
@@ -11876,7 +12053,13 @@ namespace reference.`microsoft.graph` {
11876
12053
  @entity model rbacApplication extends entity {
11877
12054
  @contains resourceNamespaces: unifiedRbacResourceNamespace[];
11878
12055
  @contains roleAssignments: unifiedRoleAssignment[];
12056
+ @contains roleAssignmentScheduleInstances: unifiedRoleAssignmentScheduleInstance[];
12057
+ @contains roleAssignmentScheduleRequests: unifiedRoleAssignmentScheduleRequest[];
12058
+ @contains roleAssignmentSchedules: unifiedRoleAssignmentSchedule[];
11879
12059
  @contains roleDefinitions: unifiedRoleDefinition[];
12060
+ @contains roleEligibilityScheduleInstances: unifiedRoleEligibilityScheduleInstance[];
12061
+ @contains roleEligibilityScheduleRequests: unifiedRoleEligibilityScheduleRequest[];
12062
+ @contains roleEligibilitySchedules: unifiedRoleEligibilitySchedule[];
11880
12063
  }
11881
12064
 
11882
12065
  @open
@@ -11927,6 +12110,15 @@ namespace reference.`microsoft.graph` {
11927
12110
  @contains authenticationMethods: authenticationMethodsRoot | null;
11928
12111
  }
11929
12112
 
12113
+ @entity model request extends entity {
12114
+ approvalId: string | null;
12115
+ completedDateTime: offsetDateTime | null;
12116
+ createdBy: identitySet | null;
12117
+ @computed createdDateTime: offsetDateTime | null;
12118
+ customData: string | null;
12119
+ status: string;
12120
+ }
12121
+
11930
12122
  /**
11931
12123
  * Describes the resourceOperation resource (entity) of the Microsoft Graph API (REST), which supports Intune workflows related to role-based access control (RBAC).
11932
12124
  */
@@ -12846,6 +13038,42 @@ namespace reference.`microsoft.graph` {
12846
13038
  @references roleDefinition: unifiedRoleDefinition | null;
12847
13039
  }
12848
13040
 
13041
+ @entity model unifiedRoleAssignmentSchedule extends unifiedRoleScheduleBase {
13042
+ assignmentType: string | null;
13043
+ memberType: string | null;
13044
+ scheduleInfo: requestSchedule | null;
13045
+ @references activatedUsing: unifiedRoleEligibilitySchedule | null;
13046
+ }
13047
+
13048
+ @entity model unifiedRoleAssignmentScheduleInstance extends unifiedRoleScheduleInstanceBase {
13049
+ assignmentType: string | null;
13050
+ endDateTime: offsetDateTime | null;
13051
+ memberType: string | null;
13052
+ roleAssignmentOriginId: string | null;
13053
+ roleAssignmentScheduleId: string | null;
13054
+ startDateTime: offsetDateTime | null;
13055
+ @references activatedUsing: unifiedRoleEligibilityScheduleInstance | null;
13056
+ }
13057
+
13058
+ @entity model unifiedRoleAssignmentScheduleRequest extends request {
13059
+ action: unifiedRoleScheduleRequestActions | null;
13060
+ appScopeId: string | null;
13061
+ directoryScopeId: string | null;
13062
+ isValidationOnly: boolean | null;
13063
+ justification: string | null;
13064
+ principalId: string | null;
13065
+ roleDefinitionId: string | null;
13066
+ scheduleInfo: requestSchedule | null;
13067
+ targetScheduleId: string | null;
13068
+ ticketInfo: ticketInfo | null;
13069
+ @references activatedUsing: unifiedRoleEligibilitySchedule | null;
13070
+ @references appScope: appScope | null;
13071
+ @references directoryScope: directoryObject | null;
13072
+ @references principal: directoryObject | null;
13073
+ @references roleDefinition: unifiedRoleDefinition | null;
13074
+ @references targetSchedule: unifiedRoleAssignmentSchedule | null;
13075
+ }
13076
+
12849
13077
  @entity model unifiedRoleDefinition extends entity {
12850
13078
  description: string | null;
12851
13079
  displayName: string | null;
@@ -12858,6 +13086,113 @@ namespace reference.`microsoft.graph` {
12858
13086
  @contains inheritsPermissionsFrom: unifiedRoleDefinition[];
12859
13087
  }
12860
13088
 
13089
+ @entity model unifiedRoleEligibilitySchedule extends unifiedRoleScheduleBase {
13090
+ memberType: string | null;
13091
+ scheduleInfo: requestSchedule | null;
13092
+ }
13093
+
13094
+ @entity model unifiedRoleEligibilityScheduleInstance extends unifiedRoleScheduleInstanceBase {
13095
+ endDateTime: offsetDateTime | null;
13096
+ memberType: string | null;
13097
+ roleEligibilityScheduleId: string | null;
13098
+ startDateTime: offsetDateTime | null;
13099
+ }
13100
+
13101
+ @entity model unifiedRoleEligibilityScheduleRequest extends request {
13102
+ action: unifiedRoleScheduleRequestActions | null;
13103
+ appScopeId: string | null;
13104
+ directoryScopeId: string | null;
13105
+ isValidationOnly: boolean | null;
13106
+ justification: string | null;
13107
+ principalId: string | null;
13108
+ roleDefinitionId: string | null;
13109
+ scheduleInfo: requestSchedule | null;
13110
+ targetScheduleId: string | null;
13111
+ ticketInfo: ticketInfo | null;
13112
+ @references appScope: appScope | null;
13113
+ @references directoryScope: directoryObject | null;
13114
+ @references principal: directoryObject | null;
13115
+ @references roleDefinition: unifiedRoleDefinition | null;
13116
+ @references targetSchedule: unifiedRoleEligibilitySchedule | null;
13117
+ }
13118
+
13119
+ @entity model unifiedRoleManagementPolicy extends entity {
13120
+ description: string;
13121
+ displayName: string;
13122
+ isOrganizationDefault: boolean | null;
13123
+ lastModifiedBy: identity | null;
13124
+ @computed lastModifiedDateTime: offsetDateTime | null;
13125
+ scopeId: string;
13126
+ scopeType: string;
13127
+ @contains effectiveRules: unifiedRoleManagementPolicyRule[];
13128
+ @contains rules: unifiedRoleManagementPolicyRule[];
13129
+ }
13130
+
13131
+ @entity model unifiedRoleManagementPolicyApprovalRule extends unifiedRoleManagementPolicyRule {
13132
+ setting: approvalSettings | null;
13133
+ }
13134
+
13135
+ @entity model unifiedRoleManagementPolicyAssignment extends entity {
13136
+ policyId: string;
13137
+ roleDefinitionId: string | null;
13138
+ scopeId: string;
13139
+ scopeType: string;
13140
+ @references policy: unifiedRoleManagementPolicy | null;
13141
+ }
13142
+
13143
+ @entity model unifiedRoleManagementPolicyAuthenticationContextRule extends unifiedRoleManagementPolicyRule {
13144
+ claimValue: string | null;
13145
+ isEnabled: boolean | null;
13146
+ }
13147
+
13148
+ @entity model unifiedRoleManagementPolicyEnablementRule extends unifiedRoleManagementPolicyRule {
13149
+ enabledRules: string[] | null;
13150
+ }
13151
+
13152
+ @entity model unifiedRoleManagementPolicyExpirationRule extends unifiedRoleManagementPolicyRule {
13153
+ isExpirationRequired: boolean | null;
13154
+ maximumDuration: duration | null;
13155
+ }
13156
+
13157
+ @entity model unifiedRoleManagementPolicyNotificationRule extends unifiedRoleManagementPolicyRule {
13158
+ isDefaultRecipientsEnabled: boolean | null;
13159
+ notificationLevel: string | null;
13160
+ notificationRecipients: string[] | null;
13161
+ notificationType: string | null;
13162
+ recipientType: string | null;
13163
+ }
13164
+
13165
+ @abstract
13166
+ @entity model unifiedRoleManagementPolicyRule extends entity {
13167
+ target: unifiedRoleManagementPolicyRuleTarget | null;
13168
+ }
13169
+
13170
+ @entity model unifiedRoleScheduleBase extends entity {
13171
+ appScopeId: string | null;
13172
+ @computed createdDateTime: offsetDateTime | null;
13173
+ createdUsing: string | null;
13174
+ directoryScopeId: string | null;
13175
+ modifiedDateTime: offsetDateTime | null;
13176
+ principalId: string | null;
13177
+ roleDefinitionId: string | null;
13178
+ status: string | null;
13179
+ @references appScope: appScope | null;
13180
+ @references directoryScope: directoryObject | null;
13181
+ @references principal: directoryObject | null;
13182
+ @references roleDefinition: unifiedRoleDefinition | null;
13183
+ }
13184
+
13185
+ @entity model unifiedRoleScheduleInstanceBase extends entity {
13186
+ appScopeId: string | null;
13187
+ directoryScopeId: string | null;
13188
+ principalId: string | null;
13189
+ roleDefinitionId: string | null;
13190
+ @references appScope: appScope | null;
13191
+ @references directoryScope: directoryObject | null;
13192
+ @references principal: directoryObject | null;
13193
+ @references roleDefinition: unifiedRoleDefinition | null;
13194
+ }
13195
+
12861
13196
  @open
12862
13197
  @entity model user extends directoryObject {
12863
13198
  aboutMe: string | null;
@@ -16940,6 +17275,23 @@ namespace reference.`microsoft.graph` {
16940
17275
  unknownFutureValue: 3,
16941
17276
  }
16942
17277
 
17278
+ enum assignmentScheduleFilterByCurrentUserOptions {
17279
+ principal: 1,
17280
+ unknownFutureValue: 2,
17281
+ }
17282
+
17283
+ enum assignmentScheduleInstanceFilterByCurrentUserOptions {
17284
+ principal: 1,
17285
+ unknownFutureValue: 2,
17286
+ }
17287
+
17288
+ enum assignmentScheduleRequestFilterByCurrentUserOptions {
17289
+ principal: 1,
17290
+ createdBy: 2,
17291
+ approver: 3,
17292
+ unknownFutureValue: 4,
17293
+ }
17294
+
16943
17295
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
16944
17296
  enum attachmentType {
16945
17297
  file: 0,
@@ -18348,6 +18700,23 @@ namespace reference.`microsoft.graph` {
18348
18700
  licenseFile: 1,
18349
18701
  }
18350
18702
 
18703
+ enum eligibilityScheduleFilterByCurrentUserOptions {
18704
+ principal: 1,
18705
+ unknownFutureValue: 2,
18706
+ }
18707
+
18708
+ enum eligibilityScheduleInstanceFilterByCurrentUserOptions {
18709
+ principal: 1,
18710
+ unknownFutureValue: 2,
18711
+ }
18712
+
18713
+ enum eligibilityScheduleRequestFilterByCurrentUserOptions {
18714
+ principal: 1,
18715
+ createdBy: 2,
18716
+ approver: 3,
18717
+ unknownFutureValue: 4,
18718
+ }
18719
+
18351
18720
  /**
18352
18721
  * Possible values of a property
18353
18722
  */
@@ -18439,6 +18808,14 @@ namespace reference.`microsoft.graph` {
18439
18808
  restImmutableEntryId: 4,
18440
18809
  }
18441
18810
 
18811
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
18812
+ enum expirationPatternType {
18813
+ notSpecified: 0,
18814
+ noExpiration: 1,
18815
+ afterDateTime: 2,
18816
+ afterDuration: 3,
18817
+ }
18818
+
18442
18819
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
18443
18820
  enum externalAudienceScope {
18444
18821
  none: 0,
@@ -19809,6 +20186,24 @@ namespace reference.`microsoft.graph` {
19809
20186
  notAllowed: 3,
19810
20187
  }
19811
20188
 
20189
+ enum privilegedAccessGroupAssignmentType {
20190
+ assigned: 1,
20191
+ activated: 2,
20192
+ unknownFutureValue: 3,
20193
+ }
20194
+
20195
+ enum privilegedAccessGroupMemberType {
20196
+ direct: 1,
20197
+ group: 2,
20198
+ unknownFutureValue: 3,
20199
+ }
20200
+
20201
+ enum privilegedAccessGroupRelationships {
20202
+ owner: 1,
20203
+ member: 2,
20204
+ unknownFutureValue: 3,
20205
+ }
20206
+
19812
20207
  enum promptLoginBehavior {
19813
20208
  translateToFreshPasswordAuthentication: 0,
19814
20209
  nativeSupport: 1,
@@ -20657,6 +21052,40 @@ namespace reference.`microsoft.graph` {
20657
21052
  unknownFutureValue: 6,
20658
21053
  }
20659
21054
 
21055
+ enum roleAssignmentScheduleFilterByCurrentUserOptions {
21056
+ principal: 1,
21057
+ unknownFutureValue: 2,
21058
+ }
21059
+
21060
+ enum roleAssignmentScheduleInstanceFilterByCurrentUserOptions {
21061
+ principal: 1,
21062
+ unknownFutureValue: 2,
21063
+ }
21064
+
21065
+ enum roleAssignmentScheduleRequestFilterByCurrentUserOptions {
21066
+ principal: 1,
21067
+ createdBy: 2,
21068
+ approver: 3,
21069
+ unknownFutureValue: 4,
21070
+ }
21071
+
21072
+ enum roleEligibilityScheduleFilterByCurrentUserOptions {
21073
+ principal: 1,
21074
+ unknownFutureValue: 2,
21075
+ }
21076
+
21077
+ enum roleEligibilityScheduleInstanceFilterByCurrentUserOptions {
21078
+ principal: 1,
21079
+ unknownFutureValue: 2,
21080
+ }
21081
+
21082
+ enum roleEligibilityScheduleRequestFilterByCurrentUserOptions {
21083
+ principal: 1,
21084
+ createdBy: 2,
21085
+ approver: 3,
21086
+ unknownFutureValue: 4,
21087
+ }
21088
+
20660
21089
  enum rootDomains {
20661
21090
  none: 0,
20662
21091
  all: 1,
@@ -20701,6 +21130,19 @@ namespace reference.`microsoft.graph` {
20701
21130
  moderate: 2,
20702
21131
  }
20703
21132
 
21133
+ enum scheduleRequestActions {
21134
+ adminAssign: 1,
21135
+ adminUpdate: 2,
21136
+ adminRemove: 3,
21137
+ selfActivate: 4,
21138
+ selfDeactivate: 5,
21139
+ adminExtend: 6,
21140
+ adminRenew: 7,
21141
+ selfExtend: 8,
21142
+ selfRenew: 9,
21143
+ unknownFutureValue: 10,
21144
+ }
21145
+
20704
21146
  enum scopeCollectionKind {
20705
21147
  allAllowed: 0,
20706
21148
  enumerated: 1,
@@ -21141,6 +21583,31 @@ namespace reference.`microsoft.graph` {
21141
21583
  NPSExtension: 5,
21142
21584
  }
21143
21585
 
21586
+ enum unifiedRoleManagementPolicyRuleTargetOperations {
21587
+ all: 0,
21588
+ activate: 1,
21589
+ deactivate: 2,
21590
+ assign: 3,
21591
+ update: 4,
21592
+ remove: 5,
21593
+ extend: 6,
21594
+ renew: 7,
21595
+ unknownFutureValue: 8,
21596
+ }
21597
+
21598
+ enum unifiedRoleScheduleRequestActions {
21599
+ adminAssign: 1,
21600
+ adminUpdate: 2,
21601
+ adminRemove: 3,
21602
+ selfActivate: 4,
21603
+ selfDeactivate: 5,
21604
+ adminExtend: 6,
21605
+ adminRenew: 7,
21606
+ selfExtend: 8,
21607
+ selfRenew: 9,
21608
+ unknownFutureValue: 10,
21609
+ }
21610
+
21144
21611
  enum userAction {
21145
21612
  registerSecurityInformation: 0,
21146
21613
  registerOrJoinDevices: 1,