UNPKG

@microsoft/msgraph-beta-sdk-admin

Version:
64 lines 4.18 kB
import { type UpdatableAsset, UpdateCategory } from '@microsoft/msgraph-beta-sdk/models/windowsUpdates/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 {EnrollAssetsPostRequestBody} */ export declare function createEnrollAssetsPostRequestBodyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>); /** * The deserialization information for the current model * @returns {Record<string, (node: ParseNode) => void>} */ export declare function deserializeIntoEnrollAssetsPostRequestBody(enrollAssetsPostRequestBody?: Partial<EnrollAssetsPostRequestBody> | undefined): Record<string, (node: ParseNode) => void>; export interface EnrollAssetsPostRequestBody extends AdditionalDataHolder, BackedModel, Parsable { /** * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. */ additionalData?: Record<string, unknown>; /** * The assets property */ assets?: UpdatableAsset[] | null; /** * Stores model information. */ backingStoreEnabled?: boolean | null; /** * The updateCategory property */ updateCategory?: UpdateCategory | null; } /** * Provides operations to call the enrollAssets method. */ export interface MicrosoftGraphWindowsUpdatesEnrollAssetsRequestBuilder extends BaseRequestBuilder<MicrosoftGraphWindowsUpdatesEnrollAssetsRequestBuilder> { /** * Enroll updatableAsset resources in update management by Windows Autopatch. You can enroll an azureADDevice resource in update management, but may not enroll an updatableAssetGroup in update management. Enrolling a Microsoft Entra device in update management automatically creates an azureADDevice object if it does not already exist. You can also use the method enrollAssetsById to enroll assets. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ post(body: EnrollAssetsPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>; /** * Enroll updatableAsset resources in update management by Windows Autopatch. You can enroll an azureADDevice resource in update management, but may not enroll an updatableAssetGroup in update management. Enrolling a Microsoft Entra device in update management automatically creates an azureADDevice object if it does not already exist. You can also use the method enrollAssetsById to enroll assets. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(body: EnrollAssetsPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ export declare function serializeEnrollAssetsPostRequestBody(writer: SerializationWriter, enrollAssetsPostRequestBody?: Partial<EnrollAssetsPostRequestBody> | undefined | null): void; /** * Uri template for the request builder. */ export declare const MicrosoftGraphWindowsUpdatesEnrollAssetsRequestBuilderUriTemplate = "{+baseurl}/admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssets"; /** * Metadata for all the requests in the request builder. */ export declare const MicrosoftGraphWindowsUpdatesEnrollAssetsRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map