import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Application Vip resource in Oracle Cloud Infrastructure Database service. * * Gets information about a specified application virtual IP (VIP) address. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testApplicationVip = oci.database.getApplicationVip({ * applicationVipId: testApplicationVipOciDatabaseApplicationVip.id, * }); * ``` */ export declare function getApplicationVip(args: GetApplicationVipArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getApplicationVip. */ export interface GetApplicationVipArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the application virtual IP (VIP) address. */ applicationVipId: string; } /** * A collection of values returned by getApplicationVip. */ export interface GetApplicationVipResult { readonly applicationVipId: string; /** * 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 dbNodeId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ readonly definedTags: { [key: string]: string; }; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The hostname of the application virtual IP (VIP) address. */ readonly hostnameLabel: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the application virtual IP (VIP) address. */ readonly id: string; /** * The application virtual IP (VIP) IPv4 address. */ readonly ipAddress: string; /** * The application virtual IP (VIP) IPv6 address. */ readonly ipv6address: string; /** * Additional information about the current lifecycle state of the application virtual IP (VIP) address. */ readonly lifecycleDetails: string; /** * The current lifecycle state of the application virtual IP (VIP) address. */ readonly state: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the application virtual IP (VIP) address. */ readonly subnetId: string; /** * The date and time when the create operation for the application virtual IP (VIP) address completed. */ readonly timeAssigned: string; } /** * This data source provides details about a specific Application Vip resource in Oracle Cloud Infrastructure Database service. * * Gets information about a specified application virtual IP (VIP) address. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testApplicationVip = oci.database.getApplicationVip({ * applicationVipId: testApplicationVipOciDatabaseApplicationVip.id, * }); * ``` */ export declare function getApplicationVipOutput(args: GetApplicationVipOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getApplicationVip. */ export interface GetApplicationVipOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the application virtual IP (VIP) address. */ applicationVipId: pulumi.Input; } //# sourceMappingURL=getApplicationVip.d.ts.map