import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Windows Updates in Oracle Cloud Infrastructure Os Management Hub service. * * Lists Windows updates that have been reported to the service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWindowsUpdates = oci.osmanagementhub.getWindowsUpdates({ * compartmentId: compartmentId, * classificationTypes: windowsUpdateClassificationType, * displayNameContains: windowsUpdateDisplayNameContains, * names: windowsUpdateName, * }); * ``` */ export declare function getWindowsUpdates(args: GetWindowsUpdatesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getWindowsUpdates. */ export interface GetWindowsUpdatesArgs { /** * A filter to return only packages that match the given update classification type. */ classificationTypes?: string[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. This parameter is required and returns only resources contained within the specified compartment. */ compartmentId: string; /** * A filter to return resources that may partially match the given display name. */ displayNameContains?: string; filters?: inputs.OsManagementHub.GetWindowsUpdatesFilter[]; /** * A filter based on the unique identifier for the Windows update. Note that this is not an OCID, but is a unique identifier assigned by Microsoft. Example: '6981d463-cd91-4a26-b7c4-ea4ded9183ed' */ names?: string[]; } /** * A collection of values returned by getWindowsUpdates. */ export interface GetWindowsUpdatesResult { readonly classificationTypes?: string[]; readonly compartmentId: string; readonly displayNameContains?: string; readonly filters?: outputs.OsManagementHub.GetWindowsUpdatesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Name of the Windows update. */ readonly names?: string[]; /** * The list of windows_update_collection. */ readonly windowsUpdateCollections: outputs.OsManagementHub.GetWindowsUpdatesWindowsUpdateCollection[]; } /** * This data source provides the list of Windows Updates in Oracle Cloud Infrastructure Os Management Hub service. * * Lists Windows updates that have been reported to the service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWindowsUpdates = oci.osmanagementhub.getWindowsUpdates({ * compartmentId: compartmentId, * classificationTypes: windowsUpdateClassificationType, * displayNameContains: windowsUpdateDisplayNameContains, * names: windowsUpdateName, * }); * ``` */ export declare function getWindowsUpdatesOutput(args: GetWindowsUpdatesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getWindowsUpdates. */ export interface GetWindowsUpdatesOutputArgs { /** * A filter to return only packages that match the given update classification type. */ classificationTypes?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. This parameter is required and returns only resources contained within the specified compartment. */ compartmentId: pulumi.Input; /** * A filter to return resources that may partially match the given display name. */ displayNameContains?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter based on the unique identifier for the Windows update. Note that this is not an OCID, but is a unique identifier assigned by Microsoft. Example: '6981d463-cd91-4a26-b7c4-ea4ded9183ed' */ names?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getWindowsUpdates.d.ts.map