@microsoft/typespec-msgraph-reference 1.0.2 → 1.0.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.
@@ -43,6 +43,8 @@ scalar binary; //TODO: Enables support for Edm.Binary
43
43
  // Metadata item DeprecatedDefinition_Reporting was already defined with a different value.
44
44
  @deprecatedDefinition("PrivacyDeprecate", "<ChangeLogCategory>", "2022-03-22", "2025-03-20", "The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security.")
45
45
  // Metadata item DeprecatedDefinition_PrivacyDeprecate was already defined with a different value.
46
+ @deprecatedDefinition("SynchronizationSecret_Deprecation", "<ChangeLogCategory>", "2026-02-06", "2027-07-06", "Use connectivityParameters for oauth flows and scim endpoint connectivity. Use SynchronizationJobSettings for job-specific settings This property will be removed.")
47
+ // Metadata item DeprecatedDefinition_SynchronizationSecret_Deprecation was already defined with a different value.
46
48
  @deprecatedDefinition("Shifts-TimeCardRevision", "<ChangeLogCategory>", "2024-11-20", "2027-11-20", "")
47
49
  @deprecatedDefinition("AccessReviewReportBreakingChanges", "<ChangeLogCategory>", "2021-07-30", "2022-01-30", "This property is being deprecated. Use the fulfilledDateTime value in the individual report instance instead")
48
50
  // Metadata item DeprecatedDefinition_AccessReviewReportBreakingChanges was already defined with a different value.
@@ -1049,38 +1051,6 @@ namespace reference.`microsoft.graph` {
1049
1051
  selections: keyValuePair[] | null;
1050
1052
  }
1051
1053
 
1052
- /**
1053
- * Describes deployment security group to assign a deployment to. The backend will expand the security Group ID to extract device serial numbers prior sending a create deployment request to Zebra.
1054
- */
1055
- @complex model androidFotaDeploymentAssignment {
1056
- /**
1057
- * The Azure Active Directory (Azure AD) we are deploying firmware updates to (e.g.: d93c8f48-bd42-4514-ba40-bc6b84780930). NOTE: Use this property moving forward because the existing property, target, is deprecated.
1058
- */
1059
- assignmentTarget: deviceAndAppManagementAssignmentTarget | null;
1060
- /**
1061
- * The display name of the Azure AD security group used for the assignment.
1062
- */
1063
- displayName: string;
1064
- /**
1065
- * A unique identifier assigned to each Android FOTA Assignment entity
1066
- */
1067
- id: string | null;
1068
- /**
1069
- * NOTE: This entity is deprecated; use assignmentTarget. The Azure Active Directory (Azure AD) we are deploying firmware updates to (e.g.: d93c8f48-bd42-4514-ba40-bc6b84780930).
1070
- */
1071
- target: androidFotaDeploymentAssignmentTarget | null;
1072
- }
1073
-
1074
- /**
1075
- * The AAD Group we are deploying firmware updates to
1076
- */
1077
- @complex model androidFotaDeploymentAssignmentTarget extends deviceAndAppManagementAssignmentTarget {
1078
- /**
1079
- * AAD Group Id.
1080
- */
1081
- groupId: string;
1082
- }
1083
-
1084
1054
  /**
1085
1055
  * Contains properties used to assign an Android Managed Store mobile app to a group.
1086
1056
  */
@@ -4436,6 +4406,10 @@ namespace reference.`microsoft.graph` {
4436
4406
  connectionId: string;
4437
4407
  }
4438
4408
 
4409
+ @complex model connectivityParameterEntry {
4410
+ value: string | null;
4411
+ }
4412
+
4439
4413
  /**
4440
4414
  * Represent connector status
4441
4415
  */
@@ -8130,6 +8104,12 @@ Each data source key can include a filter expression to narrow results and a lis
8130
8104
  name: string | null;
8131
8105
  }
8132
8106
 
8107
+ @complex model emailDetails {
8108
+ body: string;
8109
+ senderEmailAddress: string;
8110
+ subject: string;
8111
+ }
8112
+
8133
8113
  @open
8134
8114
  @complex model emailIdentity extends identity {
8135
8115
  email: string | null;
@@ -8583,7 +8563,6 @@ Each data source key can include a filter expression to narrow results and a lis
8583
8563
  @complex model externalTokenBasedSapIagConnectionInfo extends connectionInfo {
8584
8564
  accessTokenUrl: string | null;
8585
8565
  clientId: string | null;
8586
- domain: string | null;
8587
8566
  keyVaultName: string | null;
8588
8567
  resourceGroup: string | null;
8589
8568
  secretName: string | null;
@@ -8803,129 +8782,6 @@ Each data source key can include a filter expression to narrow results and a lis
8803
8782
  targetChatId: string | null;
8804
8783
  }
8805
8784
 
8806
- /**
8807
- * The settings for a FOTA deployment. Is an abstract type.
8808
- */
8809
- @abstract
8810
- @complex model fotaDeploymentSetting {
8811
- /**
8812
- * The minimum battery level percentage allowed for installation. Must range between 0%-100%. Default is 0%. For Samsung, the value must range between 20%-80%, and the default is 20%. Returned by default.
8813
- */
8814
- batteryRuleMinimumBatteryLevelPercentage: int32 | null;
8815
- /**
8816
- * When 'True', indicates that the devices are required to be charging during installation. When 'false', indicates that the devices are not required to be charging during installation. Default is 'false'. Returned by default.
8817
- */
8818
- batteryRulePowerAdaptorRequired: boolean | null;
8819
- /**
8820
- * The end time of day during which firmware can install. Default is 11:59:59 PM or '23:59:59'. For Samsung, the default is 5 AM which is '05:00:00' and the window needs to be at least 3 hours. Returned by default.
8821
- */
8822
- installRuleWindowEndTime: offsetDateTime | null;
8823
- /**
8824
- * The start time of day during which firmware can install. Default is 12 AM which is '00:00:00'. For Samsung, the default is 2 AM which is '02:00:00'.
8825
- */
8826
- installRuleWindowStartTime: offsetDateTime | null;
8827
- /**
8828
- * The network type required on the device for the update. Possible values are 'any', 'wifi', and 'cellular'. Default is 'any'. See 'graph.fotaNetworkType' enum for possible values. Returned by default.
8829
- */
8830
- networkType: fotaNetworkType;
8831
- /**
8832
- * The time offset (time zone) when the update is deployed and installed on the devices (e.g.'180' represents an offset of '+03:00', and '-270' represents an offset of '-04:30'). Default is 0. Returned by default.
8833
- */
8834
- timeZoneOffsetInMinutes: int32 | null;
8835
- }
8836
-
8837
- /**
8838
- * Describes the status of a FOTA deployment. The status is a high level status of the deployment as opposed to being a detailed status per device with information about the deployment state like request to the OEM is pending, the error code if the deployment failed to create, and device counts for different stages of the deployment.
8839
- */
8840
- @complex model fotaDeploymentStatus {
8841
- /**
8842
- * Indicates the number of devices where firmware update was cancelled. Default is 0. Returned by default.
8843
- */
8844
- cancelledDeviceCount: int32;
8845
- /**
8846
- * 'True' indicates that a cancellation was requested on the deployment. Otherwise 'false'. A cancellation request does not guarantee that the deployment was cancelled. Default is 'false'. Returned by default.
8847
- */
8848
- cancelRequested: boolean;
8849
- /**
8850
- * Indicates the number of devices where firmware update was completed. Default is 0. Returned by default
8851
- */
8852
- completedDeviceCount: int32;
8853
- /**
8854
- * The date and time when this deployment ended. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. If the state is cancelled, this property holds the cancellation date/time. If the the state is completed, this property holds the completion date/time. For example, midnight UTC on Jan 1, 2024 would look like this: '2024-01-01T00:00:00Z'. Default value: null.
8855
- */
8856
- deploymentEndDateTime: offsetDateTime | null;
8857
- /**
8858
- * FOTA deployment state. Possible values are 'pending', 'failed', 'created', 'inProgress', 'completed', 'pendingCancel', and 'cancelled'. Default is 'pending'. See 'graph.fotaDeploymentState' enum for details. The deployment state is determined by looking at the status of all the devices in the deployment. If any device is in the created state, the overall deployment state becomes created. If any device is in progress, the overall deployment state becomes in progress. Once all the devices are completed, the overall deployment state becomes completed. If the IT Admin requests cancellation, the deployment state becomes pending cancel and then cancelled. Returned by default.
8859
- */
8860
- deploymentState: fotaDeploymentState;
8861
- /**
8862
- * An error code indicating the failure reason, when the deployment failed to create or complete. Possible values are 'noDevicesFoundInSelectedEntraGroups', 'noIntuneDevicesFoundInSelectedEntraGroups', 'noFotaEnrolledDevicesFoundForCurrentTenant', 'noFotaEnrolledDevicesFoundInSelectedEntraGroups', 'noFotaDevicesFoundForSelectedDeviceModel', and 'fotaCreateDeploymentRequestFailure'. Default is 'noDevicesFoundInSelectedEntraGroups'. See 'graph.fotaDeploymentErrorCode' enum for possible values. Returned by default.
8863
- */
8864
- errorCode: fotaDeploymentErrorCode;
8865
- /**
8866
- * Indicates the number of devices where firmware update failed. Default is 0. Returned by default.
8867
- */
8868
- failedDeviceCount: int32;
8869
- /**
8870
- * Indicates the number of devices where firmware update is in progress. Default is 0. Returned by default.
8871
- */
8872
- inProgressDeviceCount: int32;
8873
- /**
8874
- * Date and time when the deployment status was updated from the OEM's cloud services. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2024 would look like this: '2024-01-01T00:00:00Z'. Default value: null.
8875
- */
8876
- @computed lastModifiedDateTime: offsetDateTime | null;
8877
- /**
8878
- * Indicates the number of devices where the deployment was not applicable. Default is 0. Returned by default.
8879
- */
8880
- notApplicableDeviceCount: int32;
8881
- /**
8882
- * Indicates the total number of devices in the FOTA deployment. Default is 0. Returned by default.
8883
- */
8884
- totalDeviceCount: int32;
8885
- /**
8886
- * Indicates the number of devices where no deployment status or end state was received from the OEM's cloud services. Default is 0. Returned by default.
8887
- */
8888
- unknownDeviceCount: int32;
8889
- }
8890
-
8891
- /**
8892
- * High level status of a tenant's FOTA registered devices with information about the registration state like request is pending, the error code if registration failed, and device counts for different stages of registration.
8893
- */
8894
- @complex model fotaDeviceRegistrationStatus {
8895
- /**
8896
- * Indicates the number of devices where FOTA registration completed. Default is 0. Returned by default.
8897
- */
8898
- completedDeviceCount: int32;
8899
- /**
8900
- * An error code indicating the failure reason, when a device failed to register for the OEM's FOTA functionality. Possible values are 'noDevicesFoundInSelectedEntraGroups', 'noIntuneDevicesFoundInSelectedEntraGroups', and 'fotaRegistrationRequestFailure'. Default is 'noDevicesFoundInSelectedEntraGroups'. See 'graph.fotaRegistrationErrorCode' enum for possible values. Returned by default.
8901
- */
8902
- errorCode: fotaRegistrationErrorCode;
8903
- /**
8904
- * Indicates the number of devices where FOTA registration failed. Default is 0. Returned by default.
8905
- */
8906
- failedDeviceCount: int32;
8907
- /**
8908
- * Indicates the number of devices where FOTA registration is in progress. Default is 0. Returned by default.
8909
- */
8910
- inProgressDeviceCount: int32;
8911
- /**
8912
- * Indicates the number of devices where FOTA registration is not applicable. Default is 0. Returned by default.
8913
- */
8914
- notApplicableDeviceCount: int32;
8915
- /**
8916
- * FOTA registration state. Possible values are 'pending', 'failed', 'requested', 'inProgress', and 'completed'. Default is 'pending'. See 'graph.fotaRegistrationState' enum for details. The registration state is determined by looking at the status of all devices targeted for registration. If any device has not yet started registration, the overall registration state becomes registration requested. If any device is still in progress, the overall deployment state becomes in progress. Once all the devices are completed, the overall registration state becomes completed. Returned by default.
8917
- */
8918
- registrationState: fotaRegistrationState;
8919
- /**
8920
- * Indicates the total number of devices targeted for FOTA registration. Default is 0. Returned by default.
8921
- */
8922
- totalDeviceCount: int32;
8923
- /**
8924
- * Indicates the number of devices where FOTA registration status is unknown. Default is 0. Returned by default.
8925
- */
8926
- unknownDeviceCount: int32;
8927
- }
8928
-
8929
8785
  @abstract
8930
8786
  @complex model fraudProtectionConfiguration {
8931
8787
  }
@@ -12694,6 +12550,16 @@ Each data source key can include a filter expression to narrow results and a lis
12694
12550
  value: string | null;
12695
12551
  }
12696
12552
 
12553
+ @complex model offboardingDetails {
12554
+ cancelledCount: int32;
12555
+ failedCount: int32;
12556
+ offboardedCount: int32;
12557
+ offboardEndDateTime: offsetDateTime | null;
12558
+ offboardingStatus: string | null;
12559
+ offboardStartDateTime: offsetDateTime | null;
12560
+ totalRequestedCount: int32;
12561
+ }
12562
+
12697
12563
  @complex model oidcAddressInboundClaims {
12698
12564
  country: string | null;
12699
12565
  locality: string | null;
@@ -13061,6 +12927,7 @@ Each data source key can include a filter expression to narrow results and a lis
13061
12927
  onPremisesApplicationSegments: onPremisesApplicationSegment[] | null;
13062
12928
  segmentsConfiguration: segmentConfiguration | null;
13063
12929
  singleSignOnSettings: onPremisesPublishingSingleSignOn | null;
12930
+ trafficRoutingMethod: trafficRoutingMethod;
13064
12931
  useAlternateUrlForTranslationAndRedirect: boolean | null;
13065
12932
  verifiedCustomDomainCertificatesMetadata: verifiedCustomDomainCertificatesMetadata | null;
13066
12933
  verifiedCustomDomainKeyCredential: keyCredential | null;
@@ -13879,6 +13746,22 @@ Each data source key can include a filter expression to narrow results and a lis
13879
13746
  accessLevel: plannerPlanAccessLevel;
13880
13747
  }
13881
13748
 
13749
+ @complex model plannerTaskChatMention {
13750
+ mentioned: string | null;
13751
+ mentionType: plannerTaskChatMentionType;
13752
+ position: int32;
13753
+ }
13754
+
13755
+ @complex model plannerTaskChatReaction {
13756
+ reactionEvents: plannerTaskChatReactionEvent[];
13757
+ reactionType: string | null;
13758
+ }
13759
+
13760
+ @complex model plannerTaskChatReactionEvent {
13761
+ createdBy: identitySet | null;
13762
+ @computed createdDateTime: offsetDateTime;
13763
+ }
13764
+
13882
13765
  @complex model plannerTaskCompletionRequirementDetails {
13883
13766
  approvalRequirement: plannerApprovalRequirement | null;
13884
13767
  checklistRequirement: plannerChecklistRequirement | null;
@@ -14556,6 +14439,15 @@ Each data source key can include a filter expression to narrow results and a lis
14556
14439
  total: int32 | null;
14557
14440
  }
14558
14441
 
14442
+ @complex model protectionUnitDetails {
14443
+ addedCount: int32;
14444
+ backupConfigurationType: string | null;
14445
+ failedCount: int32;
14446
+ removedCount: int32;
14447
+ requestedToAddCount: int32;
14448
+ requestedToRemoveCount: int32;
14449
+ }
14450
+
14559
14451
  @complex model protectOnlineMeetingAction extends labelActionBase {
14560
14452
  allowedForwarders: onlineMeetingForwarders | null;
14561
14453
  allowedPresenters: onlineMeetingPresenters | null;
@@ -15195,6 +15087,12 @@ Each data source key can include a filter expression to narrow results and a lis
15195
15087
  @complex model restoreAction {
15196
15088
  }
15197
15089
 
15090
+ @complex model restoreArtifactDetails {
15091
+ failedCount: int32;
15092
+ restoredCount: int32;
15093
+ totalArtifactsCount: int32;
15094
+ }
15095
+
15198
15096
  @complex model restorePointSearchResponse {
15199
15097
  noResultProtectionUnitIds: string[] | null;
15200
15098
  searchResponseId: string | null;
@@ -15515,41 +15413,67 @@ Each data source key can include a filter expression to narrow results and a lis
15515
15413
  }
15516
15414
 
15517
15415
  /**
15518
- * The settings for a Samsung Knox E-FOTA campaign (deployment). Inherits from 'graph.fotaDeploymentSetting'.
15416
+ * The firmware version from Samsung for a specific device model, sales code, and CSC (Consumer Software Customization). Used to create Samsung E-FOTA deployments.
15519
15417
  */
15520
- @complex model samsungEFotaDeploymentSetting extends fotaDeploymentSetting {
15418
+ @complex model samsungEFotaFirmwareVersion {
15521
15419
  /**
15522
- * Determines how long in minutes the end user is warned before the firmware auto installs. The value must range between 5-360 minutes. Default is 5 minutes. Returned by default.
15420
+ * The Android Processor version name. This property is populated by Samsung. Eg. 'G960U1UES9FVD1'. Default value: null. Read-only.
15523
15421
  */
15524
- autoFirmwareInstallationReminderMessageDurationInMinutes: int32;
15422
+ androidProcessorVersionName: string | null;
15525
15423
  /**
15526
- * Campaign (deployment) end date and time. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Returned by default.
15424
+ * The Consumer Software Customization which is a specific code associated with the region or carrier customization of a Samsung device. This property is populated by Samsung. Eg. 'OYM'. Read-only. Returned by default.
15527
15425
  */
15528
- campaignEndDateTime: offsetDateTime;
15426
+ consumerSoftwareCustomizationCode: string;
15529
15427
  /**
15530
- * Campaign (deployment) installation schedule mode. Default is StartAndEndDateSchedule.
15428
+ * The firmware description. This property is populated by Samsung. Default value: null. Read-only.
15531
15429
  */
15532
- campaignScheduleMode: samsungEFotaScheduleMode;
15430
+ description: string | null;
15533
15431
  /**
15534
- * Campaign (deployment) start date and time. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Returned by default.
15432
+ * Samsung device model. This property is populated by Samsung. Eg. 'SM-960F'. Read-only. Returned by default.
15535
15433
  */
15536
- campaignStartDateTime: offsetDateTime;
15434
+ deviceModelName: string;
15537
15435
  /**
15538
- * The time offset (time zone) when the campaign is deployed (e.g.'180' represents an offset of '+03:00', and '-270' represents an offset of '-04:30'). Default is 0. Returned by default.
15436
+ * The firmware version. This property is populated by Samsung Eg. 'T575XXU4EAAA/T575OXM4EAAA/T575XXU4EAAA'. Default value: null. Read-only.
15539
15437
  */
15540
- campaignTimeZoneOffsetInMinutes: int32 | null;
15438
+ firmwareVersion: string | null;
15541
15439
  /**
15542
- * The time of day for a firmware download. Possible values are 'any' (default) and 'matchFirmwareInstallPeriod'. See 'graph.fotaDownloadPeriodType' enum for details. Returned by default.
15440
+ * Firmware ID from Samsung. This property is populated by Samsung. Eg. 'FW2022033111797487'. Read-only. Returned by default.
15543
15441
  */
15544
- downloadPeriod: fotaDownloadPeriodType | null;
15442
+ id: string | null;
15545
15443
  /**
15546
- * Determines how long in hours before the end user is reminded to install the firmware after postponing. The value must range between 1-24 hrs. Default is 1hr. Returned by default.
15444
+ * The OS version name. This property is populated by Samsung. Eg. 'Pie(Android 9)'. Default value: null. Read-only.
15547
15445
  */
15548
- postponedInstallationReminderMessageDuration: int32;
15446
+ osVersionName: string | null;
15549
15447
  /**
15550
- * Number of times the end user is allowed to postpone firmware installation. Default is 0. The value must range between 0-3. Returned by default.
15448
+ * Firmware release date. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. This property is populated by Samsung. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Default value: null. Read-only.
15449
+ */
15450
+ releaseDateTime: offsetDateTime;
15451
+ /**
15452
+ * The firmware request type. This property is populated by Samsung Eg. 'NORMAL'. Default value: null. Read-only.
15453
+ */
15454
+ requestFirmwareTypeName: string | null;
15455
+ /**
15456
+ * Sales code of a Samsung device that corresponds to its georgraphic area or carrier network. This property is populated by Samsung. Eg. 'TMB'. Read-only. Returned by default.
15551
15457
  */
15552
- postponeInstallation: int32;
15458
+ salesCode: string;
15459
+ /**
15460
+ * The firmware security patch. This property is populated by Samsung Eg. '2023-09-07 07:50:57'. Default value: null. Read-only.
15461
+ */
15462
+ securityPatchVersion: string | null;
15463
+ }
15464
+
15465
+ /**
15466
+ * The targeted firmware version for an E-FOTA deployment. Used while creating E-FOTA deployments.
15467
+ */
15468
+ @complex model samsungEFotaFirmwareVersionTarget {
15469
+ /**
15470
+ * Describes the firmware version for a specific device model, sales code, and CSC. See 'graph.samsungEFotaFirmwareVersion' entity for details. Returned by default.
15471
+ */
15472
+ firmwareVersion: samsungEFotaFirmwareVersion;
15473
+ /**
15474
+ * A unique identifier assigned to each Samsung Knox E-FOTA firmware version target entity. Returned by default.
15475
+ */
15476
+ id: string | null;
15553
15477
  }
15554
15478
 
15555
15479
  @complex model scheduleEntity {
@@ -16038,6 +15962,26 @@ This model is shared with the CCS retrieval API and search where it is already u
16038
15962
  removeAccountsBelowDiskFreePercentage: int32 | null;
16039
15963
  }
16040
15964
 
15965
+ @complex model sharePointApiUsageDataPoint {
15966
+ activeApps: int32 | null;
15967
+ appId: string | null;
15968
+ serviceArea: string | null;
15969
+ tenantId: string | null;
15970
+ usageDateTime: offsetDateTime | null;
15971
+ usageMB: int64 | null;
15972
+ usageRequests: int64 | null;
15973
+ }
15974
+
15975
+ @complex model sharePointApiUsageReport {
15976
+ dataPoints: sharePointApiUsageDataPoint[];
15977
+ }
15978
+
15979
+ @open
15980
+ @complex model sharePointGroupIdentity extends identity {
15981
+ principalId: string | null;
15982
+ title: string | null;
15983
+ }
15984
+
16041
15985
  @complex model sharePointGroupMigrationTaskParameters extends sharePointMigrationTaskParameters {
16042
15986
  sourceGroupIdentity: groupIdentity | null;
16043
15987
  targetGroupIdentity: groupIdentity | null;
@@ -16059,6 +16003,7 @@ This model is shared with the CCS retrieval API and search where it is already u
16059
16003
  @open
16060
16004
  @complex model sharePointIdentitySet extends identitySet {
16061
16005
  group: identity | null;
16006
+ sharePointGroup: sharePointGroupIdentity | null;
16062
16007
  siteGroup: sharePointIdentity | null;
16063
16008
  siteUser: sharePointIdentity | null;
16064
16009
  }
@@ -16618,6 +16563,7 @@ This model is shared with the CCS retrieval API and search where it is already u
16618
16563
  state: synchronizationScheduleState;
16619
16564
  }
16620
16565
 
16566
+ @graphDeprecated("SynchronizationSecret_Deprecation")
16621
16567
  @complex model synchronizationSecretKeyStringValuePair {
16622
16568
  key: synchronizationSecret;
16623
16569
  value: string | null;
@@ -16672,6 +16618,11 @@ This model is shared with the CCS retrieval API and search where it is already u
16672
16618
  @complex model targetAgentIdentitySponsorsOrOwners extends userSet {
16673
16619
  }
16674
16620
 
16621
+ @complex model targetOwners {
16622
+ notifyMembers: notifyMembers;
16623
+ securityGroups: string[];
16624
+ }
16625
+
16675
16626
  @complex model targetPolicyEndpoints {
16676
16627
  platformTypes: string[] | null;
16677
16628
  }
@@ -21089,6 +21040,17 @@ This model is shared with the CCS retrieval API and search where it is already u
21089
21040
  @references activity: userActivity;
21090
21041
  }
21091
21042
 
21043
+ @abstract
21044
+ @entity model activityLogBase extends entity {
21045
+ activityType: activityLogOperationType;
21046
+ error: publicError | null;
21047
+ eventDateTime: offsetDateTime;
21048
+ performedBy: string | null;
21049
+ resultStatus: activityLogResultStatus;
21050
+ serviceType: serviceType;
21051
+ severity: activityLogSeverity;
21052
+ }
21053
+
21092
21054
  @abstract
21093
21055
  @entity model activityStatistics extends entity {
21094
21056
  activity: analyticsActivityType | null;
@@ -22159,6 +22121,10 @@ This model is shared with the CCS retrieval API and search where it is already u
22159
22121
  * Indicates whether or not google accounts will be blocked.
22160
22122
  */
22161
22123
  googleAccountsBlocked: boolean | null;
22124
+ /**
22125
+ * Exit code to allow a user to escape from Kiosk Mode when the device is in Kiosk Mode.
22126
+ */
22127
+ isKioskModeExitCodeSet: boolean;
22162
22128
  /**
22163
22129
  * Indicates whether a user can access the device's Settings app while in Kiosk Mode.
22164
22130
  */
@@ -23549,6 +23515,10 @@ This model is shared with the CCS retrieval API and search where it is already u
23549
23515
  * Setting to specify whether to allow ConnectedApps experience for this app.
23550
23516
  */
23551
23517
  connectedAppsEnabled: boolean;
23518
+ /**
23519
+ * Indicates whether the app is allowed to act as a credential provider. Applies to Android 14 and above. The default value is 'notConfigured'. Possible values are: 'notConfigured' and 'allowed'. When set to 'notConfigured', the Android OS will determine whether the app is allowed to act as a credential provider or not.
23520
+ */
23521
+ credentialProviderRoleState: androidAppCredentialProviderRoleState;
23552
23522
  /**
23553
23523
  * Android For Work app configuration package id.
23554
23524
  */
@@ -24335,6 +24305,10 @@ This model is shared with the CCS retrieval API and search where it is already u
24335
24305
  * Setting to specify whether to allow ConnectedApps experience for this app.
24336
24306
  */
24337
24307
  connectedAppsEnabled: boolean;
24308
+ /**
24309
+ * Indicates whether the app is allowed to act as a credential provider. Applies to Android 14 and above. The default value is 'notConfigured'. Possible values are: 'notConfigured' and 'allowed'. When set to 'notConfigured', the Android OS will determine whether the app is allowed to act as a credential provider or not.
24310
+ */
24311
+ credentialProviderRoleState: androidAppCredentialProviderRoleState;
24338
24312
  /**
24339
24313
  * Android Enterprise app configuration package id.
24340
24314
  */
@@ -25840,6 +25814,7 @@ This model is shared with the CCS retrieval API and search where it is already u
25840
25814
  isFallbackPublicClient: boolean | null;
25841
25815
  keyCredentials: keyCredential[];
25842
25816
  logo: stream;
25817
+ managerApplications: guid;
25843
25818
  nativeAuthenticationApisEnabled: nativeAuthenticationApisEnabled | null;
25844
25819
  notes: string | null;
25845
25820
  onPremisesPublishing: onPremisesPublishing | null;
@@ -25901,6 +25876,7 @@ This model is shared with the CCS retrieval API and search where it is already u
25901
25876
  endpoints: string[] | null;
25902
25877
  homePageUrl: string | null;
25903
25878
  informationalUrls: informationalUrls | null;
25879
+ isEntraIntegrated: boolean;
25904
25880
  @computed lastModifiedDateTime: offsetDateTime | null;
25905
25881
  logoUrl: string | null;
25906
25882
  publisher: string | null;
@@ -26670,12 +26646,22 @@ This model is shared with the CCS retrieval API and search where it is already u
26670
26646
  @references userFlowIdentityProviders: identityProviderBase[];
26671
26647
  }
26672
26648
 
26649
+ @entity model backupPolicyActivityLog extends activityLogBase {
26650
+ oldPolicyName: string | null;
26651
+ policyId: string | null;
26652
+ policyName: string | null;
26653
+ policyStatus: protectionPolicyStatus;
26654
+ protectionUnitDetails: protectionUnitDetails | null;
26655
+ retentionPeriod: string | null;
26656
+ }
26657
+
26673
26658
  @abstract
26674
26659
  @entity model backupReport extends entity {
26675
26660
  }
26676
26661
 
26677
26662
  @entity model backupRestoreRoot extends entity {
26678
26663
  serviceStatus: serviceStatus | null;
26664
+ @contains activityLogs: activityLogBase[];
26679
26665
  @contains allDrivesBackup: allDrivesBackup | null;
26680
26666
  @contains allMailboxesBackup: allMailboxesBackup | null;
26681
26667
  @contains allSitesBackup: allSitesBackup | null;
@@ -27481,6 +27467,7 @@ This model is shared with the CCS retrieval API and search where it is already u
27481
27467
  @contains permissionGrants: resourceSpecificPermissionGrant[];
27482
27468
  @contains pinnedMessages: pinnedChatMessageInfo[];
27483
27469
  @contains tabs: teamsTab[];
27470
+ @contains targetedMessages: targetedChatMessage[];
27484
27471
  }
27485
27472
 
27486
27473
  @entity model chatActivityStatistics extends activityStatistics {
@@ -28964,16 +28951,22 @@ typically alternating request/response, implicitly forming a turn.Represents a c
28964
28951
  }
28965
28952
 
28966
28953
  @entity model copilotPackage extends entity {
28954
+ appId: string | null;
28955
+ assetId: string | null;
28967
28956
  availableTo: packageStatus;
28968
28957
  deployedTo: packageStatus;
28969
28958
  displayName: string | null;
28970
28959
  elementTypes: string[];
28971
28960
  isBlocked: boolean;
28972
28961
  @computed lastModifiedDateTime: offsetDateTime | null;
28962
+ manifestId: string | null;
28963
+ manifestVersion: string | null;
28964
+ platform: string | null;
28973
28965
  publisher: string | null;
28974
28966
  shortDescription: string | null;
28975
28967
  supportedHosts: string[];
28976
28968
  type: packageType;
28969
+ version: string | null;
28977
28970
  zipFile: stream | null;
28978
28971
  }
28979
28972
 
@@ -28983,9 +28976,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
28983
28976
  categories: string[];
28984
28977
  elementDetails: packageElementDetail[];
28985
28978
  longDescription: string | null;
28986
- manifestVersion: string | null;
28987
28979
  sensitivity: string | null;
28988
- version: string | null;
28989
28980
  }
28990
28981
 
28991
28982
  @entity model copilotPeopleAdminSetting extends entity {
@@ -29080,6 +29071,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
29080
29071
  b2bCollaborationOutbound: crossTenantAccessPolicyB2BSetting | null;
29081
29072
  b2bDirectConnectInbound: crossTenantAccessPolicyB2BSetting | null;
29082
29073
  b2bDirectConnectOutbound: crossTenantAccessPolicyB2BSetting | null;
29074
+ blockServiceProviderOutboundAccess: boolean | null;
29083
29075
  inboundTrust: crossTenantAccessPolicyInboundTrust | null;
29084
29076
  invitationRedemptionIdentityProviderConfiguration: defaultInvitationRedemptionIdentityProviderConfiguration | null;
29085
29077
  isServiceDefault: boolean | null;
@@ -29092,6 +29084,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
29092
29084
  b2bCollaborationOutbound: crossTenantAccessPolicyB2BSetting | null;
29093
29085
  b2bDirectConnectInbound: crossTenantAccessPolicyB2BSetting | null;
29094
29086
  b2bDirectConnectOutbound: crossTenantAccessPolicyB2BSetting | null;
29087
+ blockServiceProviderOutboundAccess: boolean | null;
29095
29088
  inboundTrust: crossTenantAccessPolicyInboundTrust | null;
29096
29089
  isInMultiTenantOrganization: boolean | null;
29097
29090
  isServiceProvider: boolean | null;
@@ -32245,6 +32238,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
32245
32238
  * Maximum number of dep tokens allowed per-tenant.
32246
32239
  */
32247
32240
  maximumDepTokens: int32;
32241
+ /**
32242
+ * The collection of Samsung EFOTA firmware versions.
32243
+ */
32244
+ samsungEFotaFirmwareVersions: samsungEFotaFirmwareVersion[] | null;
32248
32245
  /**
32249
32246
  * Account level settings.
32250
32247
  */
@@ -32509,18 +32506,6 @@ typically alternating request/response, implicitly forming a turn.Represents a c
32509
32506
  * The policy which controls mobile device access to Exchange On Premises
32510
32507
  */
32511
32508
  @contains exchangeOnPremisesPolicy: deviceManagementExchangeOnPremisesPolicy | null;
32512
- /**
32513
- * The FOTA connector entity that represents the tenant's authorization status for Intune and an OEM. Is an abstract type. To get all connectors, use the Get operation. To get a specific OEM connector, use the oem query parameter to specify the OEM type. To create an OEM connector, refer to the derived connector entity like graph.samsungEFotaConnector.
32514
- */
32515
- @contains fotaConnector: fotaConnector | null;
32516
- /**
32517
- * The collection of FOTA connector entity that represents the tenant's authorization status for Intune
32518
- */
32519
- @contains fotaConnectors: fotaConnector[];
32520
- /**
32521
- * The collection of FOTA deployment for an OEM.
32522
- */
32523
- @contains fotaDeployments: fotaDeployment[];
32524
32509
  /**
32525
32510
  * The available group policy categories for this account.
32526
32511
  */
@@ -32691,14 +32676,6 @@ typically alternating request/response, implicitly forming a turn.Represents a c
32691
32676
  * The Role Scope Tags.
32692
32677
  */
32693
32678
  @contains roleScopeTags: roleScopeTag[];
32694
- /**
32695
- * The collection of FOTA deployment for Samsung OEM.
32696
- */
32697
- @contains samsungEFotaDeployments: samsungEFotaDeployment[];
32698
- /**
32699
- * The collection of Samsung EFOTA firmware versions.
32700
- */
32701
- @contains samsungEFotaFirmwareVersions: samsungEFotaFirmwareVersion[];
32702
32679
  /**
32703
32680
  * A list of ServiceNowConnections
32704
32681
  */
@@ -35051,6 +35028,12 @@ typically alternating request/response, implicitly forming a turn.Represents a c
35051
35028
  drives: string[] | null;
35052
35029
  }
35053
35030
 
35031
+ @entity model dynamicRuleActivityLog extends activityLogBase {
35032
+ policyId: string | null;
35033
+ policyName: string | null;
35034
+ protectionUnitDetails: protectionUnitDetails | null;
35035
+ }
35036
+
35054
35037
  /**
35055
35038
  * Apple device features configuration profile.
35056
35039
  */
@@ -35567,6 +35550,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
35567
35550
  */
35568
35551
  @contains assignedRoles: engagementRole[];
35569
35552
  @references learningCourseActivities: learningCourseActivity[];
35553
+ /**
35554
+ * The user's storyline.
35555
+ */
35556
+ @contains storyline: storyline;
35570
35557
  }
35571
35558
 
35572
35559
  @entity model encryptedAwsStorageBucketFinding extends finding {
@@ -36420,6 +36407,7 @@ within the time frame of their original request.
36420
36407
  name: string;
36421
36408
  owningAppId: guid;
36422
36409
  settings: fileStorageContainerTypeSettings;
36410
+ @contains permissions: permission[];
36423
36411
  }
36424
36412
 
36425
36413
  @entity model fileStorageContainerTypeAppPermissionGrant extends MsGraph.SharedModels.entity {
@@ -36469,75 +36457,6 @@ within the time frame of their original request.
36469
36457
  @entity model footprintMap extends baseMapFeature {
36470
36458
  }
36471
36459
 
36472
- /**
36473
- * The FOTA connector entity that represents the tenant's authorization status for Intune and an OEM. To get all connectors, use the 'Get' operation. To get a specific OEM connector, use the 'retrieveFotaConnector' function and specify the OEM type. To create, use 'graph.fotaConnector' 'connect' action and specify the 'oem' like 'samsung' or 'zebra'. To add or remove Entra security groups for device registration, use the 'register' or 'deregister' actions. To get the authorization URL, use the 'retrieveFotaAuthorizationUrl' function.
36474
- */
36475
- @entity model fotaConnector extends entity {
36476
- /**
36477
- * The authorization URL used by IT Admin to authorize Intune to call the OEM APIs on their behalf. Default value: null. If the authorization URL exists, it is returned as an empty string. To retrieve it, specific 'GET' function 'retrieveFotaAuthorizationUrl' has to be used.
36478
- */
36479
- authorizationUrl: string | null;
36480
- /**
36481
- * High level status of the tenant's registered devices. Used to get the number of registered devices and the error if registration failed. See 'graph.fotaDeviceRegistrationStatus' for more details. Default value: null.
36482
- */
36483
- deviceRegistrationStatus: fotaDeviceRegistrationStatus | null;
36484
- /**
36485
- * System generated friendly name for the connector based on the OEM like 'Samsung E-FOTA Connector'. Populated during creation of the OEM connector. Read-only. Returned by default.
36486
- */
36487
- displayName: string | null;
36488
- /**
36489
- * The date and time when the FOTA connector was last synced with the OEM's cloud service to establish connection. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Read-only. Returned by default.
36490
- */
36491
- @computed lastSyncDateTime: offsetDateTime | null;
36492
- /**
36493
- * OEM (Original Equipment Manufacturer) type that has onboarded to Intune FOTA functionality. Possible values are 'unknown', 'zebra' and 'samsung'. Default is 'unknown'. See 'graph.fotaOemType' enum for details. Populated during creation of the OEM connector. Returned by default.
36494
- */
36495
- oem: fotaOemType;
36496
- /**
36497
- * The Entra security groups targeted for device registration. See 'graph.deviceAndAppManagementAssignmentTarget' entity for details. Default value: null.
36498
- */
36499
- registrationAssignments: deviceAndAppManagementAssignmentTarget[] | null;
36500
- /**
36501
- * The state of the FOTA connector. Possible values are 'none', 'pending', 'connected', and 'disconnected'. Default is 'none'. See 'graph.fotaConnectorState' enum for detailed state definitions. Returned by default.
36502
- */
36503
- state: fotaConnectorState;
36504
- /**
36505
- * Tenant's total Samsung licenses count. Default value: null.
36506
- */
36507
- totalLicensesCount: int32 | null;
36508
- }
36509
-
36510
- /**
36511
- * The FOTA deployment for an OEM. Is an abstract type. To get all deployments for an OEM, use the 'retrieveDeployments' function and specify the OEM. To get a specific OEM deployment, use the 'retrieveDeployment' function and specify the OEM type and deployment ID. To create a FOTA deployment for an OEM, refer to the derived deployment entity like 'graph.samsungEFotaDeployment'
36512
- */
36513
- @abstract
36514
- @entity model fotaDeployment extends entity {
36515
- /**
36516
- * The deployment's targeted security groups(s). See 'graph.deviceAndAppManagementAssignmentTarget' for more details. Returned by default.
36517
- */
36518
- deploymentAssignments: deviceAndAppManagementAssignmentTarget[];
36519
- /**
36520
- * The deployment status from the OEM (Original Equipment Manufacturer). See 'graph.fotaDeploymentStatus' complex type for details. Default value: null.
36521
- */
36522
- deploymentStatus: fotaDeploymentStatus | null;
36523
- /**
36524
- * The description of the FOTA deployment. Max allowed length is 1500 chars. Default value: null.
36525
- */
36526
- description: string | null;
36527
- /**
36528
- * The deployment name associated with FOTA deployment. Returned by default. Max allowed length is 200 chars.
36529
- */
36530
- displayName: string;
36531
- /**
36532
- * OEM (Original Equipment Manufacturer) type that has onboarded to Intune FOTA functionality. Populated during creation of the OEM deployment. Possible values are 'unknown', 'zebra' and 'samsung'. Default is 'unknown'. See 'graph.fotaOemType' enum for details. Returned by default.
36533
- */
36534
- oem: fotaOemType;
36535
- /**
36536
- * List of Scope Tags for the deployment. Default value: null.
36537
- */
36538
- roleScopeTagIds: string[] | null;
36539
- }
36540
-
36541
36460
  @abstract
36542
36461
  @entity model fraudProtectionProvider extends entity {
36543
36462
  displayName: string;
@@ -38001,7 +37920,7 @@ within the time frame of their original request.
38001
37920
  apiUrl: string | null;
38002
37921
  displayName: string;
38003
37922
  lastModifiedBy: string;
38004
- @computed lastModifiedDateTime: string;
37923
+ @computed lastModifiedDateTime: offsetDateTime;
38005
37924
  owner: string | null;
38006
37925
  portalUrl: string | null;
38007
37926
  postponeUntilDateTime: offsetDateTime | null;
@@ -40831,6 +40750,7 @@ within the time frame of their original request.
40831
40750
 
40832
40751
  @entity model list extends baseItem {
40833
40752
  displayName: string | null;
40753
+ itemCount: int32 | null;
40834
40754
  list: listInfo | null;
40835
40755
  sharepointIds: sharepointIds | null;
40836
40756
  system: systemFacet | null;
@@ -45396,6 +45316,13 @@ within the time frame of their original request.
45396
45316
  startTime: offsetDateTime | null;
45397
45317
  }
45398
45318
 
45319
+ @entity model offboardingActivityLog extends activityLogBase {
45320
+ offboardingDetails: offboardingDetails | null;
45321
+ policyId: string | null;
45322
+ policyName: string | null;
45323
+ policyStatus: protectionPolicyStatus;
45324
+ }
45325
+
45399
45326
  @entity model offerShiftRequest extends scheduleChangeRequest {
45400
45327
  recipientActionDateTime: offsetDateTime | null;
45401
45328
  recipientActionMessage: string | null;
@@ -46269,6 +46196,16 @@ within the time frame of their original request.
46269
46196
  @entity model overprovisionedUserFinding extends identityFinding {
46270
46197
  }
46271
46198
 
46199
+ @entity model ownerlessGroupPolicy extends entity {
46200
+ emailInfo: emailDetails;
46201
+ enabledGroupIds: string[];
46202
+ isEnabled: boolean;
46203
+ maxMembersToNotify: int64;
46204
+ notificationDurationInWeeks: int64;
46205
+ policyWebUrl: string | null;
46206
+ targetOwners: targetOwners;
46207
+ }
46208
+
46272
46209
  @entity model pageTemplate extends baseSitePage {
46273
46210
  titleArea: titleArea | null;
46274
46211
  @contains canvasLayout: canvasLayout | null;
@@ -46769,9 +46706,22 @@ within the time frame of their original request.
46769
46706
  @contains assignedToTaskBoardFormat: plannerAssignedToTaskBoardTaskFormat | null;
46770
46707
  @contains bucketTaskBoardFormat: plannerBucketTaskBoardTaskFormat | null;
46771
46708
  @contains details: plannerTaskDetails | null;
46709
+ @contains messages: plannerTaskChatMessage[];
46772
46710
  @contains progressTaskBoardFormat: plannerProgressTaskBoardTaskFormat | null;
46773
46711
  }
46774
46712
 
46713
+ @entity model plannerTaskChatMessage extends entity {
46714
+ content: string | null;
46715
+ createdBy: identitySet | null;
46716
+ @computed createdDateTime: offsetDateTime;
46717
+ deletedDateTime: offsetDateTime | null;
46718
+ editedDateTime: offsetDateTime | null;
46719
+ mentions: plannerTaskChatMention[];
46720
+ messageType: plannerTaskChatMessageType;
46721
+ parentEntityId: string | null;
46722
+ reactions: plannerTaskChatReaction[];
46723
+ }
46724
+
46775
46725
  @entity model plannerTaskConfiguration extends entity {
46776
46726
  editPolicy: plannerTaskPolicy | null;
46777
46727
  }
@@ -46860,6 +46810,7 @@ within the time frame of their original request.
46860
46810
  @contains mobileAppManagementPolicies: mobileAppManagementPolicy[];
46861
46811
  @contains mobileDeviceManagementPolicies: mobileDeviceManagementPolicy[];
46862
46812
  @contains onPremAuthenticationPolicies: onPremAuthenticationPolicy[];
46813
+ @contains ownerlessGroupPolicy: ownerlessGroupPolicy | null;
46863
46814
  @contains permissionGrantPolicies: permissionGrantPolicy[];
46864
46815
  @contains permissionGrantPreApprovalPolicies: permissionGrantPreApprovalPolicy[];
46865
46816
  @contains roleManagementPolicies: unifiedRoleManagementPolicy[];
@@ -47590,6 +47541,7 @@ within the time frame of their original request.
47590
47541
  @entity model profileCardProperty extends entity {
47591
47542
  annotations: profileCardAnnotation[] | null;
47592
47543
  directoryPropertyName: string | null;
47544
+ isVisible: boolean;
47593
47545
  }
47594
47546
 
47595
47547
  @entity model profilePhoto extends entity {
@@ -47606,7 +47558,7 @@ within the time frame of their original request.
47606
47558
  @entity model profileSource extends entity {
47607
47559
  displayName: string | null;
47608
47560
  kind: string | null;
47609
- localizations: profileSourceLocalization[] | null;
47561
+ localizations: profileSourceLocalization[];
47610
47562
  sourceId: string | null;
47611
47563
  webUrl: string | null;
47612
47564
  }
@@ -47678,6 +47630,7 @@ within the time frame of their original request.
47678
47630
 
47679
47631
  @abstract
47680
47632
  @entity model protectionUnitBase extends entity {
47633
+ backupRetentionPeriodInDays: int32;
47681
47634
  createdBy: identitySet | null;
47682
47635
  @computed createdDateTime: offsetDateTime | null;
47683
47636
  error: publicError | null;
@@ -48241,6 +48194,15 @@ within the time frame of their original request.
48241
48194
  status: restoreSessionStatus | null;
48242
48195
  }
48243
48196
 
48197
+ @entity model restoreTaskActivityLog extends activityLogBase {
48198
+ destinationType: destinationType;
48199
+ restoreArtifactDetails: restoreArtifactDetails | null;
48200
+ restoreCompletionDateTime: offsetDateTime | null;
48201
+ restoreSessionId: string | null;
48202
+ restoreSessionStatus: restoreSessionStatus;
48203
+ tags: restorePointTags;
48204
+ }
48205
+
48244
48206
  /**
48245
48207
  * Violation of restricted apps configuration profile per device per user
48246
48208
  */
@@ -48826,80 +48788,6 @@ within the time frame of their original request.
48826
48788
  signingCertificate: string | null;
48827
48789
  }
48828
48790
 
48829
- /**
48830
- * The settings and targeted firmware versions for a Samsung Knox E-FOTA deployment. Inherits from 'graph.fotaDeployment'. To create, update and delete, use the 'graph.fotaDeployment' 'Post', 'Patch', and 'Delete' operations and specify 'oem' as 'Samsung'. To get, use the 'graph.fotaDeployment' 'Get' operation and specify 'oem' as 'Samsung'
48831
- */
48832
- @entity model samsungEFotaDeployment extends fotaDeployment {
48833
- /**
48834
- * The setting required to create a deployment such as deployment update type, download and installation time, network type, etc. See 'graph.samsungEFotaDeploymentSetting' complex type for more details. Returned by default.
48835
- */
48836
- deploymentSetting: samsungEFotaDeploymentSetting;
48837
- /**
48838
- * The E-FOTA deployment's firmware version targets like the device model, sales code, CSC, and update type. See 'graph.samsungEFotaFirmwareVersionTarget' entity for more details. Returned by default
48839
- */
48840
- @references firmwareVersionTargets: samsungEFotaFirmwareVersionTarget[];
48841
- }
48842
-
48843
- /**
48844
- * The firmware version from Samsung for a specific device model, sales code, and CSC (Consumer Software Customization). Used to create Samsung E-FOTA deployments.
48845
- */
48846
- @entity model samsungEFotaFirmwareVersion extends entity {
48847
- /**
48848
- * The Android Processor version name. This property is populated by Samsung. Eg. 'G960U1UES9FVD1'. Default value: null. Read-only.
48849
- */
48850
- androidProcessorVersionName: string | null;
48851
- /**
48852
- * The Consumer Software Customization which is a specific code associated with the region or carrier customization of a Samsung device. This property is populated by Samsung. Eg. 'OYM'. Read-only. Returned by default.
48853
- */
48854
- consumerSoftwareCustomizationCode: string;
48855
- /**
48856
- * The firmware description. This property is populated by Samsung. Default value: null. Read-only.
48857
- */
48858
- description: string | null;
48859
- /**
48860
- * Samsung device model. This property is populated by Samsung. Eg. 'SM-960F'. Read-only. Returned by default.
48861
- */
48862
- deviceModelName: string;
48863
- /**
48864
- * The firmware version. This property is populated by Samsung Eg. 'T575XXU4EAAA/T575OXM4EAAA/T575XXU4EAAA'. Default value: null. Read-only.
48865
- */
48866
- firmwareVersion: string | null;
48867
- /**
48868
- * The OS version name. This property is populated by Samsung. Eg. 'Pie(Android 9)'. Default value: null. Read-only.
48869
- */
48870
- osVersionName: string | null;
48871
- /**
48872
- * Firmware release date. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. This property is populated by Samsung. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Default value: null. Read-only.
48873
- */
48874
- releaseDateTime: offsetDateTime;
48875
- /**
48876
- * The firmware request type. This property is populated by Samsung Eg. 'NORMAL'. Default value: null. Read-only.
48877
- */
48878
- requestFirmwareType: string | null;
48879
- /**
48880
- * Sales code of a Samsung device that corresponds to its georgraphic area or carrier network. This property is populated by Samsung. Eg. 'TMB'. Read-only. Returned by default.
48881
- */
48882
- salesCode: string;
48883
- /**
48884
- * The firmware security patch. This property is populated by Samsung Eg. '2023-09-07 07:50:57'. Default value: null. Read-only.
48885
- */
48886
- securityPatch: string | null;
48887
- }
48888
-
48889
- /**
48890
- * The targeted firmware version for an E-FOTA deployment. Used while creating E-FOTA deployments.
48891
- */
48892
- @entity model samsungEFotaFirmwareVersionTarget extends entity {
48893
- /**
48894
- * The E-FOTA deployment's firmware update type. Possible values are 'custom', 'latestMajorVersion', 'auto', 'latestMinorVersion', and 'locked'. Default is 'custom'. See 'graph.fotaFirmwareUpdateType' enum for more details. Returned by default.
48895
- */
48896
- updateType: fotaFirmwareUpdateType;
48897
- /**
48898
- * Describes the firmware version for a specific device model, sales code, and CSC. See 'graph.samsungEFotaFirmwareVersion' entity for details. Returned by default.
48899
- */
48900
- @references firmwareVersion: samsungEFotaFirmwareVersion;
48901
- }
48902
-
48903
48791
  @entity model schedule extends entity {
48904
48792
 
48905
48793
  @graphDeprecated("Shifts-TimeCardRevision")
@@ -49676,6 +49564,7 @@ within the time frame of their original request.
49676
49564
  invitationStatus: string | null;
49677
49565
  }
49678
49566
 
49567
+ @graphDeprecated("Removal")
49679
49568
  @entity model sharedInsight extends entity {
49680
49569
  lastShared: sharingDetail | null;
49681
49570
  resourceReference: resourceReference | null;
@@ -49778,6 +49667,7 @@ within the time frame of their original request.
49778
49667
 
49779
49668
  @entity model sharePointGroup extends entity {
49780
49669
  description: string | null;
49670
+ principalId: string | null;
49781
49671
  title: string;
49782
49672
  @contains members: sharePointGroupMember[];
49783
49673
  }
@@ -50388,6 +50278,40 @@ within the time frame of their original request.
50388
50278
  @contains quota: unifiedStorageQuota | null;
50389
50279
  }
50390
50280
 
50281
+ /**
50282
+ * User's storyline singleton container.
50283
+ */
50284
+ @entity model storyline extends entity {
50285
+ /**
50286
+ * The user's storyline followers.
50287
+ */
50288
+ @contains followers: storylineFollower[];
50289
+ /**
50290
+ * The user's storyline followings.
50291
+ */
50292
+ @contains followings: storylineFollowing[];
50293
+ }
50294
+
50295
+ /**
50296
+ * Engagement storyline follower.
50297
+ */
50298
+ @entity model storylineFollower extends entity {
50299
+ /**
50300
+ * The follower.
50301
+ */
50302
+ follower: engagementIdentitySet;
50303
+ }
50304
+
50305
+ /**
50306
+ * Engagement storyline following.
50307
+ */
50308
+ @entity model storylineFollowing extends entity {
50309
+ /**
50310
+ * The following.
50311
+ */
50312
+ following: engagementIdentitySet;
50313
+ }
50314
+
50391
50315
  @entity model strongAuthenticationDetail extends entity {
50392
50316
  encryptedPinHashHistory: binary | null;
50393
50317
  proofupTime: int64 | null;
@@ -50565,6 +50489,8 @@ within the time frame of their original request.
50565
50489
  }
50566
50490
 
50567
50491
  @entity model synchronization extends entity {
50492
+
50493
+ @graphDeprecated("SynchronizationSecret_Deprecation")
50568
50494
  secrets: synchronizationSecretKeyStringValuePair[] | null;
50569
50495
  @contains jobs: synchronizationJob[];
50570
50496
  @contains templates: synchronizationTemplate[];
@@ -50599,6 +50525,10 @@ within the time frame of their original request.
50599
50525
  displayName: string | null;
50600
50526
  }
50601
50527
 
50528
+ @entity model targetedChatMessage extends chatMessage {
50529
+ recipient: identity | null;
50530
+ }
50531
+
50602
50532
  /**
50603
50533
  * Configuration used to deliver a set of custom settings as-is to all users in the targeted security group
50604
50534
  */
@@ -51298,6 +51228,7 @@ within the time frame of their original request.
51298
51228
  isShared: boolean;
51299
51229
  wellknownListName: wellknownListName;
51300
51230
  @contains extensions: extension[];
51231
+ @contains singleValueExtendedProperties: singleValueExtendedProperty[];
51301
51232
  @contains tasks: todoTask[];
51302
51233
  }
51303
51234
 
@@ -51778,6 +51709,7 @@ within the time frame of their original request.
51778
51709
  value: usageRights;
51779
51710
  }
51780
51711
 
51712
+ @graphDeprecated("Removal")
51781
51713
  @entity model usedInsight extends entity {
51782
51714
  lastUsed: usageDetails | null;
51783
51715
  resourceReference: resourceReference | null;
@@ -59803,6 +59735,10 @@ within the time frame of their original request.
59803
59735
  * Current anti malware version
59804
59736
  */
59805
59737
  antiMalwareVersion: string | null;
59738
+ /**
59739
+ * When TRUE indicates the Windows Defender controlled configuration feature is enabled, when FALSE indicates the Windows Defender controlled configuration feature is not enabled. Defaults to setting on client device.
59740
+ */
59741
+ controlledConfigurationEnabled: boolean | null;
59806
59742
  /**
59807
59743
  * Indicates device's health state. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical.
59808
59744
  */
@@ -61214,10 +61150,6 @@ within the time frame of their original request.
61214
61150
  * The Zebra FOTA deployment entity that describes settings, deployment device groups required to create a FOTA deployment, and deployment status.
61215
61151
  */
61216
61152
  @entity model zebraFotaDeployment extends entity {
61217
- /**
61218
- * Collection of Android FOTA Assignment
61219
- */
61220
- deploymentAssignments: androidFotaDeploymentAssignment[] | null;
61221
61153
  /**
61222
61154
  * Represents settings required to create a deployment such as deployment type, artifact info, download and installation
61223
61155
  */
@@ -61453,6 +61385,35 @@ within the time frame of their original request.
61453
61385
  unrestricted: 3,
61454
61386
  }
61455
61387
 
61388
+ enum activityLogOperationType {
61389
+ backupPolicyCreated: 0,
61390
+ backupPolicyActivated: 1,
61391
+ backupPolicyModified: 2,
61392
+ backupPolicyPaused: 3,
61393
+ backupPolicyRenamed: 4,
61394
+ dynamicRuleExecution: 5,
61395
+ dynamicRuleDeletion: 6,
61396
+ protectionUnitLevelOffboarding: 7,
61397
+ policyLevelOffboarding: 8,
61398
+ restoreTaskCreated: 9,
61399
+ restoreTaskCompleted: 10,
61400
+ unknownFutureValue: 11,
61401
+ }
61402
+
61403
+ enum activityLogResultStatus {
61404
+ succeeded: 0,
61405
+ failed: 1,
61406
+ partiallySucceeded: 2,
61407
+ unknownFutureValue: 3,
61408
+ }
61409
+
61410
+ enum activityLogSeverity {
61411
+ high: 0,
61412
+ medium: 1,
61413
+ low: 2,
61414
+ unknownFutureValue: 3,
61415
+ }
61416
+
61456
61417
  enum activityStatus {
61457
61418
  notStarted: 0,
61458
61419
  running: 1,
@@ -61707,6 +61668,21 @@ within the time frame of their original request.
61707
61668
  Call: 4,
61708
61669
  }
61709
61670
 
61671
+ /**
61672
+ * The Android credential provider role state for apps.
61673
+ */
61674
+ enum androidAppCredentialProviderRoleState {
61675
+ /**
61676
+ * Default. Indicates the app's ability to act as a credential provider has not been configured. When set to 'notConfigured', the Android OS will determine whether the app is allowed to act as a credential provider or not.
61677
+ */
61678
+ notConfigured: 0,
61679
+ /**
61680
+ * Indicates the app is allowed to act as a credential provider.
61681
+ */
61682
+ allowed: 1,
61683
+ unknownFutureValue: 2,
61684
+ }
61685
+
61710
61686
  /**
61711
61687
  * Android Device Owner possible values for states of the device's app auto update policy.
61712
61688
  */
@@ -67766,6 +67742,53 @@ within the time frame of their original request.
67766
67742
  policySets: 1,
67767
67743
  }
67768
67744
 
67745
+ /**
67746
+ * The DeviceAndAppManagementPayloadType represents the type of a payload assigned to a target.
67747
+ */
67748
+ enum deviceAndAppManagementPayloadType {
67749
+ /**
67750
+ * Default value. Do not use.
67751
+ */
67752
+ `unknown`: 0,
67753
+ /**
67754
+ * Indicates that the payload is of settings catalog type.
67755
+ */
67756
+ settingsCatalog: 1,
67757
+ /**
67758
+ * Indicates that the payload is of security baseline type.
67759
+ */
67760
+ securityBaseline: 2,
67761
+ /**
67762
+ * Indicates that the payload is of antivirus type.
67763
+ */
67764
+ antivirus: 3,
67765
+ /**
67766
+ * Indicates that the payload is of disk encryption type.
67767
+ */
67768
+ diskEncryption: 4,
67769
+ /**
67770
+ * Indicates that the payload is of attack surface reduction type.
67771
+ */
67772
+ attackSurfaceReduction: 5,
67773
+ /**
67774
+ * Indicates that the payload is of firewall type.
67775
+ */
67776
+ firewall: 6,
67777
+ /**
67778
+ * Indicates that the payload is of endpoint detection and response type.
67779
+ */
67780
+ endpointDetectionAndResponse: 7,
67781
+ /**
67782
+ * Indicates that the payload is of compliance policy type.
67783
+ */
67784
+ compliancePolicy: 8,
67785
+ /**
67786
+ * Indicates that the payload is of device restriction type.
67787
+ */
67788
+ deviceRestrictions: 9,
67789
+ unknownFutureValue: 10,
67790
+ }
67791
+
67769
67792
  /**
67770
67793
  * Device app management task category.
67771
67794
  */
@@ -72312,206 +72335,6 @@ within the time frame of their original request.
72312
72335
  flagged: 2,
72313
72336
  }
72314
72337
 
72315
- /**
72316
- * An OEM's FOTA connector state for the tenant
72317
- */
72318
- enum fotaConnectorState {
72319
- /**
72320
- * Default value when the connector has not been setup (the feature has not been used yet).
72321
- */
72322
- none: 0,
72323
- /**
72324
- * Indicates that Intune is linked to the OEM for the current tenant.
72325
- */
72326
- connected: 1,
72327
- /**
72328
- * Indicates that the tenant was connected in the past and later disconnected.
72329
- */
72330
- disconnected: 2,
72331
- /**
72332
- * Indicates that the IT Pro has not yet authorized Intune to call the OEM on their behalf.
72333
- */
72334
- pending: 3,
72335
- unknownFutureValue: 4,
72336
- }
72337
-
72338
- /**
72339
- * An error code indicating the failure reason, when a FOTA deployment failed to create or complete.
72340
- */
72341
- enum fotaDeploymentErrorCode {
72342
- /**
72343
- * This error indicates that the deployment failed to create because no devices were found in the selected Entra security group(s) when creating a deployment. E.g.: a user selects one or more security groups that doesn't include any devices.
72344
- */
72345
- noDevicesFoundInSelectedEntraGroups: 0,
72346
- /**
72347
- * This error indicates that the deployment failed to create because no Intune managed devices were found in the selected Entra security groups when creating a deployment. E.g.: a user selects a group that includes devices that are no longer managed in Intune.
72348
- */
72349
- noIntuneDevicesFoundInSelectedEntraGroups: 1,
72350
- /**
72351
- * This error indicates that the deployment failed to create because no FOTA enrolled/registered devices were found in the selected Entra Groups when creating a deployment. E.g.: a user has registered one or more devices in Samsung Knox E-FOTA, but attempts to create a deployment targeting security groups that don't include any registered devices.
72352
- */
72353
- noFotaEnrolledDevicesFoundForCurrentTenant: 2,
72354
- /**
72355
- * This error indicates that no FOTA enrolled/registered devices were found in the selected Entra (Azure Active Directory - Azure AD) Groups when creating a deployment. E.g.: a user has registered one or more devices in Samsung Knox E-FOTA, but attempts to create a deployment targeting security groups that don't include any registered devices.
72356
- */
72357
- noFotaEnrolledDevicesFoundInSelectedEntraGroups: 3,
72358
- /**
72359
- * This error indicates that the deployment failed to create because no FOTA devices were found that match the selected device model(s) when creating a deployment. E.g.: a user selects 'TC8300' Zebra device model, but no Zebra devices with the same device model were found in the deployment's targeted Entra security groups.
72360
- */
72361
- noFotaDevicesFoundForSelectedDeviceModel: 4,
72362
- /**
72363
- * This error indicates that the deployment failed to create because the external request to the OEM to create a deployment failed. The failure can be caused by a transient issue (e.g.: Network is down) or caused by a permanent server error.
72364
- */
72365
- fotaCreateDeploymentRequestFailure: 5,
72366
- unknownFutureValue: 6,
72367
- }
72368
-
72369
- /**
72370
- * The overall state of the FOTA deployment. The deployment state is determined by looking at the status of all devices in the deployment. If any device is in the created state, the overall deployment state becomes created. If any device is in progress, the overall deployment state becomes in progress. Once all the devices are completed, the overall deployment state becomes completed. If the IT Admin requests cancellation, the deployment state becomes pending cancel and then cancelled.
72371
- */
72372
- enum fotaDeploymentState {
72373
- /**
72374
- * Default. Deployment is created but the OEM has not confirmed its creation.
72375
- */
72376
- pendingCreation: 0,
72377
- /**
72378
- * Deployment was not successfully created with the OEM or failed to complete.
72379
- */
72380
- createFailed: 1,
72381
- /**
72382
- * Deployment has been created but has not been deployed yet.
72383
- */
72384
- created: 2,
72385
- /**
72386
- * Deployment has started but not completed.
72387
- */
72388
- inProgress: 3,
72389
- /**
72390
- * Deployment has completed or end date has passed.
72391
- */
72392
- completed: 4,
72393
- /**
72394
- * IT Admin has requested to cancel a deployment but the OEM has not confirmed cancellation.
72395
- */
72396
- pendingCancel: 5,
72397
- /**
72398
- * Deployment was not successfully cancelled by the OEM.
72399
- */
72400
- cancelFailed: 6,
72401
- /**
72402
- * Deployment has been successfully cancelled by the OEM.
72403
- */
72404
- cancelled: 7,
72405
- /**
72406
- * Default. Deployment is updated but the OEM has not confirmed its update.
72407
- */
72408
- pendingUpdate: 8,
72409
- /**
72410
- * Deployment was not successfully updated with the OEM.
72411
- */
72412
- updateFailed: 9,
72413
- /**
72414
- * Deployment has been updated but has not been deployed yet.
72415
- */
72416
- updated: 10,
72417
- unknownFutureValue: 11,
72418
- }
72419
-
72420
- /**
72421
- * The time of day for E-FOTA devices to download firmware.
72422
- */
72423
- enum fotaDownloadPeriodType {
72424
- /**
72425
- * Default. The firmware can be downloaded at any time of day.
72426
- */
72427
- any: 0,
72428
- /**
72429
- * The time of day for downloading firmware matches the firmware installation period set in 'graph.fotaDeploymentSetting' 'installRuleWindowStartTime' and 'installRuleWindowEndTime'.
72430
- */
72431
- matchFirmwareInstallPeriod: 1,
72432
- unknownFutureValue: 2,
72433
- }
72434
-
72435
- /**
72436
- * The FOTA deployment's firmware update type.
72437
- */
72438
- enum fotaFirmwareUpdateType {
72439
- /**
72440
- * Default. The FOTA deployment targets a custom firwmare version selected by the IT Admin.
72441
- */
72442
- custom: 0,
72443
- /**
72444
- * The FOTA deployment targets the latest major firmware version available. Latest may update the device to a new OS version. For eg. a device on Android 13 will update to the latest available version Android 14.
72445
- */
72446
- latestMajorVersion: 1,
72447
- /**
72448
- * The device always looks for the latest package available in the repo and tries to update whenever a new package is available. This continues until the admin cancels the auto update.
72449
- */
72450
- auto: 2,
72451
- /**
72452
- * The FOTA deployment targets the latest minor firmware version within a particular OS version. For eg. a device on Android 13 will update to the latest available minor version Android 13.x.
72453
- */
72454
- latestMinorVersion: 3,
72455
- /**
72456
- * The FOTA deployment targets locking the firmware to prevent any firmware from being installed on the devices.
72457
- */
72458
- locked: 4,
72459
- unknownFutureValue: 5,
72460
- }
72461
-
72462
- /**
72463
- * The device's network type required to download and install the FOTA update.
72464
- */
72465
- enum fotaNetworkType {
72466
- /**
72467
- * Default. The device will install the update regardless of current network type.
72468
- */
72469
- any: 0,
72470
- /**
72471
- * The device will install the update only when connected to a wifi network.
72472
- */
72473
- wifi: 1,
72474
- /**
72475
- * The device will install the update only when connected to a cellular network.
72476
- */
72477
- cellular: 2,
72478
- unknownFutureValue: 3,
72479
- }
72480
-
72481
- /**
72482
- * OEM (Original Equipment Manufacturer) type that have integrated with Intune's FOTA functionality. For example, a FOTA connector can have an OEM type as 'zebra' or 'samsung'. If not OEM type is assigned, the type defaults to 'unknown'
72483
- */
72484
- enum fotaOemType {
72485
- /**
72486
- * Indicates that the FOTA OEM (Original Equipment Manufacturer) type is Zebra.
72487
- */
72488
- zebra: 1,
72489
- /**
72490
- * Indicates that the FOTA OEM (Original Equipment Manufacturer) type is Samsung.
72491
- */
72492
- samsung: 2,
72493
- unknownFutureValue: 3,
72494
- }
72495
-
72496
- /**
72497
- * An error code indicating the failure reason, when a device failed to register for FOTA.
72498
- */
72499
- enum fotaRegistrationErrorCode {
72500
- /**
72501
- * This error indicates that no devices were found in the selected Entra security group(s) when registering for FOTA. E.g.: a user selects one or more security groups that doesn't include any devices.
72502
- */
72503
- noDevicesFoundInSelectedEntraGroups: 0,
72504
- /**
72505
- * This error indicates that no Intune managed devices were found in the selected Entra (Azure Active Directory - Azure AD) security groups when registering for FOTA. E.g.: a user selects a group that includes devices that are no longer managed in Intune.
72506
- */
72507
- noIntuneDevicesFoundInSelectedEntraGroups: 1,
72508
- /**
72509
- * This error indicates that the external request to the OEM to register devices failed. The failure can be caused by a transient issue (e.g.: Network is down) or caused by a permanent server error.
72510
- */
72511
- fotaRegistrationRequestFailure: 2,
72512
- unknownFutureValue: 3,
72513
- }
72514
-
72515
72338
  /**
72516
72339
  * The overall state of the FOTA devices' registration. The registration state is determined by looking at the status of all devices. If any device has not yet started registration, the overall registration state becomes registration requested. If any device is still in progress, the overall deployment state becomes in progress. Once all the devices are completed, the overall registration state becomes completed.
72517
72340
  */
@@ -76301,6 +76124,13 @@ within the time frame of their original request.
76301
76124
  unknownFutureValue: 32,
76302
76125
  }
76303
76126
 
76127
+ enum notifyMembers {
76128
+ all: 0,
76129
+ allowSelected: 1,
76130
+ blockSelected: 2,
76131
+ unknownFutureValue: 3,
76132
+ }
76133
+
76304
76134
  enum oAuthAppScope {
76305
76135
  `unknown`: 0,
76306
76136
  readCalendar: 1,
@@ -77313,6 +77143,18 @@ within the time frame of their original request.
77313
77143
  unknownFutureValue: 4,
77314
77144
  }
77315
77145
 
77146
+ enum plannerTaskChatMentionType {
77147
+ user: 1,
77148
+ application: 2,
77149
+ unknownFutureValue: 3,
77150
+ }
77151
+
77152
+ enum plannerTaskChatMessageType {
77153
+ richTextHtml: 1,
77154
+ plainText: 2,
77155
+ unknownFutureValue: 3,
77156
+ }
77157
+
77316
77158
  @graphFlags
77317
77159
  enum plannerTaskCompletionRequirements {
77318
77160
  none: 0,
@@ -80279,6 +80121,7 @@ within the time frame of their original request.
80279
80121
  none: 0,
80280
80122
  fastRestore: 1,
80281
80123
  unknownFutureValue: 2,
80124
+ includeNewerItems: 4,
80282
80125
  }
80283
80126
 
80284
80127
  enum restoreSessionStatus {
@@ -80795,21 +80638,6 @@ within the time frame of their original request.
80795
80638
  unknownFutureValue: 2,
80796
80639
  }
80797
80640
 
80798
- /**
80799
- * Represents various schedule modes for Samsung FOTA deployment.
80800
- */
80801
- enum samsungEFotaScheduleMode {
80802
- /**
80803
- * Schedule an update to be installed between start and end date time.
80804
- */
80805
- startAndEndDateSchedule: 0,
80806
- /**
80807
- * Schedule an update to be installed on or after start date time.
80808
- */
80809
- startDateOnlySchedule: 1,
80810
- unknownFutureValue: 2,
80811
- }
80812
-
80813
80641
  enum scheduleChangeRequestActor {
80814
80642
  sender: 0,
80815
80643
  recipient: 1,
@@ -81186,6 +81014,14 @@ within the time frame of their original request.
81186
81014
  disabled: 2,
81187
81015
  }
81188
81016
 
81017
+ enum serviceType {
81018
+ `unknown`: 0,
81019
+ sharePoint: 1,
81020
+ exchange: 2,
81021
+ oneDriveForBusiness: 3,
81022
+ unknownFutureValue: 4,
81023
+ }
81024
+
81189
81025
  enum serviceUpdateCategory {
81190
81026
  preventOrFixIssue: 1,
81191
81027
  planForChange: 2,
@@ -81411,6 +81247,7 @@ within the time frame of their original request.
81411
81247
  enum signUpIdentifierType {
81412
81248
  emailAddress: 0,
81413
81249
  unknownFutureValue: 1,
81250
+ federation: 2,
81414
81251
  }
81415
81252
 
81416
81253
  enum signUpStage {
@@ -82328,6 +82165,14 @@ within the time frame of their original request.
82328
82165
  flash: 16,
82329
82166
  }
82330
82167
 
82168
+ enum trafficRoutingMethod {
82169
+ none: 0,
82170
+ random: 1,
82171
+ sessionPersistence: 2,
82172
+ performance: 3,
82173
+ unknownFutureValue: 4,
82174
+ }
82175
+
82331
82176
  enum trainingAssignedTo {
82332
82177
  none: 0,
82333
82178
  allUsers: 1,
@@ -83791,32 +83636,36 @@ within the time frame of their original request.
83791
83636
  /**
83792
83637
  * Wi-Fi Security Types.
83793
83638
  */
83794
- #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
83795
83639
  enum wiFiSecurityType {
83796
83640
  /**
83797
- * Open (No Authentication).
83641
+ * Default. Indicates Wi-Fi security type is associated with Open (No Authentication).
83798
83642
  */
83799
83643
  open: 0,
83800
83644
  /**
83801
- * WPA-Personal.
83645
+ * Indicates Wi-Fi security type is associated with WPA-Personal.
83802
83646
  */
83803
83647
  wpaPersonal: 1,
83804
83648
  /**
83805
- * WPA-Enterprise. Must use IOSEnterpriseWifiConfiguration type to configure enterprise options.
83649
+ * Indicates Wi-Fi security type is associated with WPA-Enterprise. Must use IOSEnterpriseWifiConfiguration type to configure enterprise options.
83806
83650
  */
83807
83651
  wpaEnterprise: 2,
83808
83652
  /**
83809
- * WEP Encryption.
83653
+ * Indicates Wi-Fi security type is associated with WEP Encryption.
83810
83654
  */
83811
83655
  wep: 3,
83812
83656
  /**
83813
- * WPA2-Personal.
83657
+ * Indicates Wi-Fi security type is associated with WPA2-Personal.
83814
83658
  */
83815
83659
  wpa2Personal: 4,
83816
83660
  /**
83817
- * WPA2-Enterprise. Must use WindowsWifiEnterpriseEAPConfiguration type to configure enterprise options.
83661
+ * Indicates Wi-Fi security type is associated with WPA2-Enterprise. Must use WindowsWifiEnterpriseEAPConfiguration type to configure enterprise options.
83818
83662
  */
83819
83663
  wpa2Enterprise: 5,
83664
+ unknownFutureValue: 6,
83665
+ /**
83666
+ * Indicates Wi-Fi security type is associated with WPA3-Personal. Provides stronger encryption using Simultaneous Authentication of Equals (SAE).
83667
+ */
83668
+ wpa3Personal: 7,
83820
83669
  }
83821
83670
 
83822
83671
  /**
@@ -87977,6 +87826,7 @@ namespace reference.`microsoft.graph.healthMonitoring` {
87977
87826
  }
87978
87827
 
87979
87828
  }
87829
+ @privatePreviewDefinition("organizationalUnit", "2025-08-12", "2026-02-28", "<theOwner>")
87980
87830
  @publicNamespace("microsoft.graph.identitygovernance")
87981
87831
  namespace reference.`microsoft.graph.identityGovernance` {
87982
87832
  @complex model activateGroupScope extends activationScope {
@@ -88275,6 +88125,9 @@ namespace reference.`microsoft.graph.identityGovernance` {
88275
88125
  nextScheduleRunDateTime: offsetDateTime | null;
88276
88126
  version: int32 | null;
88277
88127
  @references executionScope: userProcessingResult[];
88128
+
88129
+ @privatePreview("organizationalUnit")
88130
+ @references previewScope: reference.`microsoft.graph`.directoryObject[];
88278
88131
  @contains runs: run[];
88279
88132
  @contains taskReports: taskReport[];
88280
88133
  @contains userProcessingResults: userProcessingResult[];
@@ -88371,6 +88224,8 @@ namespace reference.`microsoft.graph.identityGovernance` {
88371
88224
  onDemand: 1,
88372
88225
  unknownFutureValue: 2,
88373
88226
  activatedWithScope: 3,
88227
+ @privatePreview("organizationalUnit")
88228
+ preview: 4,
88374
88229
  }
88375
88230
 
88376
88231
  enum workflowTriggerTimeBasedAttribute {
@@ -89803,6 +89658,50 @@ namespace reference.`microsoft.graph.networkaccess` {
89803
89658
  userCount: int32;
89804
89659
  }
89805
89660
 
89661
+ @abstract
89662
+ @complex model cloudFirewallDestinationAddress {
89663
+ }
89664
+
89665
+ @complex model cloudFirewallDestinationFqdnAddress extends cloudFirewallDestinationAddress {
89666
+ values: string[];
89667
+ }
89668
+
89669
+ @complex model cloudFirewallDestinationIpAddress extends cloudFirewallDestinationAddress {
89670
+ values: string[];
89671
+ }
89672
+
89673
+ @complex model cloudFirewallDestinationMatching {
89674
+ addresses: cloudFirewallDestinationAddress[];
89675
+ ports: string[];
89676
+ protocols: cloudFirewallProtocol;
89677
+ }
89678
+
89679
+ @complex model cloudFirewallMatchingConditions {
89680
+ destinations: cloudFirewallDestinationMatching | null;
89681
+ sources: cloudFirewallSourceMatching | null;
89682
+ }
89683
+
89684
+ @complex model cloudFirewallPolicySettings {
89685
+ defaultAction: cloudFirewallAction;
89686
+ }
89687
+
89688
+ @complex model cloudFirewallRuleSettings {
89689
+ status: securityRuleStatus;
89690
+ }
89691
+
89692
+ @abstract
89693
+ @complex model cloudFirewallSourceAddress {
89694
+ }
89695
+
89696
+ @complex model cloudFirewallSourceIpAddress extends cloudFirewallSourceAddress {
89697
+ values: string[];
89698
+ }
89699
+
89700
+ @complex model cloudFirewallSourceMatching {
89701
+ addresses: cloudFirewallSourceAddress[];
89702
+ ports: string[];
89703
+ }
89704
+
89806
89705
  @complex model connectionSummary {
89807
89706
  totalCount: int32;
89808
89707
  trafficType: trafficType;
@@ -90227,6 +90126,22 @@ namespace reference.`microsoft.graph.networkaccess` {
90227
90126
  @contains forwardingProfiles: forwardingProfile[];
90228
90127
  }
90229
90128
 
90129
+ @entity model cloudFirewallPolicy extends policy {
90130
+ @computed lastModifiedDateTime: offsetDateTime;
90131
+ settings: cloudFirewallPolicySettings;
90132
+ }
90133
+
90134
+ @entity model cloudFirewallPolicyLink extends policyLink {
90135
+ }
90136
+
90137
+ @entity model cloudFirewallRule extends policyRule {
90138
+ action: cloudFirewallAction;
90139
+ description: string | null;
90140
+ matchingConditions: cloudFirewallMatchingConditions;
90141
+ priority: int64;
90142
+ settings: cloudFirewallRuleSettings;
90143
+ }
90144
+
90230
90145
  @entity model conditionalAccessPolicy extends reference.`microsoft.graph`.entity {
90231
90146
  @computed createdDateTime: offsetDateTime;
90232
90147
  description: string | null;
@@ -90242,14 +90157,17 @@ namespace reference.`microsoft.graph.networkaccess` {
90242
90157
  agentVersion: string | null;
90243
90158
  applicationSnapshot: applicationSnapshot | null;
90244
90159
  @computed createdDateTime: offsetDateTime;
90160
+ crossTenantAccessType: crossTenantAccessType | null;
90245
90161
  destinationFqdn: string | null;
90246
90162
  destinationIp: string | null;
90247
90163
  destinationPort: int32 | null;
90248
90164
  deviceCategory: deviceCategory | null;
90249
90165
  deviceId: string | null;
90166
+ deviceJoinType: deviceJoinType | null;
90250
90167
  deviceOperatingSystem: string | null;
90251
90168
  deviceOperatingSystemVersion: string | null;
90252
90169
  endDateTime: offsetDateTime | null;
90170
+ homeTenantId: string | null;
90253
90171
  initiatingProcessName: string | null;
90254
90172
  @computed lastUpdateDateTime: offsetDateTime | null;
90255
90173
  networkProtocol: networkingProtocol | null;
@@ -90398,6 +90316,7 @@ namespace reference.`microsoft.graph.networkaccess` {
90398
90316
 
90399
90317
  @entity model networkAccessRoot extends reference.`microsoft.graph`.entity {
90400
90318
  @contains alerts: alert[];
90319
+ @contains cloudFirewallPolicies: cloudFirewallPolicy[];
90401
90320
  @contains connectivity: connectivity | null;
90402
90321
  @contains filteringPolicies: filteringPolicy[];
90403
90322
  @contains filteringProfiles: filteringProfile[];
@@ -90639,6 +90558,19 @@ namespace reference.`microsoft.graph.networkaccess` {
90639
90558
  unknownFutureValue: 2,
90640
90559
  }
90641
90560
 
90561
+ enum cloudFirewallAction {
90562
+ allow: 0,
90563
+ block: 1,
90564
+ unknownFutureValue: 3,
90565
+ }
90566
+
90567
+ @graphFlags
90568
+ enum cloudFirewallProtocol {
90569
+ tcp: 1,
90570
+ udp: 2,
90571
+ unknownFutureValue: 4,
90572
+ }
90573
+
90642
90574
  enum confidenceLevel {
90643
90575
  `unknown`: 0,
90644
90576
  low: 1,
@@ -90661,6 +90593,12 @@ namespace reference.`microsoft.graph.networkaccess` {
90661
90593
  unknownFutureValue: 4,
90662
90594
  }
90663
90595
 
90596
+ enum crossTenantAccessType {
90597
+ none: 0,
90598
+ b2bCollaboration: 1,
90599
+ unknownFutureValue: 2,
90600
+ }
90601
+
90664
90602
  enum deviceCategory {
90665
90603
  client: 0,
90666
90604
  branch: 1,
@@ -90668,6 +90606,13 @@ namespace reference.`microsoft.graph.networkaccess` {
90668
90606
  remoteNetwork: 3,
90669
90607
  }
90670
90608
 
90609
+ enum deviceJoinType {
90610
+ none: 0,
90611
+ microsoftEntraJoined: 1,
90612
+ microsoftEntraRegistered: 2,
90613
+ unknownFutureValue: 3,
90614
+ }
90615
+
90671
90616
  enum deviceVendor {
90672
90617
  barracudaNetworks: 0,
90673
90618
  checkPoint: 1,
@@ -90686,6 +90631,12 @@ namespace reference.`microsoft.graph.networkaccess` {
90686
90631
  other: 14,
90687
90632
  ciscoCatalyst: 15,
90688
90633
  unknownFutureValue: 16,
90634
+ aviatrix: 17,
90635
+ netskope: 18,
90636
+ teridion: 19,
90637
+ aristaNetworks: 20,
90638
+ aristaVeloCloud: 21,
90639
+ juniperNetworks: 22,
90689
90640
  }
90690
90641
 
90691
90642
  enum dhGroup {
@@ -90937,6 +90888,11 @@ namespace reference.`microsoft.graph.networkaccess` {
90937
90888
  franceSouth: 33,
90938
90889
  israelCentral: 34,
90939
90890
  unknownFutureValue: 35,
90891
+ taiwanNorth: 36,
90892
+ mexicoCentral: 37,
90893
+ spainCentral: 38,
90894
+ jioIndiaCentral: 39,
90895
+ brazilSouthEast: 40,
90940
90896
  }
90941
90897
 
90942
90898
  enum remoteNetworkStatus {
@@ -92537,6 +92493,10 @@ namespace reference.`microsoft.graph.security` {
92537
92493
  @complex model mdiAuditRecord extends auditData {
92538
92494
  }
92539
92495
 
92496
+ @complex model mergeResponse {
92497
+ targetIncidentId: string;
92498
+ }
92499
+
92540
92500
  @complex model meshWorldsAuditRecord extends auditData {
92541
92501
  }
92542
92502
 
@@ -95246,6 +95206,28 @@ namespace reference.`microsoft.graph.security` {
95246
95206
  use: 2,
95247
95207
  }
95248
95208
 
95209
+ @graphFlags
95210
+ enum correlationReason {
95211
+ repeatedAlertOccurrence: 1,
95212
+ sameGeography: 2,
95213
+ similarArtifacts: 4,
95214
+ sameTargetedAsset: 8,
95215
+ sameNetworkSegment: 16,
95216
+ eventSequence: 32,
95217
+ timeFrame: 64,
95218
+ sameThreatSource: 128,
95219
+ similarTTPsOrBehavior: 256,
95220
+ sameActor: 512,
95221
+ sameCampaign: 1024,
95222
+ sharedIndicators: 2048,
95223
+ sameAsset: 4096,
95224
+ networkProximity: 8192,
95225
+ eventCasualSequence: 16384,
95226
+ temporalProximity: 32768,
95227
+ lateralMovementPath: 65536,
95228
+ unknownFutureValue: 131072,
95229
+ }
95230
+
95249
95231
  enum dataSourceContainerStatus {
95250
95232
  active: 1,
95251
95233
  released: 2,