import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Cloud 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 testCloudExadataStorageServerIormPlan = oci.databasemanagement.getCloudExadataStorageServerIormPlan({ * cloudExadataStorageServerId: testCloudExadataStorageServer.id, * }); * ``` */ export declare function getCloudExadataStorageServerIormPlan(args: GetCloudExadataStorageServerIormPlanArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudExadataStorageServerIormPlan. */ export interface GetCloudExadataStorageServerIormPlanArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata storage server. */ cloudExadataStorageServerId: string; } /** * A collection of values returned by getCloudExadataStorageServerIormPlan. */ export interface GetCloudExadataStorageServerIormPlanResult { readonly cloudExadataStorageServerId: string; /** * 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.GetCloudExadataStorageServerIormPlanDbPlan[]; /** * 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 Cloud 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 testCloudExadataStorageServerIormPlan = oci.databasemanagement.getCloudExadataStorageServerIormPlan({ * cloudExadataStorageServerId: testCloudExadataStorageServer.id, * }); * ``` */ export declare function getCloudExadataStorageServerIormPlanOutput(args: GetCloudExadataStorageServerIormPlanOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudExadataStorageServerIormPlan. */ export interface GetCloudExadataStorageServerIormPlanOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata storage server. */ cloudExadataStorageServerId: pulumi.Input; } //# sourceMappingURL=getCloudExadataStorageServerIormPlan.d.ts.map