@microsoft/typespec-msgraph-reference 1.0.9 → 1.0.10

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.
@@ -14921,6 +14921,7 @@ namespace reference.`microsoft.graph` {
14921
14921
  joinMeetingIdSettings: joinMeetingIdSettings | null;
14922
14922
  joinWebUrl: string | null;
14923
14923
  lobbyBypassSettings: lobbyBypassSettings | null;
14924
+ meetingType: onlineMeetingType | null;
14924
14925
  recordAutomatically: boolean | null;
14925
14926
  shareMeetingChatHistoryDefault: meetingChatHistoryDefaultMode | null;
14926
14927
  subject: string | null;
@@ -25208,6 +25209,15 @@ namespace reference.`microsoft.graph` {
25208
25209
  coorganizer: 4,
25209
25210
  }
25210
25211
 
25212
+ enum onlineMeetingType {
25213
+ adhoc: 0,
25214
+ scheduled: 1,
25215
+ recurring: 2,
25216
+ broadcast: 3,
25217
+ meetnow: 4,
25218
+ unknownFutureValue: 5,
25219
+ }
25220
+
25211
25221
  @graphFlags
25212
25222
  enum onlineMeetingVideoDisabledReason {
25213
25223
  watermarkProtection: 1,
@@ -457,8 +457,26 @@ namespace reference.`microsoft.graph` {
457
457
  synchronizationPreventionType: onPremisesDirectorySynchronizationDeletionPreventionType | null;
458
458
  }
459
459
 
460
+ @complex model onPremisesCurrentExportData {
461
+ clientMachineName: string | null;
462
+ pendingObjectsAddition: int32 | null;
463
+ pendingObjectsDeletion: int32 | null;
464
+ pendingObjectsUpdate: int32 | null;
465
+ serviceAccount: string | null;
466
+ successfulLinksProvisioningCount: int64 | null;
467
+ successfulObjectsProvisioningCount: int32 | null;
468
+ totalConnectorSpaceObjects: int32 | null;
469
+ }
470
+
460
471
  @complex model onPremisesDirectorySynchronizationConfiguration {
461
472
  accidentalDeletionPrevention: onPremisesAccidentalDeletionPrevention | null;
473
+ anchorAttribute: string | null;
474
+ applicationId: string | null;
475
+ currentExportData: onPremisesCurrentExportData | null;
476
+ customerRequestedSynchronizationInterval: duration | null;
477
+ synchronizationClientVersion: string | null;
478
+ synchronizationInterval: duration | null;
479
+ writebackConfiguration: onPremisesWritebackConfiguration | null;
462
480
  }
463
481
 
464
482
  @complex model onPremisesDirectorySynchronizationFeature {
@@ -509,6 +527,11 @@ namespace reference.`microsoft.graph` {
509
527
  value: string | null;
510
528
  }
511
529
 
530
+ @complex model onPremisesWritebackConfiguration {
531
+ unifiedGroupContainer: string | null;
532
+ userContainer: string | null;
533
+ }
534
+
512
535
  @complex model optionalClaim {
513
536
  additionalProperties: string[] | null;
514
537
  essential: boolean;
@@ -865,6 +888,9 @@ namespace reference.`microsoft.graph` {
865
888
  @entity model agentIdentity extends servicePrincipal {
866
889
  agentIdentityBlueprintId: string;
867
890
  @computed createdDateTime: offsetDateTime | null;
891
+ managerApplications: guid;
892
+ @references inheritedAppRoleAssignments: appRoleAssignment[];
893
+ @references inheritedOauth2PermissionGrants: oAuth2PermissionGrant[];
868
894
  @references sponsors: directoryObject[];
869
895
  }
870
896
 
@@ -877,6 +903,7 @@ namespace reference.`microsoft.graph` {
877
903
 
878
904
  @open
879
905
  @entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
906
+ managerApplications: guid;
880
907
  @references sponsors: directoryObject[];
881
908
  }
882
909