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 Software Packages in Oracle Cloud Infrastructure Os Management Hub service. * * Lists software packages in the specified software source. 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 testSoftwareSourceSoftwarePackages = oci.osmanagementhub.getSoftwareSourceSoftwarePackages({ * softwareSourceId: testSoftwareSource.id, * displayName: softwareSourceSoftwarePackageDisplayName, * displayNameContains: softwareSourceSoftwarePackageDisplayNameContains, * isLatest: softwareSourceSoftwarePackageIsLatest === "true", * }); * ``` */ export declare function getSoftwareSourceSoftwarePackages(args: GetSoftwareSourceSoftwarePackagesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSoftwareSourceSoftwarePackages. */ export interface GetSoftwareSourceSoftwarePackagesArgs { /** * 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.GetSoftwareSourceSoftwarePackagesFilter[]; /** * 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 getSoftwareSourceSoftwarePackages. */ export interface GetSoftwareSourceSoftwarePackagesResult { /** * Software source name. */ readonly displayName?: string; readonly displayNameContains?: string; readonly filters?: outputs.OsManagementHub.GetSoftwareSourceSoftwarePackagesFilter[]; /** * 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.GetSoftwareSourceSoftwarePackagesSoftwarePackageCollection[]; readonly softwareSourceId: string; } /** * This data source provides the list of Software Source Software Packages in Oracle Cloud Infrastructure Os Management Hub service. * * Lists software packages in the specified software source. 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 testSoftwareSourceSoftwarePackages = oci.osmanagementhub.getSoftwareSourceSoftwarePackages({ * softwareSourceId: testSoftwareSource.id, * displayName: softwareSourceSoftwarePackageDisplayName, * displayNameContains: softwareSourceSoftwarePackageDisplayNameContains, * isLatest: softwareSourceSoftwarePackageIsLatest === "true", * }); * ``` */ export declare function getSoftwareSourceSoftwarePackagesOutput(args: GetSoftwareSourceSoftwarePackagesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSoftwareSourceSoftwarePackages. */ export interface GetSoftwareSourceSoftwarePackagesOutputArgs { /** * 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=getSoftwareSourceSoftwarePackages.d.ts.map