import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific External Exadata Storage Server Iorm Plan resource in Oracle Cloud Infrastructure Database Management service. * * Get the IORM plan from the specific Exadata storage server. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalExadataStorageServerIormPlan = oci.databasemanagement.getExternalExadataStorageServerIormPlan({ * externalExadataStorageServerId: testExternalExadataStorageServer.id, * }); * ``` */ export declare function getExternalExadataStorageServerIormPlan(args: GetExternalExadataStorageServerIormPlanArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExternalExadataStorageServerIormPlan. */ export interface GetExternalExadataStorageServerIormPlanArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata storage server. */ externalExadataStorageServerId: string; } /** * A collection of values returned by getExternalExadataStorageServerIormPlan. */ export interface GetExternalExadataStorageServerIormPlanResult { /** * The resource allocation directives must all use the share attribute, or they must all use the level and allocation attributes. If you use the share attribute to allocate I/O resources, then the database plan can have a maximum of 1024 directives. If you use the level and allocation attributes to allocate I/O resources, then the database plan can have a maximum of 32 directives. Only one directive is allowed for each database name and each profile name. */ readonly dbPlans: outputs.DatabaseManagement.GetExternalExadataStorageServerIormPlanDbPlan[]; readonly externalExadataStorageServerId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The objective of the IORM plan. */ readonly planObjective: string; /** * The status of the IORM plan. */ readonly planStatus: string; } /** * This data source provides details about a specific External Exadata Storage Server Iorm Plan resource in Oracle Cloud Infrastructure Database Management service. * * Get the IORM plan from the specific Exadata storage server. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalExadataStorageServerIormPlan = oci.databasemanagement.getExternalExadataStorageServerIormPlan({ * externalExadataStorageServerId: testExternalExadataStorageServer.id, * }); * ``` */ export declare function getExternalExadataStorageServerIormPlanOutput(args: GetExternalExadataStorageServerIormPlanOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExternalExadataStorageServerIormPlan. */ export interface GetExternalExadataStorageServerIormPlanOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata storage server. */ externalExadataStorageServerId: pulumi.Input; } //# sourceMappingURL=getExternalExadataStorageServerIormPlan.d.ts.map