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 Software Sources in Oracle Cloud Infrastructure Os Management Hub service. * * Returns a list of software sources that can be attached to the specified managed instance. Any software sources already attached to the instance are not included in the list. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceAvailableSoftwareSources = oci.osmanagementhub.getManagedInstanceAvailableSoftwareSources({ * managedInstanceId: testManagedInstance.id, * compartmentId: compartmentId, * displayNames: managedInstanceAvailableSoftwareSourceDisplayName, * displayNameContains: managedInstanceAvailableSoftwareSourceDisplayNameContains, * }); * ``` */ export declare function getManagedInstanceAvailableSoftwareSources(args: GetManagedInstanceAvailableSoftwareSourcesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedInstanceAvailableSoftwareSources. */ export interface GetManagedInstanceAvailableSoftwareSourcesArgs { /** * 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.GetManagedInstanceAvailableSoftwareSourcesFilter[]; /** * 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 getManagedInstanceAvailableSoftwareSources. */ export interface GetManagedInstanceAvailableSoftwareSourcesResult { /** * The list of available_software_source_collection. */ readonly availableSoftwareSourceCollections: outputs.OsManagementHub.GetManagedInstanceAvailableSoftwareSourcesAvailableSoftwareSourceCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the software source. */ readonly compartmentId?: string; readonly displayNameContains?: string; /** * User-friendly name for the software source. */ readonly displayNames?: string[]; readonly filters?: outputs.OsManagementHub.GetManagedInstanceAvailableSoftwareSourcesFilter[]; /** * 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 Software Sources in Oracle Cloud Infrastructure Os Management Hub service. * * Returns a list of software sources that can be attached to the specified managed instance. Any software sources already attached to the instance are not included in the list. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceAvailableSoftwareSources = oci.osmanagementhub.getManagedInstanceAvailableSoftwareSources({ * managedInstanceId: testManagedInstance.id, * compartmentId: compartmentId, * displayNames: managedInstanceAvailableSoftwareSourceDisplayName, * displayNameContains: managedInstanceAvailableSoftwareSourceDisplayNameContains, * }); * ``` */ export declare function getManagedInstanceAvailableSoftwareSourcesOutput(args: GetManagedInstanceAvailableSoftwareSourcesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedInstanceAvailableSoftwareSources. */ export interface GetManagedInstanceAvailableSoftwareSourcesOutputArgs { /** * 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=getManagedInstanceAvailableSoftwareSources.d.ts.map