
com.microsoft.graph.requests.extensions.IManagedDeviceOverviewReferenceRequest Maven / Gradle / Ivy
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
package com.microsoft.graph.requests.extensions;
import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.concurrency.ICallback;
import com.microsoft.graph.models.extensions.ManagedDeviceOverview;
import java.util.Arrays;
import java.util.EnumSet;
import com.microsoft.graph.models.extensions.ManagedDeviceOverview;
import com.microsoft.graph.http.IHttpRequest;
import com.microsoft.graph.serializer.IJsonBackedObject;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The interface for the Managed Device Overview Reference Request.
*/
public interface IManagedDeviceOverviewReferenceRequest extends IHttpRequest {
void delete(final ICallback callback);
ManagedDeviceOverview delete() throws ClientException;
/**
* Sets the select clause for the request
*
* @param value the select clause
* @return the updated request
*/
IManagedDeviceOverviewReferenceRequest select(final String value);
/**
* Sets the expand clause for the request
*
* @param value the expand clause
* @return the updated request
*/
IManagedDeviceOverviewReferenceRequest expand(final String value);
/**
* Puts the ManagedDeviceOverview
*
* @param srcManagedDeviceOverview the ManagedDeviceOverview to PUT
* @param callback the callback to be called after success or failure
*/
void put(ManagedDeviceOverview srcManagedDeviceOverview, final ICallback callback);
/**
* Puts the ManagedDeviceOverview
*
* @param srcManagedDeviceOverview the ManagedDeviceOverview to PUT
* @return the ManagedDeviceOverview
* @throws ClientException an exception occurs if there was an error while the request was sent
*/
ManagedDeviceOverview put(ManagedDeviceOverview srcManagedDeviceOverview) throws ClientException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy