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 Dynamic Set Managed Instances in Oracle Cloud Infrastructure Os Management Hub service. * * Retrieves a list of managed instances associated with a specified dynamic set. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDynamicSetManagedInstances = oci.osmanagementhub.getDynamicSetManagedInstances({ * dynamicSetId: testDynamicSet.id, * compartmentId: compartmentId, * compartmentIdInSubtree: dynamicSetManagedInstanceCompartmentIdInSubtree === "true", * displayName: dynamicSetManagedInstanceDisplayName, * displayNameContains: dynamicSetManagedInstanceDisplayNameContains, * }); * ``` */ export declare function getDynamicSetManagedInstances(args: GetDynamicSetManagedInstancesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDynamicSetManagedInstances. */ export interface GetDynamicSetManagedInstancesArgs { /** * 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 match the given user-friendly name. */ displayName?: string; /** * A filter to return resources that may partially match the given display name. */ displayNameContains?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the dynamic set. This filter returns resources associated with this dynamic set. */ dynamicSetId: string; filters?: inputs.OsManagementHub.GetDynamicSetManagedInstancesFilter[]; } /** * A collection of values returned by getDynamicSetManagedInstances. */ export interface GetDynamicSetManagedInstancesResult { /** * 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; /** * User-friendly name. */ readonly displayName?: string; readonly displayNameContains?: string; readonly dynamicSetId: string; readonly filters?: outputs.OsManagementHub.GetDynamicSetManagedInstancesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of managed_instance_collection. */ readonly managedInstanceCollections: outputs.OsManagementHub.GetDynamicSetManagedInstancesManagedInstanceCollection[]; } /** * This data source provides the list of Dynamic Set Managed Instances in Oracle Cloud Infrastructure Os Management Hub service. * * Retrieves a list of managed instances associated with a specified dynamic set. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDynamicSetManagedInstances = oci.osmanagementhub.getDynamicSetManagedInstances({ * dynamicSetId: testDynamicSet.id, * compartmentId: compartmentId, * compartmentIdInSubtree: dynamicSetManagedInstanceCompartmentIdInSubtree === "true", * displayName: dynamicSetManagedInstanceDisplayName, * displayNameContains: dynamicSetManagedInstanceDisplayNameContains, * }); * ``` */ export declare function getDynamicSetManagedInstancesOutput(args: GetDynamicSetManagedInstancesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDynamicSetManagedInstances. */ export interface GetDynamicSetManagedInstancesOutputArgs { /** * 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 match the given user-friendly name. */ displayName?: pulumi.Input; /** * A filter to return resources that may partially match the given display name. */ displayNameContains?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the dynamic set. This filter returns resources associated with this dynamic set. */ dynamicSetId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getDynamicSetManagedInstances.d.ts.map