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 Packages in Oracle Cloud Infrastructure Os Management Hub service. * * Lists the packages that are installed on the managed instance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceInstalledPackages = oci.osmanagementhub.getManagedInstanceInstalledPackages({ * managedInstanceId: testManagedInstance.id, * compartmentId: compartmentId, * displayNames: managedInstanceInstalledPackageDisplayName, * displayNameContains: managedInstanceInstalledPackageDisplayNameContains, * timeInstallDateEnd: managedInstanceInstalledPackageTimeInstallDateEnd, * timeInstallDateStart: managedInstanceInstalledPackageTimeInstallDateStart, * }); * ``` */ export declare function getManagedInstanceInstalledPackages(args: GetManagedInstanceInstalledPackagesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedInstanceInstalledPackages. */ export interface GetManagedInstanceInstalledPackagesArgs { /** * 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.GetManagedInstanceInstalledPackagesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. */ managedInstanceId: string; /** * A filter to return only packages that were installed on or before the date provided, in ISO 8601 format. Example: 2017-07-14T02:40:00.000Z */ timeInstallDateEnd?: string; /** * The install date after which to list all packages, in ISO 8601 format Example: 2017-07-14T02:40:00.000Z */ timeInstallDateStart?: string; } /** * A collection of values returned by getManagedInstanceInstalledPackages. */ export interface GetManagedInstanceInstalledPackagesResult { readonly compartmentId?: string; readonly displayNameContains?: string; /** * Software source name. */ readonly displayNames?: string[]; readonly filters?: outputs.OsManagementHub.GetManagedInstanceInstalledPackagesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of installed_package_collection. */ readonly installedPackageCollections: outputs.OsManagementHub.GetManagedInstanceInstalledPackagesInstalledPackageCollection[]; readonly managedInstanceId: string; readonly timeInstallDateEnd?: string; readonly timeInstallDateStart?: string; } /** * This data source provides the list of Managed Instance Installed Packages in Oracle Cloud Infrastructure Os Management Hub service. * * Lists the packages that are installed on the managed instance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceInstalledPackages = oci.osmanagementhub.getManagedInstanceInstalledPackages({ * managedInstanceId: testManagedInstance.id, * compartmentId: compartmentId, * displayNames: managedInstanceInstalledPackageDisplayName, * displayNameContains: managedInstanceInstalledPackageDisplayNameContains, * timeInstallDateEnd: managedInstanceInstalledPackageTimeInstallDateEnd, * timeInstallDateStart: managedInstanceInstalledPackageTimeInstallDateStart, * }); * ``` */ export declare function getManagedInstanceInstalledPackagesOutput(args: GetManagedInstanceInstalledPackagesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedInstanceInstalledPackages. */ export interface GetManagedInstanceInstalledPackagesOutputArgs { /** * 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; /** * A filter to return only packages that were installed on or before the date provided, in ISO 8601 format. Example: 2017-07-14T02:40:00.000Z */ timeInstallDateEnd?: pulumi.Input; /** * The install date after which to list all packages, in ISO 8601 format Example: 2017-07-14T02:40:00.000Z */ timeInstallDateStart?: pulumi.Input; } //# sourceMappingURL=getManagedInstanceInstalledPackages.d.ts.map