@microsoft/msgraph-beta-sdk-devicemanagement
Version:
DeviceManagement fluent API for Microsoft Graph
42 lines • 1.94 kB
TypeScript
import { type ManagedDeviceOverview } from '@microsoft/msgraph-beta-sdk/models/index.js';
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Provides operations to manage the managedDeviceOverview property of the microsoft.graph.deviceManagement entity.
*/
export interface ManagedDeviceOverviewRequestBuilder extends BaseRequestBuilder<ManagedDeviceOverviewRequestBuilder> {
/**
* Device overview
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<ManagedDeviceOverview>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
get(requestConfiguration?: RequestConfiguration<ManagedDeviceOverviewRequestBuilderGetQueryParameters> | undefined): Promise<ManagedDeviceOverview | undefined>;
/**
* Device overview
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ManagedDeviceOverviewRequestBuilderGetQueryParameters> | undefined): RequestInformation;
}
/**
* Device overview
*/
export interface ManagedDeviceOverviewRequestBuilderGetQueryParameters {
/**
* Expand related entities
*/
expand?: string[];
/**
* Select properties to be returned
*/
select?: string[];
}
/**
* Uri template for the request builder.
*/
export declare const ManagedDeviceOverviewRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/managedDeviceOverview{?%24expand,%24select}";
/**
* Metadata for all the requests in the request builder.
*/
export declare const ManagedDeviceOverviewRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map