import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Cloud Vm Cluster Iorm Config resource in Oracle Cloud Infrastructure Database service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/database/latest/CloudVmClusterIormConfig * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/database * * Updates IORM settings for the specified Cloud Vm Cluster. * * The [UpdateCloudVmClusterIormConfig](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/CloudVmCluster/UpdateCloudVmClusterIormConfig/) API is used for Cloud Vm Cluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudVmClusterIormConfig = new oci.database.CloudVmClusterIormConfig("test_cloud_vm_cluster_iorm_config", { * dbPlans: [{ * dbName: cloudVmClusterIormConfigDbPlansDbName, * share: Number(cloudVmClusterIormConfigDbPlansShare), * }], * cloudVmClusterId: testCloudVmCluster.id, * objective: "AUTO", * }); * ``` * * ## Import * * CloudVmClusterIormConfigs can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:Database/cloudVmClusterIormConfig:CloudVmClusterIormConfig test_cloud_vm_cluster_iorm_config "cloudVmClusters/{cloudVmClusterId}/CloudVmClusterIormConfig" * ``` */ export declare class CloudVmClusterIormConfig extends pulumi.CustomResource { /** * Get an existing CloudVmClusterIormConfig 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?: CloudVmClusterIormConfigState, opts?: pulumi.CustomResourceOptions): CloudVmClusterIormConfig; /** * Returns true if the given object is an instance of CloudVmClusterIormConfig. 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 CloudVmClusterIormConfig; /** * The Cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ readonly cloudVmClusterId: pulumi.Output; /** * (Updatable) Array of IORM Setting for all the database in this Cloud Vm Cluster */ readonly dbPlans: pulumi.Output; /** * Additional information about the current `lifecycleState`. */ readonly lifecycleDetails: pulumi.Output; /** * (Updatable) Value for the IORM objective Default is "Auto" */ readonly objective: pulumi.Output; /** * The current state of IORM configuration for the Exadata DB system. */ readonly state: pulumi.Output; /** * Create a CloudVmClusterIormConfig 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: CloudVmClusterIormConfigArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CloudVmClusterIormConfig resources. */ export interface CloudVmClusterIormConfigState { /** * The Cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ cloudVmClusterId?: pulumi.Input; /** * (Updatable) Array of IORM Setting for all the database in this Cloud Vm Cluster */ dbPlans?: pulumi.Input[] | undefined>; /** * Additional information about the current `lifecycleState`. */ lifecycleDetails?: pulumi.Input; /** * (Updatable) Value for the IORM objective Default is "Auto" */ objective?: pulumi.Input; /** * The current state of IORM configuration for the Exadata DB system. */ state?: pulumi.Input; } /** * The set of arguments for constructing a CloudVmClusterIormConfig resource. */ export interface CloudVmClusterIormConfigArgs { /** * The Cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ cloudVmClusterId: pulumi.Input; /** * (Updatable) Array of IORM Setting for all the database in this Cloud Vm Cluster */ dbPlans: pulumi.Input[]>; /** * (Updatable) Value for the IORM objective Default is "Auto" */ objective?: pulumi.Input; } //# sourceMappingURL=cloudVmClusterIormConfig.d.ts.map