@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.
@@ -11,6 +11,8 @@ scalar binary; //TODO: Enables support for Edm.Binary
11
11
  @privatePreviewDefinition("photoEditPolicy", "2024-02-16", "2025-02-16", "<theOwner>")
12
12
  @deprecatedDefinition("Reporting", "<ChangeLogCategory>", "2021-04-11", "2021-12-31", "The action property is deprecated. The provisioningAction holds the same information as this. This only exists in the beta api.")
13
13
  // Metadata item DeprecatedDefinition_Reporting was already defined with a different value.
14
+ @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.")
15
+ // Metadata item DeprecatedDefinition_SynchronizationSecret_Deprecation was already defined with a different value.
14
16
  @deprecatedDefinition("AccessReviewReportBreakingChanges", "<ChangeLogCategory>", "2021-07-30", "2022-01-30", "This property is being deprecated. Use the fulfilledDateTime value in the individual report instance instead")
15
17
  // Metadata item DeprecatedDefinition_AccessReviewReportBreakingChanges was already defined with a different value.
16
18
  @deprecatedDefinition("identityProvider", "<ChangeLogCategory>", "2021-08-24", "2023-03-15", "The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API.")
@@ -643,38 +645,6 @@ namespace reference.`microsoft.graph` {
643
645
  selections: keyValuePair[] | null;
644
646
  }
645
647
 
646
- /**
647
- * 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.
648
- */
649
- @complex model androidFotaDeploymentAssignment {
650
- /**
651
- * 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.
652
- */
653
- assignmentTarget: deviceAndAppManagementAssignmentTarget | null;
654
- /**
655
- * The display name of the Azure AD security group used for the assignment.
656
- */
657
- displayName: string;
658
- /**
659
- * A unique identifier assigned to each Android FOTA Assignment entity
660
- */
661
- id: string | null;
662
- /**
663
- * 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).
664
- */
665
- target: androidFotaDeploymentAssignmentTarget | null;
666
- }
667
-
668
- /**
669
- * The AAD Group we are deploying firmware updates to
670
- */
671
- @complex model androidFotaDeploymentAssignmentTarget extends deviceAndAppManagementAssignmentTarget {
672
- /**
673
- * AAD Group Id.
674
- */
675
- groupId: string;
676
- }
677
-
678
648
  /**
679
649
  * Contains properties used to assign an Android Managed Store mobile app to a group.
680
650
  */
@@ -2607,6 +2577,10 @@ namespace reference.`microsoft.graph` {
2607
2577
  url: string | null;
2608
2578
  }
2609
2579
 
2580
+ @complex model connectivityParameterEntry {
2581
+ value: string | null;
2582
+ }
2583
+
2610
2584
  /**
2611
2585
  * Represent connector status
2612
2586
  */
@@ -6028,129 +6002,6 @@ namespace reference.`microsoft.graph` {
6028
6002
  targetChatId: string | null;
6029
6003
  }
6030
6004
 
6031
- /**
6032
- * The settings for a FOTA deployment. Is an abstract type.
6033
- */
6034
- @abstract
6035
- @complex model fotaDeploymentSetting {
6036
- /**
6037
- * 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.
6038
- */
6039
- batteryRuleMinimumBatteryLevelPercentage: int32 | null;
6040
- /**
6041
- * 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.
6042
- */
6043
- batteryRulePowerAdaptorRequired: boolean | null;
6044
- /**
6045
- * 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.
6046
- */
6047
- installRuleWindowEndTime: offsetDateTime | null;
6048
- /**
6049
- * 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'.
6050
- */
6051
- installRuleWindowStartTime: offsetDateTime | null;
6052
- /**
6053
- * 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.
6054
- */
6055
- networkType: fotaNetworkType;
6056
- /**
6057
- * 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.
6058
- */
6059
- timeZoneOffsetInMinutes: int32 | null;
6060
- }
6061
-
6062
- /**
6063
- * 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.
6064
- */
6065
- @complex model fotaDeploymentStatus {
6066
- /**
6067
- * Indicates the number of devices where firmware update was cancelled. Default is 0. Returned by default.
6068
- */
6069
- cancelledDeviceCount: int32;
6070
- /**
6071
- * '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.
6072
- */
6073
- cancelRequested: boolean;
6074
- /**
6075
- * Indicates the number of devices where firmware update was completed. Default is 0. Returned by default
6076
- */
6077
- completedDeviceCount: int32;
6078
- /**
6079
- * 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.
6080
- */
6081
- deploymentEndDateTime: offsetDateTime | null;
6082
- /**
6083
- * 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.
6084
- */
6085
- deploymentState: fotaDeploymentState;
6086
- /**
6087
- * 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.
6088
- */
6089
- errorCode: fotaDeploymentErrorCode;
6090
- /**
6091
- * Indicates the number of devices where firmware update failed. Default is 0. Returned by default.
6092
- */
6093
- failedDeviceCount: int32;
6094
- /**
6095
- * Indicates the number of devices where firmware update is in progress. Default is 0. Returned by default.
6096
- */
6097
- inProgressDeviceCount: int32;
6098
- /**
6099
- * 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.
6100
- */
6101
- @computed lastModifiedDateTime: offsetDateTime | null;
6102
- /**
6103
- * Indicates the number of devices where the deployment was not applicable. Default is 0. Returned by default.
6104
- */
6105
- notApplicableDeviceCount: int32;
6106
- /**
6107
- * Indicates the total number of devices in the FOTA deployment. Default is 0. Returned by default.
6108
- */
6109
- totalDeviceCount: int32;
6110
- /**
6111
- * 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.
6112
- */
6113
- unknownDeviceCount: int32;
6114
- }
6115
-
6116
- /**
6117
- * 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.
6118
- */
6119
- @complex model fotaDeviceRegistrationStatus {
6120
- /**
6121
- * Indicates the number of devices where FOTA registration completed. Default is 0. Returned by default.
6122
- */
6123
- completedDeviceCount: int32;
6124
- /**
6125
- * 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.
6126
- */
6127
- errorCode: fotaRegistrationErrorCode;
6128
- /**
6129
- * Indicates the number of devices where FOTA registration failed. Default is 0. Returned by default.
6130
- */
6131
- failedDeviceCount: int32;
6132
- /**
6133
- * Indicates the number of devices where FOTA registration is in progress. Default is 0. Returned by default.
6134
- */
6135
- inProgressDeviceCount: int32;
6136
- /**
6137
- * Indicates the number of devices where FOTA registration is not applicable. Default is 0. Returned by default.
6138
- */
6139
- notApplicableDeviceCount: int32;
6140
- /**
6141
- * 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.
6142
- */
6143
- registrationState: fotaRegistrationState;
6144
- /**
6145
- * Indicates the total number of devices targeted for FOTA registration. Default is 0. Returned by default.
6146
- */
6147
- totalDeviceCount: int32;
6148
- /**
6149
- * Indicates the number of devices where FOTA registration status is unknown. Default is 0. Returned by default.
6150
- */
6151
- unknownDeviceCount: int32;
6152
- }
6153
-
6154
6005
  @complex model freeBusyError {
6155
6006
  message: string | null;
6156
6007
  responseCode: string | null;
@@ -9490,6 +9341,7 @@ namespace reference.`microsoft.graph` {
9490
9341
  onPremisesApplicationSegments: onPremisesApplicationSegment[] | null;
9491
9342
  segmentsConfiguration: segmentConfiguration | null;
9492
9343
  singleSignOnSettings: onPremisesPublishingSingleSignOn | null;
9344
+ trafficRoutingMethod: trafficRoutingMethod;
9493
9345
  useAlternateUrlForTranslationAndRedirect: boolean | null;
9494
9346
  verifiedCustomDomainCertificatesMetadata: verifiedCustomDomainCertificatesMetadata | null;
9495
9347
  verifiedCustomDomainKeyCredential: keyCredential | null;
@@ -9824,6 +9676,11 @@ namespace reference.`microsoft.graph` {
9824
9676
  displayAs: string | null;
9825
9677
  }
9826
9678
 
9679
+ @complex model perTenantTrafficSegmentsOverride {
9680
+ percentage: int32;
9681
+ tenantId: guid;
9682
+ }
9683
+
9827
9684
  @complex model phone {
9828
9685
  number: string | null;
9829
9686
  type: phoneType | null;
@@ -10602,41 +10459,67 @@ namespace reference.`microsoft.graph` {
10602
10459
  }
10603
10460
 
10604
10461
  /**
10605
- * The settings for a Samsung Knox E-FOTA campaign (deployment). Inherits from 'graph.fotaDeploymentSetting'.
10462
+ * The firmware version from Samsung for a specific device model, sales code, and CSC (Consumer Software Customization). Used to create Samsung E-FOTA deployments.
10606
10463
  */
10607
- @complex model samsungEFotaDeploymentSetting extends fotaDeploymentSetting {
10464
+ @complex model samsungEFotaFirmwareVersion {
10465
+ /**
10466
+ * The Android Processor version name. This property is populated by Samsung. Eg. 'G960U1UES9FVD1'. Default value: null. Read-only.
10467
+ */
10468
+ androidProcessorVersionName: string | null;
10469
+ /**
10470
+ * 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.
10471
+ */
10472
+ consumerSoftwareCustomizationCode: string;
10608
10473
  /**
10609
- * 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.
10474
+ * The firmware description. This property is populated by Samsung. Default value: null. Read-only.
10610
10475
  */
10611
- autoFirmwareInstallationReminderMessageDurationInMinutes: int32;
10476
+ description: string | null;
10612
10477
  /**
10613
- * 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.
10478
+ * Samsung device model. This property is populated by Samsung. Eg. 'SM-960F'. Read-only. Returned by default.
10614
10479
  */
10615
- campaignEndDateTime: offsetDateTime;
10480
+ deviceModelName: string;
10616
10481
  /**
10617
- * Campaign (deployment) installation schedule mode. Default is StartAndEndDateSchedule.
10482
+ * The firmware version. This property is populated by Samsung Eg. 'T575XXU4EAAA/T575OXM4EAAA/T575XXU4EAAA'. Default value: null. Read-only.
10618
10483
  */
10619
- campaignScheduleMode: samsungEFotaScheduleMode;
10484
+ firmwareVersion: string | null;
10620
10485
  /**
10621
- * 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.
10486
+ * Firmware ID from Samsung. This property is populated by Samsung. Eg. 'FW2022033111797487'. Read-only. Returned by default.
10622
10487
  */
10623
- campaignStartDateTime: offsetDateTime;
10488
+ id: string | null;
10624
10489
  /**
10625
- * 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.
10490
+ * The OS version name. This property is populated by Samsung. Eg. 'Pie(Android 9)'. Default value: null. Read-only.
10626
10491
  */
10627
- campaignTimeZoneOffsetInMinutes: int32 | null;
10492
+ osVersionName: string | null;
10628
10493
  /**
10629
- * The time of day for a firmware download. Possible values are 'any' (default) and 'matchFirmwareInstallPeriod'. See 'graph.fotaDownloadPeriodType' enum for details. Returned by default.
10494
+ * 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.
10630
10495
  */
10631
- downloadPeriod: fotaDownloadPeriodType | null;
10496
+ releaseDateTime: offsetDateTime;
10632
10497
  /**
10633
- * 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.
10498
+ * The firmware request type. This property is populated by Samsung Eg. 'NORMAL'. Default value: null. Read-only.
10634
10499
  */
10635
- postponedInstallationReminderMessageDuration: int32;
10500
+ requestFirmwareTypeName: string | null;
10636
10501
  /**
10637
- * 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.
10502
+ * 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.
10638
10503
  */
10639
- postponeInstallation: int32;
10504
+ salesCode: string;
10505
+ /**
10506
+ * The firmware security patch. This property is populated by Samsung Eg. '2023-09-07 07:50:57'. Default value: null. Read-only.
10507
+ */
10508
+ securityPatchVersion: string | null;
10509
+ }
10510
+
10511
+ /**
10512
+ * The targeted firmware version for an E-FOTA deployment. Used while creating E-FOTA deployments.
10513
+ */
10514
+ @complex model samsungEFotaFirmwareVersionTarget {
10515
+ /**
10516
+ * Describes the firmware version for a specific device model, sales code, and CSC. See 'graph.samsungEFotaFirmwareVersion' entity for details. Returned by default.
10517
+ */
10518
+ firmwareVersion: samsungEFotaFirmwareVersion;
10519
+ /**
10520
+ * A unique identifier assigned to each Samsung Knox E-FOTA firmware version target entity. Returned by default.
10521
+ */
10522
+ id: string | null;
10640
10523
  }
10641
10524
 
10642
10525
  @complex model scheduleInformation {
@@ -11323,6 +11206,7 @@ namespace reference.`microsoft.graph` {
11323
11206
  state: synchronizationScheduleState;
11324
11207
  }
11325
11208
 
11209
+ @graphDeprecated("SynchronizationSecret_Deprecation")
11326
11210
  @complex model synchronizationSecretKeyStringValuePair {
11327
11211
  key: synchronizationSecret;
11328
11212
  value: string | null;
@@ -15921,6 +15805,10 @@ namespace reference.`microsoft.graph` {
15921
15805
  * Indicates whether or not google accounts will be blocked.
15922
15806
  */
15923
15807
  googleAccountsBlocked: boolean | null;
15808
+ /**
15809
+ * Exit code to allow a user to escape from Kiosk Mode when the device is in Kiosk Mode.
15810
+ */
15811
+ isKioskModeExitCodeSet: boolean;
15924
15812
  /**
15925
15813
  * Indicates whether a user can access the device's Settings app while in Kiosk Mode.
15926
15814
  */
@@ -17311,6 +17199,10 @@ namespace reference.`microsoft.graph` {
17311
17199
  * Setting to specify whether to allow ConnectedApps experience for this app.
17312
17200
  */
17313
17201
  connectedAppsEnabled: boolean;
17202
+ /**
17203
+ * 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.
17204
+ */
17205
+ credentialProviderRoleState: androidAppCredentialProviderRoleState;
17314
17206
  /**
17315
17207
  * Android For Work app configuration package id.
17316
17208
  */
@@ -18097,6 +17989,10 @@ namespace reference.`microsoft.graph` {
18097
17989
  * Setting to specify whether to allow ConnectedApps experience for this app.
18098
17990
  */
18099
17991
  connectedAppsEnabled: boolean;
17992
+ /**
17993
+ * 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.
17994
+ */
17995
+ credentialProviderRoleState: androidAppCredentialProviderRoleState;
18100
17996
  /**
18101
17997
  * Android Enterprise app configuration package id.
18102
17998
  */
@@ -20194,6 +20090,11 @@ namespace reference.`microsoft.graph` {
20194
20090
  @contains verticalSection: verticalSection | null;
20195
20091
  }
20196
20092
 
20093
+ @entity model caPoliciesDeletableRoot extends entity {
20094
+ @contains namedLocations: namedLocation[];
20095
+ @contains policies: conditionalAccessPolicy[];
20096
+ }
20097
+
20197
20098
  /**
20198
20099
  * CartToClassAssociation for associating device carts with classrooms.
20199
20100
  */
@@ -20838,12 +20739,13 @@ namespace reference.`microsoft.graph` {
20838
20739
  partnerState: deviceManagementPartnerTenantState;
20839
20740
  }
20840
20741
 
20841
- @entity model conditionalAccessPolicy extends entity {
20742
+ @entity model conditionalAccessPolicy extends policyDeletableItem {
20842
20743
  conditions: conditionalAccessConditionSet;
20843
20744
  @computed createdDateTime: offsetDateTime | null;
20844
20745
  description: string | null;
20845
20746
  displayName: string;
20846
20747
  grantControls: conditionalAccessGrantControls | null;
20748
+ @computed @key id: string;
20847
20749
  modifiedDateTime: offsetDateTime | null;
20848
20750
  sessionControls: conditionalAccessSessionControls | null;
20849
20751
  state: conditionalAccessPolicyState;
@@ -20852,6 +20754,7 @@ namespace reference.`microsoft.graph` {
20852
20754
 
20853
20755
  @entity model conditionalAccessRoot extends entity {
20854
20756
  @contains authenticationContextClassReferences: authenticationContextClassReference[];
20757
+ @contains deletedItems: caPoliciesDeletableRoot | null;
20855
20758
  @contains namedLocations: namedLocation[];
20856
20759
  @contains policies: conditionalAccessPolicy[];
20857
20760
  @contains templates: conditionalAccessTemplate[];
@@ -21886,6 +21789,10 @@ namespace reference.`microsoft.graph` {
21886
21789
  * Indicates whether Setup Assistant will skip the user interface for primary account setup
21887
21790
  */
21888
21791
  skipPrimarySetupAccountCreation: boolean;
21792
+ /**
21793
+ * Indicates whether Platform SSO is used as part of device enrollment during Setup Assistant. When TRUE, Platform SSO is used in device enrollment during Setup Assistant. When FALSE Platform SSO is not used in enrollment during Setup Assistant. Note: This value cannot be TRUE when configurationWebUrl is TRUE.
21794
+ */
21795
+ usePlatformSSODuringSetupAssistant: boolean;
21889
21796
  /**
21890
21797
  * Indicates if zoom setup pane is disabled
21891
21798
  */
@@ -23973,6 +23880,10 @@ namespace reference.`microsoft.graph` {
23973
23880
  * Maximum number of dep tokens allowed per-tenant.
23974
23881
  */
23975
23882
  maximumDepTokens: int32;
23883
+ /**
23884
+ * The collection of Samsung EFOTA firmware versions.
23885
+ */
23886
+ samsungEFotaFirmwareVersions: samsungEFotaFirmwareVersion[] | null;
23976
23887
  /**
23977
23888
  * Account level settings.
23978
23889
  */
@@ -24237,18 +24148,6 @@ namespace reference.`microsoft.graph` {
24237
24148
  * The policy which controls mobile device access to Exchange On Premises
24238
24149
  */
24239
24150
  @contains exchangeOnPremisesPolicy: deviceManagementExchangeOnPremisesPolicy | null;
24240
- /**
24241
- * 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.
24242
- */
24243
- @contains fotaConnector: fotaConnector | null;
24244
- /**
24245
- * The collection of FOTA connector entity that represents the tenant's authorization status for Intune
24246
- */
24247
- @contains fotaConnectors: fotaConnector[];
24248
- /**
24249
- * The collection of FOTA deployment for an OEM.
24250
- */
24251
- @contains fotaDeployments: fotaDeployment[];
24252
24151
  /**
24253
24152
  * The available group policy categories for this account.
24254
24153
  */
@@ -24418,14 +24317,6 @@ namespace reference.`microsoft.graph` {
24418
24317
  * The Role Scope Tags.
24419
24318
  */
24420
24319
  @contains roleScopeTags: roleScopeTag[];
24421
- /**
24422
- * The collection of FOTA deployment for Samsung OEM.
24423
- */
24424
- @contains samsungEFotaDeployments: samsungEFotaDeployment[];
24425
- /**
24426
- * The collection of Samsung EFOTA firmware versions.
24427
- */
24428
- @contains samsungEFotaFirmwareVersions: samsungEFotaFirmwareVersion[];
24429
24320
  /**
24430
24321
  * A list of ServiceNowConnections
24431
24322
  */
@@ -27253,75 +27144,6 @@ namespace reference.`microsoft.graph` {
27253
27144
  supportedAttributeTypes: attributeType[];
27254
27145
  }
27255
27146
 
27256
- /**
27257
- * 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.
27258
- */
27259
- @entity model fotaConnector extends entity {
27260
- /**
27261
- * 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.
27262
- */
27263
- authorizationUrl: string | null;
27264
- /**
27265
- * 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.
27266
- */
27267
- deviceRegistrationStatus: fotaDeviceRegistrationStatus | null;
27268
- /**
27269
- * 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.
27270
- */
27271
- displayName: string | null;
27272
- /**
27273
- * 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.
27274
- */
27275
- @computed lastSyncDateTime: offsetDateTime | null;
27276
- /**
27277
- * 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.
27278
- */
27279
- oem: fotaOemType;
27280
- /**
27281
- * The Entra security groups targeted for device registration. See 'graph.deviceAndAppManagementAssignmentTarget' entity for details. Default value: null.
27282
- */
27283
- registrationAssignments: deviceAndAppManagementAssignmentTarget[] | null;
27284
- /**
27285
- * 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.
27286
- */
27287
- state: fotaConnectorState;
27288
- /**
27289
- * Tenant's total Samsung licenses count. Default value: null.
27290
- */
27291
- totalLicensesCount: int32 | null;
27292
- }
27293
-
27294
- /**
27295
- * 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'
27296
- */
27297
- @abstract
27298
- @entity model fotaDeployment extends entity {
27299
- /**
27300
- * The deployment's targeted security groups(s). See 'graph.deviceAndAppManagementAssignmentTarget' for more details. Returned by default.
27301
- */
27302
- deploymentAssignments: deviceAndAppManagementAssignmentTarget[];
27303
- /**
27304
- * The deployment status from the OEM (Original Equipment Manufacturer). See 'graph.fotaDeploymentStatus' complex type for details. Default value: null.
27305
- */
27306
- deploymentStatus: fotaDeploymentStatus | null;
27307
- /**
27308
- * The description of the FOTA deployment. Max allowed length is 1500 chars. Default value: null.
27309
- */
27310
- description: string | null;
27311
- /**
27312
- * The deployment name associated with FOTA deployment. Returned by default. Max allowed length is 200 chars.
27313
- */
27314
- displayName: string;
27315
- /**
27316
- * 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.
27317
- */
27318
- oem: fotaOemType;
27319
- /**
27320
- * List of Scope Tags for the deployment. Default value: null.
27321
- */
27322
- roleScopeTagIds: string[] | null;
27323
- }
27324
-
27325
27147
  @abstract
27326
27148
  @entity model governanceInsight extends entity {
27327
27149
  insightCreatedDateTime: offsetDateTime | null;
@@ -35219,12 +35041,17 @@ namespace reference.`microsoft.graph` {
35219
35041
  value: string[] | null;
35220
35042
  }
35221
35043
 
35222
- @entity model namedLocation extends entity {
35044
+ @entity model namedLocation extends policyDeletableItem {
35223
35045
  @computed createdDateTime: offsetDateTime | null;
35224
35046
  displayName: string;
35047
+ @computed @key id: string;
35225
35048
  modifiedDateTime: offsetDateTime | null;
35226
35049
  }
35227
35050
 
35051
+ @entity model namePronunciationSettings extends entity {
35052
+ isEnabledInOrganization: boolean;
35053
+ }
35054
+
35228
35055
  /**
35229
35056
  * Entity which represents an OnPrem Ndes connector.
35230
35057
  */
@@ -35882,6 +35709,8 @@ namespace reference.`microsoft.graph` {
35882
35709
 
35883
35710
  @entity model peopleAdminSettings extends entity {
35884
35711
  @contains itemInsights: insightsSettings | null;
35712
+ @contains namePronunciation: namePronunciationSettings | null;
35713
+ @contains photoUpdateSettings: photoUpdateSettings | null;
35885
35714
  @contains profileCardProperties: profileCardProperty[];
35886
35715
  @contains pronouns: pronounsSettings | null;
35887
35716
  }
@@ -36037,6 +35866,11 @@ namespace reference.`microsoft.graph` {
36037
35866
  phoneNumber: string | null;
36038
35867
  }
36039
35868
 
35869
+ @entity model photoUpdateSettings extends entity {
35870
+ allowedRoles: string[] | null;
35871
+ source: photoUpdateSource | null;
35872
+ }
35873
+
36040
35874
  @entity model pinnedChatMessageInfo extends entity {
36041
35875
  @references message: chatMessage | null;
36042
35876
  }
@@ -36077,6 +35911,11 @@ namespace reference.`microsoft.graph` {
36077
35911
  displayName: string;
36078
35912
  }
36079
35913
 
35914
+ @abstract
35915
+ @entity model policyDeletableItem extends MsGraph.SharedModels.entity {
35916
+ deletedDateTime: offsetDateTime | null;
35917
+ }
35918
+
36080
35919
  @entity model policyRoot extends entity {
36081
35920
  @contains accessReviewPolicy: accessReviewPolicy | null;
36082
35921
  @contains activityBasedTimeoutPolicies: activityBasedTimeoutPolicy[];
@@ -36515,6 +36354,7 @@ namespace reference.`microsoft.graph` {
36515
36354
  @entity model profileCardProperty extends entity {
36516
36355
  annotations: profileCardAnnotation[] | null;
36517
36356
  directoryPropertyName: string | null;
36357
+ isVisible: boolean;
36518
36358
  }
36519
36359
 
36520
36360
  @entity model profilePhoto extends entity {
@@ -37057,80 +36897,6 @@ namespace reference.`microsoft.graph` {
37057
36897
  signingCertificate: string | null;
37058
36898
  }
37059
36899
 
37060
- /**
37061
- * 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'
37062
- */
37063
- @entity model samsungEFotaDeployment extends fotaDeployment {
37064
- /**
37065
- * 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.
37066
- */
37067
- deploymentSetting: samsungEFotaDeploymentSetting;
37068
- /**
37069
- * 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
37070
- */
37071
- @references firmwareVersionTargets: samsungEFotaFirmwareVersionTarget[];
37072
- }
37073
-
37074
- /**
37075
- * The firmware version from Samsung for a specific device model, sales code, and CSC (Consumer Software Customization). Used to create Samsung E-FOTA deployments.
37076
- */
37077
- @entity model samsungEFotaFirmwareVersion extends entity {
37078
- /**
37079
- * The Android Processor version name. This property is populated by Samsung. Eg. 'G960U1UES9FVD1'. Default value: null. Read-only.
37080
- */
37081
- androidProcessorVersionName: string | null;
37082
- /**
37083
- * 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.
37084
- */
37085
- consumerSoftwareCustomizationCode: string;
37086
- /**
37087
- * The firmware description. This property is populated by Samsung. Default value: null. Read-only.
37088
- */
37089
- description: string | null;
37090
- /**
37091
- * Samsung device model. This property is populated by Samsung. Eg. 'SM-960F'. Read-only. Returned by default.
37092
- */
37093
- deviceModelName: string;
37094
- /**
37095
- * The firmware version. This property is populated by Samsung Eg. 'T575XXU4EAAA/T575OXM4EAAA/T575XXU4EAAA'. Default value: null. Read-only.
37096
- */
37097
- firmwareVersion: string | null;
37098
- /**
37099
- * The OS version name. This property is populated by Samsung. Eg. 'Pie(Android 9)'. Default value: null. Read-only.
37100
- */
37101
- osVersionName: string | null;
37102
- /**
37103
- * 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.
37104
- */
37105
- releaseDateTime: offsetDateTime;
37106
- /**
37107
- * The firmware request type. This property is populated by Samsung Eg. 'NORMAL'. Default value: null. Read-only.
37108
- */
37109
- requestFirmwareType: string | null;
37110
- /**
37111
- * 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.
37112
- */
37113
- salesCode: string;
37114
- /**
37115
- * The firmware security patch. This property is populated by Samsung Eg. '2023-09-07 07:50:57'. Default value: null. Read-only.
37116
- */
37117
- securityPatch: string | null;
37118
- }
37119
-
37120
- /**
37121
- * The targeted firmware version for an E-FOTA deployment. Used while creating E-FOTA deployments.
37122
- */
37123
- @entity model samsungEFotaFirmwareVersionTarget extends entity {
37124
- /**
37125
- * 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.
37126
- */
37127
- updateType: fotaFirmwareUpdateType;
37128
- /**
37129
- * Describes the firmware version for a specific device model, sales code, and CSC. See 'graph.samsungEFotaFirmwareVersion' entity for details. Returned by default.
37130
- */
37131
- @references firmwareVersion: samsungEFotaFirmwareVersion;
37132
- }
37133
-
37134
36900
  @entity model schemaExtension extends entity {
37135
36901
  description: string | null;
37136
36902
  owner: string;
@@ -38160,6 +37926,8 @@ namespace reference.`microsoft.graph` {
38160
37926
  }
38161
37927
 
38162
37928
  @entity model synchronization extends entity {
37929
+
37930
+ @graphDeprecated("SynchronizationSecret_Deprecation")
38163
37931
  secrets: synchronizationSecretKeyStringValuePair[] | null;
38164
37932
  @contains jobs: synchronizationJob[];
38165
37933
  @contains templates: synchronizationTemplate[];
@@ -46731,6 +46499,10 @@ namespace reference.`microsoft.graph` {
46731
46499
  * Current anti malware version
46732
46500
  */
46733
46501
  antiMalwareVersion: string | null;
46502
+ /**
46503
+ * 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.
46504
+ */
46505
+ controlledConfigurationEnabled: boolean | null;
46734
46506
  /**
46735
46507
  * Indicates device's health state. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical.
46736
46508
  */
@@ -47679,10 +47451,6 @@ namespace reference.`microsoft.graph` {
47679
47451
  * The Zebra FOTA deployment entity that describes settings, deployment device groups required to create a FOTA deployment, and deployment status.
47680
47452
  */
47681
47453
  @entity model zebraFotaDeployment extends entity {
47682
- /**
47683
- * Collection of Android FOTA Assignment
47684
- */
47685
- deploymentAssignments: androidFotaDeploymentAssignment[] | null;
47686
47454
  /**
47687
47455
  * Represents settings required to create a deployment such as deployment type, artifact info, download and installation
47688
47456
  */
@@ -48011,6 +47779,21 @@ namespace reference.`microsoft.graph` {
48011
47779
  unknownFutureValue: 4,
48012
47780
  }
48013
47781
 
47782
+ /**
47783
+ * The Android credential provider role state for apps.
47784
+ */
47785
+ enum androidAppCredentialProviderRoleState {
47786
+ /**
47787
+ * 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.
47788
+ */
47789
+ notConfigured: 0,
47790
+ /**
47791
+ * Indicates the app is allowed to act as a credential provider.
47792
+ */
47793
+ allowed: 1,
47794
+ unknownFutureValue: 2,
47795
+ }
47796
+
48014
47797
  /**
48015
47798
  * Android Device Owner possible values for states of the device's app auto update policy.
48016
47799
  */
@@ -56248,206 +56031,6 @@ namespace reference.`microsoft.graph` {
56248
56031
  flagged: 2,
56249
56032
  }
56250
56033
 
56251
- /**
56252
- * An OEM's FOTA connector state for the tenant
56253
- */
56254
- enum fotaConnectorState {
56255
- /**
56256
- * Default value when the connector has not been setup (the feature has not been used yet).
56257
- */
56258
- none: 0,
56259
- /**
56260
- * Indicates that Intune is linked to the OEM for the current tenant.
56261
- */
56262
- connected: 1,
56263
- /**
56264
- * Indicates that the tenant was connected in the past and later disconnected.
56265
- */
56266
- disconnected: 2,
56267
- /**
56268
- * Indicates that the IT Pro has not yet authorized Intune to call the OEM on their behalf.
56269
- */
56270
- pending: 3,
56271
- unknownFutureValue: 4,
56272
- }
56273
-
56274
- /**
56275
- * An error code indicating the failure reason, when a FOTA deployment failed to create or complete.
56276
- */
56277
- enum fotaDeploymentErrorCode {
56278
- /**
56279
- * 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.
56280
- */
56281
- noDevicesFoundInSelectedEntraGroups: 0,
56282
- /**
56283
- * 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.
56284
- */
56285
- noIntuneDevicesFoundInSelectedEntraGroups: 1,
56286
- /**
56287
- * 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.
56288
- */
56289
- noFotaEnrolledDevicesFoundForCurrentTenant: 2,
56290
- /**
56291
- * 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.
56292
- */
56293
- noFotaEnrolledDevicesFoundInSelectedEntraGroups: 3,
56294
- /**
56295
- * 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.
56296
- */
56297
- noFotaDevicesFoundForSelectedDeviceModel: 4,
56298
- /**
56299
- * 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.
56300
- */
56301
- fotaCreateDeploymentRequestFailure: 5,
56302
- unknownFutureValue: 6,
56303
- }
56304
-
56305
- /**
56306
- * 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.
56307
- */
56308
- enum fotaDeploymentState {
56309
- /**
56310
- * Default. Deployment is created but the OEM has not confirmed its creation.
56311
- */
56312
- pendingCreation: 0,
56313
- /**
56314
- * Deployment was not successfully created with the OEM or failed to complete.
56315
- */
56316
- createFailed: 1,
56317
- /**
56318
- * Deployment has been created but has not been deployed yet.
56319
- */
56320
- created: 2,
56321
- /**
56322
- * Deployment has started but not completed.
56323
- */
56324
- inProgress: 3,
56325
- /**
56326
- * Deployment has completed or end date has passed.
56327
- */
56328
- completed: 4,
56329
- /**
56330
- * IT Admin has requested to cancel a deployment but the OEM has not confirmed cancellation.
56331
- */
56332
- pendingCancel: 5,
56333
- /**
56334
- * Deployment was not successfully cancelled by the OEM.
56335
- */
56336
- cancelFailed: 6,
56337
- /**
56338
- * Deployment has been successfully cancelled by the OEM.
56339
- */
56340
- cancelled: 7,
56341
- /**
56342
- * Default. Deployment is updated but the OEM has not confirmed its update.
56343
- */
56344
- pendingUpdate: 8,
56345
- /**
56346
- * Deployment was not successfully updated with the OEM.
56347
- */
56348
- updateFailed: 9,
56349
- /**
56350
- * Deployment has been updated but has not been deployed yet.
56351
- */
56352
- updated: 10,
56353
- unknownFutureValue: 11,
56354
- }
56355
-
56356
- /**
56357
- * The time of day for E-FOTA devices to download firmware.
56358
- */
56359
- enum fotaDownloadPeriodType {
56360
- /**
56361
- * Default. The firmware can be downloaded at any time of day.
56362
- */
56363
- any: 0,
56364
- /**
56365
- * The time of day for downloading firmware matches the firmware installation period set in 'graph.fotaDeploymentSetting' 'installRuleWindowStartTime' and 'installRuleWindowEndTime'.
56366
- */
56367
- matchFirmwareInstallPeriod: 1,
56368
- unknownFutureValue: 2,
56369
- }
56370
-
56371
- /**
56372
- * The FOTA deployment's firmware update type.
56373
- */
56374
- enum fotaFirmwareUpdateType {
56375
- /**
56376
- * Default. The FOTA deployment targets a custom firwmare version selected by the IT Admin.
56377
- */
56378
- custom: 0,
56379
- /**
56380
- * 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.
56381
- */
56382
- latestMajorVersion: 1,
56383
- /**
56384
- * 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.
56385
- */
56386
- auto: 2,
56387
- /**
56388
- * 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.
56389
- */
56390
- latestMinorVersion: 3,
56391
- /**
56392
- * The FOTA deployment targets locking the firmware to prevent any firmware from being installed on the devices.
56393
- */
56394
- locked: 4,
56395
- unknownFutureValue: 5,
56396
- }
56397
-
56398
- /**
56399
- * The device's network type required to download and install the FOTA update.
56400
- */
56401
- enum fotaNetworkType {
56402
- /**
56403
- * Default. The device will install the update regardless of current network type.
56404
- */
56405
- any: 0,
56406
- /**
56407
- * The device will install the update only when connected to a wifi network.
56408
- */
56409
- wifi: 1,
56410
- /**
56411
- * The device will install the update only when connected to a cellular network.
56412
- */
56413
- cellular: 2,
56414
- unknownFutureValue: 3,
56415
- }
56416
-
56417
- /**
56418
- * 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'
56419
- */
56420
- enum fotaOemType {
56421
- /**
56422
- * Indicates that the FOTA OEM (Original Equipment Manufacturer) type is Zebra.
56423
- */
56424
- zebra: 1,
56425
- /**
56426
- * Indicates that the FOTA OEM (Original Equipment Manufacturer) type is Samsung.
56427
- */
56428
- samsung: 2,
56429
- unknownFutureValue: 3,
56430
- }
56431
-
56432
- /**
56433
- * An error code indicating the failure reason, when a device failed to register for FOTA.
56434
- */
56435
- enum fotaRegistrationErrorCode {
56436
- /**
56437
- * 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.
56438
- */
56439
- noDevicesFoundInSelectedEntraGroups: 0,
56440
- /**
56441
- * 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.
56442
- */
56443
- noIntuneDevicesFoundInSelectedEntraGroups: 1,
56444
- /**
56445
- * 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.
56446
- */
56447
- fotaRegistrationRequestFailure: 2,
56448
- unknownFutureValue: 3,
56449
- }
56450
-
56451
56034
  /**
56452
56035
  * 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.
56453
56036
  */
@@ -60425,6 +60008,12 @@ namespace reference.`microsoft.graph` {
60425
60008
  radio: 9,
60426
60009
  }
60427
60010
 
60011
+ enum photoUpdateSource {
60012
+ cloud: 0,
60013
+ onPremises: 1,
60014
+ unknownFutureValue: 2,
60015
+ }
60016
+
60428
60017
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
60429
60018
  enum physicalAddressType {
60430
60019
  `unknown`: 0,
@@ -62272,21 +61861,6 @@ namespace reference.`microsoft.graph` {
62272
61861
  moderate: 2,
62273
61862
  }
62274
61863
 
62275
- /**
62276
- * Represents various schedule modes for Samsung FOTA deployment.
62277
- */
62278
- enum samsungEFotaScheduleMode {
62279
- /**
62280
- * Schedule an update to be installed between start and end date time.
62281
- */
62282
- startAndEndDateSchedule: 0,
62283
- /**
62284
- * Schedule an update to be installed on or after start date time.
62285
- */
62286
- startDateOnlySchedule: 1,
62287
- unknownFutureValue: 2,
62288
- }
62289
-
62290
61864
  /**
62291
61865
  * Cancel or confirm scheduled retire
62292
61866
  */
@@ -63315,6 +62889,14 @@ namespace reference.`microsoft.graph` {
63315
62889
  unknownFutureValue: 3,
63316
62890
  }
63317
62891
 
62892
+ enum trafficRoutingMethod {
62893
+ none: 0,
62894
+ random: 1,
62895
+ sessionPersistence: 2,
62896
+ performance: 3,
62897
+ unknownFutureValue: 4,
62898
+ }
62899
+
63318
62900
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
63319
62901
  enum translationBehavior {
63320
62902
  Ask: 0,
@@ -64531,32 +64113,36 @@ namespace reference.`microsoft.graph` {
64531
64113
  /**
64532
64114
  * Wi-Fi Security Types.
64533
64115
  */
64534
- #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
64535
64116
  enum wiFiSecurityType {
64536
64117
  /**
64537
- * Open (No Authentication).
64118
+ * Default. Indicates Wi-Fi security type is associated with Open (No Authentication).
64538
64119
  */
64539
64120
  open: 0,
64540
64121
  /**
64541
- * WPA-Personal.
64122
+ * Indicates Wi-Fi security type is associated with WPA-Personal.
64542
64123
  */
64543
64124
  wpaPersonal: 1,
64544
64125
  /**
64545
- * WPA-Enterprise. Must use IOSEnterpriseWifiConfiguration type to configure enterprise options.
64126
+ * Indicates Wi-Fi security type is associated with WPA-Enterprise. Must use IOSEnterpriseWifiConfiguration type to configure enterprise options.
64546
64127
  */
64547
64128
  wpaEnterprise: 2,
64548
64129
  /**
64549
- * WEP Encryption.
64130
+ * Indicates Wi-Fi security type is associated with WEP Encryption.
64550
64131
  */
64551
64132
  wep: 3,
64552
64133
  /**
64553
- * WPA2-Personal.
64134
+ * Indicates Wi-Fi security type is associated with WPA2-Personal.
64554
64135
  */
64555
64136
  wpa2Personal: 4,
64556
64137
  /**
64557
- * WPA2-Enterprise. Must use WindowsWifiEnterpriseEAPConfiguration type to configure enterprise options.
64138
+ * Indicates Wi-Fi security type is associated with WPA2-Enterprise. Must use WindowsWifiEnterpriseEAPConfiguration type to configure enterprise options.
64558
64139
  */
64559
64140
  wpa2Enterprise: 5,
64141
+ unknownFutureValue: 6,
64142
+ /**
64143
+ * Indicates Wi-Fi security type is associated with WPA3-Personal. Provides stronger encryption using Simultaneous Authentication of Equals (SAE).
64144
+ */
64145
+ wpa3Personal: 7,
64560
64146
  }
64561
64147
 
64562
64148
  /**
@@ -67155,6 +66741,7 @@ namespace reference.`microsoft.graph.cloudLicensing` {
67155
66741
  }
67156
66742
 
67157
66743
  }
66744
+ @privatePreviewDefinition("organizationalUnit", "2025-08-12", "2025-11-30", "<theOwner>")
67158
66745
  @publicNamespace("microsoft.graph.identitygovernance")
67159
66746
  namespace reference.`microsoft.graph.identityGovernance` {
67160
66747
  @complex model activateGroupScope extends activationScope {
@@ -67216,6 +66803,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
67216
66803
  valueType: valueType;
67217
66804
  }
67218
66805
 
66806
+ @complex model previewFailedTask {
66807
+ definitionId: string;
66808
+ failureReason: string;
66809
+ name: string;
66810
+ taskId: string;
66811
+ }
66812
+
67219
66813
  @complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
67220
66814
  rule: string;
67221
66815
  }
@@ -67438,6 +67032,9 @@ namespace reference.`microsoft.graph.identityGovernance` {
67438
67032
  nextScheduleRunDateTime: offsetDateTime | null;
67439
67033
  version: int32 | null;
67440
67034
  @references executionScope: userProcessingResult[];
67035
+
67036
+ @privatePreview("organizationalUnit")
67037
+ @references previewScope: reference.`microsoft.graph`.directoryObject[];
67441
67038
  @contains runs: run[];
67442
67039
  @contains taskReports: taskReport[];
67443
67040
  @contains userProcessingResults: userProcessingResult[];
@@ -67534,6 +67131,8 @@ namespace reference.`microsoft.graph.identityGovernance` {
67534
67131
  onDemand: 1,
67535
67132
  unknownFutureValue: 2,
67536
67133
  activatedWithScope: 3,
67134
+ @privatePreview("organizationalUnit")
67135
+ preview: 4,
67537
67136
  }
67538
67137
 
67539
67138
  enum workflowTriggerTimeBasedAttribute {