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 Managed Instance Installed Windows Updates in Oracle Cloud Infrastructure Os Management Hub service. * * Returns a list of Windows updates that have been installed on the specified managed instance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceInstalledWindowsUpdates = oci.osmanagementhub.getManagedInstanceInstalledWindowsUpdates({ * managedInstanceId: testManagedInstance.id, * compartmentId: compartmentId, * displayName: managedInstanceInstalledWindowsUpdateDisplayName, * displayNameContains: managedInstanceInstalledWindowsUpdateDisplayNameContains, * names: managedInstanceInstalledWindowsUpdateName, * }); * ``` */ export declare function getManagedInstanceInstalledWindowsUpdates(args: GetManagedInstanceInstalledWindowsUpdatesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedInstanceInstalledWindowsUpdates. */ export interface GetManagedInstanceInstalledWindowsUpdatesArgs { /** * The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment. */ compartmentId?: string; /** * A filter to return resources that match the given user-friendly name. */ displayName?: string; /** * A filter to return resources that may partially match the given display name. */ displayNameContains?: string; filters?: inputs.OsManagementHub.GetManagedInstanceInstalledWindowsUpdatesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. */ managedInstanceId: string; /** * 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 getManagedInstanceInstalledWindowsUpdates. */ export interface GetManagedInstanceInstalledWindowsUpdatesResult { readonly compartmentId?: string; readonly displayName?: string; readonly displayNameContains?: string; readonly filters?: outputs.OsManagementHub.GetManagedInstanceInstalledWindowsUpdatesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of installed_windows_update_collection. */ readonly installedWindowsUpdateCollections: outputs.OsManagementHub.GetManagedInstanceInstalledWindowsUpdatesInstalledWindowsUpdateCollection[]; readonly managedInstanceId: string; /** * Name of the Windows update. */ readonly names?: string[]; } /** * This data source provides the list of Managed Instance Installed Windows Updates in Oracle Cloud Infrastructure Os Management Hub service. * * Returns a list of Windows updates that have been installed on the specified managed instance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceInstalledWindowsUpdates = oci.osmanagementhub.getManagedInstanceInstalledWindowsUpdates({ * managedInstanceId: testManagedInstance.id, * compartmentId: compartmentId, * displayName: managedInstanceInstalledWindowsUpdateDisplayName, * displayNameContains: managedInstanceInstalledWindowsUpdateDisplayNameContains, * names: managedInstanceInstalledWindowsUpdateName, * }); * ``` */ export declare function getManagedInstanceInstalledWindowsUpdatesOutput(args: GetManagedInstanceInstalledWindowsUpdatesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedInstanceInstalledWindowsUpdates. */ export interface GetManagedInstanceInstalledWindowsUpdatesOutputArgs { /** * The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment. */ compartmentId?: pulumi.Input; /** * A filter to return resources that match the given user-friendly name. */ displayName?: pulumi.Input; /** * A filter to return resources that may partially match the given display name. */ displayNameContains?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. */ managedInstanceId: pulumi.Input; /** * 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=getManagedInstanceInstalledWindowsUpdates.d.ts.map