import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Exadata Iorm Config resource in Oracle Cloud Infrastructure Database service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/database/latest/ExadataIormConfig * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/database * * Updates IORM settings for the specified Exadata DB system. * * **Note:** Deprecated for Exadata Cloud Service systems. Use the [new resource model APIs](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaflexsystem.htm#exaflexsystem_topic-resource_model) instead. * * For Exadata Cloud Service instances, support for this API will end on May 15th, 2021. See [Switching an Exadata DB System to the New Resource Model and APIs](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaflexsystem_topic-resource_model_conversion.htm) for details on converting existing Exadata DB systems to the new resource model. * * The [UpdateCloudVmClusterIormConfig](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/CloudVmCluster/UpdateCloudVmClusterIormConfig/) API is used for Exadata systems using the * new resource model. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExadataIormConfig = new oci.database.ExadataIormConfig("test_exadata_iorm_config", { * dbPlans: [{ * dbName: exadataIormConfigDbPlansDbName, * share: Number(exadataIormConfigDbPlansShare), * }], * dbSystemId: testDbSystem.id, * objective: "AUTO", * }); * ``` * * ## Import * * Import is not supported for this resource. */ export declare class ExadataIormConfig extends pulumi.CustomResource { /** * Get an existing ExadataIormConfig resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ExadataIormConfigState, opts?: pulumi.CustomResourceOptions): ExadataIormConfig; /** * Returns true if the given object is an instance of ExadataIormConfig. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ExadataIormConfig; /** * (Updatable) Array of IORM Setting for all the database in this Exadata DB System */ readonly dbPlans: pulumi.Output; /** * (Updatable) The DB system [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ readonly dbSystemId: pulumi.Output; /** * Additional information about the current `lifecycleState`. */ readonly lifecycleDetails: pulumi.Output; /** * (Updatable) Value for the IORM objective Default is "Auto" * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly objective: pulumi.Output; /** * The current state of IORM configuration for the Exadata DB system. */ readonly state: pulumi.Output; /** * Create a ExadataIormConfig resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ExadataIormConfigArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ExadataIormConfig resources. */ export interface ExadataIormConfigState { /** * (Updatable) Array of IORM Setting for all the database in this Exadata DB System */ dbPlans?: pulumi.Input[] | undefined>; /** * (Updatable) The DB system [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ dbSystemId?: pulumi.Input; /** * Additional information about the current `lifecycleState`. */ lifecycleDetails?: pulumi.Input; /** * (Updatable) Value for the IORM objective Default is "Auto" * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ objective?: pulumi.Input; /** * The current state of IORM configuration for the Exadata DB system. */ state?: pulumi.Input; } /** * The set of arguments for constructing a ExadataIormConfig resource. */ export interface ExadataIormConfigArgs { /** * (Updatable) Array of IORM Setting for all the database in this Exadata DB System */ dbPlans: pulumi.Input[]>; /** * (Updatable) The DB system [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ dbSystemId: pulumi.Input; /** * (Updatable) Value for the IORM objective Default is "Auto" * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ objective?: pulumi.Input; } //# sourceMappingURL=exadataIormConfig.d.ts.map