@microsoft/typespec-msgraph-reference 1.0.3 → 1.0.4
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.
- package/.rush/temp/package-deps_build.json +18 -18
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +2222 -51
- package/lib/Bleu/V1.0/main.tsp +2203 -51
- package/lib/Delos/Beta/main.tsp +1721 -49
- package/lib/Delos/V1.0/main.tsp +308 -20
- package/lib/Fairfax/Beta/main.tsp +704 -60
- package/lib/Fairfax/V1.0/main.tsp +304 -20
- package/lib/GovSG/Beta/main.tsp +113 -13
- package/lib/GovSG/V1.0/main.tsp +195 -0
- package/lib/Mooncake/Beta/main.tsp +653 -50
- package/lib/Mooncake/V1.0/main.tsp +171 -20
- package/lib/Prod/Beta/main.tsp +3553 -216
- package/lib/Prod/V1.0/main.tsp +979 -26
- package/lib/USNat/Beta/main.tsp +301 -37
- package/lib/USNat/V1.0/main.tsp +399 -3
- package/lib/USSec/Beta/main.tsp +700 -65
- package/lib/USSec/V1.0/main.tsp +702 -3
- package/package.json +2 -2
package/lib/Delos/Beta/main.tsp
CHANGED
|
@@ -7,8 +7,10 @@ using MsGraph;
|
|
|
7
7
|
scalar binary; //TODO: Enables support for Edm.Binary
|
|
8
8
|
|
|
9
9
|
|
|
10
|
+
@deprecatedDefinition("PasskeyGlobalProperties", "<ChangeLogCategory>", "2025-10-15", "2027-10-15", "This property is deprecated and will stop returning data on October 15, 2027. Please use passkeyProfiles property.")
|
|
10
11
|
@privatePreviewDefinition("AgenticSP", "2025-04-14", "2025-07-13", "<theOwner>")
|
|
11
12
|
@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/")
|
|
13
|
+
@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.")
|
|
12
14
|
@deprecatedDefinition("accountEnabledDeprecated", "<ChangeLogCategory>", "2023-02-23", "2023-07-12", "The accountEnabled field will soon be deprecated on 2023-07-12. Please use isEnabled instead.")
|
|
13
15
|
@publicNamespace("microsoft.graph")
|
|
14
16
|
namespace reference.`microsoft.graph` {
|
|
@@ -68,6 +70,9 @@ namespace reference.`microsoft.graph` {
|
|
|
68
70
|
@complex model allAllowedScopes extends inheritableScopes {
|
|
69
71
|
}
|
|
70
72
|
|
|
73
|
+
@complex model allDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
74
|
+
}
|
|
75
|
+
|
|
71
76
|
/**
|
|
72
77
|
* Represents an assignment to all managed devices in the tenant.
|
|
73
78
|
*/
|
|
@@ -359,6 +364,16 @@ namespace reference.`microsoft.graph` {
|
|
|
359
364
|
selections: keyValuePair[] | null;
|
|
360
365
|
}
|
|
361
366
|
|
|
367
|
+
/**
|
|
368
|
+
* The request parameter for requesting Android LOB app configuration schema.
|
|
369
|
+
*/
|
|
370
|
+
@complex model androidLobAppConfigurationSchemaRequestDetail extends appConfigurationSchemaRequestDetail {
|
|
371
|
+
/**
|
|
372
|
+
* The application policy ID of the Android LOB app
|
|
373
|
+
*/
|
|
374
|
+
appId: string | null;
|
|
375
|
+
}
|
|
376
|
+
|
|
362
377
|
/**
|
|
363
378
|
* Contains properties used to assign an Android Managed Store mobile app to a group.
|
|
364
379
|
*/
|
|
@@ -559,6 +574,120 @@ namespace reference.`microsoft.graph` {
|
|
|
559
574
|
resourceSpecificApplicationPermissions: resourceSpecificPermission[];
|
|
560
575
|
}
|
|
561
576
|
|
|
577
|
+
/**
|
|
578
|
+
* Boolean configuration item inside an Android application's custom configuration schema.
|
|
579
|
+
*/
|
|
580
|
+
@complex model appConfigurationSchemaItemBooleanType extends appConfigurationSchemaItemType {
|
|
581
|
+
/**
|
|
582
|
+
* Default value, if specified by the app developer
|
|
583
|
+
*/
|
|
584
|
+
defaultValue: boolean | null;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
/**
|
|
588
|
+
* Bundle array configuration item inside an Android application's custom configuration schema.
|
|
589
|
+
*/
|
|
590
|
+
@complex model appConfigurationSchemaItemBundleArray extends appConfigurationSchemaItemType {
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
/**
|
|
594
|
+
* Bundle configuration item inside an Android application's custom configuration schema.
|
|
595
|
+
*/
|
|
596
|
+
@complex model appConfigurationSchemaItemBundleType extends appConfigurationSchemaItemType {
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
/**
|
|
600
|
+
* Choice configuration item inside an Android application's custom configuration schema.
|
|
601
|
+
*/
|
|
602
|
+
@complex model appConfigurationSchemaItemChoiceType extends appConfigurationSchemaItemType {
|
|
603
|
+
/**
|
|
604
|
+
* Default value, if specified by the app developer
|
|
605
|
+
*/
|
|
606
|
+
defaultValue: string | null;
|
|
607
|
+
/**
|
|
608
|
+
* List of human readable name/value pairs for the valid values that can be set for this item
|
|
609
|
+
*/
|
|
610
|
+
selections: keyValuePair[] | null;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
/**
|
|
614
|
+
* Hidden configuration item inside an Android application's custom configuration schema.
|
|
615
|
+
*/
|
|
616
|
+
@complex model appConfigurationSchemaItemHiddenType extends appConfigurationSchemaItemType {
|
|
617
|
+
/**
|
|
618
|
+
* Default value, if specified by the app developer
|
|
619
|
+
*/
|
|
620
|
+
defaultValue: string | null;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
/**
|
|
624
|
+
* Integer configuration item inside an Android application's custom configuration schema.
|
|
625
|
+
*/
|
|
626
|
+
@complex model appConfigurationSchemaItemIntegerType extends appConfigurationSchemaItemType {
|
|
627
|
+
/**
|
|
628
|
+
* Default value, if specified by the app developer. Valid values 0 to 2147483647
|
|
629
|
+
*/
|
|
630
|
+
defaultValue: int32 | null;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
/**
|
|
634
|
+
* Multiselect configuration item inside an Android application's custom configuration schema.
|
|
635
|
+
*/
|
|
636
|
+
@complex model appConfigurationSchemaItemMultiselectType extends appConfigurationSchemaItemType {
|
|
637
|
+
/**
|
|
638
|
+
* Default value, if specified by the app developer
|
|
639
|
+
*/
|
|
640
|
+
defaultValue: string[] | null;
|
|
641
|
+
/**
|
|
642
|
+
* List of human readable name/value pairs for the valid values that can be set for this item
|
|
643
|
+
*/
|
|
644
|
+
selections: keyValuePair[] | null;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
/**
|
|
648
|
+
* String configuration item inside an Android application's custom configuration schema.
|
|
649
|
+
*/
|
|
650
|
+
@complex model appConfigurationSchemaItemStringType extends appConfigurationSchemaItemType {
|
|
651
|
+
/**
|
|
652
|
+
* Default value, if specified by the app developer
|
|
653
|
+
*/
|
|
654
|
+
defaultValue: string | null;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
/**
|
|
658
|
+
* Single configuration item inside an Android application's configuration schema.
|
|
659
|
+
*/
|
|
660
|
+
@abstract
|
|
661
|
+
@complex model appConfigurationSchemaItemType {
|
|
662
|
+
/**
|
|
663
|
+
* Description of what the item controls within the application
|
|
664
|
+
*/
|
|
665
|
+
description: string | null;
|
|
666
|
+
/**
|
|
667
|
+
* Human readable name
|
|
668
|
+
*/
|
|
669
|
+
displayName: string | null;
|
|
670
|
+
/**
|
|
671
|
+
* Unique index the application uses to maintain nested schema items. Valid values 0 to 2147483647
|
|
672
|
+
*/
|
|
673
|
+
index: int32;
|
|
674
|
+
/**
|
|
675
|
+
* Index of parent schema item to track nested schema items. Valid values 0 to 2147483647
|
|
676
|
+
*/
|
|
677
|
+
parentIndex: int32 | null;
|
|
678
|
+
/**
|
|
679
|
+
* Unique key the application uses to identify the item
|
|
680
|
+
*/
|
|
681
|
+
schemaItemKey: string | null;
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
/**
|
|
685
|
+
* Base type for the request parameters that identifies the requested app configuration schema.
|
|
686
|
+
*/
|
|
687
|
+
@abstract
|
|
688
|
+
@complex model appConfigurationSchemaRequestDetail {
|
|
689
|
+
}
|
|
690
|
+
|
|
562
691
|
/**
|
|
563
692
|
* Contains properties for App configuration setting item.
|
|
564
693
|
*/
|
|
@@ -700,7 +829,7 @@ namespace reference.`microsoft.graph` {
|
|
|
700
829
|
}
|
|
701
830
|
|
|
702
831
|
@complex model appManagementPolicyActorExemptions {
|
|
703
|
-
|
|
832
|
+
customSecurityAttributes: customSecurityAttributeExemption[] | null;
|
|
704
833
|
}
|
|
705
834
|
|
|
706
835
|
@complex model appManagementServicePrincipalConfiguration extends appManagementConfiguration {
|
|
@@ -1029,6 +1158,26 @@ namespace reference.`microsoft.graph` {
|
|
|
1029
1158
|
transferMethod: conditionalAccessTransferMethods | null;
|
|
1030
1159
|
}
|
|
1031
1160
|
|
|
1161
|
+
@complex model authenticationMethodFeatureConfiguration {
|
|
1162
|
+
excludeTarget: featureTarget | null;
|
|
1163
|
+
includeTarget: featureTarget | null;
|
|
1164
|
+
state: advancedConfigState | null;
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
@complex model authenticationMethodsRegistrationCampaign {
|
|
1168
|
+
enforceRegistrationAfterAllowedSnoozes: boolean | null;
|
|
1169
|
+
excludeTargets: excludeTarget[];
|
|
1170
|
+
includeTargets: authenticationMethodsRegistrationCampaignIncludeTarget[];
|
|
1171
|
+
snoozeDurationInDays: int32;
|
|
1172
|
+
state: advancedConfigState;
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
@complex model authenticationMethodsRegistrationCampaignIncludeTarget {
|
|
1176
|
+
id: string;
|
|
1177
|
+
targetedAuthenticationMethod: string | null;
|
|
1178
|
+
targetType: authenticationMethodTargetType;
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1032
1181
|
@complex model authorizationInfo {
|
|
1033
1182
|
certificateUserIds: string[] | null;
|
|
1034
1183
|
}
|
|
@@ -1049,6 +1198,17 @@ namespace reference.`microsoft.graph` {
|
|
|
1049
1198
|
status: automaticRepliesStatus | null;
|
|
1050
1199
|
}
|
|
1051
1200
|
|
|
1201
|
+
@complex model azureADJoinPolicy {
|
|
1202
|
+
allowedToJoin: deviceRegistrationMembership | null;
|
|
1203
|
+
isAdminConfigurable: boolean | null;
|
|
1204
|
+
localAdmins: localAdminSettings | null;
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
@complex model azureADRegistrationPolicy {
|
|
1208
|
+
allowedToRegister: deviceRegistrationMembership | null;
|
|
1209
|
+
isAdminConfigurable: boolean | null;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1052
1212
|
/**
|
|
1053
1213
|
* BitLocker Fixed Drive Policies.
|
|
1054
1214
|
*/
|
|
@@ -1297,6 +1457,32 @@ namespace reference.`microsoft.graph` {
|
|
|
1297
1457
|
deviceAssignmentItems: deviceAssignmentItem[] | null;
|
|
1298
1458
|
}
|
|
1299
1459
|
|
|
1460
|
+
@complex model changeNotification {
|
|
1461
|
+
changeType: changeType;
|
|
1462
|
+
clientState: string | null;
|
|
1463
|
+
encryptedContent: changeNotificationEncryptedContent | null;
|
|
1464
|
+
id: string | null;
|
|
1465
|
+
lifecycleEvent: lifecycleEventType | null;
|
|
1466
|
+
resource: string;
|
|
1467
|
+
resourceData: resourceData | null;
|
|
1468
|
+
subscriptionExpirationDateTime: offsetDateTime;
|
|
1469
|
+
subscriptionId: guid;
|
|
1470
|
+
tenantId: guid;
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
@complex model changeNotificationCollection {
|
|
1474
|
+
validationTokens: string[] | null;
|
|
1475
|
+
value: changeNotification[];
|
|
1476
|
+
}
|
|
1477
|
+
|
|
1478
|
+
@complex model changeNotificationEncryptedContent {
|
|
1479
|
+
data: string;
|
|
1480
|
+
dataKey: string;
|
|
1481
|
+
dataSignature: string;
|
|
1482
|
+
encryptionCertificateId: string;
|
|
1483
|
+
encryptionCertificateThumbprint: string;
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1300
1486
|
/**
|
|
1301
1487
|
* Represents a property of the ChromeOS device.
|
|
1302
1488
|
*/
|
|
@@ -1323,6 +1509,16 @@ namespace reference.`microsoft.graph` {
|
|
|
1323
1509
|
cloudAppSecurityType: cloudAppSecuritySessionControlType | null;
|
|
1324
1510
|
}
|
|
1325
1511
|
|
|
1512
|
+
/**
|
|
1513
|
+
* Complex type that represents usage details associated with a certification authority version. This type provides reporting data such as the number of leaf certificates issued during specific lifecycle phases.
|
|
1514
|
+
*/
|
|
1515
|
+
@complex model cloudCertificationAuthorityVersionUsage {
|
|
1516
|
+
/**
|
|
1517
|
+
* The number of leaf certificates issued by the certification authority version when it was in the staged status. Only applicable for staged certification authority versions. Nullable. Read-only.
|
|
1518
|
+
*/
|
|
1519
|
+
issuedStagedLeafCertificateCount: int32 | null;
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1326
1522
|
@complex model cloudRealtimeCommunicationInfo {
|
|
1327
1523
|
isSipEnabled: boolean | null;
|
|
1328
1524
|
}
|
|
@@ -1717,6 +1913,13 @@ namespace reference.`microsoft.graph` {
|
|
|
1717
1913
|
registrationCampaignRelativeUrl: string | null;
|
|
1718
1914
|
}
|
|
1719
1915
|
|
|
1916
|
+
@complex model contentSensitivityLabelAssignment {
|
|
1917
|
+
assignmentMethod: sensitivityLabelAssignmentMethod;
|
|
1918
|
+
justificationText: string | null;
|
|
1919
|
+
sensitivityLabelId: string | null;
|
|
1920
|
+
tenantId: string | null;
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1720
1923
|
@complex model continuousAccessEvaluationSessionControl {
|
|
1721
1924
|
mode: continuousAccessEvaluationMode | null;
|
|
1722
1925
|
}
|
|
@@ -1839,6 +2042,16 @@ namespace reference.`microsoft.graph` {
|
|
|
1839
2042
|
applicationRestrictions: customAppManagementApplicationConfiguration | null;
|
|
1840
2043
|
}
|
|
1841
2044
|
|
|
2045
|
+
@abstract
|
|
2046
|
+
@complex model customSecurityAttributeExemption {
|
|
2047
|
+
id: string;
|
|
2048
|
+
operator: customSecurityAttributeComparisonOperator;
|
|
2049
|
+
}
|
|
2050
|
+
|
|
2051
|
+
@complex model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
|
|
2052
|
+
value: string | null;
|
|
2053
|
+
}
|
|
2054
|
+
|
|
1842
2055
|
@open
|
|
1843
2056
|
@complex model customSecurityAttributeValue {
|
|
1844
2057
|
}
|
|
@@ -2238,11 +2451,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2238
2451
|
|
|
2239
2452
|
@complex model deviceCompliancePolicyScript {
|
|
2240
2453
|
/**
|
|
2241
|
-
*
|
|
2454
|
+
* Identifier of the device compliance script used to evaluate custom compliance. When deviceCompliancePolicyScript is set, this identifies which script to run. Default is null, when set to default it is not evaluated.
|
|
2242
2455
|
*/
|
|
2243
2456
|
deviceComplianceScriptId: string | null;
|
|
2244
2457
|
/**
|
|
2245
|
-
*
|
|
2458
|
+
* base64-encoded JSON rules content that defines compliance rules to evaluate on the device. When deviceCompliancePolicyScript is set, the rule conditions defined in the JSON are evaluated to determine compliance and the device is marked noncompliant when any rule evaluates to noncompliant. Default is null, when set to default it is not evaluated.
|
|
2246
2459
|
*/
|
|
2247
2460
|
rulesContent: binary | null;
|
|
2248
2461
|
}
|
|
@@ -2912,6 +3125,13 @@ namespace reference.`microsoft.graph` {
|
|
|
2912
3125
|
passwordLastRotationDateTime: offsetDateTime;
|
|
2913
3126
|
}
|
|
2914
3127
|
|
|
3128
|
+
@complex model deviceLocalCredential {
|
|
3129
|
+
accountName: string;
|
|
3130
|
+
accountSid: string;
|
|
3131
|
+
backupDateTime: offsetDateTime;
|
|
3132
|
+
passwordBase64: string;
|
|
3133
|
+
}
|
|
3134
|
+
|
|
2915
3135
|
/**
|
|
2916
3136
|
* Windows Log Collection request entity.
|
|
2917
3137
|
*/
|
|
@@ -4250,6 +4470,9 @@ namespace reference.`microsoft.graph` {
|
|
|
4250
4470
|
unknownStateThreatAgentDeviceCount: int32;
|
|
4251
4471
|
}
|
|
4252
4472
|
|
|
4473
|
+
@complex model deviceRegistrationMembership {
|
|
4474
|
+
}
|
|
4475
|
+
|
|
4253
4476
|
/**
|
|
4254
4477
|
* The result of the triggered device scope action.
|
|
4255
4478
|
*/
|
|
@@ -4475,6 +4698,11 @@ namespace reference.`microsoft.graph` {
|
|
|
4475
4698
|
targetValidationErrorCode: enrollmentTimeDeviceMembershipTargetValidationErrorCode;
|
|
4476
4699
|
}
|
|
4477
4700
|
|
|
4701
|
+
@complex model enumeratedDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
4702
|
+
groups: string[] | null;
|
|
4703
|
+
users: string[] | null;
|
|
4704
|
+
}
|
|
4705
|
+
|
|
4478
4706
|
@complex model enumeratedDomains extends validatingDomains {
|
|
4479
4707
|
domainNames: string[];
|
|
4480
4708
|
}
|
|
@@ -4564,6 +4792,11 @@ namespace reference.`microsoft.graph` {
|
|
|
4564
4792
|
word: boolean;
|
|
4565
4793
|
}
|
|
4566
4794
|
|
|
4795
|
+
@complex model excludeTarget {
|
|
4796
|
+
id: string;
|
|
4797
|
+
targetType: authenticationMethodTargetType;
|
|
4798
|
+
}
|
|
4799
|
+
|
|
4567
4800
|
/**
|
|
4568
4801
|
* Represents a group that should be excluded from an assignment.
|
|
4569
4802
|
*/
|
|
@@ -4578,6 +4811,10 @@ namespace reference.`microsoft.graph` {
|
|
|
4578
4811
|
* The number of days after installation that forced reboot will happen.
|
|
4579
4812
|
*/
|
|
4580
4813
|
daysUntilForcedReboot: int32;
|
|
4814
|
+
/**
|
|
4815
|
+
* The unique identifier for the quality update catalog item targeted by the expedite.
|
|
4816
|
+
*/
|
|
4817
|
+
qualityUpdateCatalogItemId: string | null;
|
|
4581
4818
|
/**
|
|
4582
4819
|
* The release date to identify a quality update.
|
|
4583
4820
|
*/
|
|
@@ -4632,11 +4869,22 @@ namespace reference.`microsoft.graph` {
|
|
|
4632
4869
|
type: string | null;
|
|
4633
4870
|
}
|
|
4634
4871
|
|
|
4872
|
+
@complex model featureTarget {
|
|
4873
|
+
id: string | null;
|
|
4874
|
+
targetType: featureTargetType | null;
|
|
4875
|
+
}
|
|
4876
|
+
|
|
4635
4877
|
@complex model federatedIdentityExpression {
|
|
4636
4878
|
languageVersion: int32;
|
|
4637
4879
|
value: string;
|
|
4638
4880
|
}
|
|
4639
4881
|
|
|
4882
|
+
@complex model fido2KeyRestrictions {
|
|
4883
|
+
aaGuids: string[] | null;
|
|
4884
|
+
enforcementType: fido2RestrictionEnforcementType | null;
|
|
4885
|
+
isEnforced: boolean | null;
|
|
4886
|
+
}
|
|
4887
|
+
|
|
4640
4888
|
/**
|
|
4641
4889
|
* Contains properties for file encryption information for the content version of a line-of-business app.
|
|
4642
4890
|
*/
|
|
@@ -4935,6 +5183,7 @@ namespace reference.`microsoft.graph` {
|
|
|
4935
5183
|
|
|
4936
5184
|
@complex model identifierUriConfiguration {
|
|
4937
5185
|
nonDefaultUriAddition: identifierUriRestriction | null;
|
|
5186
|
+
uriAdditionWithoutUniqueTenantIdentifier: identifierUriRestriction | null;
|
|
4938
5187
|
}
|
|
4939
5188
|
|
|
4940
5189
|
@complex model identifierUriRestriction {
|
|
@@ -5000,6 +5249,11 @@ namespace reference.`microsoft.graph` {
|
|
|
5000
5249
|
outboundAllowed: boolean | null;
|
|
5001
5250
|
}
|
|
5002
5251
|
|
|
5252
|
+
@complex model includeTarget {
|
|
5253
|
+
id: string;
|
|
5254
|
+
targetType: authenticationMethodTargetType;
|
|
5255
|
+
}
|
|
5256
|
+
|
|
5003
5257
|
@complex model informationalUrl {
|
|
5004
5258
|
logoUrl: string | null;
|
|
5005
5259
|
marketingUrl: string | null;
|
|
@@ -5171,6 +5425,12 @@ namespace reference.`microsoft.graph` {
|
|
|
5171
5425
|
primaryIdentityProviderPrecedenceOrder: b2bIdentityProvidersType[] | null;
|
|
5172
5426
|
}
|
|
5173
5427
|
|
|
5428
|
+
@complex model invitedUserMessageInfo {
|
|
5429
|
+
ccRecipients: recipient[] | null;
|
|
5430
|
+
customizedMessageBody: string | null;
|
|
5431
|
+
messageLanguage: string | null;
|
|
5432
|
+
}
|
|
5433
|
+
|
|
5174
5434
|
/**
|
|
5175
5435
|
* iOS available update version details
|
|
5176
5436
|
*/
|
|
@@ -6013,6 +6273,7 @@ namespace reference.`microsoft.graph` {
|
|
|
6013
6273
|
usage: string | null;
|
|
6014
6274
|
}
|
|
6015
6275
|
|
|
6276
|
+
|
|
6016
6277
|
/**
|
|
6017
6278
|
* A key-value pair with a string key and an integer value.
|
|
6018
6279
|
*/
|
|
@@ -6106,6 +6367,15 @@ namespace reference.`microsoft.graph` {
|
|
|
6106
6367
|
warning: int32 | null;
|
|
6107
6368
|
}
|
|
6108
6369
|
|
|
6370
|
+
@complex model localAdminPasswordSettings {
|
|
6371
|
+
isEnabled: boolean | null;
|
|
6372
|
+
}
|
|
6373
|
+
|
|
6374
|
+
@complex model localAdminSettings {
|
|
6375
|
+
enableGlobalAdmins: boolean | null;
|
|
6376
|
+
registeringUsers: deviceRegistrationMembership | null;
|
|
6377
|
+
}
|
|
6378
|
+
|
|
6109
6379
|
@complex model localeInfo {
|
|
6110
6380
|
displayName: string | null;
|
|
6111
6381
|
locale: string | null;
|
|
@@ -7018,6 +7288,16 @@ namespace reference.`microsoft.graph` {
|
|
|
7018
7288
|
releaseYear: int32;
|
|
7019
7289
|
}
|
|
7020
7290
|
|
|
7291
|
+
/**
|
|
7292
|
+
* The request parameter for requesting Android Managed Play Store app configuration schema.
|
|
7293
|
+
*/
|
|
7294
|
+
@complex model managedStoreAppConfigurationSchemaRequestDetail extends appConfigurationSchemaRequestDetail {
|
|
7295
|
+
/**
|
|
7296
|
+
* The package name of the Android Managed Play Store app
|
|
7297
|
+
*/
|
|
7298
|
+
packageName: string | null;
|
|
7299
|
+
}
|
|
7300
|
+
|
|
7021
7301
|
@complex model managementCertificateWithThumbprint {
|
|
7022
7302
|
/**
|
|
7023
7303
|
* The Base 64 encoded management certificate
|
|
@@ -7203,6 +7483,13 @@ namespace reference.`microsoft.graph` {
|
|
|
7203
7483
|
value: int64;
|
|
7204
7484
|
}
|
|
7205
7485
|
|
|
7486
|
+
@complex model microsoftAuthenticatorFeatureSettings {
|
|
7487
|
+
companionAppAllowedState: authenticationMethodFeatureConfiguration | null;
|
|
7488
|
+
displayAppInformationRequiredState: authenticationMethodFeatureConfiguration | null;
|
|
7489
|
+
displayLocationInformationRequiredState: authenticationMethodFeatureConfiguration | null;
|
|
7490
|
+
numberMatchingRequiredState: authenticationMethodFeatureConfiguration | null;
|
|
7491
|
+
}
|
|
7492
|
+
|
|
7206
7493
|
/**
|
|
7207
7494
|
* Contains properties used to assign an Microsoft Store for Business mobile app to a group.
|
|
7208
7495
|
*/
|
|
@@ -7393,6 +7680,9 @@ namespace reference.`microsoft.graph` {
|
|
|
7393
7680
|
troubleshootingErrorDetails: deviceManagementTroubleshootingErrorDetails | null;
|
|
7394
7681
|
}
|
|
7395
7682
|
|
|
7683
|
+
@complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
7684
|
+
}
|
|
7685
|
+
|
|
7396
7686
|
@complex model noScopes extends inheritableScopes {
|
|
7397
7687
|
}
|
|
7398
7688
|
|
|
@@ -7590,6 +7880,11 @@ namespace reference.`microsoft.graph` {
|
|
|
7590
7880
|
value: string | null;
|
|
7591
7881
|
}
|
|
7592
7882
|
|
|
7883
|
+
@complex model openIdConnectSetting {
|
|
7884
|
+
clientId: string;
|
|
7885
|
+
discoveryUrl: string;
|
|
7886
|
+
}
|
|
7887
|
+
|
|
7593
7888
|
/**
|
|
7594
7889
|
* Operating System version range.
|
|
7595
7890
|
*/
|
|
@@ -7749,6 +8044,17 @@ namespace reference.`microsoft.graph` {
|
|
|
7749
8044
|
legalAgeGroupRule: string | null;
|
|
7750
8045
|
}
|
|
7751
8046
|
|
|
8047
|
+
@complex model passkeyProfileStructure {
|
|
8048
|
+
attestationEnforcement: attestationEnforcement;
|
|
8049
|
+
id: string;
|
|
8050
|
+
|
|
8051
|
+
@graphDeprecated("PasskeyGlobalProperties")
|
|
8052
|
+
isAttestationEnforced: boolean;
|
|
8053
|
+
keyRestrictions: fido2KeyRestrictions;
|
|
8054
|
+
name: string;
|
|
8055
|
+
passkeyTypes: passkeyTypes;
|
|
8056
|
+
}
|
|
8057
|
+
|
|
7752
8058
|
@complex model passwordCredential {
|
|
7753
8059
|
customKeyIdentifier: binary | null;
|
|
7754
8060
|
displayName: string | null;
|
|
@@ -7759,12 +8065,17 @@ namespace reference.`microsoft.graph` {
|
|
|
7759
8065
|
startDateTime: offsetDateTime | null;
|
|
7760
8066
|
}
|
|
7761
8067
|
|
|
8068
|
+
|
|
7762
8069
|
@complex model passwordProfile {
|
|
7763
8070
|
forceChangePasswordNextSignIn: boolean | null;
|
|
7764
8071
|
forceChangePasswordNextSignInWithMfa: boolean | null;
|
|
7765
8072
|
password: string | null;
|
|
7766
8073
|
}
|
|
7767
8074
|
|
|
8075
|
+
@complex model passwordResetResponse {
|
|
8076
|
+
newPassword: string | null;
|
|
8077
|
+
}
|
|
8078
|
+
|
|
7768
8079
|
@complex model passwordSingleSignOnCredentialSet {
|
|
7769
8080
|
credentials: credential[] | null;
|
|
7770
8081
|
id: string;
|
|
@@ -7857,6 +8168,241 @@ namespace reference.`microsoft.graph` {
|
|
|
7857
8168
|
street: string | null;
|
|
7858
8169
|
}
|
|
7859
8170
|
|
|
8171
|
+
@open
|
|
8172
|
+
@complex model plannerAppliedCategories {
|
|
8173
|
+
}
|
|
8174
|
+
|
|
8175
|
+
@complex model plannerApprovalRequirement {
|
|
8176
|
+
isApprovalRequired: boolean | null;
|
|
8177
|
+
}
|
|
8178
|
+
|
|
8179
|
+
@complex model plannerArchivalInfo {
|
|
8180
|
+
justification: string | null;
|
|
8181
|
+
statusChangedBy: identitySet | null;
|
|
8182
|
+
statusChangedDateTime: offsetDateTime | null;
|
|
8183
|
+
}
|
|
8184
|
+
|
|
8185
|
+
@complex model plannerAssignment {
|
|
8186
|
+
assignedBy: identitySet | null;
|
|
8187
|
+
assignedDateTime: offsetDateTime | null;
|
|
8188
|
+
orderHint: string | null;
|
|
8189
|
+
}
|
|
8190
|
+
|
|
8191
|
+
@open
|
|
8192
|
+
@complex model plannerAssignments {
|
|
8193
|
+
}
|
|
8194
|
+
|
|
8195
|
+
@abstract
|
|
8196
|
+
@complex model plannerBaseApprovalAttachment {
|
|
8197
|
+
status: plannerApprovalStatus | null;
|
|
8198
|
+
}
|
|
8199
|
+
|
|
8200
|
+
@complex model plannerBasicApprovalAttachment extends plannerBaseApprovalAttachment {
|
|
8201
|
+
approvalId: string | null;
|
|
8202
|
+
}
|
|
8203
|
+
|
|
8204
|
+
@abstract
|
|
8205
|
+
@complex model plannerBucketCreation {
|
|
8206
|
+
creationSourceKind: plannerCreationSourceKind | null;
|
|
8207
|
+
}
|
|
8208
|
+
|
|
8209
|
+
@complex model plannerCategoryDescriptions {
|
|
8210
|
+
category1: string | null;
|
|
8211
|
+
category10: string | null;
|
|
8212
|
+
category11: string | null;
|
|
8213
|
+
category12: string | null;
|
|
8214
|
+
category13: string | null;
|
|
8215
|
+
category14: string | null;
|
|
8216
|
+
category15: string | null;
|
|
8217
|
+
category16: string | null;
|
|
8218
|
+
category17: string | null;
|
|
8219
|
+
category18: string | null;
|
|
8220
|
+
category19: string | null;
|
|
8221
|
+
category2: string | null;
|
|
8222
|
+
category20: string | null;
|
|
8223
|
+
category21: string | null;
|
|
8224
|
+
category22: string | null;
|
|
8225
|
+
category23: string | null;
|
|
8226
|
+
category24: string | null;
|
|
8227
|
+
category25: string | null;
|
|
8228
|
+
category3: string | null;
|
|
8229
|
+
category4: string | null;
|
|
8230
|
+
category5: string | null;
|
|
8231
|
+
category6: string | null;
|
|
8232
|
+
category7: string | null;
|
|
8233
|
+
category8: string | null;
|
|
8234
|
+
category9: string | null;
|
|
8235
|
+
}
|
|
8236
|
+
|
|
8237
|
+
@complex model plannerChecklistItem {
|
|
8238
|
+
isChecked: boolean | null;
|
|
8239
|
+
lastModifiedBy: identitySet | null;
|
|
8240
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
8241
|
+
orderHint: string | null;
|
|
8242
|
+
title: string | null;
|
|
8243
|
+
}
|
|
8244
|
+
|
|
8245
|
+
@open
|
|
8246
|
+
@complex model plannerChecklistItems {
|
|
8247
|
+
}
|
|
8248
|
+
|
|
8249
|
+
@complex model plannerChecklistRequirement {
|
|
8250
|
+
requiredChecklistItemIds: string[] | null;
|
|
8251
|
+
}
|
|
8252
|
+
|
|
8253
|
+
@complex model plannerExternalBucketSource extends plannerBucketCreation {
|
|
8254
|
+
contextScenarioId: string | null;
|
|
8255
|
+
externalContextId: string | null;
|
|
8256
|
+
externalObjectId: string | null;
|
|
8257
|
+
}
|
|
8258
|
+
|
|
8259
|
+
@complex model plannerExternalPlanSource extends plannerPlanCreation {
|
|
8260
|
+
contextScenarioId: string | null;
|
|
8261
|
+
externalContextId: string | null;
|
|
8262
|
+
externalObjectId: string | null;
|
|
8263
|
+
}
|
|
8264
|
+
|
|
8265
|
+
@complex model plannerExternalReference {
|
|
8266
|
+
`alias`: string | null;
|
|
8267
|
+
lastModifiedBy: identitySet | null;
|
|
8268
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
8269
|
+
previewPriority: string | null;
|
|
8270
|
+
type: string | null;
|
|
8271
|
+
}
|
|
8272
|
+
|
|
8273
|
+
@open
|
|
8274
|
+
@complex model plannerExternalReferences {
|
|
8275
|
+
}
|
|
8276
|
+
|
|
8277
|
+
@complex model plannerExternalTaskSource extends plannerTaskCreation {
|
|
8278
|
+
contextScenarioId: string | null;
|
|
8279
|
+
displayLinkType: plannerExternalTaskSourceDisplayType | null;
|
|
8280
|
+
displayNameSegments: string[] | null;
|
|
8281
|
+
externalContextId: string | null;
|
|
8282
|
+
externalObjectId: string | null;
|
|
8283
|
+
externalObjectVersion: string | null;
|
|
8284
|
+
webUrl: string | null;
|
|
8285
|
+
}
|
|
8286
|
+
|
|
8287
|
+
@complex model plannerFavoritePlanReference {
|
|
8288
|
+
orderHint: string | null;
|
|
8289
|
+
planTitle: string | null;
|
|
8290
|
+
}
|
|
8291
|
+
|
|
8292
|
+
@open
|
|
8293
|
+
@complex model plannerFavoritePlanReferenceCollection {
|
|
8294
|
+
}
|
|
8295
|
+
|
|
8296
|
+
@complex model plannerFormReference {
|
|
8297
|
+
displayName: string | null;
|
|
8298
|
+
formResponse: string | null;
|
|
8299
|
+
formWebUrl: string | null;
|
|
8300
|
+
}
|
|
8301
|
+
|
|
8302
|
+
@open
|
|
8303
|
+
@complex model plannerFormsDictionary extends Dictionary {
|
|
8304
|
+
}
|
|
8305
|
+
|
|
8306
|
+
@complex model plannerFormsRequirement {
|
|
8307
|
+
requiredForms: string[] | null;
|
|
8308
|
+
}
|
|
8309
|
+
|
|
8310
|
+
@open
|
|
8311
|
+
@complex model plannerOrderHintsByAssignee {
|
|
8312
|
+
}
|
|
8313
|
+
|
|
8314
|
+
@complex model plannerPlanContainer {
|
|
8315
|
+
containerId: string | null;
|
|
8316
|
+
type: plannerContainerType | null;
|
|
8317
|
+
url: string | null;
|
|
8318
|
+
}
|
|
8319
|
+
|
|
8320
|
+
@complex model plannerPlanContext {
|
|
8321
|
+
associationType: string | null;
|
|
8322
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
8323
|
+
displayNameSegments: string[] | null;
|
|
8324
|
+
isCreationContext: boolean | null;
|
|
8325
|
+
ownerAppId: string | null;
|
|
8326
|
+
}
|
|
8327
|
+
|
|
8328
|
+
@open
|
|
8329
|
+
@complex model plannerPlanContextCollection {
|
|
8330
|
+
}
|
|
8331
|
+
|
|
8332
|
+
@complex model plannerPlanContextDetails {
|
|
8333
|
+
customLinkText: string | null;
|
|
8334
|
+
displayLinkType: plannerPlanContextType | null;
|
|
8335
|
+
state: plannerContextState | null;
|
|
8336
|
+
url: string | null;
|
|
8337
|
+
}
|
|
8338
|
+
|
|
8339
|
+
@open
|
|
8340
|
+
@complex model plannerPlanContextDetailsCollection {
|
|
8341
|
+
}
|
|
8342
|
+
|
|
8343
|
+
@abstract
|
|
8344
|
+
@complex model plannerPlanCreation {
|
|
8345
|
+
creationSourceKind: plannerCreationSourceKind | null;
|
|
8346
|
+
}
|
|
8347
|
+
|
|
8348
|
+
@complex model plannerRecentPlanReference {
|
|
8349
|
+
@computed lastAccessedDateTime: offsetDateTime | null;
|
|
8350
|
+
planTitle: string | null;
|
|
8351
|
+
}
|
|
8352
|
+
|
|
8353
|
+
@open
|
|
8354
|
+
@complex model plannerRecentPlanReferenceCollection {
|
|
8355
|
+
}
|
|
8356
|
+
|
|
8357
|
+
@complex model plannerRecurrenceSchedule {
|
|
8358
|
+
nextOccurrenceDateTime: offsetDateTime | null;
|
|
8359
|
+
pattern: recurrencePattern | null;
|
|
8360
|
+
patternStartDateTime: offsetDateTime | null;
|
|
8361
|
+
}
|
|
8362
|
+
|
|
8363
|
+
@complex model plannerSharedWithContainer extends plannerPlanContainer {
|
|
8364
|
+
accessLevel: plannerPlanAccessLevel;
|
|
8365
|
+
}
|
|
8366
|
+
|
|
8367
|
+
@complex model plannerTaskCompletionRequirementDetails {
|
|
8368
|
+
approvalRequirement: plannerApprovalRequirement | null;
|
|
8369
|
+
checklistRequirement: plannerChecklistRequirement | null;
|
|
8370
|
+
formsRequirement: plannerFormsRequirement | null;
|
|
8371
|
+
}
|
|
8372
|
+
|
|
8373
|
+
@complex model plannerTaskCreation {
|
|
8374
|
+
creationSourceKind: plannerCreationSourceKind | null;
|
|
8375
|
+
teamsPublicationInfo: plannerTeamsPublicationInfo | null;
|
|
8376
|
+
}
|
|
8377
|
+
|
|
8378
|
+
@complex model plannerTaskRecurrence {
|
|
8379
|
+
nextInSeriesTaskId: string | null;
|
|
8380
|
+
occurrenceId: int32;
|
|
8381
|
+
previousInSeriesTaskId: string | null;
|
|
8382
|
+
recurrenceStartDateTime: offsetDateTime;
|
|
8383
|
+
schedule: plannerRecurrenceSchedule | null;
|
|
8384
|
+
seriesId: string;
|
|
8385
|
+
}
|
|
8386
|
+
|
|
8387
|
+
@complex model plannerTeamsPublicationInfo extends plannerTaskCreation {
|
|
8388
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
8389
|
+
publicationId: string | null;
|
|
8390
|
+
publicationName: string | null;
|
|
8391
|
+
publishedToPlanId: string | null;
|
|
8392
|
+
publishingTeamId: string | null;
|
|
8393
|
+
publishingTeamName: string | null;
|
|
8394
|
+
}
|
|
8395
|
+
|
|
8396
|
+
@open
|
|
8397
|
+
@complex model plannerUserIds {
|
|
8398
|
+
}
|
|
8399
|
+
|
|
8400
|
+
@complex model planUsageRight {
|
|
8401
|
+
hasSensitivityLabel: boolean;
|
|
8402
|
+
planId: string;
|
|
8403
|
+
usageRights: usageRightsInfo | null;
|
|
8404
|
+
}
|
|
8405
|
+
|
|
7860
8406
|
/**
|
|
7861
8407
|
* This type contains request details to download app diagnostic files.
|
|
7862
8408
|
*/
|
|
@@ -8012,6 +8558,13 @@ namespace reference.`microsoft.graph` {
|
|
|
8012
8558
|
redirectUris: string[];
|
|
8013
8559
|
}
|
|
8014
8560
|
|
|
8561
|
+
@complex model qrCodeImageDetails {
|
|
8562
|
+
binaryValue: binary | null;
|
|
8563
|
+
errorCorrectionLevel: errorCorrectionLevel | null;
|
|
8564
|
+
rawContent: binary | null;
|
|
8565
|
+
version: int32 | null;
|
|
8566
|
+
}
|
|
8567
|
+
|
|
8015
8568
|
@complex model rankedEmailAddress {
|
|
8016
8569
|
address: string | null;
|
|
8017
8570
|
rank: float64 | null;
|
|
@@ -8066,6 +8619,10 @@ namespace reference.`microsoft.graph` {
|
|
|
8066
8619
|
uri: string | null;
|
|
8067
8620
|
}
|
|
8068
8621
|
|
|
8622
|
+
@complex model registrationEnforcement {
|
|
8623
|
+
authenticationMethodsRegistrationCampaign: authenticationMethodsRegistrationCampaign | null;
|
|
8624
|
+
}
|
|
8625
|
+
|
|
8069
8626
|
@complex model reminder {
|
|
8070
8627
|
changeKey: string | null;
|
|
8071
8628
|
eventEndTime: dateTimeTimeZone | null;
|
|
@@ -8094,6 +8651,12 @@ namespace reference.`microsoft.graph` {
|
|
|
8094
8651
|
content: stream | null;
|
|
8095
8652
|
}
|
|
8096
8653
|
|
|
8654
|
+
@complex model reportSuspiciousActivitySettings {
|
|
8655
|
+
includeTarget: includeTarget;
|
|
8656
|
+
state: advancedConfigState;
|
|
8657
|
+
voiceReportingCode: int32 | null;
|
|
8658
|
+
}
|
|
8659
|
+
|
|
8097
8660
|
/**
|
|
8098
8661
|
* Remote help - response we provide back to the helper after getting response from pubSub
|
|
8099
8662
|
*/
|
|
@@ -8155,6 +8718,10 @@ namespace reference.`microsoft.graph` {
|
|
|
8155
8718
|
notAllowedResourceActions: string[] | null;
|
|
8156
8719
|
}
|
|
8157
8720
|
|
|
8721
|
+
@open
|
|
8722
|
+
@complex model resourceData {
|
|
8723
|
+
}
|
|
8724
|
+
|
|
8158
8725
|
@complex model resourcePermission {
|
|
8159
8726
|
type: string;
|
|
8160
8727
|
value: string;
|
|
@@ -8473,6 +9040,12 @@ namespace reference.`microsoft.graph` {
|
|
|
8473
9040
|
usage: string | null;
|
|
8474
9041
|
}
|
|
8475
9042
|
|
|
9043
|
+
@complex model sensitivityLabelAssignment {
|
|
9044
|
+
assignmentMethod: sensitivityLabelAssignmentMethod;
|
|
9045
|
+
sensitivityLabelId: string;
|
|
9046
|
+
tenantId: string;
|
|
9047
|
+
}
|
|
9048
|
+
|
|
8476
9049
|
/**
|
|
8477
9050
|
* An abstract base class for all serviceNow authentication methods.
|
|
8478
9051
|
*/
|
|
@@ -8612,6 +9185,11 @@ namespace reference.`microsoft.graph` {
|
|
|
8612
9185
|
state: string | null;
|
|
8613
9186
|
}
|
|
8614
9187
|
|
|
9188
|
+
@complex model signInPreferences {
|
|
9189
|
+
isSystemPreferredAuthenticationMethodEnabled: boolean | null;
|
|
9190
|
+
userPreferredMethodForSecondaryAuthentication: userDefaultAuthenticationMethodType | null;
|
|
9191
|
+
}
|
|
9192
|
+
|
|
8615
9193
|
/**
|
|
8616
9194
|
* Represents an Apple Single Sign-On Extension.
|
|
8617
9195
|
*/
|
|
@@ -8646,6 +9224,10 @@ namespace reference.`microsoft.graph` {
|
|
|
8646
9224
|
year: int32 | null;
|
|
8647
9225
|
}
|
|
8648
9226
|
|
|
9227
|
+
@complex model strongAuthenticationRequirements {
|
|
9228
|
+
perUserMfaState: perUserMfaState | null;
|
|
9229
|
+
}
|
|
9230
|
+
|
|
8649
9231
|
/**
|
|
8650
9232
|
* The suggestedEnrollmentLimit resource represents the suggested enrollment limit when given an enrollment type.
|
|
8651
9233
|
*/
|
|
@@ -8660,6 +9242,12 @@ namespace reference.`microsoft.graph` {
|
|
|
8660
9242
|
nameIdPolicyFormat: string | null;
|
|
8661
9243
|
}
|
|
8662
9244
|
|
|
9245
|
+
@complex model systemCredentialPreferences {
|
|
9246
|
+
excludeTargets: excludeTarget[];
|
|
9247
|
+
includeTargets: includeTarget[];
|
|
9248
|
+
state: advancedConfigState;
|
|
9249
|
+
}
|
|
9250
|
+
|
|
8663
9251
|
/**
|
|
8664
9252
|
* Represents result of GetState API.
|
|
8665
9253
|
*/
|
|
@@ -8812,6 +9400,13 @@ namespace reference.`microsoft.graph` {
|
|
|
8812
9400
|
propertyName: string | null;
|
|
8813
9401
|
}
|
|
8814
9402
|
|
|
9403
|
+
@complex model updateAllowedCombinationsResult {
|
|
9404
|
+
additionalInformation: string | null;
|
|
9405
|
+
conditionalAccessReferences: string[] | null;
|
|
9406
|
+
currentCombinations: authenticationMethodModes[];
|
|
9407
|
+
previousCombinations: authenticationMethodModes[];
|
|
9408
|
+
}
|
|
9409
|
+
|
|
8815
9410
|
@complex model updateWindowsDeviceAccountActionParameter {
|
|
8816
9411
|
calendarSyncEnabled: boolean | null;
|
|
8817
9412
|
deviceAccount: windowsDeviceAccount | null;
|
|
@@ -8827,6 +9422,14 @@ namespace reference.`microsoft.graph` {
|
|
|
8827
9422
|
uploadUrl: string | null;
|
|
8828
9423
|
}
|
|
8829
9424
|
|
|
9425
|
+
@complex model usageRightsInfo {
|
|
9426
|
+
allowCopy: boolean;
|
|
9427
|
+
allowEdit: boolean;
|
|
9428
|
+
allowExport: boolean;
|
|
9429
|
+
allowPrint: boolean;
|
|
9430
|
+
allowView: boolean;
|
|
9431
|
+
}
|
|
9432
|
+
|
|
8830
9433
|
@complex model userActionContext extends signInContext {
|
|
8831
9434
|
userAction: userAction | null;
|
|
8832
9435
|
}
|
|
@@ -9352,6 +9955,70 @@ namespace reference.`microsoft.graph` {
|
|
|
9352
9955
|
redirectUriSettings: redirectUriSettings[];
|
|
9353
9956
|
}
|
|
9354
9957
|
|
|
9958
|
+
@open
|
|
9959
|
+
@complex model webauthnAuthenticationExtensionsClientInputs {
|
|
9960
|
+
}
|
|
9961
|
+
|
|
9962
|
+
@open
|
|
9963
|
+
@complex model webauthnAuthenticationExtensionsClientOutputs {
|
|
9964
|
+
}
|
|
9965
|
+
|
|
9966
|
+
@complex model webauthnAuthenticatorAttestationResponse {
|
|
9967
|
+
attestationObject: string | null;
|
|
9968
|
+
clientDataJSON: string | null;
|
|
9969
|
+
}
|
|
9970
|
+
|
|
9971
|
+
@complex model webauthnAuthenticatorSelectionCriteria {
|
|
9972
|
+
authenticatorAttachment: string | null;
|
|
9973
|
+
requireResidentKey: boolean | null;
|
|
9974
|
+
userVerification: string | null;
|
|
9975
|
+
}
|
|
9976
|
+
|
|
9977
|
+
@complex model webauthnCredentialCreationOptions {
|
|
9978
|
+
challengeTimeoutDateTime: offsetDateTime | null;
|
|
9979
|
+
publicKey: webauthnPublicKeyCredentialCreationOptions | null;
|
|
9980
|
+
}
|
|
9981
|
+
|
|
9982
|
+
@complex model webauthnPublicKeyCredential {
|
|
9983
|
+
clientExtensionResults: webauthnAuthenticationExtensionsClientOutputs | null;
|
|
9984
|
+
id: string | null;
|
|
9985
|
+
response: webauthnAuthenticatorAttestationResponse | null;
|
|
9986
|
+
}
|
|
9987
|
+
|
|
9988
|
+
@complex model webauthnPublicKeyCredentialCreationOptions {
|
|
9989
|
+
attestation: string | null;
|
|
9990
|
+
authenticatorSelection: webauthnAuthenticatorSelectionCriteria | null;
|
|
9991
|
+
challenge: string | null;
|
|
9992
|
+
excludeCredentials: webauthnPublicKeyCredentialDescriptor[] | null;
|
|
9993
|
+
extensions: webauthnAuthenticationExtensionsClientInputs | null;
|
|
9994
|
+
pubKeyCredParams: webauthnPublicKeyCredentialParameters[] | null;
|
|
9995
|
+
rp: webauthnPublicKeyCredentialRpEntity | null;
|
|
9996
|
+
timeout: int32 | null;
|
|
9997
|
+
user: webauthnPublicKeyCredentialUserEntity | null;
|
|
9998
|
+
}
|
|
9999
|
+
|
|
10000
|
+
@complex model webauthnPublicKeyCredentialDescriptor {
|
|
10001
|
+
id: string | null;
|
|
10002
|
+
transports: string[] | null;
|
|
10003
|
+
type: string | null;
|
|
10004
|
+
}
|
|
10005
|
+
|
|
10006
|
+
@complex model webauthnPublicKeyCredentialParameters {
|
|
10007
|
+
alg: int32 | null;
|
|
10008
|
+
type: string | null;
|
|
10009
|
+
}
|
|
10010
|
+
|
|
10011
|
+
@complex model webauthnPublicKeyCredentialRpEntity {
|
|
10012
|
+
id: string | null;
|
|
10013
|
+
name: string | null;
|
|
10014
|
+
}
|
|
10015
|
+
|
|
10016
|
+
@complex model webauthnPublicKeyCredentialUserEntity {
|
|
10017
|
+
displayName: string | null;
|
|
10018
|
+
id: string | null;
|
|
10019
|
+
name: string | null;
|
|
10020
|
+
}
|
|
10021
|
+
|
|
9355
10022
|
@complex model website {
|
|
9356
10023
|
address: string | null;
|
|
9357
10024
|
displayName: string | null;
|
|
@@ -9911,6 +10578,78 @@ namespace reference.`microsoft.graph` {
|
|
|
9911
10578
|
useDeviceContext: boolean;
|
|
9912
10579
|
}
|
|
9913
10580
|
|
|
10581
|
+
/**
|
|
10582
|
+
* Contains per-group deployment configuration for a windowsAutoUpdateCatalogApp. These settings control the end-user experience when the app is deployed to a specific group—including whether notifications are shown, how delivery bandwidth is used, when the app must be installed by, and how the device coordinates restarts afterward.
|
|
10583
|
+
*/
|
|
10584
|
+
@complex model windowsAutoUpdateCatalogAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
10585
|
+
/**
|
|
10586
|
+
* Indicates the priority level for downloading the app content using Delivery Optimization. foreground prioritizes the download over background tasks, which may result in faster installation but higher bandwidth usage. Defaults to notConfigured (background priority) if not specified. When omitted from the request, the service applies notConfigured and the device downloads app content using normal background priority. In National Cloud environments (e.g., US Government, China), Delivery Optimization is not available; the service accepts and stores any value provided, but the device agent ignores it at runtime and delivers content via CDN using background priority regardless of the configured value. Possible values are: notConfigured, foreground, unknownFutureValue.
|
|
10587
|
+
*/
|
|
10588
|
+
deliveryOptimizationPriority: windowsAutoUpdateCatalogAppDeliveryOptimizationPriority;
|
|
10589
|
+
/**
|
|
10590
|
+
* Specifies the deadline by which the app must be installed on the device. When null, the app is offered for immediate installation with no enforced deadline.
|
|
10591
|
+
*/
|
|
10592
|
+
installTimeSettings: windowsAutoUpdateCatalogAppInstallTimeSettings | null;
|
|
10593
|
+
/**
|
|
10594
|
+
* Indicates which notifications the Intune management extension displays to the end user during app installation and restart. Defaults to showAll if not specified. Possible values are: showAll, showReboot, hideAll, unknownFutureValue.
|
|
10595
|
+
*/
|
|
10596
|
+
notificationType: windowsAutoUpdateCatalogAppNotificationType;
|
|
10597
|
+
/**
|
|
10598
|
+
* Specifies the restart coordination behavior after the app is installed—including how long to wait before restarting, when to show a countdown, and how long the user can snooze. When null, no restart coordination is applied (the device may still restart based on the app's deviceRestartBehavior setting). Note: the service accepts restart settings regardless of the app's deviceRestartBehavior value; the device agent determines which settings are actually honored at runtime.
|
|
10599
|
+
*/
|
|
10600
|
+
restartSettings: windowsAutoUpdateCatalogAppRestartSettings | null;
|
|
10601
|
+
}
|
|
10602
|
+
|
|
10603
|
+
/**
|
|
10604
|
+
* Describes how the app installer runs on target devices, including which account context it runs under and how the device handles restarts after installation. When omitted, the service applies default values (runAsAccount = system, deviceRestartBehavior = basedOnReturnCode).
|
|
10605
|
+
*/
|
|
10606
|
+
@complex model windowsAutoUpdateCatalogAppInstallExperience {
|
|
10607
|
+
/**
|
|
10608
|
+
* Indicates how the device handles restarts after the app installation completes. This controls whether the Intune management extension initiates, suppresses, or forces a device restart based on the installer's exit code. Defaults to basedOnReturnCode if not specified. Possible values are: basedOnReturnCode, allow, suppress, force, unknownFutureValue.
|
|
10609
|
+
*/
|
|
10610
|
+
deviceRestartBehavior: windowsAutoUpdateCatalogAppRestartBehavior;
|
|
10611
|
+
/**
|
|
10612
|
+
* Indicates the account context under which the app installer runs on the device. When set to system, the installer runs with elevated privileges in the SYSTEM account context. When set to user, the installer runs in the context of the currently logged-in user. Defaults to system if not specified. Possible values are: system, user.
|
|
10613
|
+
*/
|
|
10614
|
+
runAsAccount: runAsAccountType;
|
|
10615
|
+
}
|
|
10616
|
+
|
|
10617
|
+
/**
|
|
10618
|
+
* Specifies when the app should be installed on target devices. When null or is omitted from the assignment, the app is offered for immediate installation with no enforced deadline.
|
|
10619
|
+
*/
|
|
10620
|
+
@complex model windowsAutoUpdateCatalogAppInstallTimeSettings {
|
|
10621
|
+
/**
|
|
10622
|
+
* The maximum allowed date and time by which the app must be installed on the device. After this deadline, the Intune management extension enforces installation automatically. When null, there is no enforced deadline.
|
|
10623
|
+
*/
|
|
10624
|
+
deadlineDateTime: offsetDateTime | null;
|
|
10625
|
+
/**
|
|
10626
|
+
* The time at which the app should be available for installation on the device. When null, the app is available immediately.
|
|
10627
|
+
*/
|
|
10628
|
+
startDateTime: offsetDateTime | null;
|
|
10629
|
+
/**
|
|
10630
|
+
* Indicates whether the startDateTime and deadlineDateTime values should be interpreted using the device's local time zone. When false, the values are interpreted as UTC. Defaults to false if not specified.
|
|
10631
|
+
*/
|
|
10632
|
+
useLocalTime: boolean;
|
|
10633
|
+
}
|
|
10634
|
+
|
|
10635
|
+
/**
|
|
10636
|
+
* Specifies how the device coordinates a restart after the app is installed. These settings control the grace period before a restart is initiated, when the user sees a countdown notification, and how long the user can defer the restart by snoozing. When null, no restart coordination is applied (the device may still restart based on the app's deviceRestartBehavior setting).
|
|
10637
|
+
*/
|
|
10638
|
+
@complex model windowsAutoUpdateCatalogAppRestartSettings {
|
|
10639
|
+
/**
|
|
10640
|
+
* The number of minutes before the scheduled restart at which a countdown notification is displayed to the user. Must be between 1 and the value of gracePeriodInMinutes. This countdown is non-dismissible and warns the user that a restart is imminent. For example, a value of 15 means the countdown appears 15 minutes before the restart.
|
|
10641
|
+
*/
|
|
10642
|
+
countdownDisplayBeforeRestartInMinutes: int32;
|
|
10643
|
+
/**
|
|
10644
|
+
* The number of minutes the device waits after app installation before initiating a restart. During this period, the user can continue working and save their documents. For example, a value of 1440 means the device waits 24 hours before restarting.
|
|
10645
|
+
*/
|
|
10646
|
+
gracePeriodInMinutes: int32;
|
|
10647
|
+
/**
|
|
10648
|
+
* The number of minutes by which the user can defer (snooze) the restart notification each time they press the snooze button. When null, the snooze option is not available and the user cannot defer the restart. For example, a value of 240 allows the user to defer the restart by 4 hours each time.
|
|
10649
|
+
*/
|
|
10650
|
+
restartNotificationSnoozeDurationInMinutes: int32 | null;
|
|
10651
|
+
}
|
|
10652
|
+
|
|
9914
10653
|
/**
|
|
9915
10654
|
* Windows Defender last scan result
|
|
9916
10655
|
*/
|
|
@@ -11157,6 +11896,38 @@ namespace reference.`microsoft.graph` {
|
|
|
11157
11896
|
minimumOSVersion: string | null;
|
|
11158
11897
|
}
|
|
11159
11898
|
|
|
11899
|
+
@complex model x509CertificateAuthenticationModeConfiguration {
|
|
11900
|
+
rules: x509CertificateRule[] | null;
|
|
11901
|
+
x509CertificateAuthenticationDefaultMode: x509CertificateAuthenticationMode | null;
|
|
11902
|
+
x509CertificateDefaultRequiredAffinityLevel: x509CertificateAffinityLevel | null;
|
|
11903
|
+
}
|
|
11904
|
+
|
|
11905
|
+
@complex model x509CertificateAuthorityScope {
|
|
11906
|
+
includeTargets: includeTarget[] | null;
|
|
11907
|
+
publicKeyInfrastructureIdentifier: string | null;
|
|
11908
|
+
subjectKeyIdentifier: string | null;
|
|
11909
|
+
}
|
|
11910
|
+
|
|
11911
|
+
@complex model x509CertificateIssuerHintsConfiguration {
|
|
11912
|
+
state: x509CertificateIssuerHintsState | null;
|
|
11913
|
+
}
|
|
11914
|
+
|
|
11915
|
+
@complex model x509CertificateRule {
|
|
11916
|
+
identifier: string | null;
|
|
11917
|
+
issuerSubjectIdentifier: string | null;
|
|
11918
|
+
policyOidIdentifier: string | null;
|
|
11919
|
+
x509CertificateAuthenticationMode: x509CertificateAuthenticationMode | null;
|
|
11920
|
+
x509CertificateRequiredAffinityLevel: x509CertificateAffinityLevel | null;
|
|
11921
|
+
x509CertificateRuleType: x509CertificateRuleType | null;
|
|
11922
|
+
}
|
|
11923
|
+
|
|
11924
|
+
@complex model x509CertificateUserBinding {
|
|
11925
|
+
priority: int32;
|
|
11926
|
+
trustAffinityLevel: x509CertificateAffinityLevel | null;
|
|
11927
|
+
userProperty: string | null;
|
|
11928
|
+
x509CertificateField: string | null;
|
|
11929
|
+
}
|
|
11930
|
+
|
|
11160
11931
|
/**
|
|
11161
11932
|
* The Zebra FOTA deployment complex type that describes the settings required to create a FOTA deployment.
|
|
11162
11933
|
*/
|
|
@@ -11468,6 +12239,24 @@ namespace reference.`microsoft.graph` {
|
|
|
11468
12239
|
isActive: boolean | null;
|
|
11469
12240
|
}
|
|
11470
12241
|
|
|
12242
|
+
/**
|
|
12243
|
+
* Schema describing an Android application's custom configurations.
|
|
12244
|
+
*/
|
|
12245
|
+
@entity model androidAppConfigurationSchema extends entity {
|
|
12246
|
+
/**
|
|
12247
|
+
* UTF8 encoded byte array containing example JSON string conforming to this schema that demonstrates how to set the configuration for this app
|
|
12248
|
+
*/
|
|
12249
|
+
exampleJson: binary | null;
|
|
12250
|
+
/**
|
|
12251
|
+
* Collection of items each representing a named configuration option in the schema. It contains a flat list of all configuration.
|
|
12252
|
+
*/
|
|
12253
|
+
nestedSchemaItems: appConfigurationSchemaItemType[] | null;
|
|
12254
|
+
/**
|
|
12255
|
+
* Collection of items each representing a named configuration option in the schema. It only contains the root-level configuration.
|
|
12256
|
+
*/
|
|
12257
|
+
schemaItems: appConfigurationSchemaItemType[] | null;
|
|
12258
|
+
}
|
|
12259
|
+
|
|
11471
12260
|
/**
|
|
11472
12261
|
* Android certificate profile base.
|
|
11473
12262
|
*/
|
|
@@ -12687,6 +13476,10 @@ namespace reference.`microsoft.graph` {
|
|
|
12687
13476
|
* Custom data to define key/value pairs specific to a VPN provider. This collection can contain a maximum of 25 elements.
|
|
12688
13477
|
*/
|
|
12689
13478
|
customKeyValueData: keyValuePair[] | null;
|
|
13479
|
+
/**
|
|
13480
|
+
* List of app package names that will be able to access the network directly when VPN is in lockdown mode but not connected.
|
|
13481
|
+
*/
|
|
13482
|
+
lockdownExclusionList: string[] | null;
|
|
12690
13483
|
/**
|
|
12691
13484
|
* Microsoft Tunnel site ID.
|
|
12692
13485
|
*/
|
|
@@ -15069,6 +15862,10 @@ namespace reference.`microsoft.graph` {
|
|
|
15069
15862
|
* Fingerprint is a string that will be used to verify the VPN server can be trusted, which is only applicable when connection type is Check Point Capsule VPN.
|
|
15070
15863
|
*/
|
|
15071
15864
|
fingerprint: string | null;
|
|
15865
|
+
/**
|
|
15866
|
+
* List of app package names that will be able to access the network directly when VPN is in lockdown mode but not connected.
|
|
15867
|
+
*/
|
|
15868
|
+
lockdownExclusionList: string[] | null;
|
|
15072
15869
|
/**
|
|
15073
15870
|
* Microsoft Tunnel site ID.
|
|
15074
15871
|
*/
|
|
@@ -15708,9 +16505,11 @@ namespace reference.`microsoft.graph` {
|
|
|
15708
16505
|
identifierUris: string[];
|
|
15709
16506
|
info: informationalUrl | null;
|
|
15710
16507
|
isDeviceOnlyAuthSupported: boolean | null;
|
|
16508
|
+
isDisabled: boolean | null;
|
|
15711
16509
|
isFallbackPublicClient: boolean | null;
|
|
15712
16510
|
keyCredentials: keyCredential[];
|
|
15713
16511
|
logo: stream;
|
|
16512
|
+
managerApplications: guid;
|
|
15714
16513
|
notes: string | null;
|
|
15715
16514
|
optionalClaims: optionalClaims | null;
|
|
15716
16515
|
parentalControlSettings: parentalControlSettings | null;
|
|
@@ -15790,6 +16589,10 @@ namespace reference.`microsoft.graph` {
|
|
|
15790
16589
|
resourceId: guid | null;
|
|
15791
16590
|
}
|
|
15792
16591
|
|
|
16592
|
+
@entity model approvedClientApp extends entity {
|
|
16593
|
+
displayName: string | null;
|
|
16594
|
+
}
|
|
16595
|
+
|
|
15793
16596
|
@entity model appScope extends entity {
|
|
15794
16597
|
displayName: string | null;
|
|
15795
16598
|
type: string | null;
|
|
@@ -15963,12 +16766,43 @@ namespace reference.`microsoft.graph` {
|
|
|
15963
16766
|
resources: auditResource[] | null;
|
|
15964
16767
|
}
|
|
15965
16768
|
|
|
16769
|
+
@abstract
|
|
16770
|
+
@entity model authenticationCombinationConfiguration extends entity {
|
|
16771
|
+
appliesToCombinations: authenticationMethodModes[];
|
|
16772
|
+
}
|
|
16773
|
+
|
|
15966
16774
|
@entity model authenticationContextClassReference extends entity {
|
|
15967
16775
|
description: string | null;
|
|
15968
16776
|
displayName: string | null;
|
|
15969
16777
|
isAvailable: boolean | null;
|
|
15970
16778
|
}
|
|
15971
16779
|
|
|
16780
|
+
@entity model authenticationMethodDevice extends entity {
|
|
16781
|
+
displayName: string | null;
|
|
16782
|
+
@contains hardwareOathDevices: hardwareOathTokenAuthenticationMethodDevice[];
|
|
16783
|
+
}
|
|
16784
|
+
|
|
16785
|
+
@entity model authenticationMethodModeDetail extends entity {
|
|
16786
|
+
authenticationMethod: baseAuthenticationMethod;
|
|
16787
|
+
displayName: string;
|
|
16788
|
+
}
|
|
16789
|
+
|
|
16790
|
+
@entity model authenticationMethodTarget extends entity {
|
|
16791
|
+
isRegistrationRequired: boolean;
|
|
16792
|
+
targetType: authenticationMethodTargetType;
|
|
16793
|
+
}
|
|
16794
|
+
|
|
16795
|
+
@entity model authenticationStrengthPolicy extends entity {
|
|
16796
|
+
allowedCombinations: authenticationMethodModes[];
|
|
16797
|
+
@computed createdDateTime: offsetDateTime;
|
|
16798
|
+
description: string | null;
|
|
16799
|
+
displayName: string;
|
|
16800
|
+
modifiedDateTime: offsetDateTime;
|
|
16801
|
+
policyType: authenticationStrengthPolicyType;
|
|
16802
|
+
requirementsSatisfied: authenticationStrengthRequirements;
|
|
16803
|
+
@contains combinationConfigurations: authenticationCombinationConfiguration[];
|
|
16804
|
+
}
|
|
16805
|
+
|
|
15972
16806
|
@entity model authorizationPolicy extends policyBase {
|
|
15973
16807
|
allowedToSignUpEmailBasedSubscriptions: boolean;
|
|
15974
16808
|
allowedToUseSSPR: boolean;
|
|
@@ -15988,6 +16822,17 @@ namespace reference.`microsoft.graph` {
|
|
|
15988
16822
|
@entity model azureADWindowsAutopilotDeploymentProfile extends windowsAutopilotDeploymentProfile {
|
|
15989
16823
|
}
|
|
15990
16824
|
|
|
16825
|
+
@entity model bitlocker extends entity {
|
|
16826
|
+
@contains recoveryKeys: bitlockerRecoveryKey[];
|
|
16827
|
+
}
|
|
16828
|
+
|
|
16829
|
+
@entity model bitlockerRecoveryKey extends entity {
|
|
16830
|
+
@computed createdDateTime: offsetDateTime;
|
|
16831
|
+
deviceId: string | null;
|
|
16832
|
+
key: string;
|
|
16833
|
+
volumeType: volumeType | null;
|
|
16834
|
+
}
|
|
16835
|
+
|
|
15991
16836
|
@entity model calendar extends entity {
|
|
15992
16837
|
allowedOnlineMeetingProviders: onlineMeetingProviderType[] | null;
|
|
15993
16838
|
calendarGroupId: string | null;
|
|
@@ -16166,7 +17011,7 @@ namespace reference.`microsoft.graph` {
|
|
|
16166
17011
|
*/
|
|
16167
17012
|
@entity model cloudCertificationAuthority extends entity {
|
|
16168
17013
|
/**
|
|
16169
|
-
*
|
|
17014
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificateDownloadUrl instead.
|
|
16170
17015
|
*/
|
|
16171
17016
|
certificateDownloadUrl: string | null;
|
|
16172
17017
|
/**
|
|
@@ -16174,11 +17019,11 @@ namespace reference.`microsoft.graph` {
|
|
|
16174
17019
|
*/
|
|
16175
17020
|
certificateKeySize: cloudCertificationAuthorityCertificateKeySize;
|
|
16176
17021
|
/**
|
|
16177
|
-
*
|
|
17022
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificateRevocationListUrl instead.
|
|
16178
17023
|
*/
|
|
16179
17024
|
certificateRevocationListUrl: string | null;
|
|
16180
17025
|
/**
|
|
16181
|
-
*
|
|
17026
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificateSigningRequest instead.
|
|
16182
17027
|
*/
|
|
16183
17028
|
certificateSigningRequest: string | null;
|
|
16184
17029
|
/**
|
|
@@ -16186,7 +17031,7 @@ namespace reference.`microsoft.graph` {
|
|
|
16186
17031
|
*/
|
|
16187
17032
|
certificationAuthorityIssuerId: string | null;
|
|
16188
17033
|
/**
|
|
16189
|
-
*
|
|
17034
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificationAuthorityIssuerUri instead.
|
|
16190
17035
|
*/
|
|
16191
17036
|
certificationAuthorityIssuerUri: string | null;
|
|
16192
17037
|
/**
|
|
@@ -16226,9 +17071,13 @@ namespace reference.`microsoft.graph` {
|
|
|
16226
17071
|
*/
|
|
16227
17072
|
eTag: string | null;
|
|
16228
17073
|
extendedKeyUsages: extendedKeyUsage[] | null;
|
|
17074
|
+
/**
|
|
17075
|
+
* The geographic region where a cloud certification authority (CA) is hosted. Read-only.
|
|
17076
|
+
*/
|
|
17077
|
+
geographicRegion: string | null;
|
|
16229
17078
|
issuerCommonName: string | null;
|
|
16230
17079
|
/**
|
|
16231
|
-
*
|
|
17080
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.keyPlatform instead.
|
|
16232
17081
|
*/
|
|
16233
17082
|
keyPlatform: cloudCertificationAuthorityKeyPlatformType;
|
|
16234
17083
|
/**
|
|
@@ -16240,7 +17089,7 @@ namespace reference.`microsoft.graph` {
|
|
|
16240
17089
|
*/
|
|
16241
17090
|
localityName: string | null;
|
|
16242
17091
|
/**
|
|
16243
|
-
*
|
|
17092
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.ocspResponderUri instead.
|
|
16244
17093
|
*/
|
|
16245
17094
|
ocspResponderUri: string | null;
|
|
16246
17095
|
/**
|
|
@@ -16260,11 +17109,11 @@ namespace reference.`microsoft.graph` {
|
|
|
16260
17109
|
*/
|
|
16261
17110
|
rootCertificateCommonName: string | null;
|
|
16262
17111
|
/**
|
|
16263
|
-
*
|
|
17112
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.scepServerUrl instead.
|
|
16264
17113
|
*/
|
|
16265
17114
|
scepServerUrl: string | null;
|
|
16266
17115
|
/**
|
|
16267
|
-
*
|
|
17116
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.serialNumber instead.
|
|
16268
17117
|
*/
|
|
16269
17118
|
serialNumber: string | null;
|
|
16270
17119
|
/**
|
|
@@ -16272,15 +17121,15 @@ namespace reference.`microsoft.graph` {
|
|
|
16272
17121
|
*/
|
|
16273
17122
|
stateName: string | null;
|
|
16274
17123
|
/**
|
|
16275
|
-
*
|
|
17124
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.subjectName instead.
|
|
16276
17125
|
*/
|
|
16277
17126
|
subjectName: string | null;
|
|
16278
17127
|
/**
|
|
16279
|
-
*
|
|
17128
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.thumbprint instead.
|
|
16280
17129
|
*/
|
|
16281
17130
|
thumbprint: string | null;
|
|
16282
17131
|
/**
|
|
16283
|
-
*
|
|
17132
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.validityEndDateTime instead.
|
|
16284
17133
|
*/
|
|
16285
17134
|
validityEndDateTime: offsetDateTime | null;
|
|
16286
17135
|
/**
|
|
@@ -16288,17 +17137,25 @@ namespace reference.`microsoft.graph` {
|
|
|
16288
17137
|
*/
|
|
16289
17138
|
validityPeriodInYears: int32;
|
|
16290
17139
|
/**
|
|
16291
|
-
*
|
|
17140
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.validityStartDateTime instead.
|
|
16292
17141
|
*/
|
|
16293
17142
|
validityStartDateTime: offsetDateTime | null;
|
|
16294
17143
|
/**
|
|
16295
|
-
*
|
|
17144
|
+
* Deprecated: Starting May 2026, use activeVersion.versionNumber instead.
|
|
16296
17145
|
*/
|
|
16297
17146
|
versionNumber: int32;
|
|
17147
|
+
/**
|
|
17148
|
+
* The currently active certification authority version. This navigation property provides direct access to the active version's details including certificate information, URLs, and validity periods. The active version is automatically included in the default response when retrieving a certification authority entity without requiring $expand. Read-only.
|
|
17149
|
+
*/
|
|
17150
|
+
@references activeVersion: cloudCertificationAuthorityVersion | null;
|
|
16298
17151
|
/**
|
|
16299
17152
|
* Required OData property to expose leaf certificate API.
|
|
16300
17153
|
*/
|
|
16301
17154
|
@references cloudCertificationAuthorityLeafCertificate: cloudCertificationAuthorityLeafCertificate[];
|
|
17155
|
+
/**
|
|
17156
|
+
* The collection of all certification authority versions, including active, staged, retired, and expired versions. This navigation property provides access to the full version history of the certification authority. Use $expand=versions to include this collection in the response. Read-only.
|
|
17157
|
+
*/
|
|
17158
|
+
@references versions: cloudCertificationAuthorityVersion[];
|
|
16302
17159
|
}
|
|
16303
17160
|
|
|
16304
17161
|
/**
|
|
@@ -16313,6 +17170,10 @@ namespace reference.`microsoft.graph` {
|
|
|
16313
17170
|
* The URI of the certification authority that issued the certificate. Read-only.
|
|
16314
17171
|
*/
|
|
16315
17172
|
certificationAuthorityIssuerUri: string | null;
|
|
17173
|
+
/**
|
|
17174
|
+
* The version number of the certification authority that issued this leaf certificate. Read-only.
|
|
17175
|
+
*/
|
|
17176
|
+
certificationAuthorityVersionNumber: int32;
|
|
16316
17177
|
/**
|
|
16317
17178
|
* URL to find the relevant Certificate Revocation List for this certificate. Read-only.
|
|
16318
17179
|
*/
|
|
@@ -16378,6 +17239,88 @@ namespace reference.`microsoft.graph` {
|
|
|
16378
17239
|
* The start date time of the validity period of a certificate. Certificates cannot be used before this date time as they are not yet valid. The DateTimeOffset 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'. Nullable. Read-only. Supports $orderby.
|
|
16379
17240
|
*/
|
|
16380
17241
|
validityStartDateTime: offsetDateTime | null;
|
|
17242
|
+
/**
|
|
17243
|
+
* The certification authority version that issued this leaf certificate. Read-only.
|
|
17244
|
+
*/
|
|
17245
|
+
@references cloudCertificationAuthorityVersion: cloudCertificationAuthorityVersion | null;
|
|
17246
|
+
}
|
|
17247
|
+
|
|
17248
|
+
/**
|
|
17249
|
+
* Entity that represents version-specific properties of a cloud certification authority.
|
|
17250
|
+
*/
|
|
17251
|
+
@entity model cloudCertificationAuthorityVersion extends entity {
|
|
17252
|
+
/**
|
|
17253
|
+
* The URL to download the certification authority certificate. Read-only.
|
|
17254
|
+
*/
|
|
17255
|
+
certificateDownloadUrl: string | null;
|
|
17256
|
+
/**
|
|
17257
|
+
* The cloud certification authority's Certificate Revocation List URL that can be used to determine revocation status. Read-only.
|
|
17258
|
+
*/
|
|
17259
|
+
certificateRevocationListUrl: string | null;
|
|
17260
|
+
/**
|
|
17261
|
+
* The certificate signing request used to create an issuing certification authority with a root certification authority external to Microsoft Cloud PKI. The based-64 encoded certificate signing request can be downloaded through this property. After downloading the certificate signing request, it must be signed by the external root certifcation authority. Read-only.
|
|
17262
|
+
*/
|
|
17263
|
+
certificateSigningRequest: string | null;
|
|
17264
|
+
/**
|
|
17265
|
+
* The certification authority identifier. Read-only.
|
|
17266
|
+
*/
|
|
17267
|
+
certificationAuthorityId: string;
|
|
17268
|
+
/**
|
|
17269
|
+
* The URI of the issuing certification authority of a subordinate certification authority. Returns null if a root certification authority. Nullable. Read-only.
|
|
17270
|
+
*/
|
|
17271
|
+
certificationAuthorityIssuerUri: string | null;
|
|
17272
|
+
/**
|
|
17273
|
+
* The current status of this certification authority version. Possible values are: unknown, active, staged, paused, retired, expired, revoked, unknownFutureValue. Read-only.
|
|
17274
|
+
*/
|
|
17275
|
+
certificationAuthorityVersionStatus: cloudCertificationAuthorityVersionStatus;
|
|
17276
|
+
/**
|
|
17277
|
+
* The date and time when the certification authority version is scheduled to be decommissioned. Only applicable for staged certification authority versions. The DateTimeOffset 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'. Nullable. Read-only.
|
|
17278
|
+
*/
|
|
17279
|
+
decommissionDateTime: offsetDateTime | null;
|
|
17280
|
+
/**
|
|
17281
|
+
* The key platform used to store the certification authority keys. Read-only.
|
|
17282
|
+
*/
|
|
17283
|
+
keyPlatform: cloudCertificationAuthorityKeyPlatformType;
|
|
17284
|
+
/**
|
|
17285
|
+
* Last modification date and time of this certification authority entity instance. The DateTimeOffset 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'. Nullable. Read-only.
|
|
17286
|
+
*/
|
|
17287
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
17288
|
+
/**
|
|
17289
|
+
* The Online Certificate Status Protocol (OCSP) responder URI that can be used to determine certificate status. Read-only.
|
|
17290
|
+
*/
|
|
17291
|
+
ocspResponderUri: string | null;
|
|
17292
|
+
/**
|
|
17293
|
+
* The SCEP server URL for device SCEP connections to request certificates. Read-only.
|
|
17294
|
+
*/
|
|
17295
|
+
scepServerUrl: string | null;
|
|
17296
|
+
/**
|
|
17297
|
+
* The serial number used to uniquely identify a certificate with its issuing certification authority. Read-only.
|
|
17298
|
+
*/
|
|
17299
|
+
serialNumber: string | null;
|
|
17300
|
+
/**
|
|
17301
|
+
* The subject name of the certificate. The subject is the target or intended beneficiary of the security being provided, such as a company or government entity. Read-only.
|
|
17302
|
+
*/
|
|
17303
|
+
subjectName: string | null;
|
|
17304
|
+
/**
|
|
17305
|
+
* Secure Hash Algorithm 1 digest of the certificate that can be used to identify it. Read-only.
|
|
17306
|
+
*/
|
|
17307
|
+
thumbprint: string | null;
|
|
17308
|
+
/**
|
|
17309
|
+
* The usage details associated with this certification authority version, including reporting data such as the number of leaf certificates issued during the staged period. Read-only.
|
|
17310
|
+
*/
|
|
17311
|
+
usage: cloudCertificationAuthorityVersionUsage | null;
|
|
17312
|
+
/**
|
|
17313
|
+
* The end date time of the validity period of a certification authority certificate. Certificates cannot be used after this date time as they are longer valid. The DateTimeOffset 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'. Nullable. Read-only.
|
|
17314
|
+
*/
|
|
17315
|
+
validityEndDateTime: offsetDateTime | null;
|
|
17316
|
+
/**
|
|
17317
|
+
* The start date time of the validity period of a certification authority certificate. Certificates cannot be used before this date time as they are not yet valid. The DateTimeOffset 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'. Nullable. Read-only.
|
|
17318
|
+
*/
|
|
17319
|
+
validityStartDateTime: offsetDateTime | null;
|
|
17320
|
+
/**
|
|
17321
|
+
* The version number assigned to this specific certification authority version entity. Read-only.
|
|
17322
|
+
*/
|
|
17323
|
+
versionNumber: int32;
|
|
16381
17324
|
}
|
|
16382
17325
|
|
|
16383
17326
|
/**
|
|
@@ -16752,15 +17695,6 @@ namespace reference.`microsoft.graph` {
|
|
|
16752
17695
|
@contains allowedValues: allowedValue[];
|
|
16753
17696
|
}
|
|
16754
17697
|
|
|
16755
|
-
@abstract
|
|
16756
|
-
@entity model customSecurityAttributeExemption extends entity {
|
|
16757
|
-
operator: customSecurityAttributeComparisonOperator | null;
|
|
16758
|
-
}
|
|
16759
|
-
|
|
16760
|
-
@entity model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
|
|
16761
|
-
value: string | null;
|
|
16762
|
-
}
|
|
16763
|
-
|
|
16764
17698
|
/**
|
|
16765
17699
|
* Data sharing consent information.
|
|
16766
17700
|
*/
|
|
@@ -18269,6 +19203,10 @@ namespace reference.`microsoft.graph` {
|
|
|
18269
19203
|
* The timestamp of when the device compliance script was modified. This property is read-only.
|
|
18270
19204
|
*/
|
|
18271
19205
|
@computed lastModifiedDateTime: offsetDateTime;
|
|
19206
|
+
/**
|
|
19207
|
+
* Indicates the operating system platform type that this compliance script targets.
|
|
19208
|
+
*/
|
|
19209
|
+
platform: deviceComplianceScriptPlatformType | null;
|
|
18272
19210
|
/**
|
|
18273
19211
|
* Name of the device compliance script publisher
|
|
18274
19212
|
*/
|
|
@@ -19441,6 +20379,13 @@ namespace reference.`microsoft.graph` {
|
|
|
19441
20379
|
userName: string | null;
|
|
19442
20380
|
}
|
|
19443
20381
|
|
|
20382
|
+
@entity model deviceLocalCredentialInfo extends entity {
|
|
20383
|
+
credentials: deviceLocalCredential[];
|
|
20384
|
+
deviceName: string;
|
|
20385
|
+
@computed lastBackupDateTime: offsetDateTime;
|
|
20386
|
+
refreshDateTime: offsetDateTime;
|
|
20387
|
+
}
|
|
20388
|
+
|
|
19444
20389
|
/**
|
|
19445
20390
|
* Windows Log Collection request entity.
|
|
19446
20391
|
*/
|
|
@@ -19487,6 +20432,9 @@ namespace reference.`microsoft.graph` {
|
|
|
19487
20432
|
status: appLogUploadState;
|
|
19488
20433
|
}
|
|
19489
20434
|
|
|
20435
|
+
/**
|
|
20436
|
+
* Singleton that acts as container for a collection of Resource Access entities.
|
|
20437
|
+
*/
|
|
19490
20438
|
@entity model deviceManagement extends entity {
|
|
19491
20439
|
/**
|
|
19492
20440
|
* The date & time when tenant data moved between scaleunits.
|
|
@@ -19572,6 +20520,10 @@ namespace reference.`microsoft.graph` {
|
|
|
19572
20520
|
* The summary state of ATP onboarding state for this account.
|
|
19573
20521
|
*/
|
|
19574
20522
|
@contains advancedThreatProtectionOnboardingStateSummary: advancedThreatProtectionOnboardingStateSummary | null;
|
|
20523
|
+
/**
|
|
20524
|
+
* Android App Configurations Schema entity.
|
|
20525
|
+
*/
|
|
20526
|
+
@contains androidAppConfigurationSchema: androidAppConfigurationSchema | null;
|
|
19575
20527
|
/**
|
|
19576
20528
|
* Android device owner enrollment profile entities.
|
|
19577
20529
|
*/
|
|
@@ -21898,6 +22850,16 @@ namespace reference.`microsoft.graph` {
|
|
|
21898
22850
|
troubleshootingErrorDetails: deviceManagementTroubleshootingErrorDetails | null;
|
|
21899
22851
|
}
|
|
21900
22852
|
|
|
22853
|
+
@entity model deviceRegistrationPolicy extends entity {
|
|
22854
|
+
azureADJoin: azureADJoinPolicy | null;
|
|
22855
|
+
azureADRegistration: azureADRegistrationPolicy | null;
|
|
22856
|
+
description: string | null;
|
|
22857
|
+
displayName: string | null;
|
|
22858
|
+
localAdminPassword: localAdminPasswordSettings | null;
|
|
22859
|
+
multiFactorAuthConfiguration: multiFactorAuthConfiguration;
|
|
22860
|
+
userDeviceQuota: int32;
|
|
22861
|
+
}
|
|
22862
|
+
|
|
21901
22863
|
/**
|
|
21902
22864
|
* This is the base class for Setup Configuration. Setup configurations are platform specific and individual per-platform setup configurations inherit from here.
|
|
21903
22865
|
*/
|
|
@@ -21998,9 +22960,11 @@ namespace reference.`microsoft.graph` {
|
|
|
21998
22960
|
@entity model directory extends entity {
|
|
21999
22961
|
@contains administrativeUnits: administrativeUnit[];
|
|
22000
22962
|
@contains attributeSets: attributeSet[];
|
|
22963
|
+
@contains authenticationMethodDevices: authenticationMethodDevice | null;
|
|
22001
22964
|
@contains certificateAuthorities: certificateAuthorityPath | null;
|
|
22002
22965
|
@contains customSecurityAttributeDefinitions: customSecurityAttributeDefinition[];
|
|
22003
22966
|
@contains deletedItems: directoryObject[];
|
|
22967
|
+
@contains deviceLocalCredentials: deviceLocalCredentialInfo[];
|
|
22004
22968
|
@contains federationConfigurations: identityProviderBase[];
|
|
22005
22969
|
@contains onPremisesSynchronization: onPremisesDirectorySynchronization[];
|
|
22006
22970
|
@contains publicKeyInfrastructure: publicKeyInfrastructureRoot | null;
|
|
@@ -22533,6 +23497,10 @@ namespace reference.`microsoft.graph` {
|
|
|
22533
23497
|
validatingDomains: validatingDomains;
|
|
22534
23498
|
}
|
|
22535
23499
|
|
|
23500
|
+
@entity model fido2CombinationConfiguration extends authenticationCombinationConfiguration {
|
|
23501
|
+
allowedAAGUIDs: string[];
|
|
23502
|
+
}
|
|
23503
|
+
|
|
22536
23504
|
@entity model fileAttachment extends attachment {
|
|
22537
23505
|
contentBytes: binary | null;
|
|
22538
23506
|
contentId: string | null;
|
|
@@ -22569,6 +23537,7 @@ namespace reference.`microsoft.graph` {
|
|
|
22569
23537
|
membershipRuleProcessingState: string | null;
|
|
22570
23538
|
membershipRuleProcessingStatus: membershipRuleProcessingStatus | null;
|
|
22571
23539
|
onPremisesDomainName: string | null;
|
|
23540
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
22572
23541
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
22573
23542
|
onPremisesNetBiosName: string | null;
|
|
22574
23543
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
@@ -22590,6 +23559,7 @@ namespace reference.`microsoft.graph` {
|
|
|
22590
23559
|
unseenCount: int32 | null;
|
|
22591
23560
|
unseenMessagesCount: int32 | null;
|
|
22592
23561
|
visibility: string | null;
|
|
23562
|
+
welcomeMessageEnabled: boolean | null;
|
|
22593
23563
|
writebackConfiguration: groupWritebackConfiguration | null;
|
|
22594
23564
|
@contains acceptedSenders: directoryObject[];
|
|
22595
23565
|
@contains appRoleAssignments: appRoleAssignment[];
|
|
@@ -22607,6 +23577,7 @@ namespace reference.`microsoft.graph` {
|
|
|
22607
23577
|
@contains onPremisesSyncBehavior: onPremisesSyncBehavior | null;
|
|
22608
23578
|
@references owners: directoryObject[];
|
|
22609
23579
|
@contains permissionGrants: resourceSpecificPermissionGrant[];
|
|
23580
|
+
@contains planner: plannerGroup | null;
|
|
22610
23581
|
@contains rejectedSenders: directoryObject[];
|
|
22611
23582
|
@contains settings: directorySetting[];
|
|
22612
23583
|
@contains threads: conversationThread[];
|
|
@@ -23585,6 +24556,19 @@ namespace reference.`microsoft.graph` {
|
|
|
23585
24556
|
userName: string | null;
|
|
23586
24557
|
}
|
|
23587
24558
|
|
|
24559
|
+
@entity model hardwareOathTokenAuthenticationMethodDevice extends authenticationMethodDevice {
|
|
24560
|
+
assignedTo: identity | null;
|
|
24561
|
+
hashFunction: hardwareOathTokenHashFunction | null;
|
|
24562
|
+
@computed lastUsedDateTime: offsetDateTime | null;
|
|
24563
|
+
manufacturer: string;
|
|
24564
|
+
`model`: string;
|
|
24565
|
+
secretKey: string | null;
|
|
24566
|
+
serialNumber: string;
|
|
24567
|
+
status: hardwareOathTokenStatus | null;
|
|
24568
|
+
timeIntervalInSeconds: int32;
|
|
24569
|
+
@references assignTo: user | null;
|
|
24570
|
+
}
|
|
24571
|
+
|
|
23588
24572
|
/**
|
|
23589
24573
|
* Device BIOS password information for devices with managed BIOS and firmware configuration, which provides device serial number, list of previous passwords, and current password.
|
|
23590
24574
|
*/
|
|
@@ -23822,8 +24806,12 @@ namespace reference.`microsoft.graph` {
|
|
|
23822
24806
|
senderEmailAddress: emailAddress | null;
|
|
23823
24807
|
}
|
|
23824
24808
|
|
|
24809
|
+
@entity model informationProtection extends MsGraph.SharedModels.entity {
|
|
24810
|
+
@contains bitlocker: bitlocker | null;
|
|
24811
|
+
}
|
|
24812
|
+
|
|
23825
24813
|
@entity model inheritablePermission extends MsGraph.SharedModels.entity {
|
|
23826
|
-
inheritableScopes: inheritableScopes;
|
|
24814
|
+
inheritableScopes: inheritableScopes | null;
|
|
23827
24815
|
@computed @key resourceAppId: string;
|
|
23828
24816
|
}
|
|
23829
24817
|
|
|
@@ -23986,6 +24974,20 @@ namespace reference.`microsoft.graph` {
|
|
|
23986
24974
|
target: deviceAndAppManagementAssignmentTarget | null;
|
|
23987
24975
|
}
|
|
23988
24976
|
|
|
24977
|
+
@entity model invitation extends entity {
|
|
24978
|
+
invitedUserDisplayName: string | null;
|
|
24979
|
+
invitedUserEmailAddress: string;
|
|
24980
|
+
invitedUserMessageInfo: invitedUserMessageInfo | null;
|
|
24981
|
+
invitedUserType: string | null;
|
|
24982
|
+
inviteRedeemUrl: string | null;
|
|
24983
|
+
inviteRedirectUrl: string;
|
|
24984
|
+
resetRedemption: boolean | null;
|
|
24985
|
+
sendInvitationMessage: boolean | null;
|
|
24986
|
+
status: string | null;
|
|
24987
|
+
@references invitedUser: user | null;
|
|
24988
|
+
@references invitedUserSponsors: directoryObject[];
|
|
24989
|
+
}
|
|
24990
|
+
|
|
23989
24991
|
/**
|
|
23990
24992
|
* Device Configuration.
|
|
23991
24993
|
*/
|
|
@@ -26028,7 +27030,6 @@ namespace reference.`microsoft.graph` {
|
|
|
26028
27030
|
@contains item: outlookItem | null;
|
|
26029
27031
|
}
|
|
26030
27032
|
|
|
26031
|
-
|
|
26032
27033
|
@entity model licenseDetails extends entity {
|
|
26033
27034
|
servicePlans: servicePlanInfo[];
|
|
26034
27035
|
skuId: guid | null;
|
|
@@ -26061,6 +27062,14 @@ namespace reference.`microsoft.graph` {
|
|
|
26061
27062
|
subject: string;
|
|
26062
27063
|
}
|
|
26063
27064
|
|
|
27065
|
+
@entity model longRunningOperation extends entity {
|
|
27066
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
27067
|
+
@computed lastActionDateTime: offsetDateTime | null;
|
|
27068
|
+
resourceLocation: string | null;
|
|
27069
|
+
status: longRunningOperationStatus | null;
|
|
27070
|
+
statusDetail: string | null;
|
|
27071
|
+
}
|
|
27072
|
+
|
|
26064
27073
|
/**
|
|
26065
27074
|
* Mac OS certificate profile.
|
|
26066
27075
|
*/
|
|
@@ -26093,87 +27102,91 @@ namespace reference.`microsoft.graph` {
|
|
|
26093
27102
|
*/
|
|
26094
27103
|
@entity model macOSCompliancePolicy extends deviceCompliancePolicy {
|
|
26095
27104
|
/**
|
|
26096
|
-
*
|
|
27105
|
+
* Specifies the Microsoft Defender for Endpoint (MDE) risk level threshold used to report noncompliance (for example, secured, medium, or high). When set to a value other than unavailable, the device is marked noncompliant if the reported risk level doesn't meet the configured requirement. Default is unavailable.
|
|
26097
27106
|
*/
|
|
26098
27107
|
advancedThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
|
|
26099
27108
|
/**
|
|
26100
|
-
*
|
|
27109
|
+
* Custom compliance configuration for the policy (script identifier and rules content). When set, custom compliance rules are evaluated and the device is marked noncompliant when any rule evaluates to noncompliant. When not set, no custom compliance rules are evaluated. Default is null, when set to default it is not evaluated.
|
|
27110
|
+
*/
|
|
27111
|
+
deviceCompliancePolicyScript: deviceCompliancePolicyScript | null;
|
|
27112
|
+
/**
|
|
27113
|
+
* Specifies whether Mobile Threat Defense (MTD) must be enabled. When set to true, the device is marked noncompliant if MTD isn't enabled or doesn't report a threat level. When false, threat protection level requirements aren't enforced. Default is false.
|
|
26101
27114
|
*/
|
|
26102
27115
|
deviceThreatProtectionEnabled: boolean;
|
|
26103
27116
|
/**
|
|
26104
|
-
*
|
|
27117
|
+
* Specifies the Mobile Threat Defense risk level threshold used to report noncompliance (for example, secured, medium, or high). When set to a value other than unavailable, the device is marked noncompliant if the reported risk level doesn't meet the configured requirement. Default is unavailable.
|
|
26105
27118
|
*/
|
|
26106
27119
|
deviceThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
|
|
26107
27120
|
/**
|
|
26108
|
-
*
|
|
27121
|
+
* Specifies whether Block all incoming connections must be enabled. When set to true, the device is marked noncompliant if the setting is disabled. Default is false.
|
|
26109
27122
|
*/
|
|
26110
27123
|
firewallBlockAllIncoming: boolean;
|
|
26111
27124
|
/**
|
|
26112
|
-
*
|
|
27125
|
+
* Specifies whether the macOS application firewall must be enabled. When set to true, the device is marked noncompliant if the firewall is disabled. Default is false.
|
|
26113
27126
|
*/
|
|
26114
27127
|
firewallEnabled: boolean;
|
|
26115
27128
|
/**
|
|
26116
|
-
*
|
|
27129
|
+
* Specifies whether Enable stealth mode must be enabled. When set to true, the device is marked noncompliant if the setting is disabled. Default is false.
|
|
26117
27130
|
*/
|
|
26118
27131
|
firewallEnableStealthMode: boolean;
|
|
26119
27132
|
/**
|
|
26120
|
-
* System
|
|
27133
|
+
* Specifies the Gatekeeper app source policy (System Settings > Privacy & Security) that determines which app download locations are allowed (for example, macAppStore or anywhere). When set to a value other than notConfigured, the device is marked noncompliant if its Gatekeeper setting allows apps from sources not permitted by this value. Default is notConfigured.
|
|
26121
27134
|
*/
|
|
26122
27135
|
gatekeeperAllowedAppSource: macOSGatekeeperAppSources;
|
|
26123
27136
|
/**
|
|
26124
|
-
*
|
|
27137
|
+
* Specifies the maximum allowed macOS build version. When set, the device is marked noncompliant if its build version is higher than this value. Default is null, when set to default it is not evaluated.
|
|
26125
27138
|
*/
|
|
26126
27139
|
osMaximumBuildVersion: string | null;
|
|
26127
27140
|
/**
|
|
26128
|
-
*
|
|
27141
|
+
* Specifies the maximum allowed macOS version. When set, the device is marked noncompliant if its OS version is higher than this value. Default is null, when set to default it is not evaluated.
|
|
26129
27142
|
*/
|
|
26130
27143
|
osMaximumVersion: string | null;
|
|
26131
27144
|
/**
|
|
26132
|
-
*
|
|
27145
|
+
* Specifies the minimum allowed macOS build version. When set, the device is marked noncompliant if its build version is lower than this value. Default is null, when set to default it is not evaluated.
|
|
26133
27146
|
*/
|
|
26134
27147
|
osMinimumBuildVersion: string | null;
|
|
26135
27148
|
/**
|
|
26136
|
-
*
|
|
27149
|
+
* Specifies the minimum allowed macOS version. When set, the device is marked noncompliant if its OS version is lower than this value. Default is null, when set to default it is not evaluated.
|
|
26137
27150
|
*/
|
|
26138
27151
|
osMinimumVersion: string | null;
|
|
26139
27152
|
/**
|
|
26140
|
-
*
|
|
27153
|
+
* Specifies whether simple passwords such as 1111 or 1234 are allowed. When set to true, the device is marked noncompliant if it allows simple passwords. Default is false.
|
|
26141
27154
|
*/
|
|
26142
27155
|
passwordBlockSimple: boolean;
|
|
26143
27156
|
/**
|
|
26144
|
-
*
|
|
27157
|
+
* Specifies the maximum password age in days. When set, the device is marked noncompliant if the password age exceeds this value. Valid values are 1 to 65535. Default is null, when set to default it is not evaluated. Valid values 1 to 65535
|
|
26145
27158
|
*/
|
|
26146
27159
|
passwordExpirationDays: int32 | null;
|
|
26147
27160
|
/**
|
|
26148
|
-
*
|
|
27161
|
+
* Specifies the minimum number of character sets required in the password. When set, the device is marked noncompliant if the password doesn't meet this requirement. Default is null, when set to default it is not evaluated.
|
|
26149
27162
|
*/
|
|
26150
27163
|
passwordMinimumCharacterSetCount: int32 | null;
|
|
26151
27164
|
/**
|
|
26152
|
-
*
|
|
27165
|
+
* Specifies the minimum password length. When set, the device is marked noncompliant if the password length is less than this value. Valid values are 4 to 14. Default is null, when set to default it is not evaluated. Valid values 4 to 14
|
|
26153
27166
|
*/
|
|
26154
27167
|
passwordMinimumLength: int32 | null;
|
|
26155
27168
|
/**
|
|
26156
|
-
*
|
|
27169
|
+
* Specifies the maximum minutes of inactivity before a password is required to unlock the device. When set, the device is marked noncompliant if it allows a longer inactivity period. Default is null, when set to default it is not evaluated.
|
|
26157
27170
|
*/
|
|
26158
27171
|
passwordMinutesOfInactivityBeforeLock: int32 | null;
|
|
26159
27172
|
/**
|
|
26160
|
-
*
|
|
27173
|
+
* Specifies the number of previous passwords that can't be reused. When set, the device is marked noncompliant if it doesn't enforce this history count. Valid values are 1 to 24. Default is null, when set to default it is not evaluated. Valid values 1 to 24
|
|
26161
27174
|
*/
|
|
26162
27175
|
passwordPreviousPasswordBlockCount: int32 | null;
|
|
26163
27176
|
/**
|
|
26164
|
-
*
|
|
27177
|
+
* Specifies whether a device password is required. When set to true, the device is marked noncompliant if a password isn't configured. Default is false.
|
|
26165
27178
|
*/
|
|
26166
27179
|
passwordRequired: boolean;
|
|
26167
27180
|
/**
|
|
26168
|
-
*
|
|
27181
|
+
* Specifies the required password type (for example, deviceDefault or alphanumeric). When set to a value other than deviceDefault, the device is marked noncompliant if the password type doesn't match. Default is deviceDefault.
|
|
26169
27182
|
*/
|
|
26170
27183
|
passwordRequiredType: requiredPasswordType;
|
|
26171
27184
|
/**
|
|
26172
|
-
*
|
|
27185
|
+
* Specifies whether storage encryption is required on macOS devices. When set to true, the device is marked noncompliant if storage isn't encrypted. Default is false.
|
|
26173
27186
|
*/
|
|
26174
27187
|
storageRequireEncryption: boolean;
|
|
26175
27188
|
/**
|
|
26176
|
-
*
|
|
27189
|
+
* Specifies whether System Integrity Protection must be enabled. When set to true, the device is marked noncompliant if System Integrity Protection is disabled. Default is false.
|
|
26177
27190
|
*/
|
|
26178
27191
|
systemIntegrityProtectionEnabled: boolean;
|
|
26179
27192
|
}
|
|
@@ -29986,6 +30999,10 @@ namespace reference.`microsoft.graph` {
|
|
|
29986
30999
|
* When TRUE, indicates that data from the Mobile Threat Defense partner can be used during Mobile Application Management (MAM) evaluations for Android devices. When FALSE, indicates that data from the Mobile Threat Defense partner should not be used during Mobile Application Management (MAM) evaluations for Android devices. Only one partner per platform may be enabled for Mobile Application Management (MAM) evaluation. Default value is FALSE.
|
|
29987
31000
|
*/
|
|
29988
31001
|
androidMobileApplicationManagementEnabled: boolean;
|
|
31002
|
+
/**
|
|
31003
|
+
* When TRUE, indicates that the Mobile Threat Defense partner is granted the Mobile Threat Defense role on enrolled Android Corporate Owned Business Only and Corporate Owned Personally Enabled devices. When FALSE, indicates that the Mobile Threat Defense partner is not granted the Mobile Threat Defense role. Default value is FALSE.
|
|
31004
|
+
*/
|
|
31005
|
+
grantMobileThreatDefensePartnerRole: boolean;
|
|
29989
31006
|
/**
|
|
29990
31007
|
* When TRUE, indicates that Intune must receive data from the Mobile Threat Defense partner prior to marking a device compliant. When FALSE, indicates that Intune may not recieve data from Mobile Threat Defense partner prior to making device compliant. Default value is FALSE.
|
|
29991
31008
|
*/
|
|
@@ -30002,6 +31019,10 @@ namespace reference.`microsoft.graph` {
|
|
|
30002
31019
|
* DateTime of last Heartbeat recieved from the Mobile Threat Defense partner
|
|
30003
31020
|
*/
|
|
30004
31021
|
@computed lastHeartbeatDateTime: offsetDateTime;
|
|
31022
|
+
/**
|
|
31023
|
+
* When TRUE, indicates that the Mobile Threat Defense partner will be automatically launched during Android Corporate Owned Business Only and Corporate Owned Personally Enabled device setup. When FALSE, indicates that the Mobile Threat Defense partner will not be automatically launched during setup. Default value is FALSE.
|
|
31024
|
+
*/
|
|
31025
|
+
launchMobileThreatDefensePartnerOnSetupEnabled: boolean;
|
|
30005
31026
|
/**
|
|
30006
31027
|
* When TRUE, indicates that Intune must receive data from the Mobile Threat Defense partner prior to marking a Mac device compliant. When FALSE, indicates that Intune may mark a Mac device compliant prior to receiving data from the Mobile Threat Defense partner. Default value is FALSE.
|
|
30007
31028
|
*/
|
|
@@ -30485,6 +31506,9 @@ namespace reference.`microsoft.graph` {
|
|
|
30485
31506
|
supportUrl: string | null;
|
|
30486
31507
|
}
|
|
30487
31508
|
|
|
31509
|
+
@entity model passkeyAuthenticationMethodTarget extends authenticationMethodTarget {
|
|
31510
|
+
allowedPasskeyProfiles: guid | null;
|
|
31511
|
+
}
|
|
30488
31512
|
|
|
30489
31513
|
/**
|
|
30490
31514
|
* A class containing the properties used for Payload Compatible Assignment Filter.
|
|
@@ -30542,6 +31566,140 @@ namespace reference.`microsoft.graph` {
|
|
|
30542
31566
|
yomiCompany: string | null;
|
|
30543
31567
|
}
|
|
30544
31568
|
|
|
31569
|
+
@entity model planner extends entity {
|
|
31570
|
+
@contains buckets: plannerBucket[];
|
|
31571
|
+
@contains plans: plannerPlan[];
|
|
31572
|
+
@contains rosters: plannerRoster[];
|
|
31573
|
+
@contains tasks: plannerTask[];
|
|
31574
|
+
}
|
|
31575
|
+
|
|
31576
|
+
@entity model plannerAssignedToTaskBoardTaskFormat extends plannerDelta {
|
|
31577
|
+
orderHintsByAssignee: plannerOrderHintsByAssignee | null;
|
|
31578
|
+
unassignedOrderHint: string | null;
|
|
31579
|
+
}
|
|
31580
|
+
|
|
31581
|
+
@entity model plannerBucket extends plannerDelta {
|
|
31582
|
+
archivalInfo: plannerArchivalInfo | null;
|
|
31583
|
+
creationSource: plannerBucketCreation | null;
|
|
31584
|
+
isArchived: boolean | null;
|
|
31585
|
+
name: string;
|
|
31586
|
+
orderHint: string | null;
|
|
31587
|
+
planId: string | null;
|
|
31588
|
+
@references tasks: plannerTask[];
|
|
31589
|
+
}
|
|
31590
|
+
|
|
31591
|
+
@entity model plannerBucketTaskBoardTaskFormat extends plannerDelta {
|
|
31592
|
+
orderHint: string | null;
|
|
31593
|
+
}
|
|
31594
|
+
|
|
31595
|
+
@entity model plannerDelta extends entity {
|
|
31596
|
+
}
|
|
31597
|
+
|
|
31598
|
+
@entity model plannerGroup extends entity {
|
|
31599
|
+
@references plans: plannerPlan[];
|
|
31600
|
+
}
|
|
31601
|
+
|
|
31602
|
+
@entity model plannerPlan extends plannerDelta {
|
|
31603
|
+
archivalInfo: plannerArchivalInfo | null;
|
|
31604
|
+
container: plannerPlanContainer | null;
|
|
31605
|
+
contentSensitivityLabelAssignment: contentSensitivityLabelAssignment | null;
|
|
31606
|
+
contexts: plannerPlanContextCollection | null;
|
|
31607
|
+
createdBy: identitySet | null;
|
|
31608
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
31609
|
+
creationSource: plannerPlanCreation | null;
|
|
31610
|
+
isArchived: boolean | null;
|
|
31611
|
+
|
|
31612
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
31613
|
+
owner: string | null;
|
|
31614
|
+
sharedWithContainers: plannerSharedWithContainer[] | null;
|
|
31615
|
+
title: string;
|
|
31616
|
+
@references buckets: plannerBucket[];
|
|
31617
|
+
@contains details: plannerPlanDetails | null;
|
|
31618
|
+
@references tasks: plannerTask[];
|
|
31619
|
+
}
|
|
31620
|
+
|
|
31621
|
+
@entity model plannerPlanDetails extends plannerDelta {
|
|
31622
|
+
categoryDescriptions: plannerCategoryDescriptions | null;
|
|
31623
|
+
contextDetails: plannerPlanContextDetailsCollection | null;
|
|
31624
|
+
sharedWith: plannerUserIds | null;
|
|
31625
|
+
}
|
|
31626
|
+
|
|
31627
|
+
@entity model plannerProgressTaskBoardTaskFormat extends plannerDelta {
|
|
31628
|
+
orderHint: string | null;
|
|
31629
|
+
}
|
|
31630
|
+
|
|
31631
|
+
@entity model plannerRoster extends entity {
|
|
31632
|
+
assignedSensitivityLabel: sensitivityLabelAssignment | null;
|
|
31633
|
+
@contains members: plannerRosterMember[];
|
|
31634
|
+
@references plans: plannerPlan[];
|
|
31635
|
+
}
|
|
31636
|
+
|
|
31637
|
+
@entity model plannerRosterMember extends entity {
|
|
31638
|
+
roles: string[] | null;
|
|
31639
|
+
tenantId: string | null;
|
|
31640
|
+
userId: string | null;
|
|
31641
|
+
}
|
|
31642
|
+
|
|
31643
|
+
@entity model plannerTask extends plannerDelta {
|
|
31644
|
+
activeChecklistItemCount: int32 | null;
|
|
31645
|
+
appliedCategories: plannerAppliedCategories | null;
|
|
31646
|
+
archivalInfo: plannerArchivalInfo | null;
|
|
31647
|
+
assigneePriority: string | null;
|
|
31648
|
+
assignments: plannerAssignments | null;
|
|
31649
|
+
bucketId: string | null;
|
|
31650
|
+
checklistItemCount: int32 | null;
|
|
31651
|
+
completedBy: identitySet | null;
|
|
31652
|
+
completedDateTime: offsetDateTime | null;
|
|
31653
|
+
conversationThreadId: string | null;
|
|
31654
|
+
createdBy: identitySet | null;
|
|
31655
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
31656
|
+
creationSource: plannerTaskCreation | null;
|
|
31657
|
+
dueDateTime: offsetDateTime | null;
|
|
31658
|
+
hasDescription: boolean | null;
|
|
31659
|
+
isArchived: boolean | null;
|
|
31660
|
+
isOnMyDay: boolean | null;
|
|
31661
|
+
isOnMyDayLastModifiedDate: offsetDateTime | null;
|
|
31662
|
+
lastModifiedBy: identitySet | null;
|
|
31663
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
31664
|
+
orderHint: string | null;
|
|
31665
|
+
percentComplete: int32 | null;
|
|
31666
|
+
planId: string | null;
|
|
31667
|
+
previewType: plannerPreviewType | null;
|
|
31668
|
+
priority: int32 | null;
|
|
31669
|
+
recurrence: plannerTaskRecurrence | null;
|
|
31670
|
+
referenceCount: int32 | null;
|
|
31671
|
+
specifiedCompletionRequirements: plannerTaskCompletionRequirements | null;
|
|
31672
|
+
startDateTime: offsetDateTime | null;
|
|
31673
|
+
title: string;
|
|
31674
|
+
@contains assignedToTaskBoardFormat: plannerAssignedToTaskBoardTaskFormat | null;
|
|
31675
|
+
@contains bucketTaskBoardFormat: plannerBucketTaskBoardTaskFormat | null;
|
|
31676
|
+
@contains details: plannerTaskDetails | null;
|
|
31677
|
+
@contains progressTaskBoardFormat: plannerProgressTaskBoardTaskFormat | null;
|
|
31678
|
+
}
|
|
31679
|
+
|
|
31680
|
+
@entity model plannerTaskDetails extends plannerDelta {
|
|
31681
|
+
approvalAttachment: plannerBaseApprovalAttachment | null;
|
|
31682
|
+
checklist: plannerChecklistItems | null;
|
|
31683
|
+
completionRequirements: plannerTaskCompletionRequirementDetails | null;
|
|
31684
|
+
description: string | null;
|
|
31685
|
+
forms: plannerFormsDictionary | null;
|
|
31686
|
+
notes: itemBody | null;
|
|
31687
|
+
previewType: plannerPreviewType | null;
|
|
31688
|
+
references: plannerExternalReferences | null;
|
|
31689
|
+
}
|
|
31690
|
+
|
|
31691
|
+
@entity model plannerUser extends plannerDelta {
|
|
31692
|
+
favoritePlanReferences: plannerFavoritePlanReferenceCollection | null;
|
|
31693
|
+
recentPlanReferences: plannerRecentPlanReferenceCollection | null;
|
|
31694
|
+
@references all: plannerDelta[];
|
|
31695
|
+
@references favoritePlans: plannerPlan[];
|
|
31696
|
+
@references myDayTasks: plannerTask[];
|
|
31697
|
+
@references plans: plannerPlan[];
|
|
31698
|
+
@references recentPlans: plannerPlan[];
|
|
31699
|
+
@references rosterPlans: plannerPlan[];
|
|
31700
|
+
@references tasks: plannerTask[];
|
|
31701
|
+
}
|
|
31702
|
+
|
|
30545
31703
|
@abstract
|
|
30546
31704
|
@entity model policyBase extends directoryObject {
|
|
30547
31705
|
description: string;
|
|
@@ -30561,6 +31719,7 @@ namespace reference.`microsoft.graph` {
|
|
|
30561
31719
|
@contains conditionalAccessPolicies: conditionalAccessPolicy[];
|
|
30562
31720
|
@contains crossTenantAccessPolicy: crossTenantAccessPolicy | null;
|
|
30563
31721
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
31722
|
+
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
30564
31723
|
@contains externalIdentitiesPolicy: externalIdentitiesPolicy | null;
|
|
30565
31724
|
@contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
|
|
30566
31725
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
@@ -30854,6 +32013,13 @@ namespace reference.`microsoft.graph` {
|
|
|
30854
32013
|
@contains certificateBasedAuthConfigurations: certificateBasedAuthPki[];
|
|
30855
32014
|
}
|
|
30856
32015
|
|
|
32016
|
+
@entity model qrPin extends entity {
|
|
32017
|
+
code: string;
|
|
32018
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
32019
|
+
forceChangePinNextSignIn: boolean | null;
|
|
32020
|
+
updatedDateTime: offsetDateTime | null;
|
|
32021
|
+
}
|
|
32022
|
+
|
|
30857
32023
|
@entity model rbacApplication extends entity {
|
|
30858
32024
|
@contains resourceNamespaces: unifiedRbacResourceNamespace[];
|
|
30859
32025
|
@contains roleAssignments: unifiedRoleAssignment[];
|
|
@@ -30972,6 +32138,7 @@ namespace reference.`microsoft.graph` {
|
|
|
30972
32138
|
|
|
30973
32139
|
@entity model remoteDesktopSecurityConfiguration extends entity {
|
|
30974
32140
|
isRemoteDesktopProtocolEnabled: boolean;
|
|
32141
|
+
@contains approvedClientApps: approvedClientApp[];
|
|
30975
32142
|
@contains targetDeviceGroups: targetDeviceGroup[];
|
|
30976
32143
|
}
|
|
30977
32144
|
|
|
@@ -31512,6 +32679,7 @@ namespace reference.`microsoft.graph` {
|
|
|
31512
32679
|
errorUrl: string | null;
|
|
31513
32680
|
homepage: string | null;
|
|
31514
32681
|
info: informationalUrl | null;
|
|
32682
|
+
isDisabled: boolean | null;
|
|
31515
32683
|
keyCredentials: keyCredential[];
|
|
31516
32684
|
loginUrl: string | null;
|
|
31517
32685
|
logoutUrl: string | null;
|
|
@@ -31784,6 +32952,21 @@ namespace reference.`microsoft.graph` {
|
|
|
31784
32952
|
subscriptionIds: string[] | null;
|
|
31785
32953
|
}
|
|
31786
32954
|
|
|
32955
|
+
@entity model subscription extends entity {
|
|
32956
|
+
applicationId: string | null;
|
|
32957
|
+
changeType: string;
|
|
32958
|
+
clientState: string | null;
|
|
32959
|
+
creatorId: string | null;
|
|
32960
|
+
encryptionCertificate: string | null;
|
|
32961
|
+
encryptionCertificateId: string | null;
|
|
32962
|
+
expirationDateTime: offsetDateTime;
|
|
32963
|
+
includeResourceData: boolean | null;
|
|
32964
|
+
latestSupportedTlsVersion: string | null;
|
|
32965
|
+
lifecycleNotificationUrl: string | null;
|
|
32966
|
+
notificationUrl: string;
|
|
32967
|
+
resource: string;
|
|
32968
|
+
}
|
|
32969
|
+
|
|
31787
32970
|
@entity model symantecCodeSigningCertificate extends entity {
|
|
31788
32971
|
/**
|
|
31789
32972
|
* The Windows Symantec Code-Signing Certificate in the raw data format.
|
|
@@ -32164,11 +33347,13 @@ namespace reference.`microsoft.graph` {
|
|
|
32164
33347
|
|
|
32165
33348
|
@open
|
|
32166
33349
|
@entity model user extends directoryObject {
|
|
33350
|
+
aboutMe: string | null;
|
|
32167
33351
|
accountEnabled: boolean | null;
|
|
32168
33352
|
ageGroup: string | null;
|
|
32169
33353
|
assignedLicenses: assignedLicense[];
|
|
32170
33354
|
assignedPlans: assignedPlan[];
|
|
32171
33355
|
authorizationInfo: authorizationInfo | null;
|
|
33356
|
+
birthday: offsetDateTime;
|
|
32172
33357
|
businessPhones: string[];
|
|
32173
33358
|
city: string | null;
|
|
32174
33359
|
cloudRealtimeCommunicationInfo: cloudRealtimeCommunicationInfo | null;
|
|
@@ -32194,10 +33379,12 @@ namespace reference.`microsoft.graph` {
|
|
|
32194
33379
|
externalUserStateChangeDateTime: string | null;
|
|
32195
33380
|
faxNumber: string | null;
|
|
32196
33381
|
givenName: string | null;
|
|
33382
|
+
hireDate: offsetDateTime;
|
|
32197
33383
|
identities: objectIdentity[] | null;
|
|
32198
33384
|
identityParentId: string | null;
|
|
32199
33385
|
imAddresses: string[] | null;
|
|
32200
33386
|
infoCatalogs: string[];
|
|
33387
|
+
interests: string[] | null;
|
|
32201
33388
|
isManagementRestricted: boolean | null;
|
|
32202
33389
|
isResourceAccount: boolean | null;
|
|
32203
33390
|
jobTitle: string | null;
|
|
@@ -32208,6 +33395,7 @@ namespace reference.`microsoft.graph` {
|
|
|
32208
33395
|
mailboxSettings: mailboxSettings | null;
|
|
32209
33396
|
mailNickname: string | null;
|
|
32210
33397
|
mobilePhone: string | null;
|
|
33398
|
+
mySite: string | null;
|
|
32211
33399
|
officeLocation: string | null;
|
|
32212
33400
|
onPremisesDistinguishedName: string | null;
|
|
32213
33401
|
onPremisesDomainName: string | null;
|
|
@@ -32222,15 +33410,20 @@ namespace reference.`microsoft.graph` {
|
|
|
32222
33410
|
otherMails: string[];
|
|
32223
33411
|
passwordPolicies: string | null;
|
|
32224
33412
|
passwordProfile: passwordProfile | null;
|
|
33413
|
+
pastProjects: string[] | null;
|
|
32225
33414
|
postalCode: string | null;
|
|
32226
33415
|
preferredDataLocation: string | null;
|
|
32227
33416
|
preferredLanguage: string | null;
|
|
33417
|
+
preferredName: string | null;
|
|
32228
33418
|
provisionedPlans: provisionedPlan[];
|
|
32229
33419
|
proxyAddresses: string[];
|
|
32230
33420
|
refreshTokensValidFromDateTime: offsetDateTime | null;
|
|
33421
|
+
responsibilities: string[] | null;
|
|
33422
|
+
schools: string[] | null;
|
|
32231
33423
|
securityIdentifier: string | null;
|
|
32232
33424
|
showInAddressList: boolean | null;
|
|
32233
33425
|
signInSessionsValidFromDateTime: offsetDateTime | null;
|
|
33426
|
+
skills: string[] | null;
|
|
32234
33427
|
state: string | null;
|
|
32235
33428
|
streetAddress: string | null;
|
|
32236
33429
|
surname: string | null;
|
|
@@ -32286,6 +33479,7 @@ namespace reference.`microsoft.graph` {
|
|
|
32286
33479
|
@references ownedDevices: directoryObject[];
|
|
32287
33480
|
@references ownedObjects: directoryObject[];
|
|
32288
33481
|
@contains people: person[];
|
|
33482
|
+
@contains planner: plannerUser | null;
|
|
32289
33483
|
@references registeredDevices: directoryObject[];
|
|
32290
33484
|
@contains scopedRoleMemberOf: scopedRoleMembership[];
|
|
32291
33485
|
@references sponsors: directoryObject[];
|
|
@@ -38026,6 +39220,14 @@ namespace reference.`microsoft.graph` {
|
|
|
38026
39220
|
* A mobileApp that is based on a referenced branch in a Win32CatalogApp repository
|
|
38027
39221
|
*/
|
|
38028
39222
|
@entity model windowsAutoUpdateCatalogApp extends mobileApp {
|
|
39223
|
+
/**
|
|
39224
|
+
* Indicates the set of CPU architectures on which this application is allowed to be installed. When null, the app is eligible for installation on all the supported architectures. Possible values are: x86, x64, arm64, or a combination of them.
|
|
39225
|
+
*/
|
|
39226
|
+
allowedArchitectures: windowsArchitecture | null;
|
|
39227
|
+
/**
|
|
39228
|
+
* Describes how the app installer executes on the target device, including the account context (system or user) under which the installer runs and how the device handles restarts after installation completes. When omitted, the service applies default values (runAsAccount = system, deviceRestartBehavior = basedOnReturnCode).
|
|
39229
|
+
*/
|
|
39230
|
+
installExperience: windowsAutoUpdateCatalogAppInstallExperience | null;
|
|
38029
39231
|
/**
|
|
38030
39232
|
* The identifier of a specific branch in a product, which is a specific subset of product functionality as defined by the publisher . This is run-time resolved to be the latest MobileAppCatalogPackage in the branch. (example:'31a4c766-f23d-8d41-4803-35e155be7389'). Read-Only
|
|
38031
39233
|
*/
|
|
@@ -40527,6 +41729,11 @@ namespace reference.`microsoft.graph` {
|
|
|
40527
41729
|
packageIdentifier: string | null;
|
|
40528
41730
|
}
|
|
40529
41731
|
|
|
41732
|
+
@entity model x509CertificateCombinationConfiguration extends authenticationCombinationConfiguration {
|
|
41733
|
+
allowedIssuerSkis: string[];
|
|
41734
|
+
allowedPolicyOIDs: string[];
|
|
41735
|
+
}
|
|
41736
|
+
|
|
40530
41737
|
/**
|
|
40531
41738
|
* Describes a single artifact for a specific device model.
|
|
40532
41739
|
*/
|
|
@@ -40761,6 +41968,13 @@ namespace reference.`microsoft.graph` {
|
|
|
40761
41968
|
networkError: 32768,
|
|
40762
41969
|
}
|
|
40763
41970
|
|
|
41971
|
+
enum advancedConfigState {
|
|
41972
|
+
default: 0,
|
|
41973
|
+
enabled: 1,
|
|
41974
|
+
disabled: 2,
|
|
41975
|
+
unknownFutureValue: 3,
|
|
41976
|
+
}
|
|
41977
|
+
|
|
40764
41978
|
@graphFlags
|
|
40765
41979
|
enum allowedRolePrincipalTypes {
|
|
40766
41980
|
user: 1,
|
|
@@ -42675,12 +43889,105 @@ namespace reference.`microsoft.graph` {
|
|
|
42675
43889
|
resource: 2,
|
|
42676
43890
|
}
|
|
42677
43891
|
|
|
43892
|
+
enum attestationEnforcement {
|
|
43893
|
+
disabled: 0,
|
|
43894
|
+
registrationOnly: 1,
|
|
43895
|
+
unknownFutureValue: 2,
|
|
43896
|
+
}
|
|
43897
|
+
|
|
43898
|
+
enum attestationLevel {
|
|
43899
|
+
attested: 0,
|
|
43900
|
+
notAttested: 1,
|
|
43901
|
+
unknownFutureValue: 2,
|
|
43902
|
+
}
|
|
43903
|
+
|
|
43904
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
43905
|
+
enum authenticationMethodKeyStrength {
|
|
43906
|
+
normal: 0,
|
|
43907
|
+
weak: 1,
|
|
43908
|
+
`unknown`: 2,
|
|
43909
|
+
}
|
|
43910
|
+
|
|
43911
|
+
@graphFlags
|
|
43912
|
+
enum authenticationMethodModes {
|
|
43913
|
+
password: 1,
|
|
43914
|
+
voice: 2,
|
|
43915
|
+
hardwareOath: 4,
|
|
43916
|
+
softwareOath: 8,
|
|
43917
|
+
sms: 16,
|
|
43918
|
+
fido2: 32,
|
|
43919
|
+
windowsHelloForBusiness: 64,
|
|
43920
|
+
microsoftAuthenticatorPush: 128,
|
|
43921
|
+
deviceBasedPush: 256,
|
|
43922
|
+
temporaryAccessPassOneTime: 512,
|
|
43923
|
+
temporaryAccessPassMultiUse: 1024,
|
|
43924
|
+
email: 2048,
|
|
43925
|
+
x509CertificateSingleFactor: 4096,
|
|
43926
|
+
x509CertificateMultiFactor: 8192,
|
|
43927
|
+
federatedSingleFactor: 16384,
|
|
43928
|
+
federatedMultiFactor: 32768,
|
|
43929
|
+
unknownFutureValue: 65536,
|
|
43930
|
+
qrCodePin: 131072,
|
|
43931
|
+
}
|
|
43932
|
+
|
|
43933
|
+
enum authenticationMethodPlatform {
|
|
43934
|
+
`unknown`: 0,
|
|
43935
|
+
windows: 1,
|
|
43936
|
+
macOS: 2,
|
|
43937
|
+
iOS: 3,
|
|
43938
|
+
android: 4,
|
|
43939
|
+
linux: 5,
|
|
43940
|
+
unknownFutureValue: 6,
|
|
43941
|
+
}
|
|
43942
|
+
|
|
43943
|
+
enum authenticationMethodSignInState {
|
|
43944
|
+
notSupported: 0,
|
|
43945
|
+
notAllowedByPolicy: 1,
|
|
43946
|
+
notEnabled: 2,
|
|
43947
|
+
phoneNumberNotUnique: 3,
|
|
43948
|
+
ready: 4,
|
|
43949
|
+
notConfigured: 5,
|
|
43950
|
+
unknownFutureValue: 6,
|
|
43951
|
+
}
|
|
43952
|
+
|
|
43953
|
+
enum authenticationMethodsPolicyMigrationState {
|
|
43954
|
+
preMigration: 0,
|
|
43955
|
+
migrationInProgress: 1,
|
|
43956
|
+
migrationComplete: 2,
|
|
43957
|
+
unknownFutureValue: 3,
|
|
43958
|
+
}
|
|
43959
|
+
|
|
43960
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
43961
|
+
enum authenticationMethodState {
|
|
43962
|
+
enabled: 0,
|
|
43963
|
+
disabled: 1,
|
|
43964
|
+
}
|
|
43965
|
+
|
|
43966
|
+
enum authenticationMethodTargetType {
|
|
43967
|
+
user: 0,
|
|
43968
|
+
group: 1,
|
|
43969
|
+
unknownFutureValue: 2,
|
|
43970
|
+
}
|
|
43971
|
+
|
|
43972
|
+
enum authenticationPhoneType {
|
|
43973
|
+
mobile: 0,
|
|
43974
|
+
alternateMobile: 1,
|
|
43975
|
+
office: 2,
|
|
43976
|
+
unknownFutureValue: 3,
|
|
43977
|
+
}
|
|
43978
|
+
|
|
42678
43979
|
enum authenticationProtocol {
|
|
42679
43980
|
wsFed: 0,
|
|
42680
43981
|
saml: 1,
|
|
42681
43982
|
unknownFutureValue: 2,
|
|
42682
43983
|
}
|
|
42683
43984
|
|
|
43985
|
+
enum authenticationStrengthPolicyType {
|
|
43986
|
+
builtIn: 0,
|
|
43987
|
+
custom: 1,
|
|
43988
|
+
unknownFutureValue: 2,
|
|
43989
|
+
}
|
|
43990
|
+
|
|
42684
43991
|
@graphFlags
|
|
42685
43992
|
enum authenticationStrengthRequirements {
|
|
42686
43993
|
none: 0,
|
|
@@ -42809,6 +44116,23 @@ namespace reference.`microsoft.graph` {
|
|
|
42809
44116
|
unknownFutureValue: 7,
|
|
42810
44117
|
}
|
|
42811
44118
|
|
|
44119
|
+
enum baseAuthenticationMethod {
|
|
44120
|
+
password: 1,
|
|
44121
|
+
voice: 2,
|
|
44122
|
+
hardwareOath: 3,
|
|
44123
|
+
softwareOath: 4,
|
|
44124
|
+
sms: 5,
|
|
44125
|
+
fido2: 6,
|
|
44126
|
+
windowsHelloForBusiness: 7,
|
|
44127
|
+
microsoftAuthenticator: 8,
|
|
44128
|
+
temporaryAccessPass: 9,
|
|
44129
|
+
email: 10,
|
|
44130
|
+
x509Certificate: 11,
|
|
44131
|
+
federation: 12,
|
|
44132
|
+
unknownFutureValue: 13,
|
|
44133
|
+
qrCodePin: 14,
|
|
44134
|
+
}
|
|
44135
|
+
|
|
42812
44136
|
/**
|
|
42813
44137
|
* BitLockerEncryptionMethod types
|
|
42814
44138
|
*/
|
|
@@ -43087,6 +44411,13 @@ namespace reference.`microsoft.graph` {
|
|
|
43087
44411
|
years: 2,
|
|
43088
44412
|
}
|
|
43089
44413
|
|
|
44414
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
44415
|
+
enum changeType {
|
|
44416
|
+
created: 0,
|
|
44417
|
+
updated: 1,
|
|
44418
|
+
deleted: 2,
|
|
44419
|
+
}
|
|
44420
|
+
|
|
43090
44421
|
/**
|
|
43091
44422
|
* Defines the permission level granted to users to enable them change Uefi settings
|
|
43092
44423
|
*/
|
|
@@ -43284,7 +44615,7 @@ namespace reference.`microsoft.graph` {
|
|
|
43284
44615
|
}
|
|
43285
44616
|
|
|
43286
44617
|
/**
|
|
43287
|
-
* Enum type of possible certification authority statuses. These statuses indicate whether a certification authority is currently able to issue certificates
|
|
44618
|
+
* Enum type of possible certification authority statuses. These statuses indicate whether a certification authority is currently able to issue certificates, temporarily paused, pending signing, revoked, or expired.
|
|
43288
44619
|
*/
|
|
43289
44620
|
enum cloudCertificationAuthorityStatus {
|
|
43290
44621
|
/**
|
|
@@ -43308,6 +44639,10 @@ namespace reference.`microsoft.graph` {
|
|
|
43308
44639
|
*/
|
|
43309
44640
|
signingPending: 4,
|
|
43310
44641
|
unknownFutureValue: 5,
|
|
44642
|
+
/**
|
|
44643
|
+
* Indicates certification authority has expired and cannot issue certificates until renewed and activated.
|
|
44644
|
+
*/
|
|
44645
|
+
expired: 6,
|
|
43311
44646
|
}
|
|
43312
44647
|
|
|
43313
44648
|
/**
|
|
@@ -43333,6 +44668,49 @@ namespace reference.`microsoft.graph` {
|
|
|
43333
44668
|
unknownFutureValue: 4,
|
|
43334
44669
|
}
|
|
43335
44670
|
|
|
44671
|
+
/**
|
|
44672
|
+
* Enum type of possible certification authority version statuses. These statuses indicate the lifecycle state of a certification authority version, including whether it is currently active, staged for renewal, retired, or in other states.
|
|
44673
|
+
*/
|
|
44674
|
+
enum cloudCertificationAuthorityVersionStatus {
|
|
44675
|
+
/**
|
|
44676
|
+
* Default. Indicates certification authority version has an unknown or invalid status.
|
|
44677
|
+
*/
|
|
44678
|
+
`unknown`: 0,
|
|
44679
|
+
/**
|
|
44680
|
+
* Indicates certification authority version is active and can issue leaf certificates.
|
|
44681
|
+
*/
|
|
44682
|
+
active: 1,
|
|
44683
|
+
/**
|
|
44684
|
+
* Indicates certification authority version was created during the renewal process and is currently in the staged phase. Upon activation, it becomes the new active certification authority version.
|
|
44685
|
+
*/
|
|
44686
|
+
staged: 2,
|
|
44687
|
+
/**
|
|
44688
|
+
* Indicates certification authority version has been paused from issuing certificates. The paused state is supported only for active certification authority versions. Staged certification authority versions cannot be paused and may only be revoked.
|
|
44689
|
+
*/
|
|
44690
|
+
paused: 3,
|
|
44691
|
+
/**
|
|
44692
|
+
* Indicates certification authority version has been retired after renewal. The retired certification authority version is not expired and continues to validate certificates it previously issued.
|
|
44693
|
+
*/
|
|
44694
|
+
retired: 4,
|
|
44695
|
+
/**
|
|
44696
|
+
* Indicates certification authority version has exceeded its validity period.
|
|
44697
|
+
*/
|
|
44698
|
+
expired: 5,
|
|
44699
|
+
/**
|
|
44700
|
+
* Indicates certification authority version has been revoked. This is a permanent state that cannot be changed.
|
|
44701
|
+
*/
|
|
44702
|
+
revoked: 6,
|
|
44703
|
+
/**
|
|
44704
|
+
* Indicates certification authority version has been decommissioned. Only applicable for staged certification authority versions. Decommissioned certification authority versions cannot issue or validate leaf certificates. This is a permanent state that cannot be changed.
|
|
44705
|
+
*/
|
|
44706
|
+
decommissioned: 7,
|
|
44707
|
+
/**
|
|
44708
|
+
* Indicates certification authority version was created with a Bring Your Own CA (BYOCA) root and requires external signing.
|
|
44709
|
+
*/
|
|
44710
|
+
signingPending: 8,
|
|
44711
|
+
unknownFutureValue: 9,
|
|
44712
|
+
}
|
|
44713
|
+
|
|
43336
44714
|
/**
|
|
43337
44715
|
* Error code for rule validation.
|
|
43338
44716
|
*/
|
|
@@ -44688,6 +46066,25 @@ namespace reference.`microsoft.graph` {
|
|
|
44688
46066
|
remoteLock: 10,
|
|
44689
46067
|
}
|
|
44690
46068
|
|
|
46069
|
+
/**
|
|
46070
|
+
* Indicates the platform that a device compliance script targets for evaluation.
|
|
46071
|
+
*/
|
|
46072
|
+
enum deviceComplianceScriptPlatformType {
|
|
46073
|
+
/**
|
|
46074
|
+
* Default. Indicates that the compliance script targets devices running Windows 10 and later.
|
|
46075
|
+
*/
|
|
46076
|
+
windows10: 0,
|
|
46077
|
+
/**
|
|
46078
|
+
* Indicates that the compliance script targets devices running Linux.
|
|
46079
|
+
*/
|
|
46080
|
+
linux: 1,
|
|
46081
|
+
/**
|
|
46082
|
+
* Indicates that the compliance script targets devices running macOS.
|
|
46083
|
+
*/
|
|
46084
|
+
macOS: 2,
|
|
46085
|
+
unknownFutureValue: 3,
|
|
46086
|
+
}
|
|
46087
|
+
|
|
44691
46088
|
/**
|
|
44692
46089
|
* Data types for rules.
|
|
44693
46090
|
*/
|
|
@@ -48203,6 +49600,14 @@ namespace reference.`microsoft.graph` {
|
|
|
48203
49600
|
deleted: 3,
|
|
48204
49601
|
}
|
|
48205
49602
|
|
|
49603
|
+
enum errorCorrectionLevel {
|
|
49604
|
+
l: 1,
|
|
49605
|
+
m: 2,
|
|
49606
|
+
q: 3,
|
|
49607
|
+
h: 4,
|
|
49608
|
+
unknownFutureValue: 5,
|
|
49609
|
+
}
|
|
49610
|
+
|
|
48206
49611
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
48207
49612
|
enum eventType {
|
|
48208
49613
|
singleInstance: 0,
|
|
@@ -48227,6 +49632,20 @@ namespace reference.`microsoft.graph` {
|
|
|
48227
49632
|
all: 2,
|
|
48228
49633
|
}
|
|
48229
49634
|
|
|
49635
|
+
enum externalEmailOtpState {
|
|
49636
|
+
default: 0,
|
|
49637
|
+
enabled: 1,
|
|
49638
|
+
disabled: 2,
|
|
49639
|
+
unknownFutureValue: 3,
|
|
49640
|
+
}
|
|
49641
|
+
|
|
49642
|
+
enum featureTargetType {
|
|
49643
|
+
group: 0,
|
|
49644
|
+
administrativeUnit: 1,
|
|
49645
|
+
role: 2,
|
|
49646
|
+
unknownFutureValue: 3,
|
|
49647
|
+
}
|
|
49648
|
+
|
|
48230
49649
|
enum federatedIdpMfaBehavior {
|
|
48231
49650
|
acceptIfMfaDoneByFederatedIdp: 0,
|
|
48232
49651
|
enforceMfaByFederatedIdp: 1,
|
|
@@ -48234,6 +49653,12 @@ namespace reference.`microsoft.graph` {
|
|
|
48234
49653
|
unknownFutureValue: 3,
|
|
48235
49654
|
}
|
|
48236
49655
|
|
|
49656
|
+
enum fido2RestrictionEnforcementType {
|
|
49657
|
+
allow: 0,
|
|
49658
|
+
block: 1,
|
|
49659
|
+
unknownFutureValue: 2,
|
|
49660
|
+
}
|
|
49661
|
+
|
|
48237
49662
|
/**
|
|
48238
49663
|
* FileVault State
|
|
48239
49664
|
*/
|
|
@@ -48814,6 +50239,20 @@ namespace reference.`microsoft.graph` {
|
|
|
48814
50239
|
surfaceDock: 3,
|
|
48815
50240
|
}
|
|
48816
50241
|
|
|
50242
|
+
enum hardwareOathTokenHashFunction {
|
|
50243
|
+
hmacsha1: 0,
|
|
50244
|
+
hmacsha256: 1,
|
|
50245
|
+
unknownFutureValue: 2,
|
|
50246
|
+
}
|
|
50247
|
+
|
|
50248
|
+
enum hardwareOathTokenStatus {
|
|
50249
|
+
available: 0,
|
|
50250
|
+
assigned: 1,
|
|
50251
|
+
activated: 2,
|
|
50252
|
+
failedActivation: 3,
|
|
50253
|
+
unknownFutureValue: 4,
|
|
50254
|
+
}
|
|
50255
|
+
|
|
48817
50256
|
/**
|
|
48818
50257
|
* Hash Algorithm Options.
|
|
48819
50258
|
*/
|
|
@@ -49462,6 +50901,13 @@ namespace reference.`microsoft.graph` {
|
|
|
49462
50901
|
unknownFutureValue: 3,
|
|
49463
50902
|
}
|
|
49464
50903
|
|
|
50904
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
50905
|
+
enum lifecycleEventType {
|
|
50906
|
+
missed: 0,
|
|
50907
|
+
subscriptionRemoved: 1,
|
|
50908
|
+
reauthorizationRequired: 2,
|
|
50909
|
+
}
|
|
50910
|
+
|
|
49465
50911
|
/**
|
|
49466
50912
|
* Possible values for LocalSecurityOptionsAdministratorElevationPromptBehavior
|
|
49467
50913
|
*/
|
|
@@ -49658,6 +51104,14 @@ namespace reference.`microsoft.graph` {
|
|
|
49658
51104
|
bing: 4,
|
|
49659
51105
|
}
|
|
49660
51106
|
|
|
51107
|
+
enum longRunningOperationStatus {
|
|
51108
|
+
notStarted: 0,
|
|
51109
|
+
running: 1,
|
|
51110
|
+
succeeded: 2,
|
|
51111
|
+
failed: 3,
|
|
51112
|
+
unknownFutureValue: 4,
|
|
51113
|
+
}
|
|
51114
|
+
|
|
49661
51115
|
/**
|
|
49662
51116
|
* State of lost mode, indicating if lost mode is enabled or disabled
|
|
49663
51117
|
*/
|
|
@@ -50927,6 +52381,19 @@ namespace reference.`microsoft.graph` {
|
|
|
50927
52381
|
variable: 2,
|
|
50928
52382
|
}
|
|
50929
52383
|
|
|
52384
|
+
enum microsoftAuthenticatorAuthenticationMethodClientAppName {
|
|
52385
|
+
microsoftAuthenticator: 0,
|
|
52386
|
+
outlookMobile: 1,
|
|
52387
|
+
unknownFutureValue: 2,
|
|
52388
|
+
}
|
|
52389
|
+
|
|
52390
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
52391
|
+
enum microsoftAuthenticatorAuthenticationMode {
|
|
52392
|
+
deviceBasedPush: 0,
|
|
52393
|
+
push: 1,
|
|
52394
|
+
any: 2,
|
|
52395
|
+
}
|
|
52396
|
+
|
|
50930
52397
|
/**
|
|
50931
52398
|
* The enum to specify the channels for Microsoft Edge apps.
|
|
50932
52399
|
*/
|
|
@@ -51400,6 +52867,12 @@ namespace reference.`microsoft.graph` {
|
|
|
51400
52867
|
unknownFutureValue: 6,
|
|
51401
52868
|
}
|
|
51402
52869
|
|
|
52870
|
+
enum multiFactorAuthConfiguration {
|
|
52871
|
+
notRequired: 0,
|
|
52872
|
+
required: 1,
|
|
52873
|
+
unknownFutureValue: 2,
|
|
52874
|
+
}
|
|
52875
|
+
|
|
51403
52876
|
/**
|
|
51404
52877
|
* The current status of the Ndes Connector.
|
|
51405
52878
|
*/
|
|
@@ -51901,6 +53374,19 @@ namespace reference.`microsoft.graph` {
|
|
|
51901
53374
|
unknownFutureValue: 7,
|
|
51902
53375
|
}
|
|
51903
53376
|
|
|
53377
|
+
enum passkeyType {
|
|
53378
|
+
deviceBound: 0,
|
|
53379
|
+
synced: 1,
|
|
53380
|
+
unknownFutureValue: 2,
|
|
53381
|
+
}
|
|
53382
|
+
|
|
53383
|
+
@graphFlags
|
|
53384
|
+
enum passkeyTypes {
|
|
53385
|
+
deviceBound: 1,
|
|
53386
|
+
synced: 2,
|
|
53387
|
+
unknownFutureValue: 4,
|
|
53388
|
+
}
|
|
53389
|
+
|
|
51904
53390
|
/**
|
|
51905
53391
|
* Forward Secrecy Group values for Windows10 VPN policies with IKEv2 connection type.
|
|
51906
53392
|
*/
|
|
@@ -52011,6 +53497,80 @@ namespace reference.`microsoft.graph` {
|
|
|
52011
53497
|
other: 3,
|
|
52012
53498
|
}
|
|
52013
53499
|
|
|
53500
|
+
enum plannerApprovalStatus {
|
|
53501
|
+
requested: 0,
|
|
53502
|
+
approved: 1,
|
|
53503
|
+
rejected: 2,
|
|
53504
|
+
cancelled: 3,
|
|
53505
|
+
unknownFutureValue: 4,
|
|
53506
|
+
}
|
|
53507
|
+
|
|
53508
|
+
enum plannerContainerType {
|
|
53509
|
+
group: 1,
|
|
53510
|
+
unknownFutureValue: 2,
|
|
53511
|
+
roster: 3,
|
|
53512
|
+
project: 4,
|
|
53513
|
+
driveItem: 5,
|
|
53514
|
+
user: 6,
|
|
53515
|
+
teamsChannel: 7,
|
|
53516
|
+
onlineMeeting: 8,
|
|
53517
|
+
plannerTask: 9,
|
|
53518
|
+
}
|
|
53519
|
+
|
|
53520
|
+
enum plannerContextState {
|
|
53521
|
+
active: 0,
|
|
53522
|
+
delinked: 1,
|
|
53523
|
+
unknownFutureValue: 2,
|
|
53524
|
+
}
|
|
53525
|
+
|
|
53526
|
+
enum plannerCreationSourceKind {
|
|
53527
|
+
none: 0,
|
|
53528
|
+
external: 1,
|
|
53529
|
+
publication: 2,
|
|
53530
|
+
unknownFutureValue: 3,
|
|
53531
|
+
}
|
|
53532
|
+
|
|
53533
|
+
enum plannerExternalTaskSourceDisplayType {
|
|
53534
|
+
none: 1,
|
|
53535
|
+
default: 2,
|
|
53536
|
+
unknownFutureValue: 3,
|
|
53537
|
+
}
|
|
53538
|
+
|
|
53539
|
+
enum plannerPlanAccessLevel {
|
|
53540
|
+
readAccess: 0,
|
|
53541
|
+
readWriteAccess: 1,
|
|
53542
|
+
fullAccess: 2,
|
|
53543
|
+
unknownFutureValue: 3,
|
|
53544
|
+
}
|
|
53545
|
+
|
|
53546
|
+
enum plannerPlanContextType {
|
|
53547
|
+
teamsTab: 1,
|
|
53548
|
+
sharePointPage: 2,
|
|
53549
|
+
meetingNotes: 3,
|
|
53550
|
+
other: 4,
|
|
53551
|
+
unknownFutureValue: 5,
|
|
53552
|
+
loopPage: 6,
|
|
53553
|
+
project: 7,
|
|
53554
|
+
}
|
|
53555
|
+
|
|
53556
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
53557
|
+
enum plannerPreviewType {
|
|
53558
|
+
automatic: 0,
|
|
53559
|
+
noPreview: 1,
|
|
53560
|
+
checklist: 2,
|
|
53561
|
+
description: 3,
|
|
53562
|
+
reference: 4,
|
|
53563
|
+
}
|
|
53564
|
+
|
|
53565
|
+
@graphFlags
|
|
53566
|
+
enum plannerTaskCompletionRequirements {
|
|
53567
|
+
none: 0,
|
|
53568
|
+
checklistCompletion: 1,
|
|
53569
|
+
unknownFutureValue: 2,
|
|
53570
|
+
formCompletion: 4,
|
|
53571
|
+
approvalCompletion: 8,
|
|
53572
|
+
}
|
|
53573
|
+
|
|
52014
53574
|
/**
|
|
52015
53575
|
* Supported platform types for policies.
|
|
52016
53576
|
*/
|
|
@@ -53706,6 +55266,12 @@ namespace reference.`microsoft.graph` {
|
|
|
53706
55266
|
deviceIntent: 1,
|
|
53707
55267
|
}
|
|
53708
55268
|
|
|
55269
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
55270
|
+
enum securityQuestionType {
|
|
55271
|
+
predefined: 0,
|
|
55272
|
+
custom: 1,
|
|
55273
|
+
}
|
|
55274
|
+
|
|
53709
55275
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
53710
55276
|
enum sensitivity {
|
|
53711
55277
|
normal: 0,
|
|
@@ -53714,6 +55280,13 @@ namespace reference.`microsoft.graph` {
|
|
|
53714
55280
|
confidential: 3,
|
|
53715
55281
|
}
|
|
53716
55282
|
|
|
55283
|
+
enum sensitivityLabelAssignmentMethod {
|
|
55284
|
+
standard: 0,
|
|
55285
|
+
privileged: 1,
|
|
55286
|
+
auto: 2,
|
|
55287
|
+
unknownFutureValue: 3,
|
|
55288
|
+
}
|
|
55289
|
+
|
|
53717
55290
|
/**
|
|
53718
55291
|
* Status of ServiceNow Connection
|
|
53719
55292
|
*/
|
|
@@ -54080,6 +55653,16 @@ namespace reference.`microsoft.graph` {
|
|
|
54080
55653
|
unknownFutureValue: 2,
|
|
54081
55654
|
}
|
|
54082
55655
|
|
|
55656
|
+
enum userDefaultAuthenticationMethodType {
|
|
55657
|
+
push: 0,
|
|
55658
|
+
oath: 1,
|
|
55659
|
+
voiceMobile: 2,
|
|
55660
|
+
voiceAlternateMobile: 3,
|
|
55661
|
+
voiceOffice: 4,
|
|
55662
|
+
sms: 5,
|
|
55663
|
+
unknownFutureValue: 6,
|
|
55664
|
+
}
|
|
55665
|
+
|
|
54083
55666
|
/**
|
|
54084
55667
|
* Possible values for username source or email source.
|
|
54085
55668
|
*/
|
|
@@ -54479,6 +56062,13 @@ namespace reference.`microsoft.graph` {
|
|
|
54479
56062
|
show: 2,
|
|
54480
56063
|
}
|
|
54481
56064
|
|
|
56065
|
+
enum volumeType {
|
|
56066
|
+
operatingSystemVolume: 1,
|
|
56067
|
+
fixedDataVolume: 2,
|
|
56068
|
+
removableDataVolume: 3,
|
|
56069
|
+
unknownFutureValue: 4,
|
|
56070
|
+
}
|
|
56071
|
+
|
|
54482
56072
|
/**
|
|
54483
56073
|
* VPN Authentication Method.
|
|
54484
56074
|
*/
|
|
@@ -56083,6 +57673,63 @@ namespace reference.`microsoft.graph` {
|
|
|
56083
57673
|
unknownFutureValue: 3,
|
|
56084
57674
|
}
|
|
56085
57675
|
|
|
57676
|
+
/**
|
|
57677
|
+
* Indicates the delivery optimization download priority level for app content. This controls whether the download uses background bandwidth (minimal impact on other network activity) or foreground bandwidth (prioritized download at the expense of other network traffic).
|
|
57678
|
+
*/
|
|
57679
|
+
enum windowsAutoUpdateCatalogAppDeliveryOptimizationPriority {
|
|
57680
|
+
/**
|
|
57681
|
+
* Indicates that no delivery optimization priority is configured. The download uses normal background priority, which minimizes impact on other network activity. This is the default value when the property is omitted.
|
|
57682
|
+
*/
|
|
57683
|
+
notConfigured: 0,
|
|
57684
|
+
/**
|
|
57685
|
+
* Indicates that the app content download uses foreground priority, which prioritizes the download over background network tasks. This may result in faster installation but increased network bandwidth consumption. In National Cloud environments, this value is accepted and stored but has no effect on device behavior.
|
|
57686
|
+
*/
|
|
57687
|
+
foreground: 1,
|
|
57688
|
+
unknownFutureValue: 2,
|
|
57689
|
+
}
|
|
57690
|
+
|
|
57691
|
+
/**
|
|
57692
|
+
* Indicates which notifications the Intune management extension displays to the end user during the app installation and restart lifecycle on managed devices.
|
|
57693
|
+
*/
|
|
57694
|
+
enum windowsAutoUpdateCatalogAppNotificationType {
|
|
57695
|
+
/**
|
|
57696
|
+
* Indicates that all notifications related to app installation and restart are displayed to the end user.
|
|
57697
|
+
*/
|
|
57698
|
+
showAll: 0,
|
|
57699
|
+
/**
|
|
57700
|
+
* Indicates that only restart notifications are displayed to the end user; other installation progress notifications are suppressed.
|
|
57701
|
+
*/
|
|
57702
|
+
showReboot: 1,
|
|
57703
|
+
/**
|
|
57704
|
+
* Indicates that all notifications related to app installation and restart are suppressed. The end user is not informed of the installation or pending restarts.
|
|
57705
|
+
*/
|
|
57706
|
+
hideAll: 2,
|
|
57707
|
+
unknownFutureValue: 3,
|
|
57708
|
+
}
|
|
57709
|
+
|
|
57710
|
+
/**
|
|
57711
|
+
* Indicates how the device handles restarts after the app installer finishes executing. This setting, configured on the app's installExperience, determines whether the Intune management extension initiates, suppresses, or forces a restart based on the installer's exit code.
|
|
57712
|
+
*/
|
|
57713
|
+
enum windowsAutoUpdateCatalogAppRestartBehavior {
|
|
57714
|
+
/**
|
|
57715
|
+
* Indicates that the Intune management extension restarts the device only if the app installer returns an exit code that signals a reboot is required (e.g., exit code 3010).
|
|
57716
|
+
*/
|
|
57717
|
+
basedOnReturnCode: 0,
|
|
57718
|
+
/**
|
|
57719
|
+
* Indicates that the Intune management extension does not take any specific action to control restarts. If the app installer initiates a restart (e.g., an MSI with ForceReboot action), it is allowed to proceed.
|
|
57720
|
+
*/
|
|
57721
|
+
allow: 1,
|
|
57722
|
+
/**
|
|
57723
|
+
* Indicates that the Intune management extension attempts to suppress restarts initiated by the installer. For MSI-based installations, this passes the REBOOT=ReallySuppress property to msiexec. Not all installers honor suppression.
|
|
57724
|
+
*/
|
|
57725
|
+
suppress: 2,
|
|
57726
|
+
/**
|
|
57727
|
+
* Indicates that the Intune management extension forces an immediate device restart after the app installation completes, regardless of the installer's exit code.
|
|
57728
|
+
*/
|
|
57729
|
+
force: 3,
|
|
57730
|
+
unknownFutureValue: 4,
|
|
57731
|
+
}
|
|
57732
|
+
|
|
56086
57733
|
/**
|
|
56087
57734
|
* Enum values for the various WindowsDefenderApplicationControl supplemental policy deployment statuses.
|
|
56088
57735
|
*/
|
|
@@ -57541,6 +59188,31 @@ namespace reference.`microsoft.graph` {
|
|
|
57541
59188
|
unknownFutureValue: 2,
|
|
57542
59189
|
}
|
|
57543
59190
|
|
|
59191
|
+
enum x509CertificateAffinityLevel {
|
|
59192
|
+
low: 0,
|
|
59193
|
+
high: 1,
|
|
59194
|
+
unknownFutureValue: 2,
|
|
59195
|
+
}
|
|
59196
|
+
|
|
59197
|
+
enum x509CertificateAuthenticationMode {
|
|
59198
|
+
x509CertificateSingleFactor: 0,
|
|
59199
|
+
x509CertificateMultiFactor: 1,
|
|
59200
|
+
unknownFutureValue: 2,
|
|
59201
|
+
}
|
|
59202
|
+
|
|
59203
|
+
enum x509CertificateIssuerHintsState {
|
|
59204
|
+
disabled: 0,
|
|
59205
|
+
enabled: 1,
|
|
59206
|
+
unknownFutureValue: 2,
|
|
59207
|
+
}
|
|
59208
|
+
|
|
59209
|
+
enum x509CertificateRuleType {
|
|
59210
|
+
issuerSubject: 0,
|
|
59211
|
+
policyOID: 1,
|
|
59212
|
+
unknownFutureValue: 2,
|
|
59213
|
+
issuerSubjectAndPolicyOID: 3,
|
|
59214
|
+
}
|
|
59215
|
+
|
|
57544
59216
|
/**
|
|
57545
59217
|
* Represents various states for Zebra FOTA connector.
|
|
57546
59218
|
*/
|