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 Software Sources in Oracle Cloud Infrastructure Os Management Hub service. * * Lists available software sources for a specified managed instance group. Filter the list against a variety of criteria including but not limited to the software source name. The results list only software sources that have not already been added to the group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceGroupAvailableSoftwareSources = oci.osmanagementhub.getManagedInstanceGroupAvailableSoftwareSources({ * managedInstanceGroupId: testManagedInstanceGroup.id, * compartmentId: compartmentId, * displayNames: managedInstanceGroupAvailableSoftwareSourceDisplayName, * displayNameContains: managedInstanceGroupAvailableSoftwareSourceDisplayNameContains, * }); * ``` */ export declare function getManagedInstanceGroupAvailableSoftwareSources(args: GetManagedInstanceGroupAvailableSoftwareSourcesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedInstanceGroupAvailableSoftwareSources. */ export interface GetManagedInstanceGroupAvailableSoftwareSourcesArgs { /** * 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.GetManagedInstanceGroupAvailableSoftwareSourcesFilter[]; /** * 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 getManagedInstanceGroupAvailableSoftwareSources. */ export interface GetManagedInstanceGroupAvailableSoftwareSourcesResult { /** * The list of available_software_source_collection. */ readonly availableSoftwareSourceCollections: outputs.OsManagementHub.GetManagedInstanceGroupAvailableSoftwareSourcesAvailableSoftwareSourceCollection[]; /** * 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.GetManagedInstanceGroupAvailableSoftwareSourcesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly managedInstanceGroupId: string; } /** * This data source provides the list of Managed Instance Group Available Software Sources in Oracle Cloud Infrastructure Os Management Hub service. * * Lists available software sources for a specified managed instance group. Filter the list against a variety of criteria including but not limited to the software source name. The results list only software sources that have not already been added to the group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceGroupAvailableSoftwareSources = oci.osmanagementhub.getManagedInstanceGroupAvailableSoftwareSources({ * managedInstanceGroupId: testManagedInstanceGroup.id, * compartmentId: compartmentId, * displayNames: managedInstanceGroupAvailableSoftwareSourceDisplayName, * displayNameContains: managedInstanceGroupAvailableSoftwareSourceDisplayNameContains, * }); * ``` */ export declare function getManagedInstanceGroupAvailableSoftwareSourcesOutput(args: GetManagedInstanceGroupAvailableSoftwareSourcesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedInstanceGroupAvailableSoftwareSources. */ export interface GetManagedInstanceGroupAvailableSoftwareSourcesOutputArgs { /** * 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 group. */ managedInstanceGroupId: pulumi.Input; } //# sourceMappingURL=getManagedInstanceGroupAvailableSoftwareSources.d.ts.map