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 Packages in Oracle Cloud Infrastructure Os Management Hub service. * * Returns a list of packages that are available for installation on a managed instance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceAvailablePackages = oci.osmanagementhub.getManagedInstanceAvailablePackages({ * managedInstanceId: testManagedInstance.id, * compartmentId: compartmentId, * displayNames: managedInstanceAvailablePackageDisplayName, * displayNameContains: managedInstanceAvailablePackageDisplayNameContains, * }); * ``` */ export declare function getManagedInstanceAvailablePackages(args: GetManagedInstanceAvailablePackagesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedInstanceAvailablePackages. */ export interface GetManagedInstanceAvailablePackagesArgs { /** * 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 may partially match the given display name. */ displayNameContains?: string; /** * A filter to return resources that match the given display names. */ displayNames?: string[]; filters?: inputs.OsManagementHub.GetManagedInstanceAvailablePackagesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. */ managedInstanceId: string; } /** * A collection of values returned by getManagedInstanceAvailablePackages. */ export interface GetManagedInstanceAvailablePackagesResult { /** * The list of available_package_collection. */ readonly availablePackageCollections: outputs.OsManagementHub.GetManagedInstanceAvailablePackagesAvailablePackageCollection[]; readonly compartmentId?: string; readonly displayNameContains?: string; /** * Software source name. */ readonly displayNames?: string[]; readonly filters?: outputs.OsManagementHub.GetManagedInstanceAvailablePackagesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly managedInstanceId: string; } /** * This data source provides the list of Managed Instance Available Packages in Oracle Cloud Infrastructure Os Management Hub service. * * Returns a list of packages that are available for installation on a managed instance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceAvailablePackages = oci.osmanagementhub.getManagedInstanceAvailablePackages({ * managedInstanceId: testManagedInstance.id, * compartmentId: compartmentId, * displayNames: managedInstanceAvailablePackageDisplayName, * displayNameContains: managedInstanceAvailablePackageDisplayNameContains, * }); * ``` */ export declare function getManagedInstanceAvailablePackagesOutput(args: GetManagedInstanceAvailablePackagesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedInstanceAvailablePackages. */ export interface GetManagedInstanceAvailablePackagesOutputArgs { /** * 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 may partially match the given display name. */ displayNameContains?: pulumi.Input; /** * A filter to return resources that match the given display names. */ displayNames?: pulumi.Input[] | undefined>; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. */ managedInstanceId: pulumi.Input; } //# sourceMappingURL=getManagedInstanceAvailablePackages.d.ts.map