import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Autonomous Virtual Machine resource in Oracle Cloud Infrastructure Database service. * * Gets the details of specific Autonomous Virtual Machine. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAutonomousVirtualMachine = oci.database.getAutonomousVirtualMachine({ * autonomousVirtualMachineId: testAutonomousVirtualMachineOciDatabaseAutonomousVirtualMachine.id, * }); * ``` */ export declare function getAutonomousVirtualMachine(args: GetAutonomousVirtualMachineArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAutonomousVirtualMachine. */ export interface GetAutonomousVirtualMachineArgs { /** * The Autonomous Virtual machine [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ autonomousVirtualMachineId: string; } /** * A collection of values returned by getAutonomousVirtualMachine. */ export interface GetAutonomousVirtualMachineResult { readonly autonomousVirtualMachineId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous VM Cluster associated with the Autonomous Virtual Machine. */ readonly autonomousVmClusterId: string; /** * Client IP Address. */ readonly clientIpAddress: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * The number of CPU cores enabled on the Autonomous Virtual Machine. */ readonly cpuCoreCount: number; /** * The allocated local node storage in GBs on the Autonomous Virtual Machine. */ readonly dbNodeStorageSizeInGbs: number; /** * The display name of the dbServer associated with the Autonomous Virtual Machine. */ readonly dbServerDisplayName: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Db server associated with the Autonomous Virtual Machine. */ readonly dbServerId: 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 provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The allocated memory in GBs on the Autonomous Virtual Machine. */ readonly memorySizeInGbs: number; /** * The current state of the Autonomous Virtual Machine. */ readonly state: string; /** * The name of the Autonomous Virtual Machine. */ readonly vmName: string; } /** * This data source provides details about a specific Autonomous Virtual Machine resource in Oracle Cloud Infrastructure Database service. * * Gets the details of specific Autonomous Virtual Machine. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAutonomousVirtualMachine = oci.database.getAutonomousVirtualMachine({ * autonomousVirtualMachineId: testAutonomousVirtualMachineOciDatabaseAutonomousVirtualMachine.id, * }); * ``` */ export declare function getAutonomousVirtualMachineOutput(args: GetAutonomousVirtualMachineOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAutonomousVirtualMachine. */ export interface GetAutonomousVirtualMachineOutputArgs { /** * The Autonomous Virtual machine [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ autonomousVirtualMachineId: pulumi.Input; } //# sourceMappingURL=getAutonomousVirtualMachine.d.ts.map