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 Modules in Oracle Cloud Infrastructure Os Management Hub service. * * Retrieves a list of modules, along with streams of the modules, from a managed instance. Filters may be applied to select a subset of modules based on the filter criteria. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceModules = oci.osmanagementhub.getManagedInstanceModules({ * managedInstanceId: testManagedInstance.id, * compartmentId: compartmentId, * name: managedInstanceModuleName, * nameContains: managedInstanceModuleNameContains, * }); * ``` */ export declare function getManagedInstanceModules(args: GetManagedInstanceModulesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedInstanceModules. */ export interface GetManagedInstanceModulesArgs { /** * 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.GetManagedInstanceModulesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. */ managedInstanceId: 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 getManagedInstanceModules. */ export interface GetManagedInstanceModulesResult { readonly compartmentId?: string; readonly filters?: outputs.OsManagementHub.GetManagedInstanceModulesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly managedInstanceId: string; /** * The list of managed_instance_module_collection. */ readonly managedInstanceModuleCollections: outputs.OsManagementHub.GetManagedInstanceModulesManagedInstanceModuleCollection[]; /** * The module name. */ readonly name?: string; readonly nameContains?: string; } /** * This data source provides the list of Managed Instance Modules in Oracle Cloud Infrastructure Os Management Hub service. * * Retrieves a list of modules, along with streams of the modules, from a managed instance. Filters may be applied to select a subset of modules based on the filter criteria. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceModules = oci.osmanagementhub.getManagedInstanceModules({ * managedInstanceId: testManagedInstance.id, * compartmentId: compartmentId, * name: managedInstanceModuleName, * nameContains: managedInstanceModuleNameContains, * }); * ``` */ export declare function getManagedInstanceModulesOutput(args: GetManagedInstanceModulesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedInstanceModules. */ export interface GetManagedInstanceModulesOutputArgs { /** * 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. */ managedInstanceId: pulumi.Input; /** * The resource name. */ name?: pulumi.Input; /** * A filter to return resources that may partially match the name given. */ nameContains?: pulumi.Input; } //# sourceMappingURL=getManagedInstanceModules.d.ts.map