Interface ApplicationsApplicationsClient


public interface ApplicationsApplicationsClient
An instance of this class provides access to all the operations defined in ApplicationsApplicationsClient.
  • Method Details

    • listApplicationAsync

      com.azure.core.http.rest.PagedFlux<MicrosoftGraphApplicationInner> listApplicationAsync(String consistencyLevel, Integer top, Integer skip, String search, String filter, Boolean count, List<Get6ItemsItem> orderby, List<Get7ItemsItem> select, List<Get8ItemsItem> expand)
      Get entities from applications.
      Parameters:
      consistencyLevel - Indicates the requested consistency level.
      top - Show only the first n items.
      skip - Skip the first n items.
      search - Search items by search phrases.
      filter - Filter items by property values.
      count - Include count of items.
      orderby - Order items by property values.
      select - Select properties to be returned.
      expand - Expand related entities.
      Returns:
      entities from applications as paginated response with PagedFlux.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • listApplicationAsync

      com.azure.core.http.rest.PagedFlux<MicrosoftGraphApplicationInner> listApplicationAsync()
      Get entities from applications.
      Returns:
      entities from applications as paginated response with PagedFlux.
      Throws:
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • listApplication

      com.azure.core.http.rest.PagedIterable<MicrosoftGraphApplicationInner> listApplication()
      Get entities from applications.
      Returns:
      entities from applications as paginated response with PagedIterable.
      Throws:
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • listApplication

      com.azure.core.http.rest.PagedIterable<MicrosoftGraphApplicationInner> listApplication(String consistencyLevel, Integer top, Integer skip, String search, String filter, Boolean count, List<Get6ItemsItem> orderby, List<Get7ItemsItem> select, List<Get8ItemsItem> expand, com.azure.core.util.Context context)
      Get entities from applications.
      Parameters:
      consistencyLevel - Indicates the requested consistency level.
      top - Show only the first n items.
      skip - Skip the first n items.
      search - Search items by search phrases.
      filter - Filter items by property values.
      count - Include count of items.
      orderby - Order items by property values.
      select - Select properties to be returned.
      expand - Expand related entities.
      context - The context to associate with this operation.
      Returns:
      entities from applications as paginated response with PagedIterable.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • createApplicationWithResponseAsync

      Mono<com.azure.core.http.rest.Response<MicrosoftGraphApplicationInner>> createApplicationWithResponseAsync(MicrosoftGraphApplicationInner body)
      Add new entity to applications.
      Parameters:
      body - New entity.
      Returns:
      application along with Response on successful completion of Mono.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • createApplicationAsync

      Add new entity to applications.
      Parameters:
      body - New entity.
      Returns:
      application on successful completion of Mono.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • createApplicationWithResponse

      com.azure.core.http.rest.Response<MicrosoftGraphApplicationInner> createApplicationWithResponse(MicrosoftGraphApplicationInner body, com.azure.core.util.Context context)
      Add new entity to applications.
      Parameters:
      body - New entity.
      context - The context to associate with this operation.
      Returns:
      application along with Response.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • createApplication

      Add new entity to applications.
      Parameters:
      body - New entity.
      Returns:
      application.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • getApplicationWithResponseAsync

      Mono<com.azure.core.http.rest.Response<MicrosoftGraphApplicationInner>> getApplicationWithResponseAsync(String applicationId, String consistencyLevel, List<Get2ItemsItem> select, List<Get3ItemsItem> expand)
      Get entity from applications by key.
      Parameters:
      applicationId - key: id of application.
      consistencyLevel - Indicates the requested consistency level.
      select - Select properties to be returned.
      expand - Expand related entities.
      Returns:
      entity from applications by key along with Response on successful completion of Mono.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • getApplicationAsync

      Mono<MicrosoftGraphApplicationInner> getApplicationAsync(String applicationId)
      Get entity from applications by key.
      Parameters:
      applicationId - key: id of application.
      Returns:
      entity from applications by key on successful completion of Mono.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • getApplicationWithResponse

      com.azure.core.http.rest.Response<MicrosoftGraphApplicationInner> getApplicationWithResponse(String applicationId, String consistencyLevel, List<Get2ItemsItem> select, List<Get3ItemsItem> expand, com.azure.core.util.Context context)
      Get entity from applications by key.
      Parameters:
      applicationId - key: id of application.
      consistencyLevel - Indicates the requested consistency level.
      select - Select properties to be returned.
      expand - Expand related entities.
      context - The context to associate with this operation.
      Returns:
      entity from applications by key along with Response.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • getApplication

      MicrosoftGraphApplicationInner getApplication(String applicationId)
      Get entity from applications by key.
      Parameters:
      applicationId - key: id of application.
      Returns:
      entity from applications by key.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • updateApplicationWithResponseAsync

      Mono<com.azure.core.http.rest.Response<Void>> updateApplicationWithResponseAsync(String applicationId, MicrosoftGraphApplicationInner body)
      Update entity in applications.
      Parameters:
      applicationId - key: id of application.
      body - New property values.
      Returns:
      the Response on successful completion of Mono.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • updateApplicationAsync

      Mono<Void> updateApplicationAsync(String applicationId, MicrosoftGraphApplicationInner body)
      Update entity in applications.
      Parameters:
      applicationId - key: id of application.
      body - New property values.
      Returns:
      A Mono that completes when a successful response is received.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • updateApplicationWithResponse

      com.azure.core.http.rest.Response<Void> updateApplicationWithResponse(String applicationId, MicrosoftGraphApplicationInner body, com.azure.core.util.Context context)
      Update entity in applications.
      Parameters:
      applicationId - key: id of application.
      body - New property values.
      context - The context to associate with this operation.
      Returns:
      the Response.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • updateApplication

      void updateApplication(String applicationId, MicrosoftGraphApplicationInner body)
      Update entity in applications.
      Parameters:
      applicationId - key: id of application.
      body - New property values.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • deleteApplicationWithResponseAsync

      Mono<com.azure.core.http.rest.Response<Void>> deleteApplicationWithResponseAsync(String applicationId, String ifMatch)
      Delete entity from applications.
      Parameters:
      applicationId - key: id of application.
      ifMatch - ETag.
      Returns:
      the Response on successful completion of Mono.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • deleteApplicationAsync

      Mono<Void> deleteApplicationAsync(String applicationId)
      Delete entity from applications.
      Parameters:
      applicationId - key: id of application.
      Returns:
      A Mono that completes when a successful response is received.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • deleteApplicationWithResponse

      com.azure.core.http.rest.Response<Void> deleteApplicationWithResponse(String applicationId, String ifMatch, com.azure.core.util.Context context)
      Delete entity from applications.
      Parameters:
      applicationId - key: id of application.
      ifMatch - ETag.
      context - The context to associate with this operation.
      Returns:
      the Response.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • deleteApplication

      void deleteApplication(String applicationId)
      Delete entity from applications.
      Parameters:
      applicationId - key: id of application.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • getLogoWithResponseAsync

      Mono<com.azure.core.http.rest.Response<com.azure.core.util.BinaryData>> getLogoWithResponseAsync(String applicationId)
      Get media content for application from applications.
      Parameters:
      applicationId - key: id of application.
      Returns:
      media content for application from applications along with Response on successful completion of Mono.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • getLogoAsync

      Mono<com.azure.core.util.BinaryData> getLogoAsync(String applicationId)
      Get media content for application from applications.
      Parameters:
      applicationId - key: id of application.
      Returns:
      media content for application from applications on successful completion of Mono.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • getLogoWithResponse

      com.azure.core.http.rest.Response<com.azure.core.util.BinaryData> getLogoWithResponse(String applicationId, com.azure.core.util.Context context)
      Get media content for application from applications.
      Parameters:
      applicationId - key: id of application.
      context - The context to associate with this operation.
      Returns:
      media content for application from applications along with Response.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • getLogo

      com.azure.core.util.BinaryData getLogo(String applicationId)
      Get media content for application from applications.
      Parameters:
      applicationId - key: id of application.
      Returns:
      media content for application from applications.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • setLogoWithResponseAsync

      Mono<com.azure.core.http.rest.Response<Void>> setLogoWithResponseAsync(String applicationId, Flux<ByteBuffer> data, long contentLength)
      Update media content for application in applications.
      Parameters:
      applicationId - key: id of application.
      data - New media content.
      contentLength - The Content-Length header for the request.
      Returns:
      the Response on successful completion of Mono.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • setLogoAsync

      Mono<Void> setLogoAsync(String applicationId, Flux<ByteBuffer> data, long contentLength)
      Update media content for application in applications.
      Parameters:
      applicationId - key: id of application.
      data - New media content.
      contentLength - The Content-Length header for the request.
      Returns:
      A Mono that completes when a successful response is received.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • setLogoWithResponse

      com.azure.core.http.rest.Response<Void> setLogoWithResponse(String applicationId, Flux<ByteBuffer> data, long contentLength, com.azure.core.util.Context context)
      Update media content for application in applications.
      Parameters:
      applicationId - key: id of application.
      data - New media content.
      contentLength - The Content-Length header for the request.
      context - The context to associate with this operation.
      Returns:
      the Response.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • setLogo

      void setLogo(String applicationId, Flux<ByteBuffer> data, long contentLength)
      Update media content for application in applications.
      Parameters:
      applicationId - key: id of application.
      data - New media content.
      contentLength - The Content-Length header for the request.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • setLogoWithResponseAsync

      Mono<com.azure.core.http.rest.Response<Void>> setLogoWithResponseAsync(String applicationId, com.azure.core.util.BinaryData data, long contentLength)
      Update media content for application in applications.
      Parameters:
      applicationId - key: id of application.
      data - New media content.
      contentLength - The Content-Length header for the request.
      Returns:
      the Response on successful completion of Mono.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • setLogoAsync

      Mono<Void> setLogoAsync(String applicationId, com.azure.core.util.BinaryData data, long contentLength)
      Update media content for application in applications.
      Parameters:
      applicationId - key: id of application.
      data - New media content.
      contentLength - The Content-Length header for the request.
      Returns:
      A Mono that completes when a successful response is received.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • setLogoWithResponse

      com.azure.core.http.rest.Response<Void> setLogoWithResponse(String applicationId, com.azure.core.util.BinaryData data, long contentLength, com.azure.core.util.Context context)
      Update media content for application in applications.
      Parameters:
      applicationId - key: id of application.
      data - New media content.
      contentLength - The Content-Length header for the request.
      context - The context to associate with this operation.
      Returns:
      the Response.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.
    • setLogo

      void setLogo(String applicationId, com.azure.core.util.BinaryData data, long contentLength)
      Update media content for application in applications.
      Parameters:
      applicationId - key: id of application.
      data - New media content.
      contentLength - The Content-Length header for the request.
      Throws:
      IllegalArgumentException - thrown if parameters fail the validation.
      OdataErrorMainException - thrown if the request is rejected by server.
      RuntimeException - all other wrapped checked exceptions if the request fails to be sent.