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 Group Available Packages in Oracle Cloud Infrastructure Os Management Hub service. * * Lists available packages on the specified managed instances group. Filter the list against a variety * of criteria including but not limited to the package name. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceGroupAvailablePackages = oci.osmanagementhub.getManagedInstanceGroupAvailablePackages({ * managedInstanceGroupId: testManagedInstanceGroup.id, * compartmentId: compartmentId, * displayNames: managedInstanceGroupAvailablePackageDisplayName, * displayNameContains: managedInstanceGroupAvailablePackageDisplayNameContains, * isLatest: managedInstanceGroupAvailablePackageIsLatest === "true", * }); * ``` */ export declare function getManagedInstanceGroupAvailablePackages(args: GetManagedInstanceGroupAvailablePackagesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedInstanceGroupAvailablePackages. */ export interface GetManagedInstanceGroupAvailablePackagesArgs { /** * 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.GetManagedInstanceGroupAvailablePackagesFilter[]; /** * 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 managed instance group. */ managedInstanceGroupId: string; } /** * A collection of values returned by getManagedInstanceGroupAvailablePackages. */ export interface GetManagedInstanceGroupAvailablePackagesResult { readonly compartmentId?: string; readonly displayNameContains?: string; /** * Software source name. */ readonly displayNames?: string[]; readonly filters?: outputs.OsManagementHub.GetManagedInstanceGroupAvailablePackagesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Indicates whether this is the latest package version. */ readonly isLatest?: boolean; /** * The list of managed_instance_group_available_package_collection. */ readonly managedInstanceGroupAvailablePackageCollections: outputs.OsManagementHub.GetManagedInstanceGroupAvailablePackagesManagedInstanceGroupAvailablePackageCollection[]; readonly managedInstanceGroupId: string; } /** * This data source provides the list of Managed Instance Group Available Packages in Oracle Cloud Infrastructure Os Management Hub service. * * Lists available packages on the specified managed instances group. Filter the list against a variety * of criteria including but not limited to the package name. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceGroupAvailablePackages = oci.osmanagementhub.getManagedInstanceGroupAvailablePackages({ * managedInstanceGroupId: testManagedInstanceGroup.id, * compartmentId: compartmentId, * displayNames: managedInstanceGroupAvailablePackageDisplayName, * displayNameContains: managedInstanceGroupAvailablePackageDisplayNameContains, * isLatest: managedInstanceGroupAvailablePackageIsLatest === "true", * }); * ``` */ export declare function getManagedInstanceGroupAvailablePackagesOutput(args: GetManagedInstanceGroupAvailablePackagesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedInstanceGroupAvailablePackages. */ export interface GetManagedInstanceGroupAvailablePackagesOutputArgs { /** * 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>; /** * 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 managed instance group. */ managedInstanceGroupId: pulumi.Input; } //# sourceMappingURL=getManagedInstanceGroupAvailablePackages.d.ts.map