@microsoft/msgraph-beta-sdk-devicemanagement
Version:
DeviceManagement fluent API for Microsoft Graph
85 lines • 5.42 kB
TypeScript
import { type BaseCollectionPaginationCountResponse, type CertificateConnectorHealthMetricValue, type TimeSeriesParameter } 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 {GetHealthMetricTimeSeriesPostRequestBody}
*/
export declare function createGetHealthMetricTimeSeriesPostRequestBodyFromDiscriminatorValue(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 {GetHealthMetricTimeSeriesPostResponse}
*/
export declare function createGetHealthMetricTimeSeriesPostResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
/**
* The deserialization information for the current model
* @param GetHealthMetricTimeSeriesPostRequestBody The instance to deserialize into.
* @returns {Record<string, (node: ParseNode) => void>}
*/
export declare function deserializeIntoGetHealthMetricTimeSeriesPostRequestBody(getHealthMetricTimeSeriesPostRequestBody?: Partial<GetHealthMetricTimeSeriesPostRequestBody> | undefined): Record<string, (node: ParseNode) => void>;
/**
* The deserialization information for the current model
* @param GetHealthMetricTimeSeriesPostResponse The instance to deserialize into.
* @returns {Record<string, (node: ParseNode) => void>}
*/
export declare function deserializeIntoGetHealthMetricTimeSeriesPostResponse(getHealthMetricTimeSeriesPostResponse?: Partial<GetHealthMetricTimeSeriesPostResponse> | undefined): Record<string, (node: ParseNode) => void>;
export interface GetHealthMetricTimeSeriesPostRequestBody extends AdditionalDataHolder, BackedModel, Parsable {
/**
* Stores model information.
*/
backingStoreEnabled?: boolean | null;
/**
* The timeSeries property
*/
timeSeries?: TimeSeriesParameter | null;
}
export interface GetHealthMetricTimeSeriesPostResponse extends BaseCollectionPaginationCountResponse, Parsable {
/**
* The value property
*/
value?: CertificateConnectorHealthMetricValue[] | null;
}
/**
* Provides operations to call the getHealthMetricTimeSeries method.
*/
export interface GetHealthMetricTimeSeriesRequestBuilder extends BaseRequestBuilder<GetHealthMetricTimeSeriesRequestBuilder> {
/**
* Invoke action getHealthMetricTimeSeries
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<GetHealthMetricTimeSeriesPostResponse>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
post(body: GetHealthMetricTimeSeriesPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<GetHealthMetricTimeSeriesPostResponse | undefined>;
/**
* Invoke action getHealthMetricTimeSeries
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toPostRequestInformation(body: GetHealthMetricTimeSeriesPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
* Serializes information the current object
* @param GetHealthMetricTimeSeriesPostRequestBody 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 serializeGetHealthMetricTimeSeriesPostRequestBody(writer: SerializationWriter, getHealthMetricTimeSeriesPostRequestBody?: Partial<GetHealthMetricTimeSeriesPostRequestBody> | undefined | null, isSerializingDerivedType?: boolean): void;
/**
* Serializes information the current object
* @param GetHealthMetricTimeSeriesPostResponse 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 serializeGetHealthMetricTimeSeriesPostResponse(writer: SerializationWriter, getHealthMetricTimeSeriesPostResponse?: Partial<GetHealthMetricTimeSeriesPostResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
/**
* Uri template for the request builder.
*/
export declare const GetHealthMetricTimeSeriesRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/certificateConnectorDetails/{certificateConnectorDetails%2Did}/getHealthMetricTimeSeries";
/**
* Metadata for all the requests in the request builder.
*/
export declare const GetHealthMetricTimeSeriesRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map