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 Modules in Oracle Cloud Infrastructure Os Management Hub service. * * List modules that are available for installation on the specified managed instance group. Filter the list against a variety of criteria including but not limited to module name. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceGroupAvailableModules = oci.osmanagementhub.getManagedInstanceGroupAvailableModules({ * managedInstanceGroupId: testManagedInstanceGroup.id, * compartmentId: compartmentId, * name: managedInstanceGroupAvailableModuleName, * nameContains: managedInstanceGroupAvailableModuleNameContains, * }); * ``` */ export declare function getManagedInstanceGroupAvailableModules(args: GetManagedInstanceGroupAvailableModulesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedInstanceGroupAvailableModules. */ export interface GetManagedInstanceGroupAvailableModulesArgs { /** * The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment. */ compartmentId?: string; filters?: inputs.OsManagementHub.GetManagedInstanceGroupAvailableModulesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance group. */ managedInstanceGroupId: string; /** * The resource name. */ name?: string; /** * A filter to return resources that may partially match the name given. */ nameContains?: string; } /** * A collection of values returned by getManagedInstanceGroupAvailableModules. */ export interface GetManagedInstanceGroupAvailableModulesResult { readonly compartmentId?: string; readonly filters?: outputs.OsManagementHub.GetManagedInstanceGroupAvailableModulesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of managed_instance_group_available_module_collection. */ readonly managedInstanceGroupAvailableModuleCollections: outputs.OsManagementHub.GetManagedInstanceGroupAvailableModulesManagedInstanceGroupAvailableModuleCollection[]; readonly managedInstanceGroupId: string; /** * The name of the module that is available to the managed instance group. */ readonly name?: string; readonly nameContains?: string; } /** * This data source provides the list of Managed Instance Group Available Modules in Oracle Cloud Infrastructure Os Management Hub service. * * List modules that are available for installation on the specified managed instance group. Filter the list against a variety of criteria including but not limited to module name. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceGroupAvailableModules = oci.osmanagementhub.getManagedInstanceGroupAvailableModules({ * managedInstanceGroupId: testManagedInstanceGroup.id, * compartmentId: compartmentId, * name: managedInstanceGroupAvailableModuleName, * nameContains: managedInstanceGroupAvailableModuleNameContains, * }); * ``` */ export declare function getManagedInstanceGroupAvailableModulesOutput(args: GetManagedInstanceGroupAvailableModulesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedInstanceGroupAvailableModules. */ export interface GetManagedInstanceGroupAvailableModulesOutputArgs { /** * The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment. */ compartmentId?: pulumi.Input; 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; /** * The resource name. */ name?: pulumi.Input; /** * A filter to return resources that may partially match the name given. */ nameContains?: pulumi.Input; } //# sourceMappingURL=getManagedInstanceGroupAvailableModules.d.ts.map