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 Software Source Available Software Packages in Oracle Cloud Infrastructure Os Management Hub service. * * Lists software packages that are available to be added to a custom software source of type MANIFEST. Filter the list against a variety of criteria * including but not limited to its name. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSoftwareSourceAvailableSoftwarePackages = oci.osmanagementhub.getSoftwareSourceAvailableSoftwarePackages({ * softwareSourceId: testSoftwareSource.id, * displayName: softwareSourceAvailableSoftwarePackageDisplayName, * displayNameContains: softwareSourceAvailableSoftwarePackageDisplayNameContains, * isLatest: softwareSourceAvailableSoftwarePackageIsLatest === "true", * }); * ``` */ export declare function getSoftwareSourceAvailableSoftwarePackages(args: GetSoftwareSourceAvailableSoftwarePackagesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSoftwareSourceAvailableSoftwarePackages. */ export interface GetSoftwareSourceAvailableSoftwarePackagesArgs { /** * 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.GetSoftwareSourceAvailableSoftwarePackagesFilter[]; /** * Indicates whether to list only the latest versions of packages, module streams, and stream profiles. */ isLatest?: boolean; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source. */ softwareSourceId: string; } /** * A collection of values returned by getSoftwareSourceAvailableSoftwarePackages. */ export interface GetSoftwareSourceAvailableSoftwarePackagesResult { /** * Software source name. */ readonly displayName?: string; readonly displayNameContains?: string; readonly filters?: outputs.OsManagementHub.GetSoftwareSourceAvailableSoftwarePackagesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Indicates whether this package is the latest version. */ readonly isLatest?: boolean; /** * The list of software_package_collection. */ readonly softwarePackageCollections: outputs.OsManagementHub.GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollection[]; readonly softwareSourceId: string; } /** * This data source provides the list of Software Source Available Software Packages in Oracle Cloud Infrastructure Os Management Hub service. * * Lists software packages that are available to be added to a custom software source of type MANIFEST. Filter the list against a variety of criteria * including but not limited to its name. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSoftwareSourceAvailableSoftwarePackages = oci.osmanagementhub.getSoftwareSourceAvailableSoftwarePackages({ * softwareSourceId: testSoftwareSource.id, * displayName: softwareSourceAvailableSoftwarePackageDisplayName, * displayNameContains: softwareSourceAvailableSoftwarePackageDisplayNameContains, * isLatest: softwareSourceAvailableSoftwarePackageIsLatest === "true", * }); * ``` */ export declare function getSoftwareSourceAvailableSoftwarePackagesOutput(args: GetSoftwareSourceAvailableSoftwarePackagesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSoftwareSourceAvailableSoftwarePackages. */ export interface GetSoftwareSourceAvailableSoftwarePackagesOutputArgs { /** * 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 whether to list only the latest versions of packages, module streams, and stream profiles. */ isLatest?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source. */ softwareSourceId: pulumi.Input; } //# sourceMappingURL=getSoftwareSourceAvailableSoftwarePackages.d.ts.map