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 Available Windows Updates in Oracle Cloud Infrastructure Os Management Hub service. * * Returns a list of Windows updates that can be installed on the specified managed instance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceAvailableWindowsUpdates = oci.osmanagementhub.getManagedInstanceAvailableWindowsUpdates({ * managedInstanceId: testManagedInstance.id, * classificationTypes: managedInstanceAvailableWindowsUpdateClassificationType, * compartmentId: compartmentId, * displayName: managedInstanceAvailableWindowsUpdateDisplayName, * displayNameContains: managedInstanceAvailableWindowsUpdateDisplayNameContains, * isInstallable: managedInstanceAvailableWindowsUpdateIsInstallable, * names: managedInstanceAvailableWindowsUpdateName, * }); * ``` */ export declare function getManagedInstanceAvailableWindowsUpdates(args: GetManagedInstanceAvailableWindowsUpdatesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedInstanceAvailableWindowsUpdates. */ export interface GetManagedInstanceAvailableWindowsUpdatesArgs { /** * A filter to return only packages that match the given update classification type. */ classificationTypes?: string[]; /** * 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.GetManagedInstanceAvailableWindowsUpdatesFilter[]; /** * Indicates if the update can be installed by the OS Management Hub service. */ isInstallable?: string; /** * 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 getManagedInstanceAvailableWindowsUpdates. */ export interface GetManagedInstanceAvailableWindowsUpdatesResult { /** * The list of available_windows_update_collection. */ readonly availableWindowsUpdateCollections: outputs.OsManagementHub.GetManagedInstanceAvailableWindowsUpdatesAvailableWindowsUpdateCollection[]; readonly classificationTypes?: string[]; readonly compartmentId?: string; readonly displayName?: string; readonly displayNameContains?: string; readonly filters?: outputs.OsManagementHub.GetManagedInstanceAvailableWindowsUpdatesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly isInstallable?: string; readonly managedInstanceId: string; /** * Name of the Windows update. */ readonly names?: string[]; } /** * This data source provides the list of Managed Instance Available Windows Updates in Oracle Cloud Infrastructure Os Management Hub service. * * Returns a list of Windows updates that can be installed on the specified managed instance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceAvailableWindowsUpdates = oci.osmanagementhub.getManagedInstanceAvailableWindowsUpdates({ * managedInstanceId: testManagedInstance.id, * classificationTypes: managedInstanceAvailableWindowsUpdateClassificationType, * compartmentId: compartmentId, * displayName: managedInstanceAvailableWindowsUpdateDisplayName, * displayNameContains: managedInstanceAvailableWindowsUpdateDisplayNameContains, * isInstallable: managedInstanceAvailableWindowsUpdateIsInstallable, * names: managedInstanceAvailableWindowsUpdateName, * }); * ``` */ export declare function getManagedInstanceAvailableWindowsUpdatesOutput(args: GetManagedInstanceAvailableWindowsUpdatesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedInstanceAvailableWindowsUpdates. */ export interface GetManagedInstanceAvailableWindowsUpdatesOutputArgs { /** * A filter to return only packages that match the given update classification type. */ classificationTypes?: pulumi.Input[] | undefined>; /** * 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>; /** * Indicates if the update can be installed by the OS Management Hub service. */ isInstallable?: pulumi.Input; /** * 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=getManagedInstanceAvailableWindowsUpdates.d.ts.map