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 Vb Instances in Oracle Cloud Infrastructure Visual Builder service. * * Returns a list of Vb Instances. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVbInstances = oci.visualbuilder.getVbInstances({ * compartmentId: compartmentId, * displayName: vbInstanceDisplayName, * state: vbInstanceState, * }); * ``` */ export declare function getVbInstances(args: GetVbInstancesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVbInstances. */ export interface GetVbInstancesArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Example: `My new resource` */ displayName?: string; filters?: inputs.VisualBuilder.GetVbInstancesFilter[]; /** * Life cycle state to query on. */ state?: string; } /** * A collection of values returned by getVbInstances. */ export interface GetVbInstancesResult { /** * Compartment Identifier. */ readonly compartmentId: string; /** * Vb Instance Identifier, can be renamed. */ readonly displayName?: string; readonly filters?: outputs.VisualBuilder.GetVbInstancesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the vb instance. */ readonly state?: string; /** * The list of vb_instance_summary_collection. */ readonly vbInstanceSummaryCollections: outputs.VisualBuilder.GetVbInstancesVbInstanceSummaryCollection[]; } /** * This data source provides the list of Vb Instances in Oracle Cloud Infrastructure Visual Builder service. * * Returns a list of Vb Instances. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVbInstances = oci.visualbuilder.getVbInstances({ * compartmentId: compartmentId, * displayName: vbInstanceDisplayName, * state: vbInstanceState, * }); * ``` */ export declare function getVbInstancesOutput(args: GetVbInstancesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVbInstances. */ export interface GetVbInstancesOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A user-friendly name. Does not have to be unique, and it's changeable. Example: `My new resource` */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Life cycle state to query on. */ state?: pulumi.Input; } //# sourceMappingURL=getVbInstances.d.ts.map