Skip to content

Commit 892fed9

Browse files
authored
Schema sync 2025-09-10 from 1.4.170.0 (#884)
1 parent 3007b30 commit 892fed9

File tree

3 files changed

+71
-5
lines changed

3 files changed

+71
-5
lines changed

schemas/beta-Fairfax.csdl

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1579,6 +1579,13 @@
15791579
<Member Name="failed" Value="3" />
15801580
<Member Name="unknownFutureValue" Value="4" />
15811581
</EnumType>
1582+
<EnumType Name="cloudPcExternalPartnerStatus">
1583+
<Member Name="notAvailable" Value="0" />
1584+
<Member Name="available" Value="1" />
1585+
<Member Name="healthy" Value="2" />
1586+
<Member Name="unhealthy" Value="3" />
1587+
<Member Name="unknownFutureValue" Value="999" />
1588+
</EnumType>
15821589
<EnumType Name="cloudPcGalleryImageStatus">
15831590
<Member Name="supported" Value="0" />
15841591
<Member Name="supportedWithWarning" Value="1" />
@@ -1612,6 +1619,8 @@
16121619
<Member Name="devBox" Value="2" />
16131620
<Member Name="unknownFutureValue" Value="4" />
16141621
<Member Name="rpaBox" Value="8" />
1622+
<Member Name="microsoft365Opal" Value="32" />
1623+
<Member Name="microsoft365BizChat" Value="64" />
16151624
</EnumType>
16161625
<EnumType Name="cloudPcOnPremisesConnectionHealthCheckErrorType">
16171626
<Member Name="dnsCheckFqdnNotFound" Value="100" />
@@ -1700,7 +1709,7 @@
17001709
<EnumType Name="cloudPcOperatingSystem">
17011710
<Member Name="windows10" Value="0" />
17021711
<Member Name="windows11" Value="1" />
1703-
<Member Name="unknownFutureValue" Value="999" />
1712+
<Member Name="unknownFutureValue" Value="2" />
17041713
</EnumType>
17051714
<EnumType Name="cloudPcPartnerAgentInstallStatus">
17061715
<Member Name="installed" Value="0" />
@@ -1960,7 +1969,7 @@
19601969
<EnumType Name="cloudPcUserAccountType">
19611970
<Member Name="standardUser" Value="0" />
19621971
<Member Name="administrator" Value="1" />
1963-
<Member Name="unknownFutureValue" Value="999" />
1972+
<Member Name="unknownFutureValue" Value="2" />
19641973
</EnumType>
19651974
<EnumType Name="code">
19661975
<Member Name="none" Value="0" />
@@ -18855,6 +18864,13 @@
1885518864
<Property Name="requestDateTime" Type="Edm.DateTimeOffset" />
1885618865
<Property Name="select" Type="Collection(Edm.String)" />
1885718866
</EntityType>
18867+
<EntityType Name="cloudPcExternalPartner" BaseType="graph.entity">
18868+
<Property Name="connectionStatus" Type="graph.cloudPcExternalPartnerStatus" Nullable="false" />
18869+
<Property Name="enableConnection" Type="Edm.Boolean" Nullable="false" />
18870+
<Property Name="lastSyncDateTime" Type="Edm.DateTimeOffset" />
18871+
<Property Name="partnerId" Type="Edm.String" Nullable="false" />
18872+
<Property Name="statusDetails" Type="Edm.String" />
18873+
</EntityType>
1885818874
<EntityType Name="cloudPcFrontLineServicePlan" BaseType="graph.entity">
1885918875
<Property Name="allotmentLicensesCount" Type="Edm.Int32" />
1886018876
<Property Name="displayName" Type="Edm.String" />
@@ -23887,6 +23903,7 @@
2388723903
<Property Name="mobileAppList" Type="Collection(graph.mobileAppIntentAndStateDetail)" />
2388823904
<Property Name="userId" Type="Edm.String" />
2388923905
</EntityType>
23906+
<EntityType Name="mobileAppManagementPolicy" BaseType="graph.mobilityManagementPolicy" />
2389023907
<EntityType Name="mobileAppPolicySetItem" BaseType="graph.policySetItem">
2389123908
<Property Name="intent" Type="graph.installIntent" Nullable="false" />
2389223909
<Property Name="settings" Type="graph.mobileAppAssignmentSettings" />
@@ -23920,6 +23937,7 @@
2392023937
<NavigationProperty Name="appLogCollectionRequests" Type="Collection(graph.appLogCollectionRequest)" ContainsTarget="true" />
2392123938
</EntityType>
2392223939
<EntityType Name="mobileContainedApp" BaseType="graph.entity" Abstract="true" />
23940+
<EntityType Name="mobileDeviceManagementPolicy" BaseType="graph.mobilityManagementPolicy" />
2392323941
<EntityType Name="mobileLobApp" BaseType="graph.mobileApp" Abstract="true">
2392423942
<Property Name="committedContentVersion" Type="Edm.String" />
2392523943
<Property Name="fileName" Type="Edm.String" />
@@ -27445,6 +27463,7 @@
2744527463
<NavigationProperty Name="bulkActions" Type="Collection(graph.cloudPcBulkAction)" ContainsTarget="true" />
2744627464
<NavigationProperty Name="cloudPCs" Type="Collection(graph.cloudPC)" ContainsTarget="true" />
2744727465
<NavigationProperty Name="deviceImages" Type="Collection(graph.cloudPcDeviceImage)" ContainsTarget="true" />
27466+
<NavigationProperty Name="externalPartners" Type="Collection(graph.cloudPcExternalPartner)" ContainsTarget="true" />
2744827467
<NavigationProperty Name="frontLineServicePlans" Type="Collection(graph.cloudPcFrontLineServicePlan)" ContainsTarget="true" />
2744927468
<NavigationProperty Name="galleryImages" Type="Collection(graph.cloudPcGalleryImage)" ContainsTarget="true" />
2745027469
<NavigationProperty Name="onPremisesConnections" Type="Collection(graph.cloudPcOnPremisesConnection)" ContainsTarget="true" />
@@ -34833,6 +34852,9 @@
3483334852
<Annotation Term="Org.OData.Core.V1.OptionalParameter" />
3483434853
</Parameter>
3483534854
</Action>
34855+
<Action Name="retry" IsBound="true">
34856+
<Parameter Name="bindingParameter" Type="graph.cloudPcProvisioningPolicy" />
34857+
</Action>
3483634858
<Action Name="retryPartnerAgentInstallation" IsBound="true">
3483734859
<Parameter Name="bindingParameter" Type="graph.cloudPC" />
3483834860
</Action>

schemas/beta-Mooncake.csdl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19703,6 +19703,7 @@
1970319703
<Property Name="mobileAppList" Type="Collection(graph.mobileAppIntentAndStateDetail)" />
1970419704
<Property Name="userId" Type="Edm.String" />
1970519705
</EntityType>
19706+
<EntityType Name="mobileAppManagementPolicy" BaseType="graph.mobilityManagementPolicy" />
1970619707
<EntityType Name="mobileAppPolicySetItem" BaseType="graph.policySetItem">
1970719708
<Property Name="intent" Type="graph.installIntent" Nullable="false" />
1970819709
<Property Name="settings" Type="graph.mobileAppAssignmentSettings" />
@@ -19736,6 +19737,7 @@
1973619737
<NavigationProperty Name="appLogCollectionRequests" Type="Collection(graph.appLogCollectionRequest)" ContainsTarget="true" />
1973719738
</EntityType>
1973819739
<EntityType Name="mobileContainedApp" BaseType="graph.entity" Abstract="true" />
19740+
<EntityType Name="mobileDeviceManagementPolicy" BaseType="graph.mobilityManagementPolicy" />
1973919741
<EntityType Name="mobileLobApp" BaseType="graph.mobileApp" Abstract="true">
1974019742
<Property Name="committedContentVersion" Type="Edm.String" />
1974119743
<Property Name="fileName" Type="Edm.String" />

schemas/beta-Prod.csdl

Lines changed: 45 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2126,6 +2126,8 @@
21262126
<Member Name="devBox" Value="2" />
21272127
<Member Name="unknownFutureValue" Value="4" />
21282128
<Member Name="rpaBox" Value="8" />
2129+
<Member Name="microsoft365Opal" Value="32" />
2130+
<Member Name="microsoft365BizChat" Value="64" />
21292131
</EnumType>
21302132
<EnumType Name="cloudPcOnPremisesConnectionHealthCheckErrorType">
21312133
<Member Name="dnsCheckFqdnNotFound" Value="100" />
@@ -2216,7 +2218,7 @@
22162218
<EnumType Name="cloudPcOperatingSystem">
22172219
<Member Name="windows10" Value="0" />
22182220
<Member Name="windows11" Value="1" />
2219-
<Member Name="unknownFutureValue" Value="999" />
2221+
<Member Name="unknownFutureValue" Value="2" />
22202222
</EnumType>
22212223
<EnumType Name="cloudPcPartnerAgentInstallStatus">
22222224
<Member Name="installed" Value="0" />
@@ -2494,7 +2496,7 @@
24942496
<EnumType Name="cloudPcUserAccountType">
24952497
<Member Name="standardUser" Value="0" />
24962498
<Member Name="administrator" Value="1" />
2497-
<Member Name="unknownFutureValue" Value="999" />
2499+
<Member Name="unknownFutureValue" Value="2" />
24982500
</EnumType>
24992501
<EnumType Name="cloudPcUserExperienceType">
25002502
<Member Name="cloudPc" Value="0" />
@@ -24509,6 +24511,13 @@
2450924511
<Property Name="requestDateTime" Type="Edm.DateTimeOffset" />
2451024512
<Property Name="select" Type="Collection(Edm.String)" />
2451124513
</EntityType>
24514+
<EntityType Name="cloudPcExternalPartner" BaseType="graph.entity">
24515+
<Property Name="connectionStatus" Type="graph.cloudPcExternalPartnerStatus" Nullable="false" />
24516+
<Property Name="enableConnection" Type="Edm.Boolean" Nullable="false" />
24517+
<Property Name="lastSyncDateTime" Type="Edm.DateTimeOffset" />
24518+
<Property Name="partnerId" Type="Edm.String" Nullable="false" />
24519+
<Property Name="statusDetails" Type="Edm.String" />
24520+
</EntityType>
2451224521
<EntityType Name="cloudPcExternalPartnerSetting" BaseType="graph.entity">
2451324522
<Property Name="enableConnection" Type="Edm.Boolean" Nullable="false" />
2451424523
<Property Name="lastSyncDateTime" Type="Edm.DateTimeOffset" />
@@ -33224,6 +33233,20 @@
3322433233
<Property Name="deletedDateTime" Type="Edm.DateTimeOffset" />
3322533234
<Property Name="deletedFromLocation" Type="Edm.String" />
3322633235
<Property Name="size" Type="Edm.Int64" />
33236+
<Annotation Term="Org.OData.Core.V1.AlternateKeys">
33237+
<Collection>
33238+
<Record Type="Org.OData.Core.V1.AlternateKey">
33239+
<PropertyValue Property="Key">
33240+
<Collection>
33241+
<Record Type="Org.OData.Core.V1.PropertyRef">
33242+
<PropertyValue Property="Alias" String="driveItemId" />
33243+
<PropertyValue Property="Name" PropertyPath="driveItemId" />
33244+
</Record>
33245+
</Collection>
33246+
</PropertyValue>
33247+
</Record>
33248+
</Collection>
33249+
</Annotation>
3322733250
</EntityType>
3322833251
<EntityType Name="redundantAssignmentAlertConfiguration" BaseType="graph.unifiedRoleManagementAlertConfiguration">
3322933252
<Property Name="duration" Type="Edm.Duration" />
@@ -36729,6 +36752,7 @@
3672936752
<NavigationProperty Name="cloudPCs" Type="Collection(graph.cloudPC)" ContainsTarget="true" />
3673036753
<NavigationProperty Name="crossCloudGovernmentOrganizationMapping" Type="graph.cloudPcCrossCloudGovernmentOrganizationMapping" ContainsTarget="true" />
3673136754
<NavigationProperty Name="deviceImages" Type="Collection(graph.cloudPcDeviceImage)" ContainsTarget="true" />
36755+
<NavigationProperty Name="externalPartners" Type="Collection(graph.cloudPcExternalPartner)" ContainsTarget="true" />
3673236756
<NavigationProperty Name="externalPartnerSettings" Type="Collection(graph.cloudPcExternalPartnerSetting)" ContainsTarget="true" />
3673336757
<NavigationProperty Name="frontLineServicePlans" Type="Collection(graph.cloudPcFrontLineServicePlan)" ContainsTarget="true" />
3673436758
<NavigationProperty Name="galleryImages" Type="Collection(graph.cloudPcGalleryImage)" ContainsTarget="true" />
@@ -45029,6 +45053,9 @@
4502945053
<Annotation Term="Org.OData.Core.V1.OptionalParameter" />
4503045054
</Parameter>
4503145055
</Action>
45056+
<Action Name="retry" IsBound="true">
45057+
<Parameter Name="bindingParameter" Type="graph.cloudPcProvisioningPolicy" />
45058+
</Action>
4503245059
<Action Name="retryPartnerAgentInstallation" IsBound="true">
4503345060
<Parameter Name="bindingParameter" Type="graph.cloudPC" />
4503445061
</Action>
@@ -58598,6 +58625,21 @@
5859858625
</Collection>
5859958626
</Annotation>
5860058627
</Annotations>
58628+
<Annotations Target="microsoft.graph.cloudPcExternalPartnerSetting">
58629+
<Annotation Term="Org.OData.Core.V1.Revisions">
58630+
<Collection>
58631+
<Record>
58632+
<PropertyValue Property="Date" Date="2025-02-18" />
58633+
<PropertyValue Property="Description" String="The cloudPcExternalPartnerSetting is deprecated and will not be supported starting March 31, 2026. This entity will not be included in the API response. Please use externalPartners instead." />
58634+
<PropertyValue Property="Kind">
58635+
<EnumMember>Org.OData.Core.V1.RevisionKind/Deprecated</EnumMember>
58636+
</PropertyValue>
58637+
<PropertyValue Property="RemovalDate" Date="2026-03-31" />
58638+
<PropertyValue Property="Version" String="2025-02/cloudPcExternalPartnerSetting" />
58639+
</Record>
58640+
</Collection>
58641+
</Annotation>
58642+
</Annotations>
5860158643
<Annotations Target="microsoft.graph.cloudPcGalleryImage/offer">
5860258644
<Annotation Term="Org.OData.Core.V1.Revisions">
5860358645
<Collection>
@@ -103599,7 +103641,7 @@
103599103641
<EntityType Name="tlsInspectionPolicyLink" BaseType="microsoft.graph.networkaccess.policyLink" />
103600103642
<EntityType Name="tlsInspectionRule" BaseType="microsoft.graph.networkaccess.policyRule">
103601103643
<Property Name="description" Type="Edm.String" />
103602-
<Property Name="matchingConditions" Type="microsoft.graph.networkaccess.tlsInspectionMatchingConditions" Nullable="false" />
103644+
<Property Name="matchingConditions" Type="microsoft.graph.networkaccess.tlsInspectionMatchingConditions" />
103603103645
<Property Name="priority" Type="Edm.Int64" Nullable="false" />
103604103646
<Property Name="settings" Type="microsoft.graph.networkaccess.tlsInspectionRuleSettings" Nullable="false" />
103605103647
</EntityType>

0 commit comments

Comments
 (0)