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 Application Vips in Oracle Cloud Infrastructure Database service. * * Gets a list of application virtual IP (VIP) addresses on a cloud VM cluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testApplicationVips = oci.database.getApplicationVips({ * cloudVmClusterId: testCloudVmCluster.id, * compartmentId: compartmentId, * state: applicationVipState, * }); * ``` */ export declare function getApplicationVips(args: GetApplicationVipsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getApplicationVips. */ export interface GetApplicationVipsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud VM cluster associated with the application virtual IP (VIP) address. */ cloudVmClusterId: string; /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: string; filters?: inputs.Database.GetApplicationVipsFilter[]; /** * A filter to return only resources that match the given lifecycle state exactly. */ state?: string; } /** * A collection of values returned by getApplicationVips. */ export interface GetApplicationVipsResult { /** * The list of application_vips. */ readonly applicationVips: outputs.Database.GetApplicationVipsApplicationVip[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud VM cluster associated with the application virtual IP (VIP) address. */ readonly cloudVmClusterId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; readonly filters?: outputs.Database.GetApplicationVipsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current lifecycle state of the application virtual IP (VIP) address. */ readonly state?: string; } /** * This data source provides the list of Application Vips in Oracle Cloud Infrastructure Database service. * * Gets a list of application virtual IP (VIP) addresses on a cloud VM cluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testApplicationVips = oci.database.getApplicationVips({ * cloudVmClusterId: testCloudVmCluster.id, * compartmentId: compartmentId, * state: applicationVipState, * }); * ``` */ export declare function getApplicationVipsOutput(args: GetApplicationVipsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getApplicationVips. */ export interface GetApplicationVipsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud VM cluster associated with the application virtual IP (VIP) address. */ cloudVmClusterId: pulumi.Input; /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the given lifecycle state exactly. */ state?: pulumi.Input; } //# sourceMappingURL=getApplicationVips.d.ts.map