import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Operations Insights Warehouse resource in Oracle Cloud Infrastructure Opsi service. * * Gets details of an Ops Insights Warehouse. * There is only expected to be 1 warehouse per tenant. The warehouse is expected to be in the root compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOperationsInsightsWarehouse = oci.opsi.getOperationsInsightsWarehouse({ * operationsInsightsWarehouseId: testOperationsInsightsWarehouseOciOpsiOperationsInsightsWarehouse.id, * }); * ``` */ export declare function getOperationsInsightsWarehouse(args: GetOperationsInsightsWarehouseArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOperationsInsightsWarehouse. */ export interface GetOperationsInsightsWarehouseArgs { /** * Unique Ops Insights Warehouse identifier */ operationsInsightsWarehouseId: string; } /** * A collection of values returned by getOperationsInsightsWarehouse. */ export interface GetOperationsInsightsWarehouseResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * The compute model for the OPSI warehouse ADW (OCPU or ECPU) */ readonly computeModel: string; /** * Number of CPUs allocated to OPSI Warehouse ADW. */ readonly cpuAllocated: number; /** * Number of OCPUs used by OPSI Warehouse ADW. Can be fractional. */ readonly cpuUsed: 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; }; /** * User-friedly name of Ops Insights Warehouse that does not have to be unique. */ readonly displayName: string; /** * OCID of the dynamic group created for the warehouse */ readonly dynamicGroupId: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * OPSI Warehouse OCID */ readonly id: string; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. */ readonly lifecycleDetails: string; /** * Tenancy Identifier of Ops Insights service */ readonly operationsInsightsTenancyId: string; readonly operationsInsightsWarehouseId: string; /** * Possible lifecycle states */ readonly state: string; /** * Storage allocated to OPSI Warehouse ADW. */ readonly storageAllocatedInGbs: number; /** * Storage by OPSI Warehouse ADW in GB. */ readonly storageUsedInGbs: number; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time at which the resource was first created. An RFC3339 formatted datetime string */ readonly timeCreated: string; /** * The time at which the ADW wallet was last rotated for the Ops Insights Warehouse. An RFC3339 formatted datetime string */ readonly timeLastWalletRotated: string; /** * The time at which the resource was last updated. An RFC3339 formatted datetime string */ readonly timeUpdated: string; } /** * This data source provides details about a specific Operations Insights Warehouse resource in Oracle Cloud Infrastructure Opsi service. * * Gets details of an Ops Insights Warehouse. * There is only expected to be 1 warehouse per tenant. The warehouse is expected to be in the root compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOperationsInsightsWarehouse = oci.opsi.getOperationsInsightsWarehouse({ * operationsInsightsWarehouseId: testOperationsInsightsWarehouseOciOpsiOperationsInsightsWarehouse.id, * }); * ``` */ export declare function getOperationsInsightsWarehouseOutput(args: GetOperationsInsightsWarehouseOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOperationsInsightsWarehouse. */ export interface GetOperationsInsightsWarehouseOutputArgs { /** * Unique Ops Insights Warehouse identifier */ operationsInsightsWarehouseId: pulumi.Input; } //# sourceMappingURL=getOperationsInsightsWarehouse.d.ts.map