Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
151 changes: 151 additions & 0 deletions schemas/beta-Fairfax.csdl
Original file line number Diff line number Diff line change
Expand Up @@ -3722,6 +3722,17 @@
<Member Name="ctph" Value="6" />
<Member Name="unknownFutureValue" Value="127" />
</EnumType>
<EnumType Name="fileStorageContainerBillingClassification">
<Member Name="standard" Value="0" />
<Member Name="trial" Value="1" />
<Member Name="directToCustomer" Value="2" />
<Member Name="unknownFutureValue" Value="3" />
</EnumType>
<EnumType Name="fileStorageContainerBillingStatus">
<Member Name="invalid" Value="0" />
<Member Name="valid" Value="1" />
<Member Name="unknownFutureValue" Value="2" />
</EnumType>
<EnumType Name="fileStorageContainerOwnershipType">
<Member Name="tenantOwned" Value="0" />
<Member Name="userOwned" Value="1" />
Expand All @@ -3732,6 +3743,33 @@
<Member Name="active" Value="1" />
<Member Name="unknownFutureValue" Value="2" />
</EnumType>
<EnumType Name="fileStorageContainerTypeAppPermission">
<Member Name="none" Value="0" />
<Member Name="readContent" Value="1" />
<Member Name="writeContent" Value="2" />
<Member Name="manageContent" Value="3" />
<Member Name="create" Value="4" />
<Member Name="delete" Value="5" />
<Member Name="read" Value="6" />
<Member Name="write" Value="7" />
<Member Name="enumeratePermissions" Value="8" />
<Member Name="addPermissions" Value="9" />
<Member Name="updatePermissions" Value="10" />
<Member Name="deletePermissions" Value="11" />
<Member Name="deleteOwnPermission" Value="12" />
<Member Name="managePermissions" Value="13" />
<Member Name="full" Value="14" />
<Member Name="unknownFutureValue" Value="15" />
</EnumType>
<EnumType Name="fileStorageContainerTypeSettingsOverride" IsFlags="true">
<Member Name="urlTemplate" Value="0" />
<Member Name="isDiscoverabilityEnabled" Value="1" />
<Member Name="isSearchEnabled" Value="2" />
<Member Name="isItemVersioningEnabled" Value="3" />
<Member Name="itemMajorVersionLimit" Value="4" />
<Member Name="maxStoragePerContainerInBytes" Value="5" />
<Member Name="unknownFutureValue" Value="6" />
</EnumType>
<EnumType Name="fileVaultState" IsFlags="true">
<Member Name="success" Value="0" />
<Member Name="driveEncryptedByUser" Value="1" />
Expand Down Expand Up @@ -11965,6 +12003,32 @@
<Property Name="isOcrEnabled" Type="Edm.Boolean" />
<Property Name="itemMajorVersionLimit" Type="Edm.Int32" />
</ComplexType>
<ComplexType Name="fileStorageContainerTypeAgentSettings">
<Property Name="chatEmbedAllowedHosts" Type="Collection(Edm.String)" Nullable="false" />
</ComplexType>
<ComplexType Name="fileStorageContainerTypeRegistrationSettings">
<Property Name="agent" Type="graph.fileStorageContainerTypeAgentSettings" />
<Property Name="isDiscoverabilityEnabled" Type="Edm.Boolean" />
<Property Name="isItemVersioningEnabled" Type="Edm.Boolean" />
<Property Name="isSearchEnabled" Type="Edm.Boolean" />
<Property Name="isSharingRestricted" Type="Edm.Boolean" />
<Property Name="itemMajorVersionLimit" Type="Edm.Int64" />
<Property Name="maxStoragePerContainerInBytes" Type="Edm.Int64" />
<Property Name="sharingCapability" Type="graph.sharingCapabilities" />
<Property Name="urlTemplate" Type="Edm.String" />
</ComplexType>
<ComplexType Name="fileStorageContainerTypeSettings">
<Property Name="agent" Type="graph.fileStorageContainerTypeAgentSettings" />
<Property Name="consumingTenantOverridables" Type="graph.fileStorageContainerTypeSettingsOverride" />
<Property Name="isDiscoverabilityEnabled" Type="Edm.Boolean" />
<Property Name="isItemVersioningEnabled" Type="Edm.Boolean" />
<Property Name="isSearchEnabled" Type="Edm.Boolean" />
<Property Name="isSharingRestricted" Type="Edm.Boolean" />
<Property Name="itemMajorVersionLimit" Type="Edm.Int64" />
<Property Name="maxStoragePerContainerInBytes" Type="Edm.Int64" />
<Property Name="sharingCapability" Type="graph.sharingCapabilities" />
<Property Name="urlTemplate" Type="Edm.String" />
</ComplexType>
<ComplexType Name="fileStorageContainerViewpoint">
<Property Name="effectiveRole" Type="Edm.String" Nullable="false" />
</ComplexType>
Expand Down Expand Up @@ -21455,6 +21519,8 @@
</EntityType>
<EntityType Name="fileStorage" BaseType="graph.entity">
<NavigationProperty Name="containers" Type="Collection(graph.fileStorageContainer)" ContainsTarget="true" />
<NavigationProperty Name="containerTypeRegistrations" Type="Collection(graph.fileStorageContainerTypeRegistration)" ContainsTarget="true" />
<NavigationProperty Name="containerTypes" Type="Collection(graph.fileStorageContainerType)" ContainsTarget="true" />
<NavigationProperty Name="deletedContainers" Type="Collection(graph.fileStorageContainer)" ContainsTarget="true" />
</EntityType>
<EntityType Name="fileStorageContainer" BaseType="graph.entity">
Expand All @@ -21479,6 +21545,35 @@
<NavigationProperty Name="permissions" Type="Collection(graph.permission)" ContainsTarget="true" />
<NavigationProperty Name="recycleBin" Type="graph.recycleBin" ContainsTarget="true" />
</EntityType>
<EntityType Name="fileStorageContainerType" BaseType="graph.entity">
<Property Name="billingClassification" Type="graph.fileStorageContainerBillingClassification" Nullable="false" />
<Property Name="billingStatus" Type="graph.fileStorageContainerBillingStatus" Nullable="false" />
<Property Name="createdDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
<Property Name="etag" Type="Edm.String" Nullable="false" />
<Property Name="expirationDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
<Property Name="name" Type="Edm.String" Nullable="false" />
<Property Name="owningAppId" Type="Edm.Guid" Nullable="false" />
<Property Name="settings" Type="graph.fileStorageContainerTypeSettings" Nullable="false" />
</EntityType>
<EntityType Name="fileStorageContainerTypeAppPermissionGrant">
<Key>
<PropertyRef Name="appId" />
</Key>
<Property Name="appId" Type="Edm.String" Nullable="false" />
<Property Name="applicationPermissions" Type="Collection(graph.fileStorageContainerTypeAppPermission)" />
<Property Name="delegatedPermissions" Type="Collection(graph.fileStorageContainerTypeAppPermission)" />
</EntityType>
<EntityType Name="fileStorageContainerTypeRegistration" BaseType="graph.entity">
<Property Name="billingClassification" Type="graph.fileStorageContainerBillingClassification" Nullable="false" />
<Property Name="billingStatus" Type="graph.fileStorageContainerBillingStatus" Nullable="false" />
<Property Name="etag" Type="Edm.String" Nullable="false" />
<Property Name="expirationDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
<Property Name="name" Type="Edm.String" Nullable="false" />
<Property Name="owningAppId" Type="Edm.Guid" Nullable="false" />
<Property Name="registeredDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
<Property Name="settings" Type="graph.fileStorageContainerTypeRegistrationSettings" Nullable="false" />
<NavigationProperty Name="applicationPermissionGrants" Type="Collection(graph.fileStorageContainerTypeAppPermissionGrant)" ContainsTarget="true" />
</EntityType>
<EntityType Name="filterOperatorSchema" BaseType="graph.entity">
<Property Name="arity" Type="graph.scopeOperatorType" Nullable="false" />
<Property Name="multivaluedComparisonType" Type="graph.scopeOperatorMultiValuedComparisonType" Nullable="false" />
Expand Down Expand Up @@ -36959,6 +37054,16 @@
<Parameter Name="period" Type="Edm.String" Nullable="false" Unicode="false" />
<ReturnType Type="Collection(graph.office365ActiveUserDetail)" Nullable="false" />
</Function>
<Function Name="getOffice365GroupsActivityDetail" IsBound="true" IsComposable="true">
<Parameter Name="reportRoot" Type="graph.reportRoot" />
<Parameter Name="date" Type="Edm.Date" Nullable="false" />
<ReturnType Type="Edm.Stream" Nullable="false" />
</Function>
<Function Name="getOffice365GroupsActivityDetail" IsBound="true" IsComposable="true">
<Parameter Name="reportRoot" Type="graph.reportRoot" />
<Parameter Name="period" Type="Edm.String" Nullable="false" Unicode="false" />
<ReturnType Type="Edm.Stream" Nullable="false" />
</Function>
<Function Name="getOffice365ServicesUserCounts" IsBound="true" IsComposable="true">
<Parameter Name="reportRoot" Type="graph.reportRoot" />
<Parameter Name="period" Type="Edm.String" Nullable="false" Unicode="false" />
Expand Down Expand Up @@ -84158,6 +84263,15 @@
</EntityType>
</Schema>
<Schema Namespace="microsoft.graph.security" xmlns="http://docs.oasis-open.org/odata/ns/edm">
<EnumType Name="action">
<Member Name="disable" Value="1" />
<Member Name="enable" Value="2" />
<Member Name="forcePasswordReset" Value="3" />
<Member Name="revokeAllSessions" Value="4" />
<Member Name="requireUserToSignInAgain" Value="5" />
<Member Name="markUserAsCompromised" Value="6" />
<Member Name="unknownFutureValue" Value="7" />
</EnumType>
<EnumType Name="actionAfterRetentionPeriod">
<Member Name="none" Value="0" />
<Member Name="delete" Value="1" />
Expand Down Expand Up @@ -84561,6 +84675,12 @@
<Member Name="global" Value="2" />
<Member Name="unknownFutureValue" Value="3" />
</EnumType>
<EnumType Name="identityProvider">
<Member Name="entraID" Value="1" />
<Member Name="activeDirectory" Value="2" />
<Member Name="okta" Value="3" />
<Member Name="unknownFutureValue" Value="4" />
</EnumType>
<EnumType Name="incidentStatus">
<Member Name="active" Value="1" />
<Member Name="resolved" Value="2" />
Expand Down Expand Up @@ -84766,6 +84886,11 @@
<Member Name="azure" Value="1" />
<Member Name="unknownFutureValue" Value="15" />
</EnumType>
<ComplexType Name="account">
<Property Name="actions" Type="Collection(microsoft.graph.security.action)" Nullable="false" />
<Property Name="identifier" Type="Edm.String" Nullable="false" />
<Property Name="identityProvider" Type="microsoft.graph.security.identityProvider" Nullable="false" />
</ComplexType>
<ComplexType Name="alertComment">
<Property Name="comment" Type="Edm.String" />
<Property Name="createdByDisplayName" Type="Edm.String" />
Expand Down Expand Up @@ -85013,6 +85138,12 @@
<ComplexType Name="incidentTaskResponseAction" BaseType="microsoft.graph.security.responseAction" Abstract="true">
<Property Name="identifierValue" Type="Edm.String" Nullable="false" />
</ComplexType>
<ComplexType Name="invokeActionResult">
<Property Name="accountId" Type="Edm.String" Nullable="false" />
<Property Name="action" Type="microsoft.graph.security.action" Nullable="false" />
<Property Name="correlationId" Type="Edm.String" />
<Property Name="identityProvider" Type="microsoft.graph.security.identityProvider" Nullable="false" />
</ComplexType>
<ComplexType Name="ioTDeviceEvidence" BaseType="microsoft.graph.security.alertEvidence">
<Property Name="deviceId" Type="Edm.String" />
<Property Name="deviceName" Type="Edm.String" />
Expand Down Expand Up @@ -85589,8 +85720,17 @@
<Property Name="severity" Type="microsoft.graph.security.healthIssueSeverity" />
<Property Name="status" Type="microsoft.graph.security.healthIssueStatus" />
</EntityType>
<EntityType Name="identityAccounts" BaseType="graph.entity" Abstract="true">
<Property Name="accounts" Type="Collection(microsoft.graph.security.account)" />
<Property Name="cloudSecurityIdentifier" Type="Edm.String" />
<Property Name="displayName" Type="Edm.String" />
<Property Name="domain" Type="Edm.String" />
<Property Name="isEnabled" Type="Edm.Boolean" Nullable="false" />
<Property Name="onPremisesSecurityIdentifier" Type="Edm.String" />
</EntityType>
<EntityType Name="identityContainer" BaseType="graph.entity">
<NavigationProperty Name="healthIssues" Type="Collection(microsoft.graph.security.healthIssue)" ContainsTarget="true" />
<NavigationProperty Name="identityAccounts" Type="Collection(microsoft.graph.security.identityAccounts)" ContainsTarget="true" />
<NavigationProperty Name="sensors" Type="Collection(microsoft.graph.security.sensor)" ContainsTarget="true" />
</EntityType>
<EntityType Name="incident" BaseType="graph.entity">
Expand Down Expand Up @@ -85733,6 +85873,10 @@
<Property Name="includedSources" Type="microsoft.graph.security.sourceType" />
<NavigationProperty Name="group" Type="graph.group" Nullable="false" />
</EntityType>
<EntityType Name="user" BaseType="microsoft.graph.security.identityAccounts">
<Property Name="emailAddress" Type="Edm.String" />
<Property Name="userPrincipalName" Type="Edm.String" />
</EntityType>
<EntityType Name="userSource" BaseType="microsoft.graph.security.dataSource">
<Property Name="email" Type="Edm.String" Nullable="false" />
<Property Name="includedSources" Type="microsoft.graph.security.sourceType" />
Expand Down Expand Up @@ -85818,6 +85962,13 @@
<Parameter Name="cloudAttachmentVersion" Type="microsoft.graph.security.cloudAttachmentVersion" />
<Parameter Name="documentVersion" Type="microsoft.graph.security.documentVersion" />
</Action>
<Action Name="invokeAction" IsBound="true">
<Parameter Name="bindingParameter" Type="microsoft.graph.security.identityAccounts" />
<Parameter Name="accountId" Type="Edm.String" Nullable="false" Unicode="false" />
<Parameter Name="action" Type="microsoft.graph.security.action" Nullable="false" />
<Parameter Name="identityProvider" Type="microsoft.graph.security.identityProvider" Nullable="false" />
<ReturnType Type="microsoft.graph.security.invokeActionResult" />
</Action>
<Action Name="purgeData" IsBound="true">
<Parameter Name="bindingParameter" Type="microsoft.graph.security.ediscoverySearch" />
<Parameter Name="purgeType" Type="microsoft.graph.security.purgeType">
Expand Down
Loading
Loading