Skip to content

Commit

Permalink
Updated v1.0_metadata.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
Microsoft Graph DevX Tooling authored and Microsoft Graph DevX Tooling committed Jul 13, 2022
1 parent fff4722 commit 39b553e
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions v1.0_metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,13 @@
<Member Name="customer" Value="2" />
<Member Name="unknownFutureValue" Value="3" />
</EnumType>
<EnumType Name="bookingsAvailabilityStatus">
<Member Name="available" Value="0" />
<Member Name="busy" Value="1" />
<Member Name="slotsAvailable" Value="2" />
<Member Name="outOfOffice" Value="3" />
<Member Name="unknownFutureValue" Value="4" />
</EnumType>
<EnumType Name="bookingStaffRole">
<Member Name="guest" Value="0" />
<Member Name="administrator" Value="1" />
Expand Down Expand Up @@ -4413,6 +4420,7 @@
<NavigationProperty Name="installedApps" Type="Collection(graph.teamsAppInstallation)" ContainsTarget="true" />
<NavigationProperty Name="members" Type="Collection(graph.conversationMember)" ContainsTarget="true" />
<NavigationProperty Name="operations" Type="Collection(graph.teamsAsyncOperation)" ContainsTarget="true" />
<NavigationProperty Name="photo" Type="graph.profilePhoto" ContainsTarget="true" />
<NavigationProperty Name="primaryChannel" Type="graph.channel" ContainsTarget="true" />
<NavigationProperty Name="template" Type="graph.teamsTemplate" />
<NavigationProperty Name="schedule" Type="graph.schedule" ContainsTarget="true" />
Expand Down Expand Up @@ -4454,6 +4462,7 @@
<Property Name="publicClient" Type="graph.publicClientApplication" />
<Property Name="publisherDomain" Type="Edm.String" />
<Property Name="requiredResourceAccess" Type="Collection(graph.requiredResourceAccess)" Nullable="false" />
<Property Name="samlMetadataUrl" Type="Edm.String" />
<Property Name="serviceManagementReference" Type="Edm.String" />
<Property Name="signInAudience" Type="Edm.String" />
<Property Name="spa" Type="graph.spaApplication" />
Expand Down Expand Up @@ -4846,6 +4855,12 @@
<Property Name="status" Type="graph.threatAssessmentStatus" />
<NavigationProperty Name="results" Type="Collection(graph.threatAssessmentResult)" ContainsTarget="true" />
</EntityType>
<ComplexType Name="availabilityItem">
<Property Name="endTime" Type="Edm.TimeOfDay" Nullable="false" />
<Property Name="serviceId" Type="Edm.String" />
<Property Name="startTime" Type="Edm.TimeOfDay" Nullable="false" />
<Property Name="status" Type="graph.bookingsAvailabilityStatus" />
</ComplexType>
<ComplexType Name="bookingCustomerInformationBase" Abstract="true" />
<ComplexType Name="bookingCustomerInformation" BaseType="graph.bookingCustomerInformationBase">
<Property Name="customerId" Type="Edm.String" />
Expand Down Expand Up @@ -4924,6 +4939,10 @@
<Property Name="region" Type="Edm.String" />
<Property Name="type" Type="graph.phoneType" />
</ComplexType>
<ComplexType Name="staffAvailabilityItem">
<Property Name="availabilityItems" Type="Collection(graph.availabilityItem)" />
<Property Name="staffId" Type="Edm.String" />
</ComplexType>
<ComplexType Name="timeSlot">
<Property Name="end" Type="graph.dateTimeTimeZone" Nullable="false" />
<Property Name="start" Type="graph.dateTimeTimeZone" Nullable="false" />
Expand Down Expand Up @@ -7788,6 +7807,7 @@
</EntityType>
<EntityType Name="accessPackageAssignmentPolicy" BaseType="graph.entity">
<Property Name="allowedTargetScope" Type="graph.allowedTargetScope" />
<Property Name="automaticRequestSettings" Type="graph.accessPackageAutomaticRequestSettings" />
<Property Name="createdDateTime" Type="Edm.DateTimeOffset" />
<Property Name="description" Type="Edm.String" />
<Property Name="displayName" Type="Edm.String" />
Expand Down Expand Up @@ -8074,6 +8094,15 @@
<Property Name="primaryReviewers" Type="Collection(graph.subjectSet)" />
<Property Name="schedule" Type="graph.entitlementManagementSchedule" />
</ComplexType>
<ComplexType Name="accessPackageAutomaticRequestSettings">
<Property Name="gracePeriodBeforeAccessRemoval" Type="Edm.Duration" />
<Property Name="removeAccessWhenTargetLeavesAllowedTargets" Type="Edm.Boolean" />
<Property Name="requestAccessForAllowedTargets" Type="Edm.Boolean" />
</ComplexType>
<ComplexType Name="attributeRuleMembers" BaseType="graph.subjectSet">
<Property Name="description" Type="Edm.String" />
<Property Name="membershipRule" Type="Edm.String" />
</ComplexType>
<ComplexType Name="connectedOrganizationMembers" BaseType="graph.subjectSet">
<Property Name="connectedOrganizationId" Type="Edm.String" />
<Property Name="description" Type="Edm.String" />
Expand Down Expand Up @@ -12249,6 +12278,13 @@
<Action Name="cancel" IsBound="true">
<Parameter Name="bindingParameter" Type="graph.printJob" />
</Action>
<Action Name="getStaffAvailability" IsBound="true">
<Parameter Name="bookingBusiness" Type="graph.bookingBusiness" Nullable="false" />
<Parameter Name="staffIds" Type="Collection(Edm.String)" Nullable="false" Unicode="false" />
<Parameter Name="startDateTime" Type="graph.dateTimeTimeZone" Nullable="false" />
<Parameter Name="endDateTime" Type="graph.dateTimeTimeZone" Nullable="false" />
<ReturnType Type="Collection(graph.staffAvailabilityItem)" />
</Action>
<Action Name="publish" IsBound="true">
<Parameter Name="bookingBusiness" Type="graph.bookingBusiness" Nullable="false" />
</Action>
Expand Down

0 comments on commit 39b553e

Please sign in to comment.