@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.
@@ -26,6 +26,8 @@ scalar binary; //TODO: Enables support for Edm.Binary
26
26
  @privatePreviewDefinition("photoEditPolicy", "2024-02-16", "2025-02-16", "<theOwner>")
27
27
  @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.")
28
28
  // Metadata item DeprecatedDefinition_Reporting was already defined with a different value.
29
+ @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.")
30
+ // Metadata item DeprecatedDefinition_SynchronizationSecret_Deprecation was already defined with a different value.
29
31
  @deprecatedDefinition("AccessReviewReportBreakingChanges", "<ChangeLogCategory>", "2021-07-30", "2022-01-30", "This property is being deprecated. Use the fulfilledDateTime value in the individual report instance instead")
30
32
  // Metadata item DeprecatedDefinition_AccessReviewReportBreakingChanges was already defined with a different value.
31
33
  @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.")
@@ -50,6 +52,7 @@ scalar binary; //TODO: Enables support for Edm.Binary
50
52
  @deprecatedDefinition("Outlook_Tasks", "<ChangeLogCategory>", "2021-02-20", "2023-02-20", "The Outlook tasks API is deprecated and will stop returning data on February 20, 2023. Please use the new To Do API. For more details, please visit https://developer.microsoft.com/en-us/office/blogs/announcing-the-general-availability-of-microsoft-to-do-apis-on-graph/")
51
53
  @deprecatedDefinition("CreationDateTime", "<ChangeLogCategory>", "2020-11-06", "2020-12-31", "The creationDateTime property is deprecated and will stop returning data on December 31, 2020. Please use the createdDateTime property.")
52
54
  @deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2021-01-18", "2023-01-18", "Owner property is deprecated and will be removed in January 2023. Please use the container property instead.")
55
+ @deprecatedDefinition("PIM_Iteration2_Deprecation", "<ChangeLogCategory>", "2025-10-27", "2026-10-28", "The PIM Iteration 2 beta API is deprecated and will be removed on October 28, 2026. Please migrate to PIM Iteration 3 API.")
53
56
  @deprecatedDefinition("QrPolicyConfigRemove", "<ChangeLogCategory>", "2021-11-12", "2022-02-11", "The qrAuthenticationMethodConfiguration type is deprecated")
54
57
  @deprecatedDefinition("accountEnabledDeprecated", "<ChangeLogCategory>", "2023-02-23", "2023-07-12", "The accountEnabled field will soon be deprecated on 2023-07-12. Please use isEnabled instead.")
55
58
  @deprecatedDefinition("SignIn", "<ChangeLogCategory>", "2024-08-31", "2025-03-31", "SignInTokenProtectionStatus property is being deprecate in favor or more detailed tokenProtectionStatusDetails. It will be removed from April 2025.")
@@ -735,38 +738,6 @@ namespace reference.`microsoft.graph` {
735
738
  selections: keyValuePair[] | null;
736
739
  }
737
740
 
738
- /**
739
- * 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.
740
- */
741
- @complex model androidFotaDeploymentAssignment {
742
- /**
743
- * 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.
744
- */
745
- assignmentTarget: deviceAndAppManagementAssignmentTarget | null;
746
- /**
747
- * The display name of the Azure AD security group used for the assignment.
748
- */
749
- displayName: string;
750
- /**
751
- * A unique identifier assigned to each Android FOTA Assignment entity
752
- */
753
- id: string | null;
754
- /**
755
- * 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).
756
- */
757
- target: androidFotaDeploymentAssignmentTarget | null;
758
- }
759
-
760
- /**
761
- * The AAD Group we are deploying firmware updates to
762
- */
763
- @complex model androidFotaDeploymentAssignmentTarget extends deviceAndAppManagementAssignmentTarget {
764
- /**
765
- * AAD Group Id.
766
- */
767
- groupId: string;
768
- }
769
-
770
741
  /**
771
742
  * Contains properties used to assign an Android Managed Store mobile app to a group.
772
743
  */
@@ -3343,6 +3314,10 @@ namespace reference.`microsoft.graph` {
3343
3314
  url: string | null;
3344
3315
  }
3345
3316
 
3317
+ @complex model connectivityParameterEntry {
3318
+ value: string | null;
3319
+ }
3320
+
3346
3321
  /**
3347
3322
  * Represent connector status
3348
3323
  */
@@ -3453,6 +3428,126 @@ namespace reference.`microsoft.graph` {
3453
3428
  userPrincipalName: string;
3454
3429
  }
3455
3430
 
3431
+ /**
3432
+ * Represents copilot response options parameter.
3433
+ */
3434
+ @complex model copilotChatResponseOptions {
3435
+ /**
3436
+ * Indicates whether adaptive cards are enabled in the response.
3437
+ */
3438
+ isAdaptiveCardEnabled: boolean;
3439
+ /**
3440
+ * Indicates whether annotations are enabled in the response.
3441
+ */
3442
+ isAnnotationsEnabled: boolean;
3443
+ /**
3444
+ * Indicates whether delta streaming is enabled in the response.
3445
+ */
3446
+ isDeltaStreamingEnabled: boolean;
3447
+ }
3448
+
3449
+ /**
3450
+ * Extra context data for a request supplied in the form of a message.
3451
+ */
3452
+ @complex model copilotContextMessage {
3453
+ /**
3454
+ * The description of the message.
3455
+ */
3456
+ description: string;
3457
+ /**
3458
+ * The text of the message.
3459
+ */
3460
+ text: string;
3461
+ }
3462
+
3463
+ /**
3464
+ * Represents copilot contextual resources parameter.
3465
+ */
3466
+ @complex model copilotContextualResources {
3467
+ /**
3468
+ * The files by URI to be used for the request.
3469
+ */
3470
+ files: copilotFile[];
3471
+ /**
3472
+ * The web context to be used for the request.
3473
+ */
3474
+ webContext: copilotWebContext | null;
3475
+ }
3476
+
3477
+ @complex model copilotConversationAttribution {
3478
+ attributionSource: copilotConversationAttributionSource;
3479
+ attributionType: copilotConversationAttributionType;
3480
+ imageFavIcon: string;
3481
+ imageHeight: int32;
3482
+ imageWebUrl: string;
3483
+ imageWidth: int32;
3484
+ providerDisplayName: string;
3485
+ seeMoreWebUrl: string;
3486
+ }
3487
+
3488
+ /**
3489
+ * Represents a location.
3490
+ */
3491
+ @complex model copilotConversationLocation {
3492
+ /**
3493
+ * The country or region of the location.
3494
+ */
3495
+ countryOrRegion: string | null;
3496
+ /**
3497
+ * The confidence level of the country or region.
3498
+ */
3499
+ countryOrRegionConfidence: float64 | null;
3500
+ /**
3501
+ * The latitude of the location.
3502
+ */
3503
+ latitude: float64 | null;
3504
+ /**
3505
+ * The longitude of the location.
3506
+ */
3507
+ longitude: float64 | null;
3508
+ /**
3509
+ * The IANA timezone of the location.
3510
+ */
3511
+ timeZone: string;
3512
+ }
3513
+
3514
+ @complex model copilotConversationMessageParameter {
3515
+ text: string;
3516
+ }
3517
+
3518
+ @complex model copilotConversationRequestMessageParameter extends copilotConversationMessageParameter {
3519
+ }
3520
+
3521
+ /**
3522
+ * Parameters for deleting Copilot chat conversation.
3523
+ */
3524
+ @complex model copilotDeleteConversationRequest {
3525
+ /**
3526
+ * Thread Id to delete.
3527
+ */
3528
+ threadId: string;
3529
+ }
3530
+
3531
+ /**
3532
+ * Represents a file with URI.
3533
+ */
3534
+ @complex model copilotFile {
3535
+ /**
3536
+ * The URI of the file.
3537
+ */
3538
+ uri: string;
3539
+ }
3540
+
3541
+ /**
3542
+ * Web context data for a request supplied in the form of resource contexts.
3543
+ */
3544
+ @complex model copilotWebContext {
3545
+ /**
3546
+ * Indicates whether the web context is enabled.
3547
+ */
3548
+ isWebEnabled: boolean;
3549
+ }
3550
+
3456
3551
  @complex model corsConfiguration {
3457
3552
  allowedHeaders: string[] | null;
3458
3553
  allowedMethods: string[] | null;
@@ -6980,129 +7075,6 @@ namespace reference.`microsoft.graph` {
6980
7075
  targetChatId: string | null;
6981
7076
  }
6982
7077
 
6983
- /**
6984
- * The settings for a FOTA deployment. Is an abstract type.
6985
- */
6986
- @abstract
6987
- @complex model fotaDeploymentSetting {
6988
- /**
6989
- * 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.
6990
- */
6991
- batteryRuleMinimumBatteryLevelPercentage: int32 | null;
6992
- /**
6993
- * 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.
6994
- */
6995
- batteryRulePowerAdaptorRequired: boolean | null;
6996
- /**
6997
- * 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.
6998
- */
6999
- installRuleWindowEndTime: offsetDateTime | null;
7000
- /**
7001
- * 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'.
7002
- */
7003
- installRuleWindowStartTime: offsetDateTime | null;
7004
- /**
7005
- * 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.
7006
- */
7007
- networkType: fotaNetworkType;
7008
- /**
7009
- * 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.
7010
- */
7011
- timeZoneOffsetInMinutes: int32 | null;
7012
- }
7013
-
7014
- /**
7015
- * 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.
7016
- */
7017
- @complex model fotaDeploymentStatus {
7018
- /**
7019
- * Indicates the number of devices where firmware update was cancelled. Default is 0. Returned by default.
7020
- */
7021
- cancelledDeviceCount: int32;
7022
- /**
7023
- * '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.
7024
- */
7025
- cancelRequested: boolean;
7026
- /**
7027
- * Indicates the number of devices where firmware update was completed. Default is 0. Returned by default
7028
- */
7029
- completedDeviceCount: int32;
7030
- /**
7031
- * 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.
7032
- */
7033
- deploymentEndDateTime: offsetDateTime | null;
7034
- /**
7035
- * 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.
7036
- */
7037
- deploymentState: fotaDeploymentState;
7038
- /**
7039
- * 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.
7040
- */
7041
- errorCode: fotaDeploymentErrorCode;
7042
- /**
7043
- * Indicates the number of devices where firmware update failed. Default is 0. Returned by default.
7044
- */
7045
- failedDeviceCount: int32;
7046
- /**
7047
- * Indicates the number of devices where firmware update is in progress. Default is 0. Returned by default.
7048
- */
7049
- inProgressDeviceCount: int32;
7050
- /**
7051
- * 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.
7052
- */
7053
- @computed lastModifiedDateTime: offsetDateTime | null;
7054
- /**
7055
- * Indicates the number of devices where the deployment was not applicable. Default is 0. Returned by default.
7056
- */
7057
- notApplicableDeviceCount: int32;
7058
- /**
7059
- * Indicates the total number of devices in the FOTA deployment. Default is 0. Returned by default.
7060
- */
7061
- totalDeviceCount: int32;
7062
- /**
7063
- * 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.
7064
- */
7065
- unknownDeviceCount: int32;
7066
- }
7067
-
7068
- /**
7069
- * 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.
7070
- */
7071
- @complex model fotaDeviceRegistrationStatus {
7072
- /**
7073
- * Indicates the number of devices where FOTA registration completed. Default is 0. Returned by default.
7074
- */
7075
- completedDeviceCount: int32;
7076
- /**
7077
- * 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.
7078
- */
7079
- errorCode: fotaRegistrationErrorCode;
7080
- /**
7081
- * Indicates the number of devices where FOTA registration failed. Default is 0. Returned by default.
7082
- */
7083
- failedDeviceCount: int32;
7084
- /**
7085
- * Indicates the number of devices where FOTA registration is in progress. Default is 0. Returned by default.
7086
- */
7087
- inProgressDeviceCount: int32;
7088
- /**
7089
- * Indicates the number of devices where FOTA registration is not applicable. Default is 0. Returned by default.
7090
- */
7091
- notApplicableDeviceCount: int32;
7092
- /**
7093
- * 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.
7094
- */
7095
- registrationState: fotaRegistrationState;
7096
- /**
7097
- * Indicates the total number of devices targeted for FOTA registration. Default is 0. Returned by default.
7098
- */
7099
- totalDeviceCount: int32;
7100
- /**
7101
- * Indicates the number of devices where FOTA registration status is unknown. Default is 0. Returned by default.
7102
- */
7103
- unknownDeviceCount: int32;
7104
- }
7105
-
7106
7078
  @complex model freeBusyError {
7107
7079
  message: string | null;
7108
7080
  responseCode: string | null;
@@ -8552,6 +8524,9 @@ namespace reference.`microsoft.graph` {
8552
8524
  siteId: string | null;
8553
8525
  }
8554
8526
 
8527
+ /**
8528
+ * Standard way to represent a Json blob on Graph.
8529
+ */
8555
8530
  @complex model Json {
8556
8531
  }
8557
8532
 
@@ -10644,6 +10619,7 @@ namespace reference.`microsoft.graph` {
10644
10619
  onPremisesApplicationSegments: onPremisesApplicationSegment[] | null;
10645
10620
  segmentsConfiguration: segmentConfiguration | null;
10646
10621
  singleSignOnSettings: onPremisesPublishingSingleSignOn | null;
10622
+ trafficRoutingMethod: trafficRoutingMethod;
10647
10623
  useAlternateUrlForTranslationAndRedirect: boolean | null;
10648
10624
  verifiedCustomDomainCertificatesMetadata: verifiedCustomDomainCertificatesMetadata | null;
10649
10625
  verifiedCustomDomainKeyCredential: keyCredential | null;
@@ -10978,6 +10954,11 @@ namespace reference.`microsoft.graph` {
10978
10954
  displayAs: string | null;
10979
10955
  }
10980
10956
 
10957
+ @complex model perTenantTrafficSegmentsOverride {
10958
+ percentage: int32;
10959
+ tenantId: guid;
10960
+ }
10961
+
10981
10962
  @complex model phone {
10982
10963
  number: string | null;
10983
10964
  type: phoneType | null;
@@ -12334,41 +12315,67 @@ namespace reference.`microsoft.graph` {
12334
12315
  }
12335
12316
 
12336
12317
  /**
12337
- * The settings for a Samsung Knox E-FOTA campaign (deployment). Inherits from 'graph.fotaDeploymentSetting'.
12318
+ * The firmware version from Samsung for a specific device model, sales code, and CSC (Consumer Software Customization). Used to create Samsung E-FOTA deployments.
12338
12319
  */
12339
- @complex model samsungEFotaDeploymentSetting extends fotaDeploymentSetting {
12320
+ @complex model samsungEFotaFirmwareVersion {
12340
12321
  /**
12341
- * 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.
12322
+ * The Android Processor version name. This property is populated by Samsung. Eg. 'G960U1UES9FVD1'. Default value: null. Read-only.
12342
12323
  */
12343
- autoFirmwareInstallationReminderMessageDurationInMinutes: int32;
12324
+ androidProcessorVersionName: string | null;
12344
12325
  /**
12345
- * 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.
12326
+ * 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.
12346
12327
  */
12347
- campaignEndDateTime: offsetDateTime;
12328
+ consumerSoftwareCustomizationCode: string;
12348
12329
  /**
12349
- * Campaign (deployment) installation schedule mode. Default is StartAndEndDateSchedule.
12330
+ * The firmware description. This property is populated by Samsung. Default value: null. Read-only.
12350
12331
  */
12351
- campaignScheduleMode: samsungEFotaScheduleMode;
12332
+ description: string | null;
12352
12333
  /**
12353
- * 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.
12334
+ * Samsung device model. This property is populated by Samsung. Eg. 'SM-960F'. Read-only. Returned by default.
12354
12335
  */
12355
- campaignStartDateTime: offsetDateTime;
12336
+ deviceModelName: string;
12356
12337
  /**
12357
- * 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.
12338
+ * The firmware version. This property is populated by Samsung Eg. 'T575XXU4EAAA/T575OXM4EAAA/T575XXU4EAAA'. Default value: null. Read-only.
12358
12339
  */
12359
- campaignTimeZoneOffsetInMinutes: int32 | null;
12340
+ firmwareVersion: string | null;
12360
12341
  /**
12361
- * The time of day for a firmware download. Possible values are 'any' (default) and 'matchFirmwareInstallPeriod'. See 'graph.fotaDownloadPeriodType' enum for details. Returned by default.
12342
+ * Firmware ID from Samsung. This property is populated by Samsung. Eg. 'FW2022033111797487'. Read-only. Returned by default.
12362
12343
  */
12363
- downloadPeriod: fotaDownloadPeriodType | null;
12344
+ id: string | null;
12364
12345
  /**
12365
- * 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.
12346
+ * The OS version name. This property is populated by Samsung. Eg. 'Pie(Android 9)'. Default value: null. Read-only.
12366
12347
  */
12367
- postponedInstallationReminderMessageDuration: int32;
12348
+ osVersionName: string | null;
12349
+ /**
12350
+ * 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.
12351
+ */
12352
+ releaseDateTime: offsetDateTime;
12368
12353
  /**
12369
- * 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.
12354
+ * The firmware request type. This property is populated by Samsung Eg. 'NORMAL'. Default value: null. Read-only.
12370
12355
  */
12371
- postponeInstallation: int32;
12356
+ requestFirmwareTypeName: string | null;
12357
+ /**
12358
+ * 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.
12359
+ */
12360
+ salesCode: string;
12361
+ /**
12362
+ * The firmware security patch. This property is populated by Samsung Eg. '2023-09-07 07:50:57'. Default value: null. Read-only.
12363
+ */
12364
+ securityPatchVersion: string | null;
12365
+ }
12366
+
12367
+ /**
12368
+ * The targeted firmware version for an E-FOTA deployment. Used while creating E-FOTA deployments.
12369
+ */
12370
+ @complex model samsungEFotaFirmwareVersionTarget {
12371
+ /**
12372
+ * Describes the firmware version for a specific device model, sales code, and CSC. See 'graph.samsungEFotaFirmwareVersion' entity for details. Returned by default.
12373
+ */
12374
+ firmwareVersion: samsungEFotaFirmwareVersion;
12375
+ /**
12376
+ * A unique identifier assigned to each Samsung Knox E-FOTA firmware version target entity. Returned by default.
12377
+ */
12378
+ id: string | null;
12372
12379
  }
12373
12380
 
12374
12381
  @complex model scheduleInformation {
@@ -12476,6 +12483,18 @@ namespace reference.`microsoft.graph` {
12476
12483
  onClickTelemetryUrl: string | null;
12477
12484
  }
12478
12485
 
12486
+ /**
12487
+ * Represents a sensitivityLabel.
12488
+ This model is shared with the CCS retrieval API and search where it is already unhidden.
12489
+ */
12490
+ @complex model searchSensitivityLabelInfo {
12491
+ color: string | null;
12492
+ displayName: string | null;
12493
+ priority: int32 | null;
12494
+ sensitivityLabelId: string | null;
12495
+ tooltip: string | null;
12496
+ }
12497
+
12479
12498
  @complex model secureScoreControlStateUpdate {
12480
12499
  assignedTo: string | null;
12481
12500
  comment: string | null;
@@ -13105,6 +13124,7 @@ namespace reference.`microsoft.graph` {
13105
13124
  state: synchronizationScheduleState;
13106
13125
  }
13107
13126
 
13127
+ @graphDeprecated("SynchronizationSecret_Deprecation")
13108
13128
  @complex model synchronizationSecretKeyStringValuePair {
13109
13129
  key: synchronizationSecret;
13110
13130
  value: string | null;
@@ -17896,6 +17916,10 @@ namespace reference.`microsoft.graph` {
17896
17916
  * Indicates whether or not google accounts will be blocked.
17897
17917
  */
17898
17918
  googleAccountsBlocked: boolean | null;
17919
+ /**
17920
+ * Exit code to allow a user to escape from Kiosk Mode when the device is in Kiosk Mode.
17921
+ */
17922
+ isKioskModeExitCodeSet: boolean;
17899
17923
  /**
17900
17924
  * Indicates whether a user can access the device's Settings app while in Kiosk Mode.
17901
17925
  */
@@ -19286,6 +19310,10 @@ namespace reference.`microsoft.graph` {
19286
19310
  * Setting to specify whether to allow ConnectedApps experience for this app.
19287
19311
  */
19288
19312
  connectedAppsEnabled: boolean;
19313
+ /**
19314
+ * 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.
19315
+ */
19316
+ credentialProviderRoleState: androidAppCredentialProviderRoleState;
19289
19317
  /**
19290
19318
  * Android For Work app configuration package id.
19291
19319
  */
@@ -20072,6 +20100,10 @@ namespace reference.`microsoft.graph` {
20072
20100
  * Setting to specify whether to allow ConnectedApps experience for this app.
20073
20101
  */
20074
20102
  connectedAppsEnabled: boolean;
20103
+ /**
20104
+ * 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.
20105
+ */
20106
+ credentialProviderRoleState: androidAppCredentialProviderRoleState;
20075
20107
  /**
20076
20108
  * Android Enterprise app configuration package id.
20077
20109
  */
@@ -22410,6 +22442,11 @@ namespace reference.`microsoft.graph` {
22410
22442
  @contains verticalSection: verticalSection | null;
22411
22443
  }
22412
22444
 
22445
+ @entity model caPoliciesDeletableRoot extends entity {
22446
+ @contains namedLocations: namedLocation[];
22447
+ @contains policies: conditionalAccessPolicy[];
22448
+ }
22449
+
22413
22450
  /**
22414
22451
  * CartToClassAssociation for associating device carts with classrooms.
22415
22452
  */
@@ -23389,12 +23426,13 @@ namespace reference.`microsoft.graph` {
23389
23426
  partnerState: deviceManagementPartnerTenantState;
23390
23427
  }
23391
23428
 
23392
- @entity model conditionalAccessPolicy extends entity {
23429
+ @entity model conditionalAccessPolicy extends policyDeletableItem {
23393
23430
  conditions: conditionalAccessConditionSet;
23394
23431
  @computed createdDateTime: offsetDateTime | null;
23395
23432
  description: string | null;
23396
23433
  displayName: string;
23397
23434
  grantControls: conditionalAccessGrantControls | null;
23435
+ @computed @key id: string;
23398
23436
  modifiedDateTime: offsetDateTime | null;
23399
23437
  sessionControls: conditionalAccessSessionControls | null;
23400
23438
  state: conditionalAccessPolicyState;
@@ -23407,6 +23445,7 @@ namespace reference.`microsoft.graph` {
23407
23445
 
23408
23446
  @graphDeprecated("AuthenticationStrengthsRemove")
23409
23447
  @contains authenticationStrengths: authenticationStrengthRoot | null;
23448
+ @contains deletedItems: caPoliciesDeletableRoot | null;
23410
23449
  @contains namedLocations: namedLocation[];
23411
23450
  @contains policies: conditionalAccessPolicy[];
23412
23451
  @contains templates: conditionalAccessTemplate[];
@@ -23603,6 +23642,70 @@ namespace reference.`microsoft.graph` {
23603
23642
  @contains posts: post[];
23604
23643
  }
23605
23644
 
23645
+ /**
23646
+ * Conversation is a first class object in the system, and consists of persistent metadata plus a stream of messages,
23647
+ typically alternating request/response, implicitly forming a turn.Represents a conversation with Copilot Chat.
23648
+ */
23649
+ @entity model copilotConversation extends entity {
23650
+ /**
23651
+ * The date and time when the conversation was created.
23652
+ */
23653
+ @computed createdDateTime: offsetDateTime;
23654
+ /**
23655
+ * The display name of the conversation.
23656
+ */
23657
+ displayName: string;
23658
+ /**
23659
+ * The state of the conversation.
23660
+ */
23661
+ state: copilotConversationState;
23662
+ /**
23663
+ * The number of turns in the conversation.
23664
+ */
23665
+ turnCount: int32;
23666
+ /**
23667
+ * The ordered list of messages in the conversation.
23668
+ */
23669
+ @contains messages: copilotConversationMessage[];
23670
+ }
23671
+
23672
+ /**
23673
+ * Abstract entity representing a chat message in a request or response.
23674
+ */
23675
+ @abstract
23676
+ @entity model copilotConversationMessage extends entity {
23677
+ /**
23678
+ * The text of the message.
23679
+ */
23680
+ text: string;
23681
+ }
23682
+
23683
+ /**
23684
+ * Entity representing a chat message in a request.
23685
+ */
23686
+ @entity model copilotConversationRequestMessage extends copilotConversationMessage {
23687
+ }
23688
+
23689
+ /**
23690
+ * Represents a response message in a chat.
23691
+ */
23692
+ @entity model copilotConversationResponseMessage extends copilotConversationMessage {
23693
+ adaptiveCards: Json[];
23694
+ attributions: copilotConversationAttribution[];
23695
+ @computed createdDateTime: offsetDateTime;
23696
+ sensitivityLabel: searchSensitivityLabelInfo | null;
23697
+ }
23698
+
23699
+ /**
23700
+ * Root singleton for all Copilot APIs on Microsoft Graph.
23701
+ */
23702
+ @entity model copilotRoot extends MsGraph.SharedModels.entity {
23703
+ /**
23704
+ * The users conversations with Copilot Chat.
23705
+ */
23706
+ @contains conversations: copilotConversation[];
23707
+ }
23708
+
23606
23709
  @entity model corsConfiguration_v2 extends entity {
23607
23710
  allowedHeaders: string[] | null;
23608
23711
  allowedMethods: string[] | null;
@@ -26612,6 +26715,10 @@ namespace reference.`microsoft.graph` {
26612
26715
  * Maximum number of dep tokens allowed per-tenant.
26613
26716
  */
26614
26717
  maximumDepTokens: int32;
26718
+ /**
26719
+ * The collection of Samsung EFOTA firmware versions.
26720
+ */
26721
+ samsungEFotaFirmwareVersions: samsungEFotaFirmwareVersion[] | null;
26615
26722
  /**
26616
26723
  * Account level settings.
26617
26724
  */
@@ -26876,18 +26983,6 @@ namespace reference.`microsoft.graph` {
26876
26983
  * The policy which controls mobile device access to Exchange On Premises
26877
26984
  */
26878
26985
  @contains exchangeOnPremisesPolicy: deviceManagementExchangeOnPremisesPolicy | null;
26879
- /**
26880
- * 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.
26881
- */
26882
- @contains fotaConnector: fotaConnector | null;
26883
- /**
26884
- * The collection of FOTA connector entity that represents the tenant's authorization status for Intune
26885
- */
26886
- @contains fotaConnectors: fotaConnector[];
26887
- /**
26888
- * The collection of FOTA deployment for an OEM.
26889
- */
26890
- @contains fotaDeployments: fotaDeployment[];
26891
26986
  /**
26892
26987
  * The available group policy categories for this account.
26893
26988
  */
@@ -27058,14 +27153,6 @@ namespace reference.`microsoft.graph` {
27058
27153
  * The Role Scope Tags.
27059
27154
  */
27060
27155
  @contains roleScopeTags: roleScopeTag[];
27061
- /**
27062
- * The collection of FOTA deployment for Samsung OEM.
27063
- */
27064
- @contains samsungEFotaDeployments: samsungEFotaDeployment[];
27065
- /**
27066
- * The collection of Samsung EFOTA firmware versions.
27067
- */
27068
- @contains samsungEFotaFirmwareVersions: samsungEFotaFirmwareVersion[];
27069
27156
  /**
27070
27157
  * A list of ServiceNowConnections
27071
27158
  */
@@ -29973,75 +30060,6 @@ namespace reference.`microsoft.graph` {
29973
30060
  supportedAttributeTypes: attributeType[];
29974
30061
  }
29975
30062
 
29976
- /**
29977
- * 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.
29978
- */
29979
- @entity model fotaConnector extends entity {
29980
- /**
29981
- * 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.
29982
- */
29983
- authorizationUrl: string | null;
29984
- /**
29985
- * 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.
29986
- */
29987
- deviceRegistrationStatus: fotaDeviceRegistrationStatus | null;
29988
- /**
29989
- * 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.
29990
- */
29991
- displayName: string | null;
29992
- /**
29993
- * 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.
29994
- */
29995
- @computed lastSyncDateTime: offsetDateTime | null;
29996
- /**
29997
- * 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.
29998
- */
29999
- oem: fotaOemType;
30000
- /**
30001
- * The Entra security groups targeted for device registration. See 'graph.deviceAndAppManagementAssignmentTarget' entity for details. Default value: null.
30002
- */
30003
- registrationAssignments: deviceAndAppManagementAssignmentTarget[] | null;
30004
- /**
30005
- * 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.
30006
- */
30007
- state: fotaConnectorState;
30008
- /**
30009
- * Tenant's total Samsung licenses count. Default value: null.
30010
- */
30011
- totalLicensesCount: int32 | null;
30012
- }
30013
-
30014
- /**
30015
- * 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'
30016
- */
30017
- @abstract
30018
- @entity model fotaDeployment extends entity {
30019
- /**
30020
- * The deployment's targeted security groups(s). See 'graph.deviceAndAppManagementAssignmentTarget' for more details. Returned by default.
30021
- */
30022
- deploymentAssignments: deviceAndAppManagementAssignmentTarget[];
30023
- /**
30024
- * The deployment status from the OEM (Original Equipment Manufacturer). See 'graph.fotaDeploymentStatus' complex type for details. Default value: null.
30025
- */
30026
- deploymentStatus: fotaDeploymentStatus | null;
30027
- /**
30028
- * The description of the FOTA deployment. Max allowed length is 1500 chars. Default value: null.
30029
- */
30030
- description: string | null;
30031
- /**
30032
- * The deployment name associated with FOTA deployment. Returned by default. Max allowed length is 200 chars.
30033
- */
30034
- displayName: string;
30035
- /**
30036
- * 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.
30037
- */
30038
- oem: fotaOemType;
30039
- /**
30040
- * List of Scope Tags for the deployment. Default value: null.
30041
- */
30042
- roleScopeTagIds: string[] | null;
30043
- }
30044
-
30045
30063
  @abstract
30046
30064
  @entity model governanceInsight extends entity {
30047
30065
  insightCreatedDateTime: offsetDateTime | null;
@@ -38080,12 +38098,17 @@ namespace reference.`microsoft.graph` {
38080
38098
  value: string[] | null;
38081
38099
  }
38082
38100
 
38083
- @entity model namedLocation extends entity {
38101
+ @entity model namedLocation extends policyDeletableItem {
38084
38102
  @computed createdDateTime: offsetDateTime | null;
38085
38103
  displayName: string;
38104
+ @computed @key id: string;
38086
38105
  modifiedDateTime: offsetDateTime | null;
38087
38106
  }
38088
38107
 
38108
+ @entity model namePronunciationSettings extends entity {
38109
+ isEnabledInOrganization: boolean;
38110
+ }
38111
+
38089
38112
  /**
38090
38113
  * Entity which represents an OnPrem Ndes connector.
38091
38114
  */
@@ -38759,6 +38782,7 @@ namespace reference.`microsoft.graph` {
38759
38782
 
38760
38783
  @entity model peopleAdminSettings extends entity {
38761
38784
  @contains itemInsights: insightsSettings | null;
38785
+ @contains namePronunciation: namePronunciationSettings | null;
38762
38786
  @contains profileCardProperties: profileCardProperty[];
38763
38787
  @contains pronouns: pronounsSettings | null;
38764
38788
  }
@@ -39069,6 +39093,11 @@ namespace reference.`microsoft.graph` {
39069
39093
  displayName: string;
39070
39094
  }
39071
39095
 
39096
+ @abstract
39097
+ @entity model policyDeletableItem extends MsGraph.SharedModels.entity {
39098
+ deletedDateTime: offsetDateTime | null;
39099
+ }
39100
+
39072
39101
  @entity model policyRoot extends entity {
39073
39102
  @contains accessReviewPolicy: accessReviewPolicy | null;
39074
39103
  @contains activityBasedTimeoutPolicies: activityBasedTimeoutPolicy[];
@@ -39364,6 +39393,7 @@ namespace reference.`microsoft.graph` {
39364
39393
  version: string;
39365
39394
  }
39366
39395
 
39396
+ @graphDeprecated("PIM_Iteration2_Deprecation")
39367
39397
  @entity model privilegedAccess extends entity {
39368
39398
  displayName: string | null;
39369
39399
  @contains resources: governanceResource[];
@@ -39656,6 +39686,7 @@ namespace reference.`microsoft.graph` {
39656
39686
  @entity model profileCardProperty extends entity {
39657
39687
  annotations: profileCardAnnotation[] | null;
39658
39688
  directoryPropertyName: string | null;
39689
+ isVisible: boolean;
39659
39690
  }
39660
39691
 
39661
39692
  @entity model profilePhoto extends entity {
@@ -40291,80 +40322,6 @@ namespace reference.`microsoft.graph` {
40291
40322
  signingCertificate: string | null;
40292
40323
  }
40293
40324
 
40294
- /**
40295
- * 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'
40296
- */
40297
- @entity model samsungEFotaDeployment extends fotaDeployment {
40298
- /**
40299
- * 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.
40300
- */
40301
- deploymentSetting: samsungEFotaDeploymentSetting;
40302
- /**
40303
- * 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
40304
- */
40305
- @references firmwareVersionTargets: samsungEFotaFirmwareVersionTarget[];
40306
- }
40307
-
40308
- /**
40309
- * The firmware version from Samsung for a specific device model, sales code, and CSC (Consumer Software Customization). Used to create Samsung E-FOTA deployments.
40310
- */
40311
- @entity model samsungEFotaFirmwareVersion extends entity {
40312
- /**
40313
- * The Android Processor version name. This property is populated by Samsung. Eg. 'G960U1UES9FVD1'. Default value: null. Read-only.
40314
- */
40315
- androidProcessorVersionName: string | null;
40316
- /**
40317
- * 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.
40318
- */
40319
- consumerSoftwareCustomizationCode: string;
40320
- /**
40321
- * The firmware description. This property is populated by Samsung. Default value: null. Read-only.
40322
- */
40323
- description: string | null;
40324
- /**
40325
- * Samsung device model. This property is populated by Samsung. Eg. 'SM-960F'. Read-only. Returned by default.
40326
- */
40327
- deviceModelName: string;
40328
- /**
40329
- * The firmware version. This property is populated by Samsung Eg. 'T575XXU4EAAA/T575OXM4EAAA/T575XXU4EAAA'. Default value: null. Read-only.
40330
- */
40331
- firmwareVersion: string | null;
40332
- /**
40333
- * The OS version name. This property is populated by Samsung. Eg. 'Pie(Android 9)'. Default value: null. Read-only.
40334
- */
40335
- osVersionName: string | null;
40336
- /**
40337
- * 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.
40338
- */
40339
- releaseDateTime: offsetDateTime;
40340
- /**
40341
- * The firmware request type. This property is populated by Samsung Eg. 'NORMAL'. Default value: null. Read-only.
40342
- */
40343
- requestFirmwareType: string | null;
40344
- /**
40345
- * 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.
40346
- */
40347
- salesCode: string;
40348
- /**
40349
- * The firmware security patch. This property is populated by Samsung Eg. '2023-09-07 07:50:57'. Default value: null. Read-only.
40350
- */
40351
- securityPatch: string | null;
40352
- }
40353
-
40354
- /**
40355
- * The targeted firmware version for an E-FOTA deployment. Used while creating E-FOTA deployments.
40356
- */
40357
- @entity model samsungEFotaFirmwareVersionTarget extends entity {
40358
- /**
40359
- * 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.
40360
- */
40361
- updateType: fotaFirmwareUpdateType;
40362
- /**
40363
- * Describes the firmware version for a specific device model, sales code, and CSC. See 'graph.samsungEFotaFirmwareVersion' entity for details. Returned by default.
40364
- */
40365
- @references firmwareVersion: samsungEFotaFirmwareVersion;
40366
- }
40367
-
40368
40325
  @entity model schemaExtension extends entity {
40369
40326
  description: string | null;
40370
40327
  owner: string;
@@ -41507,6 +41464,8 @@ namespace reference.`microsoft.graph` {
41507
41464
  }
41508
41465
 
41509
41466
  @entity model synchronization extends entity {
41467
+
41468
+ @graphDeprecated("SynchronizationSecret_Deprecation")
41510
41469
  secrets: synchronizationSecretKeyStringValuePair[] | null;
41511
41470
  @contains jobs: synchronizationJob[];
41512
41471
  @contains templates: synchronizationTemplate[];
@@ -50191,6 +50150,10 @@ namespace reference.`microsoft.graph` {
50191
50150
  * Current anti malware version
50192
50151
  */
50193
50152
  antiMalwareVersion: string | null;
50153
+ /**
50154
+ * 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.
50155
+ */
50156
+ controlledConfigurationEnabled: boolean | null;
50194
50157
  /**
50195
50158
  * Indicates device's health state. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical.
50196
50159
  */
@@ -51473,10 +51436,6 @@ namespace reference.`microsoft.graph` {
51473
51436
  * The Zebra FOTA deployment entity that describes settings, deployment device groups required to create a FOTA deployment, and deployment status.
51474
51437
  */
51475
51438
  @entity model zebraFotaDeployment extends entity {
51476
- /**
51477
- * Collection of Android FOTA Assignment
51478
- */
51479
- deploymentAssignments: androidFotaDeploymentAssignment[] | null;
51480
51439
  /**
51481
51440
  * Represents settings required to create a deployment such as deployment type, artifact info, download and installation
51482
51441
  */
@@ -51826,6 +51785,21 @@ namespace reference.`microsoft.graph` {
51826
51785
  unknownFutureValue: 4,
51827
51786
  }
51828
51787
 
51788
+ /**
51789
+ * The Android credential provider role state for apps.
51790
+ */
51791
+ enum androidAppCredentialProviderRoleState {
51792
+ /**
51793
+ * 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.
51794
+ */
51795
+ notConfigured: 0,
51796
+ /**
51797
+ * Indicates the app is allowed to act as a credential provider.
51798
+ */
51799
+ allowed: 1,
51800
+ unknownFutureValue: 2,
51801
+ }
51802
+
51829
51803
  /**
51830
51804
  * Android Device Owner possible values for states of the device's app auto update policy.
51831
51805
  */
@@ -56242,6 +56216,39 @@ namespace reference.`microsoft.graph` {
56242
56216
  strictLocation: 3,
56243
56217
  }
56244
56218
 
56219
+ /**
56220
+ * The source of the attribution.
56221
+ */
56222
+ enum copilotConversationAttributionSource {
56223
+ grounding: 0,
56224
+ `model`: 1,
56225
+ unknownFutureValue: 2,
56226
+ }
56227
+
56228
+ /**
56229
+ * The type of attribution.
56230
+ */
56231
+ enum copilotConversationAttributionType {
56232
+ citation: 0,
56233
+ annotation: 1,
56234
+ unknownFutureValue: 2,
56235
+ }
56236
+
56237
+ /**
56238
+ * The state of a Copilot conversation.
56239
+ */
56240
+ enum copilotConversationState {
56241
+ /**
56242
+ * The conversation is active and can accept requests to chat.
56243
+ */
56244
+ active: 0,
56245
+ /**
56246
+ * Copilot has disengaged from the conversation due to a RAI issue and will reject further requests to chat.
56247
+ */
56248
+ disengagedForRai: 1,
56249
+ unknownFutureValue: 2,
56250
+ }
56251
+
56245
56252
  enum countryLookupMethodType {
56246
56253
  clientIpAddress: 0,
56247
56254
  authenticatorAppGps: 1,
@@ -61076,206 +61083,6 @@ namespace reference.`microsoft.graph` {
61076
61083
  flagged: 2,
61077
61084
  }
61078
61085
 
61079
- /**
61080
- * An OEM's FOTA connector state for the tenant
61081
- */
61082
- enum fotaConnectorState {
61083
- /**
61084
- * Default value when the connector has not been setup (the feature has not been used yet).
61085
- */
61086
- none: 0,
61087
- /**
61088
- * Indicates that Intune is linked to the OEM for the current tenant.
61089
- */
61090
- connected: 1,
61091
- /**
61092
- * Indicates that the tenant was connected in the past and later disconnected.
61093
- */
61094
- disconnected: 2,
61095
- /**
61096
- * Indicates that the IT Pro has not yet authorized Intune to call the OEM on their behalf.
61097
- */
61098
- pending: 3,
61099
- unknownFutureValue: 4,
61100
- }
61101
-
61102
- /**
61103
- * An error code indicating the failure reason, when a FOTA deployment failed to create or complete.
61104
- */
61105
- enum fotaDeploymentErrorCode {
61106
- /**
61107
- * 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.
61108
- */
61109
- noDevicesFoundInSelectedEntraGroups: 0,
61110
- /**
61111
- * 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.
61112
- */
61113
- noIntuneDevicesFoundInSelectedEntraGroups: 1,
61114
- /**
61115
- * 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.
61116
- */
61117
- noFotaEnrolledDevicesFoundForCurrentTenant: 2,
61118
- /**
61119
- * 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.
61120
- */
61121
- noFotaEnrolledDevicesFoundInSelectedEntraGroups: 3,
61122
- /**
61123
- * 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.
61124
- */
61125
- noFotaDevicesFoundForSelectedDeviceModel: 4,
61126
- /**
61127
- * 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.
61128
- */
61129
- fotaCreateDeploymentRequestFailure: 5,
61130
- unknownFutureValue: 6,
61131
- }
61132
-
61133
- /**
61134
- * 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.
61135
- */
61136
- enum fotaDeploymentState {
61137
- /**
61138
- * Default. Deployment is created but the OEM has not confirmed its creation.
61139
- */
61140
- pendingCreation: 0,
61141
- /**
61142
- * Deployment was not successfully created with the OEM or failed to complete.
61143
- */
61144
- createFailed: 1,
61145
- /**
61146
- * Deployment has been created but has not been deployed yet.
61147
- */
61148
- created: 2,
61149
- /**
61150
- * Deployment has started but not completed.
61151
- */
61152
- inProgress: 3,
61153
- /**
61154
- * Deployment has completed or end date has passed.
61155
- */
61156
- completed: 4,
61157
- /**
61158
- * IT Admin has requested to cancel a deployment but the OEM has not confirmed cancellation.
61159
- */
61160
- pendingCancel: 5,
61161
- /**
61162
- * Deployment was not successfully cancelled by the OEM.
61163
- */
61164
- cancelFailed: 6,
61165
- /**
61166
- * Deployment has been successfully cancelled by the OEM.
61167
- */
61168
- cancelled: 7,
61169
- /**
61170
- * Default. Deployment is updated but the OEM has not confirmed its update.
61171
- */
61172
- pendingUpdate: 8,
61173
- /**
61174
- * Deployment was not successfully updated with the OEM.
61175
- */
61176
- updateFailed: 9,
61177
- /**
61178
- * Deployment has been updated but has not been deployed yet.
61179
- */
61180
- updated: 10,
61181
- unknownFutureValue: 11,
61182
- }
61183
-
61184
- /**
61185
- * The time of day for E-FOTA devices to download firmware.
61186
- */
61187
- enum fotaDownloadPeriodType {
61188
- /**
61189
- * Default. The firmware can be downloaded at any time of day.
61190
- */
61191
- any: 0,
61192
- /**
61193
- * The time of day for downloading firmware matches the firmware installation period set in 'graph.fotaDeploymentSetting' 'installRuleWindowStartTime' and 'installRuleWindowEndTime'.
61194
- */
61195
- matchFirmwareInstallPeriod: 1,
61196
- unknownFutureValue: 2,
61197
- }
61198
-
61199
- /**
61200
- * The FOTA deployment's firmware update type.
61201
- */
61202
- enum fotaFirmwareUpdateType {
61203
- /**
61204
- * Default. The FOTA deployment targets a custom firwmare version selected by the IT Admin.
61205
- */
61206
- custom: 0,
61207
- /**
61208
- * 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.
61209
- */
61210
- latestMajorVersion: 1,
61211
- /**
61212
- * 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.
61213
- */
61214
- auto: 2,
61215
- /**
61216
- * 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.
61217
- */
61218
- latestMinorVersion: 3,
61219
- /**
61220
- * The FOTA deployment targets locking the firmware to prevent any firmware from being installed on the devices.
61221
- */
61222
- locked: 4,
61223
- unknownFutureValue: 5,
61224
- }
61225
-
61226
- /**
61227
- * The device's network type required to download and install the FOTA update.
61228
- */
61229
- enum fotaNetworkType {
61230
- /**
61231
- * Default. The device will install the update regardless of current network type.
61232
- */
61233
- any: 0,
61234
- /**
61235
- * The device will install the update only when connected to a wifi network.
61236
- */
61237
- wifi: 1,
61238
- /**
61239
- * The device will install the update only when connected to a cellular network.
61240
- */
61241
- cellular: 2,
61242
- unknownFutureValue: 3,
61243
- }
61244
-
61245
- /**
61246
- * 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'
61247
- */
61248
- enum fotaOemType {
61249
- /**
61250
- * Indicates that the FOTA OEM (Original Equipment Manufacturer) type is Zebra.
61251
- */
61252
- zebra: 1,
61253
- /**
61254
- * Indicates that the FOTA OEM (Original Equipment Manufacturer) type is Samsung.
61255
- */
61256
- samsung: 2,
61257
- unknownFutureValue: 3,
61258
- }
61259
-
61260
- /**
61261
- * An error code indicating the failure reason, when a device failed to register for FOTA.
61262
- */
61263
- enum fotaRegistrationErrorCode {
61264
- /**
61265
- * 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.
61266
- */
61267
- noDevicesFoundInSelectedEntraGroups: 0,
61268
- /**
61269
- * 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.
61270
- */
61271
- noIntuneDevicesFoundInSelectedEntraGroups: 1,
61272
- /**
61273
- * 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.
61274
- */
61275
- fotaRegistrationRequestFailure: 2,
61276
- unknownFutureValue: 3,
61277
- }
61278
-
61279
61086
  /**
61280
61087
  * 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.
61281
61088
  */
@@ -65353,6 +65160,12 @@ namespace reference.`microsoft.graph` {
65353
65160
  radio: 9,
65354
65161
  }
65355
65162
 
65163
+ enum photoUpdateSource {
65164
+ cloud: 0,
65165
+ onPremises: 1,
65166
+ unknownFutureValue: 2,
65167
+ }
65168
+
65356
65169
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
65357
65170
  enum physicalAddressType {
65358
65171
  `unknown`: 0,
@@ -68417,21 +68230,6 @@ namespace reference.`microsoft.graph` {
68417
68230
  moderate: 2,
68418
68231
  }
68419
68232
 
68420
- /**
68421
- * Represents various schedule modes for Samsung FOTA deployment.
68422
- */
68423
- enum samsungEFotaScheduleMode {
68424
- /**
68425
- * Schedule an update to be installed between start and end date time.
68426
- */
68427
- startAndEndDateSchedule: 0,
68428
- /**
68429
- * Schedule an update to be installed on or after start date time.
68430
- */
68431
- startDateOnlySchedule: 1,
68432
- unknownFutureValue: 2,
68433
- }
68434
-
68435
68233
  /**
68436
68234
  * Cancel or confirm scheduled retire
68437
68235
  */
@@ -69544,6 +69342,14 @@ namespace reference.`microsoft.graph` {
69544
69342
  unknownFutureValue: 3,
69545
69343
  }
69546
69344
 
69345
+ enum trafficRoutingMethod {
69346
+ none: 0,
69347
+ random: 1,
69348
+ sessionPersistence: 2,
69349
+ performance: 3,
69350
+ unknownFutureValue: 4,
69351
+ }
69352
+
69547
69353
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
69548
69354
  enum translationBehavior {
69549
69355
  Ask: 0,
@@ -70820,32 +70626,36 @@ namespace reference.`microsoft.graph` {
70820
70626
  /**
70821
70627
  * Wi-Fi Security Types.
70822
70628
  */
70823
- #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
70824
70629
  enum wiFiSecurityType {
70825
70630
  /**
70826
- * Open (No Authentication).
70631
+ * Default. Indicates Wi-Fi security type is associated with Open (No Authentication).
70827
70632
  */
70828
70633
  open: 0,
70829
70634
  /**
70830
- * WPA-Personal.
70635
+ * Indicates Wi-Fi security type is associated with WPA-Personal.
70831
70636
  */
70832
70637
  wpaPersonal: 1,
70833
70638
  /**
70834
- * WPA-Enterprise. Must use IOSEnterpriseWifiConfiguration type to configure enterprise options.
70639
+ * Indicates Wi-Fi security type is associated with WPA-Enterprise. Must use IOSEnterpriseWifiConfiguration type to configure enterprise options.
70835
70640
  */
70836
70641
  wpaEnterprise: 2,
70837
70642
  /**
70838
- * WEP Encryption.
70643
+ * Indicates Wi-Fi security type is associated with WEP Encryption.
70839
70644
  */
70840
70645
  wep: 3,
70841
70646
  /**
70842
- * WPA2-Personal.
70647
+ * Indicates Wi-Fi security type is associated with WPA2-Personal.
70843
70648
  */
70844
70649
  wpa2Personal: 4,
70845
70650
  /**
70846
- * WPA2-Enterprise. Must use WindowsWifiEnterpriseEAPConfiguration type to configure enterprise options.
70651
+ * Indicates Wi-Fi security type is associated with WPA2-Enterprise. Must use WindowsWifiEnterpriseEAPConfiguration type to configure enterprise options.
70847
70652
  */
70848
70653
  wpa2Enterprise: 5,
70654
+ unknownFutureValue: 6,
70655
+ /**
70656
+ * Indicates Wi-Fi security type is associated with WPA3-Personal. Provides stronger encryption using Simultaneous Authentication of Equals (SAE).
70657
+ */
70658
+ wpa3Personal: 7,
70849
70659
  }
70850
70660
 
70851
70661
  /**
@@ -73938,6 +73748,9 @@ namespace reference.`microsoft.graph.cloudLicensing` {
73938
73748
  unknownFutureValue: 8,
73939
73749
  }
73940
73750
 
73751
+ }
73752
+ @publicNamespace("microsoft.graph.copilot")
73753
+ namespace reference.`microsoft.graph.copilot` {
73941
73754
  }
73942
73755
  @deprecatedDefinition("ruleThreshold", "<ChangeLogCategory>", "2023-09-05", "2023-12-31", "The ruleThreshold complex type is deprecated and will not be supported starting Dec 31, 2023. This property will not be included as part of the API response.")
73943
73756
  @deprecatedDefinition("threshold", "<ChangeLogCategory>", "2023-09-05", "2023-12-31", "The threshold property is deprecated and will not be supported starting Dec 31, 2023. This property will not be included as part of the API response.")
@@ -74353,6 +74166,8 @@ namespace reference.`microsoft.graph.externalConnectors` {
74353
74166
  }
74354
74167
 
74355
74168
  }
74169
+ @privatePreviewDefinition("organizationalUnit", "2025-08-12", "2026-02-28", "<theOwner>")
74170
+ // Metadata item PrivatePreviewDefinition_organizationalUnit was already defined with a different value.
74356
74171
  @publicNamespace("microsoft.graph.identitygovernance")
74357
74172
  namespace reference.`microsoft.graph.identityGovernance` {
74358
74173
  @complex model activateGroupScope extends activationScope {
@@ -74414,6 +74229,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
74414
74229
  valueType: valueType;
74415
74230
  }
74416
74231
 
74232
+ @complex model previewFailedTask {
74233
+ definitionId: string;
74234
+ failureReason: string;
74235
+ name: string;
74236
+ taskId: string;
74237
+ }
74238
+
74417
74239
  @complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
74418
74240
  rule: string;
74419
74241
  }
@@ -74636,6 +74458,9 @@ namespace reference.`microsoft.graph.identityGovernance` {
74636
74458
  nextScheduleRunDateTime: offsetDateTime | null;
74637
74459
  version: int32 | null;
74638
74460
  @references executionScope: userProcessingResult[];
74461
+
74462
+ @privatePreview("organizationalUnit")
74463
+ @references previewScope: reference.`microsoft.graph`.directoryObject[];
74639
74464
  @contains runs: run[];
74640
74465
  @contains taskReports: taskReport[];
74641
74466
  @contains userProcessingResults: userProcessingResult[];
@@ -74732,6 +74557,8 @@ namespace reference.`microsoft.graph.identityGovernance` {
74732
74557
  onDemand: 1,
74733
74558
  unknownFutureValue: 2,
74734
74559
  activatedWithScope: 3,
74560
+ @privatePreview("organizationalUnit")
74561
+ preview: 4,
74735
74562
  }
74736
74563
 
74737
74564
  enum workflowTriggerTimeBasedAttribute {
@@ -76035,6 +75862,10 @@ namespace reference.`microsoft.graph.security` {
76035
75862
  @complex model markUserAsCompromisedIncidentTaskResponseAction extends incidentTaskResponseAction {
76036
75863
  }
76037
75864
 
75865
+ @complex model mergeResponse {
75866
+ targetIncidentId: string;
75867
+ }
75868
+
76038
75869
  @complex model networkConnectionEvidence extends alertEvidence {
76039
75870
  destinationAddress: ipEvidence | null;
76040
75871
  destinationPort: int32 | null;
@@ -76976,6 +76807,28 @@ namespace reference.`microsoft.graph.security` {
76976
76807
  unknownFutureValue: 3,
76977
76808
  }
76978
76809
 
76810
+ @graphFlags
76811
+ enum correlationReason {
76812
+ repeatedAlertOccurrence: 1,
76813
+ sameGeography: 2,
76814
+ similarArtifacts: 4,
76815
+ sameTargetedAsset: 8,
76816
+ sameNetworkSegment: 16,
76817
+ eventSequence: 32,
76818
+ timeFrame: 64,
76819
+ sameThreatSource: 128,
76820
+ similarTTPsOrBehavior: 256,
76821
+ sameActor: 512,
76822
+ sameCampaign: 1024,
76823
+ sharedIndicators: 2048,
76824
+ sameAsset: 4096,
76825
+ networkProximity: 8192,
76826
+ eventCasualSequence: 16384,
76827
+ temporalProximity: 32768,
76828
+ lateralMovementPath: 65536,
76829
+ unknownFutureValue: 131072,
76830
+ }
76831
+
76979
76832
  enum dataSourceContainerStatus {
76980
76833
  active: 1,
76981
76834
  released: 2,