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 Managed Instances in Oracle Cloud Infrastructure Os Management Hub service. * * Lists all managed instances for a specified managed instance group. Filter the list against a variety of criteria including but not limited to the managed instance name. The results list all managed instances that have already been added to the group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceGroupManagedInstances = oci.osmanagementhub.getManagedInstanceGroupManagedInstances({ * managedInstanceGroupId: testManagedInstanceGroup.id, * compartmentId: compartmentId, * compartmentIdInSubtree: managedInstanceGroupManagedInstanceCompartmentIdInSubtree === "true", * displayNames: managedInstanceGroupManagedInstanceDisplayName, * displayNameContains: managedInstanceGroupManagedInstanceDisplayNameContains, * managedInstanceId: testManagedInstance.id, * }); * ``` */ export declare function getManagedInstanceGroupManagedInstances(args: GetManagedInstanceGroupManagedInstancesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedInstanceGroupManagedInstances. */ export interface GetManagedInstanceGroupManagedInstancesArgs { /** * The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment. */ compartmentId?: string; /** * Indicates whether to include subcompartments in the returned results. Default is false. */ compartmentIdInSubtree?: boolean; /** * 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.GetManagedInstanceGroupManagedInstancesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance group. */ managedInstanceGroupId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. This filter returns resources associated with this managed instance. */ managedInstanceId?: string; } /** * A collection of values returned by getManagedInstanceGroupManagedInstances. */ export interface GetManagedInstanceGroupManagedInstancesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the managed instance. */ readonly compartmentId?: string; readonly compartmentIdInSubtree?: boolean; readonly displayNameContains?: string; /** * User-friendly name. */ readonly displayNames?: string[]; readonly filters?: outputs.OsManagementHub.GetManagedInstanceGroupManagedInstancesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of managed_instance_collection. */ readonly managedInstanceCollections: outputs.OsManagementHub.GetManagedInstanceGroupManagedInstancesManagedInstanceCollection[]; readonly managedInstanceGroupId: string; readonly managedInstanceId?: string; } /** * This data source provides the list of Managed Instance Group Managed Instances in Oracle Cloud Infrastructure Os Management Hub service. * * Lists all managed instances for a specified managed instance group. Filter the list against a variety of criteria including but not limited to the managed instance name. The results list all managed instances that have already been added to the group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstanceGroupManagedInstances = oci.osmanagementhub.getManagedInstanceGroupManagedInstances({ * managedInstanceGroupId: testManagedInstanceGroup.id, * compartmentId: compartmentId, * compartmentIdInSubtree: managedInstanceGroupManagedInstanceCompartmentIdInSubtree === "true", * displayNames: managedInstanceGroupManagedInstanceDisplayName, * displayNameContains: managedInstanceGroupManagedInstanceDisplayNameContains, * managedInstanceId: testManagedInstance.id, * }); * ``` */ export declare function getManagedInstanceGroupManagedInstancesOutput(args: GetManagedInstanceGroupManagedInstancesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedInstanceGroupManagedInstances. */ export interface GetManagedInstanceGroupManagedInstancesOutputArgs { /** * The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment. */ compartmentId?: pulumi.Input; /** * Indicates whether to include subcompartments in the returned results. Default is false. */ compartmentIdInSubtree?: 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; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. This filter returns resources associated with this managed instance. */ managedInstanceId?: pulumi.Input; } //# sourceMappingURL=getManagedInstanceGroupManagedInstances.d.ts.map