Git Product home page Git Product logo

Comments (3)

darrelmiller avatar darrelmiller commented on August 24, 2024

Also consider stream typed properties on the response type of a composable function:

<Function Name="deviceConfigurationUserActivity" IsBound="true" IsComposable="true">
<Parameter Name="bindingParameter" Type="graph.reportRoot"/>
<ReturnType Type="graph.report"/>
</Function>

<ComplexType Name="report">
<Property Name="content" Type="Edm.Stream"/>
</ComplexType>

This allows the path:

GET https://graph.microsoft.com/v1.0/reports/deviceConfigurationUserActivity/Content

and so we should generate an operation for GetReportsDeviceConfigurationUserActivityContent

from openapi.net.odata.

darrelmiller avatar darrelmiller commented on August 24, 2024

If an EntityType has hasStream=true and has a content property, then don't generate an operation for the the $value endpoint, just for the content property. e.g.

<EntityType Name="onenotePage" BaseType="graph.onenoteEntitySchemaObjectModel" HasStream="true">
<Property Name="title" Type="Edm.String"/>
<Property Name="createdByAppId" Type="Edm.String"/>
<Property Name="links" Type="graph.pageLinks"/>
<Property Name="contentUrl" Type="Edm.String"/>
<Property Name="content" Type="Edm.Stream"/>
<Property Name="lastModifiedDateTime" Type="Edm.DateTimeOffset"/>
<Property Name="level" Type="Edm.Int32"/>
<Property Name="order" Type="Edm.Int32"/>
<Property Name="userTags" Type="Collection(Edm.String)"/>
<NavigationProperty Name="parentSection" Type="graph.onenoteSection" ContainsTarget="true"/>
<NavigationProperty Name="parentNotebook" Type="graph.notebook" ContainsTarget="true"/>
</EntityType>

from openapi.net.odata.

baywet avatar baywet commented on August 24, 2024

closing as this has already been addressed.

from openapi.net.odata.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.