import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Infrastructure resource in Oracle Cloud Infrastructure Datacc service. * * Obtain the Database Infrastructure that has the specified * [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testInfrastructure = oci.oci.getDataccInfrastructure({ * infrastructureId: testInfrastructureOciDataccInfrastructure.id, * }); * ``` */ export declare function getDataccInfrastructure(args: GetDataccInfrastructureArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDataccInfrastructure. */ export interface GetDataccInfrastructureArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Infrastructure. */ infrastructureId: string; } /** * A collection of values returned by getDataccInfrastructure. */ export interface GetDataccInfrastructureResult { /** * The amount of storage (in GB) in the DATA disk group that is reserved for creating local storage for VM Clusters and application VMs. */ readonly acfsFileSystemStorageInGbs: number; /** * The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs. This attribute is deprecated and will be removed in a subsequent release. Please read from systemStorageCapacity instead. */ readonly acfsFileSystemUsedStorageInGbs: number; /** * The CIDR block for the system network. The system network is a private network in Database Infrastructure and is not connected to your corporate network. The system network is used for storage (ASM) traffic, high-performance interconnect traffic and administration of infrastructure components. */ readonly adminNetworkcidr: string; /** * The network bonding interface for backup network for the Database Infrastructure. */ readonly backupNetworkBondingInterface: string; /** * The network bonding mode for Backup networks for the Database Infrastructure. */ readonly backupNetworkBondingMode: string; /** * The network bonding interface for client network for the Database Infrastructure. */ readonly clientNetworkBondingInterface: string; /** * The network bonding mode for Client networks for the Database Infrastructure. */ readonly clientNetworkBondingMode: string; /** * The IP address for the first control plane server. */ readonly cloudControlPlaneServer1: string; /** * The IP address for the second control plane server. */ readonly cloudControlPlaneServer2: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * Capacity details of the Database Infrastructure. */ readonly computeCapacities: outputs.oci.GetDataccInfrastructureComputeCapacity[]; /** * The list of contacts for the Database Infrastructure. */ readonly contacts: outputs.oci.GetDataccInfrastructureContact[]; /** * The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible for enhanced security. */ readonly corporateProxy: string; /** * The network bonding interface for CPS network for the Database Infrastructure. */ readonly cpsNetworkBondingInterface: string; /** * The network bonding mode for CPS networks for the Database Infrastructure. */ readonly cpsNetworkBondingMode: string; /** * Percentage of disk space assigned for DATA disk group. */ readonly dataDiskPercentage: number; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * Database Infrastructure description. */ readonly description: string; /** * The user-friendly name for the Database Infrastructure. The name does not need to be unique. */ readonly displayName: string; /** * The list of DNS server IP addresses. Maximum of 3 allowed. */ readonly dnsServers: string[]; /** * Simple key-value pair that is applied without any predefined name, type or scope. This tag option exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The gateway for the control plane network. */ readonly gateway: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Data Server of Infrastructure. */ readonly id: string; readonly infrastructureId: string; /** * Lifecycle state details of the Database Infrastructure. */ readonly lifecycleStateDetails: string; /** * The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window. */ readonly maintenanceWindows: outputs.oci.GetDataccInfrastructureMaintenanceWindow[]; /** * The netmask for the control plane network. */ readonly netmask: string; /** * The network adapter, transceiver and cable configuration for the client and backup networks. */ readonly networkAdapterConfiguration: string; /** * The list of NTP server IP addresses. Maximum of 3 allowed. */ readonly ntpServers: string[]; /** * The serial number for the Database Infrastructure. */ readonly rackSerialNumber: string; /** * Percentage of disk space assigned for RECO disk group. */ readonly recoDiskPercentage: number; readonly scaleStorageTrigger: number; /** * A list of Database Infrastructure nodes. */ readonly servers: outputs.oci.GetDataccInfrastructureServer[]; /** * The shape of the Database Infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance. */ readonly shape: string; /** * SSD configuration requested for the infrastructure. */ readonly ssdConfigurationRequested: string; /** * The current state of the Database Infrastructure. */ readonly state: string; /** * Capacity details of the Storage disk group. This attribute is deprecated and will be removed in a subsequent release. Please use systemStorageCapacity instead. */ readonly storageCapacities: outputs.oci.GetDataccInfrastructureStorageCapacity[]; /** * The unique identifier for the subscription plan number. */ readonly subscriptionPlanNumber: string; /** * Database Infrastructure System Model specification. The system model determines the model of the Database Infrastructure hardware to be used. */ readonly systemModel: string; /** * Capacity details of different storage types. */ readonly systemStorageCapacities: outputs.oci.GetDataccInfrastructureSystemStorageCapacity[]; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time, in RFC3339 format, when the Database Infrastructure was activated. */ readonly timeActivated: string; /** * The time that the Database Infrastructure cluster was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time, in RFC3339 format, when the lifecycle state was last updated. */ readonly timeLastStateUpdated: string; /** * The time that the Database Infrastructure was last updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; /** * The time, in RFC3339 format, when the Database Infrastructure network was validated. */ readonly timeValidated: string; /** * The version of the system software on the Database Infrastructure. */ readonly version: string; /** * The CPS network VLAN ID. */ readonly vlanId: string; } /** * This data source provides details about a specific Infrastructure resource in Oracle Cloud Infrastructure Datacc service. * * Obtain the Database Infrastructure that has the specified * [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testInfrastructure = oci.oci.getDataccInfrastructure({ * infrastructureId: testInfrastructureOciDataccInfrastructure.id, * }); * ``` */ export declare function getDataccInfrastructureOutput(args: GetDataccInfrastructureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDataccInfrastructure. */ export interface GetDataccInfrastructureOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Infrastructure. */ infrastructureId: pulumi.Input; } //# sourceMappingURL=getDataccInfrastructure.d.ts.map