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 Vbs Instances in Oracle Cloud Infrastructure Vbs Inst service. * * Returns a list of VbsInstances. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVbsInstances = oci.vbs.getInstVbsInstances({ * compartmentId: compartmentId, * id: vbsInstanceId, * name: vbsInstanceName, * state: vbsInstanceState, * }); * ``` */ export declare function getInstVbsInstances(args: GetInstVbsInstancesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getInstVbsInstances. */ export interface GetInstVbsInstancesArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; filters?: inputs.Vbs.GetInstVbsInstancesFilter[]; /** * unique VbsInstance identifier */ id?: string; /** * A filter to return only resources that match the entire name given. */ name?: string; /** * A filter to return only resources their lifecycleState matches the given lifecycleState. */ state?: string; } /** * A collection of values returned by getInstVbsInstances. */ export interface GetInstVbsInstancesResult { /** * Compartment of the service instance */ readonly compartmentId: string; readonly filters?: outputs.Vbs.GetInstVbsInstancesFilter[]; /** * Unique identifier that is immutable on creation */ readonly id?: string; /** * Service instance name (unique identifier) */ readonly name?: string; /** * The current state of the VbsInstance. */ readonly state?: string; /** * The list of vbs_instance_summary_collection. */ readonly vbsInstanceSummaryCollections: outputs.Vbs.GetInstVbsInstancesVbsInstanceSummaryCollection[]; } /** * This data source provides the list of Vbs Instances in Oracle Cloud Infrastructure Vbs Inst service. * * Returns a list of VbsInstances. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVbsInstances = oci.vbs.getInstVbsInstances({ * compartmentId: compartmentId, * id: vbsInstanceId, * name: vbsInstanceName, * state: vbsInstanceState, * }); * ``` */ export declare function getInstVbsInstancesOutput(args: GetInstVbsInstancesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getInstVbsInstances. */ export interface GetInstVbsInstancesOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * unique VbsInstance identifier */ id?: pulumi.Input; /** * A filter to return only resources that match the entire name given. */ name?: pulumi.Input; /** * A filter to return only resources their lifecycleState matches the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getInstVbsInstances.d.ts.map