UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
85 lines 5.03 kB
import { type BaseCollectionPaginationCountResponse, type KeyLongValuePair } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type AdditionalDataHolder, type BackedModel, type BaseRequestBuilder, type Parsable, type ParseNode, type RequestConfiguration, type RequestInformation, type RequestsMetadata, type SerializationWriter } from '@microsoft/kiota-abstractions'; /** * Creates a new instance of the appropriate class based on discriminator value * @param parseNode The parse node to use to read the discriminator value and create the object * @returns {GetHealthMetricsPostRequestBody} */ export declare function createGetHealthMetricsPostRequestBodyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>); /** * Creates a new instance of the appropriate class based on discriminator value * @param parseNode The parse node to use to read the discriminator value and create the object * @returns {GetHealthMetricsPostResponse} */ export declare function createGetHealthMetricsPostResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>); /** * The deserialization information for the current model * @param GetHealthMetricsPostRequestBody The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ export declare function deserializeIntoGetHealthMetricsPostRequestBody(getHealthMetricsPostRequestBody?: Partial<GetHealthMetricsPostRequestBody> | undefined): Record<string, (node: ParseNode) => void>; /** * The deserialization information for the current model * @param GetHealthMetricsPostResponse The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ export declare function deserializeIntoGetHealthMetricsPostResponse(getHealthMetricsPostResponse?: Partial<GetHealthMetricsPostResponse> | undefined): Record<string, (node: ParseNode) => void>; export interface GetHealthMetricsPostRequestBody extends AdditionalDataHolder, BackedModel, Parsable { /** * Stores model information. */ backingStoreEnabled?: boolean | null; /** * The metricNames property */ metricNames?: string[] | null; } export interface GetHealthMetricsPostResponse extends BaseCollectionPaginationCountResponse, Parsable { /** * The value property */ value?: KeyLongValuePair[] | null; } /** * Provides operations to call the getHealthMetrics method. */ export interface GetHealthMetricsRequestBuilder extends BaseRequestBuilder<GetHealthMetricsRequestBuilder> { /** * Invoke action getHealthMetrics * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<GetHealthMetricsPostResponse>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ post(body: GetHealthMetricsPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<GetHealthMetricsPostResponse | undefined>; /** * Invoke action getHealthMetrics * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(body: GetHealthMetricsPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Serializes information the current object * @param GetHealthMetricsPostRequestBody The instance to serialize from. * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param writer Serialization writer to use to serialize this model */ export declare function serializeGetHealthMetricsPostRequestBody(writer: SerializationWriter, getHealthMetricsPostRequestBody?: Partial<GetHealthMetricsPostRequestBody> | undefined | null, isSerializingDerivedType?: boolean): void; /** * Serializes information the current object * @param GetHealthMetricsPostResponse The instance to serialize from. * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param writer Serialization writer to use to serialize this model */ export declare function serializeGetHealthMetricsPostResponse(writer: SerializationWriter, getHealthMetricsPostResponse?: Partial<GetHealthMetricsPostResponse> | undefined | null, isSerializingDerivedType?: boolean): void; /** * Uri template for the request builder. */ export declare const GetHealthMetricsRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/certificateConnectorDetails/{certificateConnectorDetails%2Did}/getHealthMetrics"; /** * Metadata for all the requests in the request builder. */ export declare const GetHealthMetricsRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map