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 resource in Oracle Cloud Infrastructure Database service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/database/latest/CloudVmCluster * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/database * * Creates a cloud VM cluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudVmCluster = new oci.database.CloudVmCluster("test_cloud_vm_cluster", { * backupSubnetId: testSubnet.id, * cloudExadataInfrastructureId: testCloudExadataInfrastructure.id, * compartmentId: compartmentId, * cpuCoreCount: Number(cloudVmClusterCpuCoreCount), * displayName: cloudVmClusterDisplayName, * giVersion: cloudVmClusterGiVersion, * hostname: cloudVmClusterHostname, * sshPublicKeys: cloudVmClusterSshPublicKeys, * subnetId: testSubnet.id, * backupNetworkNsgIds: cloudVmClusterBackupNetworkNsgIds, * cloudAutomationUpdateDetails: { * applyUpdateTimePreference: { * applyUpdatePreferredEndTime: cloudVmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceApplyUpdatePreferredEndTime, * applyUpdatePreferredStartTime: cloudVmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceApplyUpdatePreferredStartTime, * }, * freezePeriod: { * freezePeriodEndTime: cloudVmClusterCloudAutomationUpdateDetailsFreezePeriodFreezePeriodEndTime, * freezePeriodStartTime: cloudVmClusterCloudAutomationUpdateDetailsFreezePeriodFreezePeriodStartTime, * }, * isEarlyAdoptionEnabled: cloudVmClusterCloudAutomationUpdateDetailsIsEarlyAdoptionEnabled === "true", * isFreezePeriodEnabled: cloudVmClusterCloudAutomationUpdateDetailsIsFreezePeriodEnabled === "true", * }, * clusterName: cloudVmClusterClusterName, * dataCollectionOptions: { * isDiagnosticsEventsEnabled: cloudVmClusterDataCollectionOptionsIsDiagnosticsEventsEnabled === "true", * isHealthMonitoringEnabled: cloudVmClusterDataCollectionOptionsIsHealthMonitoringEnabled === "true", * isIncidentLogsEnabled: cloudVmClusterDataCollectionOptionsIsIncidentLogsEnabled === "true", * }, * dataStoragePercentage: Number(cloudVmClusterDataStoragePercentage), * dataStorageSizeInTbs: cloudVmClusterDataStorageSizeInTbs, * dbNodeStorageSizeInGbs: Number(cloudVmClusterDbNodeStorageSizeInGbs), * dbServers: cloudVmClusterDbServers, * definedTags: cloudVmClusterDefinedTags, * domain: cloudVmClusterDomain, * exascaleDbStorageVaultId: testExascaleDbStorageVault.id, * fileSystemConfigurationDetails: [{ * fileSystemSizeGb: Number(cloudVmClusterFileSystemConfigurationDetailsFileSystemSizeGb), * mountPoint: cloudVmClusterFileSystemConfigurationDetailsMountPoint, * }], * freeformTags: { * Department: "Finance", * }, * isLocalBackupEnabled: cloudVmClusterIsLocalBackupEnabled === "true", * isSparseDiskgroupEnabled: cloudVmClusterIsSparseDiskgroupEnabled === "true", * licenseModel: cloudVmClusterLicenseModel, * memorySizeInGbs: Number(cloudVmClusterMemorySizeInGbs), * nsgIds: cloudVmClusterNsgIds, * ocpuCount: cloudVmClusterOcpuCount, * privateZoneId: testZone.id, * recoStoragePercentage: Number(cloudVmClusterRecoStoragePercentage), * scanListenerPortTcp: Number(cloudVmClusterScanListenerPortTcp), * scanListenerPortTcpSsl: Number(cloudVmClusterScanListenerPortTcpSsl), * securityAttributes: cloudVmClusterSecurityAttributes, * sparseStoragePercentage: Number(cloudVmClusterSparseStoragePercentage), * subscriptionId: tenantSubscriptionId, * systemVersion: cloudVmClusterSystemVersion, * timeZone: cloudVmClusterTimeZone, * updateDetails: { * updateAction: cloudVmClusterUpdateDetailsUpdateAction, * updateId: cloudVmClusterUpdateDetailsUpdateId, * updateMode: cloudVmClusterUpdateDetailsUpdateMode, * }, * vmBackupStorageType: cloudVmClusterVmBackupStorageType, * vmClusterType: cloudVmClusterVmClusterType, * vmFileSystemStorageType: cloudVmClusterVmFileSystemStorageType, * }); * ``` * * ## Import * * CloudVmClusters can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:Database/cloudVmCluster:CloudVmCluster test_cloud_vm_cluster "id" * ``` */ export declare class CloudVmCluster extends pulumi.CustomResource { /** * Get an existing CloudVmCluster 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?: CloudVmClusterState, opts?: pulumi.CustomResourceOptions): CloudVmCluster; /** * Returns true if the given object is an instance of CloudVmCluster. 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 CloudVmCluster; /** * The name of the availability domain that the cloud Exadata infrastructure resource is located in. */ readonly availabilityDomain: pulumi.Output; /** * (Updatable) A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems. */ readonly backupNetworkNsgIds: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet associated with the cloud VM cluster. */ readonly backupSubnetId: pulumi.Output; /** * (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period. */ readonly cloudAutomationUpdateDetails: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud Exadata infrastructure resource. */ readonly cloudExadataInfrastructureId: pulumi.Output; /** * The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive. */ readonly clusterName: pulumi.Output; /** * (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: pulumi.Output; /** * The compute model of the Autonomous AI Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy. */ readonly computeModel: pulumi.Output; /** * (Updatable) For fixed shapes, this is the total number of OCPUs to enable across the VM cluster. * * Exadata.Base.48 - Specify a multiple of 2, from 0 to 48. * * Exadata.Quarter3.100 - Specify a multiple of 2, from 0 to 100. * * Exadata.Half3.200 - Specify a multiple of 4, from 0 to 200. * * Exadata.Full3.400 - Specify a multiple of 8, from 0 to 400. * * The API specification for fixed shape values is https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/DbSystemShapeSummary * * For flexible shapes X8M and X9M, this is the total number of OCPUs to enable across the VM cluster. The number available for the VM cluster will be based on the number of database servers selected for provisioning the VM cluster on the Exadata Infrastructure. * * Exadata.X8M - Specify a multiple of 2, from 2 to 50 per X8M database server. * * Exadata.X9M - Specify a multiple of 2, from 2 to 126 per X9M database server. * * For flexible shapes X11M and higher, this is the total number of ECPUs to enable across the VM cluster. The number available for the VM cluster will be based on the number of database servers selected for provisioning the VM cluster on the Exadata Infrastructure. * * Exadata.X11M - Specify a multiple of 8, from 8 to 760 per X11M database server. * * The API specification for flexible shape values is https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/datatypes/FlexComponentSummary */ readonly cpuCoreCount: pulumi.Output; readonly createAsync: pulumi.Output; /** * (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS. */ readonly dataCollectionOptions: pulumi.Output; /** * (Updatable) The percentage assigned to DATA storage (user data and database files). See [Storage Configuration](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaoverview.htm#Exadata) in the Exadata documentation for details on the impact of the configuration settings on storage. */ readonly dataStoragePercentage: pulumi.Output; /** * (Updatable) The data disk group size to be allocated in TBs. */ readonly dataStorageSizeInTbs: pulumi.Output; /** * (Updatable) The local node storage to be allocated in GBs. */ readonly dbNodeStorageSizeInGbs: pulumi.Output; /** * The list of DB servers. */ readonly dbServers: pulumi.Output; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ readonly definedTags: pulumi.Output<{ [key: string]: string; }>; /** * The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy. */ readonly diskRedundancy: pulumi.Output; /** * (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique. */ readonly displayName: pulumi.Output; /** * A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only. */ readonly domain: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault. */ readonly exascaleDbStorageVaultId: pulumi.Output; /** * (Updatable) Details of the file system configuration of the VM cluster. */ readonly fileSystemConfigurationDetails: pulumi.Output; /** * (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: pulumi.Output<{ [key: string]: string; }>; /** * A valid Oracle Grid Infrastructure (GI) software version. */ readonly giVersion: pulumi.Output; /** * The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems. * * The maximum length of the combined hostname and domain is 63 characters. * * **Note:** The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision. */ readonly hostname: pulumi.Output; /** * The IORM settings of the Exadata DB system. */ readonly iormConfigCaches: pulumi.Output; /** * (Updatable) If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster. */ readonly isLocalBackupEnabled: pulumi.Output; /** * (Updatable) If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created. */ readonly isSparseDiskgroupEnabled: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance update history entry. This value is updated when a maintenance update starts. */ readonly lastUpdateHistoryEntryId: pulumi.Output; /** * (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE. */ readonly licenseModel: pulumi.Output; /** * Additional information about the current lifecycle state. */ readonly lifecycleDetails: pulumi.Output; /** * The port number configured for the listener on the cloud VM cluster. */ readonly listenerPort: pulumi.Output; /** * Details about the most recent live image version applied on the VM Cluster, if any. If a full OS update was applied, the fields would be blank. */ readonly liveImageVersionDetails: pulumi.Output; /** * (Updatable) The memory to be allocated in GBs. */ readonly memorySizeInGbs: pulumi.Output; /** * Details of the multi cloud identity connectors of the VM cluster. */ readonly multiCloudIdentityConnectorConfigs: pulumi.Output; /** * The number of nodes in the cloud VM cluster. */ readonly nodeCount: pulumi.Output; /** * (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:** * * A network security group (NSG) is optional for Autonomous AI Databases with private access. The nsgIds list can be empty. */ readonly nsgIds: pulumi.Output; /** * (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part. */ readonly ocpuCount: pulumi.Output; /** * Oracle Linux version for the respective Exadata Image. */ readonly oracleLinuxVersion: pulumi.Output; /** * The private zone id in which DNS records need to be created. */ readonly privateZoneId: pulumi.Output; /** * (Updatable) The percentage assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). See [Storage Configuration](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaoverview.htm#Exadata) in the Exadata documentation for details on the impact of the configuration settings on storage. */ readonly recoStoragePercentage: pulumi.Output; /** * The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster. */ readonly scanDnsName: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster. */ readonly scanDnsRecordId: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv4 addresses associated with the cloud VM cluster. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster. */ readonly scanIpIds: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv6 addresses associated with the cloud VM cluster. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster. */ readonly scanIpv6ids: pulumi.Output; /** * The TCP Single Client Access Name (SCAN) port. The default port is 1521. */ readonly scanListenerPortTcp: pulumi.Output; /** * The TCPS Single Client Access Name (SCAN) port. The default port is 2484. */ readonly scanListenerPortTcpSsl: pulumi.Output; /** * (Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}` */ readonly securityAttributes: pulumi.Output<{ [key: string]: string; }>; /** * The model name of the Exadata hardware running the cloud VM cluster. */ readonly shape: pulumi.Output; /** * (Updatable) The percentage assigned to SPARSE storage (Exadata snapshots). See [Storage Configuration](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaoverview.htm#Exadata) in the Exadata documentation for details on the impact of the configuration settings on storage. */ readonly sparseStoragePercentage: pulumi.Output; /** * (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster. */ readonly sshPublicKeys: pulumi.Output; /** * The current state of the cloud VM cluster. */ readonly state: pulumi.Output; /** * Specifies the type of storage management for the Cloud VM Cluster if its ASM or Exascale. */ readonly storageManagementType: pulumi.Output; /** * The storage allocation for the disk group, in gigabytes (GB). */ readonly storageSizeInGbs: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the cloud VM cluster. */ readonly subnetId: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with. */ readonly subscriptionId: pulumi.Output; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ readonly systemTags: pulumi.Output<{ [key: string]: string; }>; /** * Operating system version of the image. */ readonly systemVersion: pulumi.Output; /** * Use 'AZURE' for installing azure encryption RPMS. Use 'OCI' to install oracle managed encryption RPMS. Use 'NONE' to uninstall encryption RPMS. */ readonly tdeKeyStoreType: pulumi.Output; /** * The date and time that the cloud VM cluster was created. */ readonly timeCreated: pulumi.Output; /** * The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm). */ readonly timeZone: pulumi.Output; /** * (Updatable) Details specifying which maintenance update to apply to the cloud VM cluster and which action to perform. Use `updateMode` for DomU live update modes or regular full OS update mode. */ readonly updateDetails: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv4 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv4 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster. */ readonly vipIds: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv6 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv6 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster. */ readonly vipv6ids: pulumi.Output; /** * (Updatable) Specifies the type of VM Backups Storage and supported values are LOCAL and EXASCALE. - LOCAL if selected then VM Backups storage will be on DB Servers. - EXASCALE if selected then VM Backups storage will be on Exascale Storage Servers. Default Value is LOCAL */ readonly vmBackupStorageType: pulumi.Output; /** * The vmcluster type for the VM cluster/Cloud VM cluster. */ readonly vmClusterType: pulumi.Output; /** * Specifies the type of file system storage and supported values are LOCAL and EXASCALE. - LOCAL if selected then file system storage will be on DB Servers. - EXASCALE if selected then file system storage will be on Exascale Storage Servers. Default Value is LOCAL * * ** 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 vmFileSystemStorageType: pulumi.Output; /** * The OCID of the zone the cloud VM cluster is associated with. */ readonly zoneId: pulumi.Output; /** * Create a CloudVmCluster 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: CloudVmClusterArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CloudVmCluster resources. */ export interface CloudVmClusterState { /** * The name of the availability domain that the cloud Exadata infrastructure resource is located in. */ availabilityDomain?: pulumi.Input; /** * (Updatable) A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems. */ backupNetworkNsgIds?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet associated with the cloud VM cluster. */ backupSubnetId?: pulumi.Input; /** * (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period. */ cloudAutomationUpdateDetails?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud Exadata infrastructure resource. */ cloudExadataInfrastructureId?: pulumi.Input; /** * The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive. */ clusterName?: pulumi.Input; /** * (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId?: pulumi.Input; /** * The compute model of the Autonomous AI Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy. */ computeModel?: pulumi.Input; /** * (Updatable) For fixed shapes, this is the total number of OCPUs to enable across the VM cluster. * * Exadata.Base.48 - Specify a multiple of 2, from 0 to 48. * * Exadata.Quarter3.100 - Specify a multiple of 2, from 0 to 100. * * Exadata.Half3.200 - Specify a multiple of 4, from 0 to 200. * * Exadata.Full3.400 - Specify a multiple of 8, from 0 to 400. * * The API specification for fixed shape values is https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/DbSystemShapeSummary * * For flexible shapes X8M and X9M, this is the total number of OCPUs to enable across the VM cluster. The number available for the VM cluster will be based on the number of database servers selected for provisioning the VM cluster on the Exadata Infrastructure. * * Exadata.X8M - Specify a multiple of 2, from 2 to 50 per X8M database server. * * Exadata.X9M - Specify a multiple of 2, from 2 to 126 per X9M database server. * * For flexible shapes X11M and higher, this is the total number of ECPUs to enable across the VM cluster. The number available for the VM cluster will be based on the number of database servers selected for provisioning the VM cluster on the Exadata Infrastructure. * * Exadata.X11M - Specify a multiple of 8, from 8 to 760 per X11M database server. * * The API specification for flexible shape values is https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/datatypes/FlexComponentSummary */ cpuCoreCount?: pulumi.Input; createAsync?: pulumi.Input; /** * (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS. */ dataCollectionOptions?: pulumi.Input; /** * (Updatable) The percentage assigned to DATA storage (user data and database files). See [Storage Configuration](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaoverview.htm#Exadata) in the Exadata documentation for details on the impact of the configuration settings on storage. */ dataStoragePercentage?: pulumi.Input; /** * (Updatable) The data disk group size to be allocated in TBs. */ dataStorageSizeInTbs?: pulumi.Input; /** * (Updatable) The local node storage to be allocated in GBs. */ dbNodeStorageSizeInGbs?: pulumi.Input; /** * The list of DB servers. */ dbServers?: pulumi.Input[] | undefined>; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy. */ diskRedundancy?: pulumi.Input; /** * (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique. */ displayName?: pulumi.Input; /** * A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only. */ domain?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault. */ exascaleDbStorageVaultId?: pulumi.Input; /** * (Updatable) Details of the file system configuration of the VM cluster. */ fileSystemConfigurationDetails?: pulumi.Input[] | undefined>; /** * (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * A valid Oracle Grid Infrastructure (GI) software version. */ giVersion?: pulumi.Input; /** * The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems. * * The maximum length of the combined hostname and domain is 63 characters. * * **Note:** The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision. */ hostname?: pulumi.Input; /** * The IORM settings of the Exadata DB system. */ iormConfigCaches?: pulumi.Input[] | undefined>; /** * (Updatable) If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster. */ isLocalBackupEnabled?: pulumi.Input; /** * (Updatable) If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created. */ isSparseDiskgroupEnabled?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance update history entry. This value is updated when a maintenance update starts. */ lastUpdateHistoryEntryId?: pulumi.Input; /** * (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE. */ licenseModel?: pulumi.Input; /** * Additional information about the current lifecycle state. */ lifecycleDetails?: pulumi.Input; /** * The port number configured for the listener on the cloud VM cluster. */ listenerPort?: pulumi.Input; /** * Details about the most recent live image version applied on the VM Cluster, if any. If a full OS update was applied, the fields would be blank. */ liveImageVersionDetails?: pulumi.Input[] | undefined>; /** * (Updatable) The memory to be allocated in GBs. */ memorySizeInGbs?: pulumi.Input; /** * Details of the multi cloud identity connectors of the VM cluster. */ multiCloudIdentityConnectorConfigs?: pulumi.Input[] | undefined>; /** * The number of nodes in the cloud VM cluster. */ nodeCount?: pulumi.Input; /** * (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:** * * A network security group (NSG) is optional for Autonomous AI Databases with private access. The nsgIds list can be empty. */ nsgIds?: pulumi.Input[] | undefined>; /** * (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part. */ ocpuCount?: pulumi.Input; /** * Oracle Linux version for the respective Exadata Image. */ oracleLinuxVersion?: pulumi.Input; /** * The private zone id in which DNS records need to be created. */ privateZoneId?: pulumi.Input; /** * (Updatable) The percentage assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). See [Storage Configuration](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaoverview.htm#Exadata) in the Exadata documentation for details on the impact of the configuration settings on storage. */ recoStoragePercentage?: pulumi.Input; /** * The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster. */ scanDnsName?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster. */ scanDnsRecordId?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv4 addresses associated with the cloud VM cluster. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster. */ scanIpIds?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv6 addresses associated with the cloud VM cluster. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster. */ scanIpv6ids?: pulumi.Input[] | undefined>; /** * The TCP Single Client Access Name (SCAN) port. The default port is 1521. */ scanListenerPortTcp?: pulumi.Input; /** * The TCPS Single Client Access Name (SCAN) port. The default port is 2484. */ scanListenerPortTcpSsl?: pulumi.Input; /** * (Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}` */ securityAttributes?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The model name of the Exadata hardware running the cloud VM cluster. */ shape?: pulumi.Input; /** * (Updatable) The percentage assigned to SPARSE storage (Exadata snapshots). See [Storage Configuration](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaoverview.htm#Exadata) in the Exadata documentation for details on the impact of the configuration settings on storage. */ sparseStoragePercentage?: pulumi.Input; /** * (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster. */ sshPublicKeys?: pulumi.Input[] | undefined>; /** * The current state of the cloud VM cluster. */ state?: pulumi.Input; /** * Specifies the type of storage management for the Cloud VM Cluster if its ASM or Exascale. */ storageManagementType?: pulumi.Input; /** * The storage allocation for the disk group, in gigabytes (GB). */ storageSizeInGbs?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the cloud VM cluster. */ subnetId?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with. */ subscriptionId?: pulumi.Input; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ systemTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Operating system version of the image. */ systemVersion?: pulumi.Input; /** * Use 'AZURE' for installing azure encryption RPMS. Use 'OCI' to install oracle managed encryption RPMS. Use 'NONE' to uninstall encryption RPMS. */ tdeKeyStoreType?: pulumi.Input; /** * The date and time that the cloud VM cluster was created. */ timeCreated?: pulumi.Input; /** * The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm). */ timeZone?: pulumi.Input; /** * (Updatable) Details specifying which maintenance update to apply to the cloud VM cluster and which action to perform. Use `updateMode` for DomU live update modes or regular full OS update mode. */ updateDetails?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv4 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv4 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster. */ vipIds?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv6 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv6 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster. */ vipv6ids?: pulumi.Input[] | undefined>; /** * (Updatable) Specifies the type of VM Backups Storage and supported values are LOCAL and EXASCALE. - LOCAL if selected then VM Backups storage will be on DB Servers. - EXASCALE if selected then VM Backups storage will be on Exascale Storage Servers. Default Value is LOCAL */ vmBackupStorageType?: pulumi.Input; /** * The vmcluster type for the VM cluster/Cloud VM cluster. */ vmClusterType?: pulumi.Input; /** * Specifies the type of file system storage and supported values are LOCAL and EXASCALE. - LOCAL if selected then file system storage will be on DB Servers. - EXASCALE if selected then file system storage will be on Exascale Storage Servers. Default Value is LOCAL * * ** 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 */ vmFileSystemStorageType?: pulumi.Input; /** * The OCID of the zone the cloud VM cluster is associated with. */ zoneId?: pulumi.Input; } /** * The set of arguments for constructing a CloudVmCluster resource. */ export interface CloudVmClusterArgs { /** * (Updatable) A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems. */ backupNetworkNsgIds?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet associated with the cloud VM cluster. */ backupSubnetId: pulumi.Input; /** * (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period. */ cloudAutomationUpdateDetails?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud Exadata infrastructure resource. */ cloudExadataInfrastructureId: pulumi.Input; /** * The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive. */ clusterName?: pulumi.Input; /** * (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * (Updatable) For fixed shapes, this is the total number of OCPUs to enable across the VM cluster. * * Exadata.Base.48 - Specify a multiple of 2, from 0 to 48. * * Exadata.Quarter3.100 - Specify a multiple of 2, from 0 to 100. * * Exadata.Half3.200 - Specify a multiple of 4, from 0 to 200. * * Exadata.Full3.400 - Specify a multiple of 8, from 0 to 400. * * The API specification for fixed shape values is https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/DbSystemShapeSummary * * For flexible shapes X8M and X9M, this is the total number of OCPUs to enable across the VM cluster. The number available for the VM cluster will be based on the number of database servers selected for provisioning the VM cluster on the Exadata Infrastructure. * * Exadata.X8M - Specify a multiple of 2, from 2 to 50 per X8M database server. * * Exadata.X9M - Specify a multiple of 2, from 2 to 126 per X9M database server. * * For flexible shapes X11M and higher, this is the total number of ECPUs to enable across the VM cluster. The number available for the VM cluster will be based on the number of database servers selected for provisioning the VM cluster on the Exadata Infrastructure. * * Exadata.X11M - Specify a multiple of 8, from 8 to 760 per X11M database server. * * The API specification for flexible shape values is https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/datatypes/FlexComponentSummary */ cpuCoreCount: pulumi.Input; createAsync?: pulumi.Input; /** * (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS. */ dataCollectionOptions?: pulumi.Input; /** * (Updatable) The percentage assigned to DATA storage (user data and database files). See [Storage Configuration](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaoverview.htm#Exadata) in the Exadata documentation for details on the impact of the configuration settings on storage. */ dataStoragePercentage?: pulumi.Input; /** * (Updatable) The data disk group size to be allocated in TBs. */ dataStorageSizeInTbs?: pulumi.Input; /** * (Updatable) The local node storage to be allocated in GBs. */ dbNodeStorageSizeInGbs?: pulumi.Input; /** * The list of DB servers. */ dbServers?: pulumi.Input[] | undefined>; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique. */ displayName: pulumi.Input; /** * A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only. */ domain?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault. */ exascaleDbStorageVaultId?: pulumi.Input; /** * (Updatable) Details of the file system configuration of the VM cluster. */ fileSystemConfigurationDetails?: pulumi.Input[] | undefined>; /** * (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * A valid Oracle Grid Infrastructure (GI) software version. */ giVersion: pulumi.Input; /** * The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems. * * The maximum length of the combined hostname and domain is 63 characters. * * **Note:** The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision. */ hostname: pulumi.Input; /** * (Updatable) If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster. */ isLocalBackupEnabled?: pulumi.Input; /** * (Updatable) If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created. */ isSparseDiskgroupEnabled?: pulumi.Input; /** * (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE. */ licenseModel?: pulumi.Input; /** * (Updatable) The memory to be allocated in GBs. */ memorySizeInGbs?: pulumi.Input; /** * The number of nodes in the cloud VM cluster. */ nodeCount?: pulumi.Input; /** * (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:** * * A network security group (NSG) is optional for Autonomous AI Databases with private access. The nsgIds list can be empty. */ nsgIds?: pulumi.Input[] | undefined>; /** * (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part. */ ocpuCount?: pulumi.Input; /** * The private zone id in which DNS records need to be created. */ privateZoneId?: pulumi.Input; /** * (Updatable) The percentage assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). See [Storage Configuration](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaoverview.htm#Exadata) in the Exadata documentation for details on the impact of the configuration settings on storage. */ recoStoragePercentage?: pulumi.Input; /** * The TCP Single Client Access Name (SCAN) port. The default port is 1521. */ scanListenerPortTcp?: pulumi.Input; /** * The TCPS Single Client Access Name (SCAN) port. The default port is 2484. */ scanListenerPortTcpSsl?: pulumi.Input; /** * (Updatable) Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}` */ securityAttributes?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) The percentage assigned to SPARSE storage (Exadata snapshots). See [Storage Configuration](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaoverview.htm#Exadata) in the Exadata documentation for details on the impact of the configuration settings on storage. */ sparseStoragePercentage?: pulumi.Input; /** * (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster. */ sshPublicKeys: pulumi.Input[]>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the cloud VM cluster. */ subnetId: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with. */ subscriptionId?: pulumi.Input; /** * Operating system version of the image. */ systemVersion?: pulumi.Input; /** * Use 'AZURE' for installing azure encryption RPMS. Use 'OCI' to install oracle managed encryption RPMS. Use 'NONE' to uninstall encryption RPMS. */ tdeKeyStoreType?: pulumi.Input; /** * The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm). */ timeZone?: pulumi.Input; /** * (Updatable) Details specifying which maintenance update to apply to the cloud VM cluster and which action to perform. Use `updateMode` for DomU live update modes or regular full OS update mode. */ updateDetails?: pulumi.Input; /** * (Updatable) Specifies the type of VM Backups Storage and supported values are LOCAL and EXASCALE. - LOCAL if selected then VM Backups storage will be on DB Servers. - EXASCALE if selected then VM Backups storage will be on Exascale Storage Servers. Default Value is LOCAL */ vmBackupStorageType?: pulumi.Input; /** * The vmcluster type for the VM cluster/Cloud VM cluster. */ vmClusterType?: pulumi.Input; /** * Specifies the type of file system storage and supported values are LOCAL and EXASCALE. - LOCAL if selected then file system storage will be on DB Servers. - EXASCALE if selected then file system storage will be on Exascale Storage Servers. Default Value is LOCAL * * ** 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 */ vmFileSystemStorageType?: pulumi.Input; } //# sourceMappingURL=cloudVmCluster.d.ts.map