@microsoft/msgraph-beta-sdk-directory
Version:
Directory fluent API for Microsoft Graph
42 lines • 2.04 kB
TypeScript
import { type Application } from '@microsoft/msgraph-beta-sdk/models/index.js';
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Casts the previous resource to application.
*/
export interface GraphApplicationRequestBuilder extends BaseRequestBuilder<GraphApplicationRequestBuilder> {
/**
* Get the item of type microsoft.graph.directoryObject as microsoft.graph.application
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<Application>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
get(requestConfiguration?: RequestConfiguration<GraphApplicationRequestBuilderGetQueryParameters> | undefined): Promise<Application | undefined>;
/**
* Get the item of type microsoft.graph.directoryObject as microsoft.graph.application
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<GraphApplicationRequestBuilderGetQueryParameters> | undefined): RequestInformation;
}
/**
* Get the item of type microsoft.graph.directoryObject as microsoft.graph.application
*/
export interface GraphApplicationRequestBuilderGetQueryParameters {
/**
* Expand related entities
*/
expand?: string[];
/**
* Select properties to be returned
*/
select?: string[];
}
/**
* Uri template for the request builder.
*/
export declare const GraphApplicationRequestBuilderUriTemplate = "{+baseurl}/directory/deletedItems/{directoryObject%2Did}/graph.application{?%24expand,%24select}";
/**
* Metadata for all the requests in the request builder.
*/
export declare const GraphApplicationRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map