oci.Database.ExadbVmCluster
Explore with Pulumi AI
This resource provides the Exadb Vm Cluster resource in Oracle Cloud Infrastructure Database service.
Creates an Exadata VM cluster on Exascale Infrastructure
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.ExadbVmCluster;
import com.pulumi.oci.Database.ExadbVmClusterArgs;
import com.pulumi.oci.Database.inputs.ExadbVmClusterNodeConfigArgs;
import com.pulumi.oci.Database.inputs.ExadbVmClusterNodeResourceArgs;
import com.pulumi.oci.Database.inputs.ExadbVmClusterDataCollectionOptionsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testExadbVmCluster = new ExadbVmCluster("testExadbVmCluster", ExadbVmClusterArgs.builder()
.availabilityDomain(exadbVmClusterAvailabilityDomain)
.backupSubnetId(testSubnet.id())
.compartmentId(compartmentId)
.displayName(exadbVmClusterDisplayName)
.exascaleDbStorageVaultId(testExascaleDbStorageVault.id())
.gridImageId(testImage.id())
.hostname(exadbVmClusterHostname)
.shape(exadbVmClusterShape)
.nodeConfig(ExadbVmClusterNodeConfigArgs.builder()
.enabledEcpuPerNode(exadbVmClusterEnabledEcpuPerNode)
.totalEcpuPerNode(exadbVmClusterTotalEcpuPerNode)
.vmFileSystemStorageSizeGbsPerNode(exadbVmClusterVmFileSystemStorageSizeInGbsPerNode)
.build())
.nodeResources(
ExadbVmClusterNodeResourceArgs.builder()
.nodeName("node1")
.build(),
ExadbVmClusterNodeResourceArgs.builder()
.nodeName("node2")
.build())
.sshPublicKeys(exadbVmClusterSshPublicKeys)
.subnetId(testSubnet.id())
.backupNetworkNsgIds(exadbVmClusterBackupNetworkNsgIds)
.clusterName(exadbVmClusterClusterName)
.dataCollectionOptions(ExadbVmClusterDataCollectionOptionsArgs.builder()
.isDiagnosticsEventsEnabled(exadbVmClusterDataCollectionOptionsIsDiagnosticsEventsEnabled)
.isHealthMonitoringEnabled(exadbVmClusterDataCollectionOptionsIsHealthMonitoringEnabled)
.isIncidentLogsEnabled(exadbVmClusterDataCollectionOptionsIsIncidentLogsEnabled)
.build())
.definedTags(exadbVmClusterDefinedTags)
.domain(exadbVmClusterDomain)
.freeformTags(Map.of("Department", "Finance"))
.licenseModel(exadbVmClusterLicenseModel)
.nsgIds(exadbVmClusterNsgIds)
.privateZoneId(testZone.id())
.scanListenerPortTcp(exadbVmClusterScanListenerPortTcp)
.scanListenerPortTcpSsl(exadbVmClusterScanListenerPortTcpSsl)
.systemVersion(exadbVmClusterSystemVersion)
.timeZone(exadbVmClusterTimeZone)
.build());
}
}
resources:
testExadbVmCluster:
type: oci:Database:ExadbVmCluster
name: test_exadb_vm_cluster
properties:
availabilityDomain: ${exadbVmClusterAvailabilityDomain}
backupSubnetId: ${testSubnet.id}
compartmentId: ${compartmentId}
displayName: ${exadbVmClusterDisplayName}
exascaleDbStorageVaultId: ${testExascaleDbStorageVault.id}
gridImageId: ${testImage.id}
hostname: ${exadbVmClusterHostname}
shape: ${exadbVmClusterShape}
nodeConfig:
enabledEcpuPerNode: ${exadbVmClusterEnabledEcpuPerNode}
totalEcpuPerNode: ${exadbVmClusterTotalEcpuPerNode}
vmFileSystemStorageSizeGbsPerNode: ${exadbVmClusterVmFileSystemStorageSizeInGbsPerNode}
nodeResources:
- nodeName: node1
- nodeName: node2
sshPublicKeys: ${exadbVmClusterSshPublicKeys}
subnetId: ${testSubnet.id}
backupNetworkNsgIds: ${exadbVmClusterBackupNetworkNsgIds}
clusterName: ${exadbVmClusterClusterName}
dataCollectionOptions:
isDiagnosticsEventsEnabled: ${exadbVmClusterDataCollectionOptionsIsDiagnosticsEventsEnabled}
isHealthMonitoringEnabled: ${exadbVmClusterDataCollectionOptionsIsHealthMonitoringEnabled}
isIncidentLogsEnabled: ${exadbVmClusterDataCollectionOptionsIsIncidentLogsEnabled}
definedTags: ${exadbVmClusterDefinedTags}
domain: ${exadbVmClusterDomain}
freeformTags:
Department: Finance
licenseModel: ${exadbVmClusterLicenseModel}
nsgIds: ${exadbVmClusterNsgIds}
privateZoneId: ${testZone.id}
scanListenerPortTcp: ${exadbVmClusterScanListenerPortTcp}
scanListenerPortTcpSsl: ${exadbVmClusterScanListenerPortTcpSsl}
systemVersion: ${exadbVmClusterSystemVersion}
timeZone: ${exadbVmClusterTimeZone}
Create ExadbVmCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ExadbVmCluster(name: string, args: ExadbVmClusterArgs, opts?: CustomResourceOptions);
@overload
def ExadbVmCluster(resource_name: str,
args: ExadbVmClusterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ExadbVmCluster(resource_name: str,
opts: Optional[ResourceOptions] = None,
grid_image_id: Optional[str] = None,
subnet_id: Optional[str] = None,
backup_subnet_id: Optional[str] = None,
ssh_public_keys: Optional[Sequence[str]] = None,
compartment_id: Optional[str] = None,
shape: Optional[str] = None,
availability_domain: Optional[str] = None,
display_name: Optional[str] = None,
node_config: Optional[_database.ExadbVmClusterNodeConfigArgs] = None,
exascale_db_storage_vault_id: Optional[str] = None,
hostname: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
scan_listener_port_tcp: Optional[int] = None,
license_model: Optional[str] = None,
domain: Optional[str] = None,
node_resources: Optional[Sequence[_database.ExadbVmClusterNodeResourceArgs]] = None,
nsg_ids: Optional[Sequence[str]] = None,
private_zone_id: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
scan_listener_port_tcp_ssl: Optional[int] = None,
data_collection_options: Optional[_database.ExadbVmClusterDataCollectionOptionsArgs] = None,
cluster_name: Optional[str] = None,
backup_network_nsg_ids: Optional[Sequence[str]] = None,
system_version: Optional[str] = None,
time_zone: Optional[str] = None)
func NewExadbVmCluster(ctx *Context, name string, args ExadbVmClusterArgs, opts ...ResourceOption) (*ExadbVmCluster, error)
public ExadbVmCluster(string name, ExadbVmClusterArgs args, CustomResourceOptions? opts = null)
public ExadbVmCluster(String name, ExadbVmClusterArgs args)
public ExadbVmCluster(String name, ExadbVmClusterArgs args, CustomResourceOptions options)
type: oci:Database:ExadbVmCluster
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ExadbVmClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ExadbVmClusterArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ExadbVmClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExadbVmClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ExadbVmClusterArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var exadbVmClusterResource = new Oci.Database.ExadbVmCluster("exadbVmClusterResource", new()
{
GridImageId = "string",
SubnetId = "string",
BackupSubnetId = "string",
SshPublicKeys = new[]
{
"string",
},
CompartmentId = "string",
Shape = "string",
AvailabilityDomain = "string",
DisplayName = "string",
NodeConfig = new Oci.Database.Inputs.ExadbVmClusterNodeConfigArgs
{
EnabledEcpuCountPerNode = 0,
TotalEcpuCountPerNode = 0,
VmFileSystemStorageSizeGbsPerNode = 0,
MemorySizeInGbsPerNode = 0,
SnapshotFileSystemStorageSizeGbsPerNode = 0,
TotalFileSystemStorageSizeGbsPerNode = 0,
},
ExascaleDbStorageVaultId = "string",
Hostname = "string",
DefinedTags =
{
{ "string", "string" },
},
ScanListenerPortTcp = 0,
LicenseModel = "string",
Domain = "string",
NodeResources = new[]
{
new Oci.Database.Inputs.ExadbVmClusterNodeResourceArgs
{
NodeName = "string",
NodeHostname = "string",
NodeId = "string",
State = "string",
},
},
NsgIds = new[]
{
"string",
},
PrivateZoneId = "string",
FreeformTags =
{
{ "string", "string" },
},
ScanListenerPortTcpSsl = 0,
DataCollectionOptions = new Oci.Database.Inputs.ExadbVmClusterDataCollectionOptionsArgs
{
IsDiagnosticsEventsEnabled = false,
IsHealthMonitoringEnabled = false,
IsIncidentLogsEnabled = false,
},
ClusterName = "string",
BackupNetworkNsgIds = new[]
{
"string",
},
SystemVersion = "string",
TimeZone = "string",
});
example, err := Database.NewExadbVmCluster(ctx, "exadbVmClusterResource", &Database.ExadbVmClusterArgs{
GridImageId: pulumi.String("string"),
SubnetId: pulumi.String("string"),
BackupSubnetId: pulumi.String("string"),
SshPublicKeys: pulumi.StringArray{
pulumi.String("string"),
},
CompartmentId: pulumi.String("string"),
Shape: pulumi.String("string"),
AvailabilityDomain: pulumi.String("string"),
DisplayName: pulumi.String("string"),
NodeConfig: &database.ExadbVmClusterNodeConfigArgs{
EnabledEcpuCountPerNode: pulumi.Int(0),
TotalEcpuCountPerNode: pulumi.Int(0),
VmFileSystemStorageSizeGbsPerNode: pulumi.Int(0),
MemorySizeInGbsPerNode: pulumi.Int(0),
SnapshotFileSystemStorageSizeGbsPerNode: pulumi.Int(0),
TotalFileSystemStorageSizeGbsPerNode: pulumi.Int(0),
},
ExascaleDbStorageVaultId: pulumi.String("string"),
Hostname: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
ScanListenerPortTcp: pulumi.Int(0),
LicenseModel: pulumi.String("string"),
Domain: pulumi.String("string"),
NodeResources: database.ExadbVmClusterNodeResourceArray{
&database.ExadbVmClusterNodeResourceArgs{
NodeName: pulumi.String("string"),
NodeHostname: pulumi.String("string"),
NodeId: pulumi.String("string"),
State: pulumi.String("string"),
},
},
NsgIds: pulumi.StringArray{
pulumi.String("string"),
},
PrivateZoneId: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
ScanListenerPortTcpSsl: pulumi.Int(0),
DataCollectionOptions: &database.ExadbVmClusterDataCollectionOptionsArgs{
IsDiagnosticsEventsEnabled: pulumi.Bool(false),
IsHealthMonitoringEnabled: pulumi.Bool(false),
IsIncidentLogsEnabled: pulumi.Bool(false),
},
ClusterName: pulumi.String("string"),
BackupNetworkNsgIds: pulumi.StringArray{
pulumi.String("string"),
},
SystemVersion: pulumi.String("string"),
TimeZone: pulumi.String("string"),
})
var exadbVmClusterResource = new ExadbVmCluster("exadbVmClusterResource", ExadbVmClusterArgs.builder()
.gridImageId("string")
.subnetId("string")
.backupSubnetId("string")
.sshPublicKeys("string")
.compartmentId("string")
.shape("string")
.availabilityDomain("string")
.displayName("string")
.nodeConfig(ExadbVmClusterNodeConfigArgs.builder()
.enabledEcpuCountPerNode(0)
.totalEcpuCountPerNode(0)
.vmFileSystemStorageSizeGbsPerNode(0)
.memorySizeInGbsPerNode(0)
.snapshotFileSystemStorageSizeGbsPerNode(0)
.totalFileSystemStorageSizeGbsPerNode(0)
.build())
.exascaleDbStorageVaultId("string")
.hostname("string")
.definedTags(Map.of("string", "string"))
.scanListenerPortTcp(0)
.licenseModel("string")
.domain("string")
.nodeResources(ExadbVmClusterNodeResourceArgs.builder()
.nodeName("string")
.nodeHostname("string")
.nodeId("string")
.state("string")
.build())
.nsgIds("string")
.privateZoneId("string")
.freeformTags(Map.of("string", "string"))
.scanListenerPortTcpSsl(0)
.dataCollectionOptions(ExadbVmClusterDataCollectionOptionsArgs.builder()
.isDiagnosticsEventsEnabled(false)
.isHealthMonitoringEnabled(false)
.isIncidentLogsEnabled(false)
.build())
.clusterName("string")
.backupNetworkNsgIds("string")
.systemVersion("string")
.timeZone("string")
.build());
exadb_vm_cluster_resource = oci.database.ExadbVmCluster("exadbVmClusterResource",
grid_image_id="string",
subnet_id="string",
backup_subnet_id="string",
ssh_public_keys=["string"],
compartment_id="string",
shape="string",
availability_domain="string",
display_name="string",
node_config=oci.database.ExadbVmClusterNodeConfigArgs(
enabled_ecpu_count_per_node=0,
total_ecpu_count_per_node=0,
vm_file_system_storage_size_gbs_per_node=0,
memory_size_in_gbs_per_node=0,
snapshot_file_system_storage_size_gbs_per_node=0,
total_file_system_storage_size_gbs_per_node=0,
),
exascale_db_storage_vault_id="string",
hostname="string",
defined_tags={
"string": "string",
},
scan_listener_port_tcp=0,
license_model="string",
domain="string",
node_resources=[oci.database.ExadbVmClusterNodeResourceArgs(
node_name="string",
node_hostname="string",
node_id="string",
state="string",
)],
nsg_ids=["string"],
private_zone_id="string",
freeform_tags={
"string": "string",
},
scan_listener_port_tcp_ssl=0,
data_collection_options=oci.database.ExadbVmClusterDataCollectionOptionsArgs(
is_diagnostics_events_enabled=False,
is_health_monitoring_enabled=False,
is_incident_logs_enabled=False,
),
cluster_name="string",
backup_network_nsg_ids=["string"],
system_version="string",
time_zone="string")
const exadbVmClusterResource = new oci.database.ExadbVmCluster("exadbVmClusterResource", {
gridImageId: "string",
subnetId: "string",
backupSubnetId: "string",
sshPublicKeys: ["string"],
compartmentId: "string",
shape: "string",
availabilityDomain: "string",
displayName: "string",
nodeConfig: {
enabledEcpuCountPerNode: 0,
totalEcpuCountPerNode: 0,
vmFileSystemStorageSizeGbsPerNode: 0,
memorySizeInGbsPerNode: 0,
snapshotFileSystemStorageSizeGbsPerNode: 0,
totalFileSystemStorageSizeGbsPerNode: 0,
},
exascaleDbStorageVaultId: "string",
hostname: "string",
definedTags: {
string: "string",
},
scanListenerPortTcp: 0,
licenseModel: "string",
domain: "string",
nodeResources: [{
nodeName: "string",
nodeHostname: "string",
nodeId: "string",
state: "string",
}],
nsgIds: ["string"],
privateZoneId: "string",
freeformTags: {
string: "string",
},
scanListenerPortTcpSsl: 0,
dataCollectionOptions: {
isDiagnosticsEventsEnabled: false,
isHealthMonitoringEnabled: false,
isIncidentLogsEnabled: false,
},
clusterName: "string",
backupNetworkNsgIds: ["string"],
systemVersion: "string",
timeZone: "string",
});
type: oci:Database:ExadbVmCluster
properties:
availabilityDomain: string
backupNetworkNsgIds:
- string
backupSubnetId: string
clusterName: string
compartmentId: string
dataCollectionOptions:
isDiagnosticsEventsEnabled: false
isHealthMonitoringEnabled: false
isIncidentLogsEnabled: false
definedTags:
string: string
displayName: string
domain: string
exascaleDbStorageVaultId: string
freeformTags:
string: string
gridImageId: string
hostname: string
licenseModel: string
nodeConfig:
enabledEcpuCountPerNode: 0
memorySizeInGbsPerNode: 0
snapshotFileSystemStorageSizeGbsPerNode: 0
totalEcpuCountPerNode: 0
totalFileSystemStorageSizeGbsPerNode: 0
vmFileSystemStorageSizeGbsPerNode: 0
nodeResources:
- nodeHostname: string
nodeId: string
nodeName: string
state: string
nsgIds:
- string
privateZoneId: string
scanListenerPortTcp: 0
scanListenerPortTcpSsl: 0
shape: string
sshPublicKeys:
- string
subnetId: string
systemVersion: string
timeZone: string
ExadbVmCluster Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ExadbVmCluster resource accepts the following input properties:
- Availability
Domain string - The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- Backup
Subnet stringId - The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Display
Name string - (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- Exascale
Db stringStorage Vault Id - The OCID of the Exadata Database Storage Vault.
- Grid
Image stringId - (Updatable) Grid Setup will be done using this grid image id
- Hostname string
The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
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, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.
- Node
Config ExadbVm Cluster Node Config - (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- Shape string
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- Ssh
Public List<string>Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- Subnet
Id string - The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- Backup
Network List<string>Nsg Ids - (Updatable) A list of the OCIDs 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. Applicable only to Exadata systems.
- Cluster
Name string - The cluster name for Exadata VM cluster on Exascale Infrastructure. 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.
- Data
Collection ExadbOptions Vm Cluster Data Collection Options - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Domain string
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then 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 Database Service on Exascale Infrastructure only.
- Dictionary<string, string>
- (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. Example:
{"Department": "Finance"}
- License
Model string - (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- Node
Resources List<ExadbVm Cluster Node Resource> - Each
node_resource
represents a node in the Exadata VM cluster on Exascale Infrastructure. - Nsg
Ids List<string> - (Updatable) The list of OCIDs 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. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- Private
Zone stringId - The private zone ID in which you want DNS records to be created.
- Scan
Listener intPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- Scan
Listener intPort Tcp Ssl - The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- System
Version string - (Updatable) Operating system version of the image.
- Time
Zone string The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
** 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
- Availability
Domain string - The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- Backup
Subnet stringId - The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Display
Name string - (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- Exascale
Db stringStorage Vault Id - The OCID of the Exadata Database Storage Vault.
- Grid
Image stringId - (Updatable) Grid Setup will be done using this grid image id
- Hostname string
The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
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, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.
- Node
Config ExadbVm Cluster Node Config Args - (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- Shape string
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- Ssh
Public []stringKeys - (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- Subnet
Id string - The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- Backup
Network []stringNsg Ids - (Updatable) A list of the OCIDs 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. Applicable only to Exadata systems.
- Cluster
Name string - The cluster name for Exadata VM cluster on Exascale Infrastructure. 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.
- Data
Collection ExadbOptions Vm Cluster Data Collection Options Args - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Domain string
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then 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 Database Service on Exascale Infrastructure only.
- map[string]string
- (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. Example:
{"Department": "Finance"}
- License
Model string - (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- Node
Resources []ExadbVm Cluster Node Resource Args - Each
node_resource
represents a node in the Exadata VM cluster on Exascale Infrastructure. - Nsg
Ids []string - (Updatable) The list of OCIDs 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. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- Private
Zone stringId - The private zone ID in which you want DNS records to be created.
- Scan
Listener intPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- Scan
Listener intPort Tcp Ssl - The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- System
Version string - (Updatable) Operating system version of the image.
- Time
Zone string The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
** 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
- availability
Domain String - The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backup
Subnet StringId - The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- compartment
Id String - (Updatable) The OCID of the compartment.
- display
Name String - (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- exascale
Db StringStorage Vault Id - The OCID of the Exadata Database Storage Vault.
- grid
Image StringId - (Updatable) Grid Setup will be done using this grid image id
- hostname String
The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
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, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.
- node
Config ExadbVm Cluster Node Config - (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- shape String
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- ssh
Public List<String>Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- subnet
Id String - The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- backup
Network List<String>Nsg Ids - (Updatable) A list of the OCIDs 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. Applicable only to Exadata systems.
- cluster
Name String - The cluster name for Exadata VM cluster on Exascale Infrastructure. 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.
- data
Collection ExadbOptions Vm Cluster Data Collection Options - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- domain String
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then 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 Database Service on Exascale Infrastructure only.
- Map<String,String>
- (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. Example:
{"Department": "Finance"}
- license
Model String - (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- node
Resources List<ExadbVm Cluster Node Resource> - Each
node_resource
represents a node in the Exadata VM cluster on Exascale Infrastructure. - nsg
Ids List<String> - (Updatable) The list of OCIDs 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. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- private
Zone StringId - The private zone ID in which you want DNS records to be created.
- scan
Listener IntegerPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scan
Listener IntegerPort Tcp Ssl - The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- system
Version String - (Updatable) Operating system version of the image.
- time
Zone String The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
** 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
- availability
Domain string - The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backup
Subnet stringId - The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- compartment
Id string - (Updatable) The OCID of the compartment.
- display
Name string - (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- exascale
Db stringStorage Vault Id - The OCID of the Exadata Database Storage Vault.
- grid
Image stringId - (Updatable) Grid Setup will be done using this grid image id
- hostname string
The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
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, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.
- node
Config ExadbVm Cluster Node Config - (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- shape string
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- ssh
Public string[]Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- subnet
Id string - The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- backup
Network string[]Nsg Ids - (Updatable) A list of the OCIDs 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. Applicable only to Exadata systems.
- cluster
Name string - The cluster name for Exadata VM cluster on Exascale Infrastructure. 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.
- data
Collection ExadbOptions Vm Cluster Data Collection Options - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- domain string
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then 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 Database Service on Exascale Infrastructure only.
- {[key: string]: string}
- (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. Example:
{"Department": "Finance"}
- license
Model string - (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- node
Resources ExadbVm Cluster Node Resource[] - Each
node_resource
represents a node in the Exadata VM cluster on Exascale Infrastructure. - nsg
Ids string[] - (Updatable) The list of OCIDs 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. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- private
Zone stringId - The private zone ID in which you want DNS records to be created.
- scan
Listener numberPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scan
Listener numberPort Tcp Ssl - The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- system
Version string - (Updatable) Operating system version of the image.
- time
Zone string The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
** 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
- availability_
domain str - The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backup_
subnet_ strid - The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- compartment_
id str - (Updatable) The OCID of the compartment.
- display_
name str - (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- exascale_
db_ strstorage_ vault_ id - The OCID of the Exadata Database Storage Vault.
- grid_
image_ strid - (Updatable) Grid Setup will be done using this grid image id
- hostname str
The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
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, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.
- node_
config database.Exadb Vm Cluster Node Config Args - (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- shape str
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- ssh_
public_ Sequence[str]keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- subnet_
id str - The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- backup_
network_ Sequence[str]nsg_ ids - (Updatable) A list of the OCIDs 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. Applicable only to Exadata systems.
- cluster_
name str - The cluster name for Exadata VM cluster on Exascale Infrastructure. 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.
- data_
collection_ database.options Exadb Vm Cluster Data Collection Options Args - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- domain str
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then 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 Database Service on Exascale Infrastructure only.
- Mapping[str, str]
- (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. Example:
{"Department": "Finance"}
- license_
model str - (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- node_
resources Sequence[database.Exadb Vm Cluster Node Resource Args] - Each
node_resource
represents a node in the Exadata VM cluster on Exascale Infrastructure. - nsg_
ids Sequence[str] - (Updatable) The list of OCIDs 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. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- private_
zone_ strid - The private zone ID in which you want DNS records to be created.
- scan_
listener_ intport_ tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scan_
listener_ intport_ tcp_ ssl - The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- system_
version str - (Updatable) Operating system version of the image.
- time_
zone str The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
** 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
- availability
Domain String - The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backup
Subnet StringId - The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- compartment
Id String - (Updatable) The OCID of the compartment.
- display
Name String - (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- exascale
Db StringStorage Vault Id - The OCID of the Exadata Database Storage Vault.
- grid
Image StringId - (Updatable) Grid Setup will be done using this grid image id
- hostname String
The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
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, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.
- node
Config Property Map - (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- shape String
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- ssh
Public List<String>Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- subnet
Id String - The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- backup
Network List<String>Nsg Ids - (Updatable) A list of the OCIDs 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. Applicable only to Exadata systems.
- cluster
Name String - The cluster name for Exadata VM cluster on Exascale Infrastructure. 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.
- data
Collection Property MapOptions - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- domain String
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then 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 Database Service on Exascale Infrastructure only.
- Map<String>
- (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. Example:
{"Department": "Finance"}
- license
Model String - (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- node
Resources List<Property Map> - Each
node_resource
represents a node in the Exadata VM cluster on Exascale Infrastructure. - nsg
Ids List<String> - (Updatable) The list of OCIDs 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. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- private
Zone StringId - The private zone ID in which you want DNS records to be created.
- scan
Listener NumberPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scan
Listener NumberPort Tcp Ssl - The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- system
Version String - (Updatable) Operating system version of the image.
- time
Zone String The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
** 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
Outputs
All input properties are implicitly available as output properties. Additionally, the ExadbVmCluster resource produces the following output properties:
- Gi
Version string - A valid Oracle Grid Infrastructure (GI) software version.
- Grid
Image stringType - The type of Grid Image
- Id string
- The provider-assigned unique ID for this managed resource.
- Iorm
Config List<ExadbCaches Vm Cluster Iorm Config Cach> - The IORM settings of the Exadata DB system.
- Last
Update stringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Listener
Port string - The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
- Scan
Dns stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- Scan
Dns stringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- Scan
Ip List<string>Ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP 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.
- State string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Created string - The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- Vip
Ids List<string> - The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
- Zone
Id string - The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
- Gi
Version string - A valid Oracle Grid Infrastructure (GI) software version.
- Grid
Image stringType - The type of Grid Image
- Id string
- The provider-assigned unique ID for this managed resource.
- Iorm
Config []ExadbCaches Vm Cluster Iorm Config Cach - The IORM settings of the Exadata DB system.
- Last
Update stringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Listener
Port string - The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
- Scan
Dns stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- Scan
Dns stringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- Scan
Ip []stringIds - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP 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.
- State string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Created string - The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- Vip
Ids []string - The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
- Zone
Id string - The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
- gi
Version String - A valid Oracle Grid Infrastructure (GI) software version.
- grid
Image StringType - The type of Grid Image
- id String
- The provider-assigned unique ID for this managed resource.
- iorm
Config List<ExadbCaches Vm Cluster Iorm Config Cach> - The IORM settings of the Exadata DB system.
- last
Update StringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- lifecycle
Details String - Additional information about the current lifecycle state.
- listener
Port String - The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
- scan
Dns StringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan
Dns StringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan
Ip List<String>Ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP 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.
- state String
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created String - The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- vip
Ids List<String> - The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
- zone
Id String - The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
- gi
Version string - A valid Oracle Grid Infrastructure (GI) software version.
- grid
Image stringType - The type of Grid Image
- id string
- The provider-assigned unique ID for this managed resource.
- iorm
Config ExadbCaches Vm Cluster Iorm Config Cach[] - The IORM settings of the Exadata DB system.
- last
Update stringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- lifecycle
Details string - Additional information about the current lifecycle state.
- listener
Port string - The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
- scan
Dns stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan
Dns stringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan
Ip string[]Ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP 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.
- state string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created string - The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- vip
Ids string[] - The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
- zone
Id string - The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
- gi_
version str - A valid Oracle Grid Infrastructure (GI) software version.
- grid_
image_ strtype - The type of Grid Image
- id str
- The provider-assigned unique ID for this managed resource.
- iorm_
config_ Sequence[database.caches Exadb Vm Cluster Iorm Config Cach] - The IORM settings of the Exadata DB system.
- last_
update_ strhistory_ entry_ id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- lifecycle_
details str - Additional information about the current lifecycle state.
- listener_
port str - The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
- scan_
dns_ strname - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan_
dns_ strrecord_ id - The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan_
ip_ Sequence[str]ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP 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.
- state str
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time_
created str - The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- vip_
ids Sequence[str] - The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
- zone_
id str - The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
- gi
Version String - A valid Oracle Grid Infrastructure (GI) software version.
- grid
Image StringType - The type of Grid Image
- id String
- The provider-assigned unique ID for this managed resource.
- iorm
Config List<Property Map>Caches - The IORM settings of the Exadata DB system.
- last
Update StringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- lifecycle
Details String - Additional information about the current lifecycle state.
- listener
Port String - The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
- scan
Dns StringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan
Dns StringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan
Ip List<String>Ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP 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.
- state String
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created String - The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- vip
Ids List<String> - The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
- zone
Id String - The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
Look up Existing ExadbVmCluster Resource
Get an existing ExadbVmCluster resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ExadbVmClusterState, opts?: CustomResourceOptions): ExadbVmCluster
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
availability_domain: Optional[str] = None,
backup_network_nsg_ids: Optional[Sequence[str]] = None,
backup_subnet_id: Optional[str] = None,
cluster_name: Optional[str] = None,
compartment_id: Optional[str] = None,
data_collection_options: Optional[_database.ExadbVmClusterDataCollectionOptionsArgs] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
domain: Optional[str] = None,
exascale_db_storage_vault_id: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
gi_version: Optional[str] = None,
grid_image_id: Optional[str] = None,
grid_image_type: Optional[str] = None,
hostname: Optional[str] = None,
iorm_config_caches: Optional[Sequence[_database.ExadbVmClusterIormConfigCachArgs]] = None,
last_update_history_entry_id: Optional[str] = None,
license_model: Optional[str] = None,
lifecycle_details: Optional[str] = None,
listener_port: Optional[str] = None,
node_config: Optional[_database.ExadbVmClusterNodeConfigArgs] = None,
node_resources: Optional[Sequence[_database.ExadbVmClusterNodeResourceArgs]] = None,
nsg_ids: Optional[Sequence[str]] = None,
private_zone_id: Optional[str] = None,
scan_dns_name: Optional[str] = None,
scan_dns_record_id: Optional[str] = None,
scan_ip_ids: Optional[Sequence[str]] = None,
scan_listener_port_tcp: Optional[int] = None,
scan_listener_port_tcp_ssl: Optional[int] = None,
shape: Optional[str] = None,
ssh_public_keys: Optional[Sequence[str]] = None,
state: Optional[str] = None,
subnet_id: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
system_version: Optional[str] = None,
time_created: Optional[str] = None,
time_zone: Optional[str] = None,
vip_ids: Optional[Sequence[str]] = None,
zone_id: Optional[str] = None) -> ExadbVmCluster
func GetExadbVmCluster(ctx *Context, name string, id IDInput, state *ExadbVmClusterState, opts ...ResourceOption) (*ExadbVmCluster, error)
public static ExadbVmCluster Get(string name, Input<string> id, ExadbVmClusterState? state, CustomResourceOptions? opts = null)
public static ExadbVmCluster get(String name, Output<String> id, ExadbVmClusterState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Availability
Domain string - The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- Backup
Network List<string>Nsg Ids - (Updatable) A list of the OCIDs 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. Applicable only to Exadata systems.
- Backup
Subnet stringId - The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- Cluster
Name string - The cluster name for Exadata VM cluster on Exascale Infrastructure. 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.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Data
Collection ExadbOptions Vm Cluster Data Collection Options - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- Domain string
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then 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 Database Service on Exascale Infrastructure only.
- Exascale
Db stringStorage Vault Id - The OCID of the Exadata Database Storage Vault.
- Dictionary<string, string>
- (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. Example:
{"Department": "Finance"}
- Gi
Version string - A valid Oracle Grid Infrastructure (GI) software version.
- Grid
Image stringId - (Updatable) Grid Setup will be done using this grid image id
- Grid
Image stringType - The type of Grid Image
- Hostname string
The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
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, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.
- Iorm
Config List<ExadbCaches Vm Cluster Iorm Config Cach> - The IORM settings of the Exadata DB system.
- Last
Update stringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- License
Model string - (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Listener
Port string - The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
- Node
Config ExadbVm Cluster Node Config - (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- Node
Resources List<ExadbVm Cluster Node Resource> - Each
node_resource
represents a node in the Exadata VM cluster on Exascale Infrastructure. - Nsg
Ids List<string> - (Updatable) The list of OCIDs 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. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- Private
Zone stringId - The private zone ID in which you want DNS records to be created.
- Scan
Dns stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- Scan
Dns stringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- Scan
Ip List<string>Ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP 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.
- Scan
Listener intPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- Scan
Listener intPort Tcp Ssl - The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- Shape string
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- Ssh
Public List<string>Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- State string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- Subnet
Id string - The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- System
Version string - (Updatable) Operating system version of the image.
- Time
Created string - The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- Time
Zone string The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
** 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
- Vip
Ids List<string> - The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
- Zone
Id string - The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
- Availability
Domain string - The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- Backup
Network []stringNsg Ids - (Updatable) A list of the OCIDs 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. Applicable only to Exadata systems.
- Backup
Subnet stringId - The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- Cluster
Name string - The cluster name for Exadata VM cluster on Exascale Infrastructure. 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.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Data
Collection ExadbOptions Vm Cluster Data Collection Options Args - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- Domain string
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then 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 Database Service on Exascale Infrastructure only.
- Exascale
Db stringStorage Vault Id - The OCID of the Exadata Database Storage Vault.
- map[string]string
- (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. Example:
{"Department": "Finance"}
- Gi
Version string - A valid Oracle Grid Infrastructure (GI) software version.
- Grid
Image stringId - (Updatable) Grid Setup will be done using this grid image id
- Grid
Image stringType - The type of Grid Image
- Hostname string
The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
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, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.
- Iorm
Config []ExadbCaches Vm Cluster Iorm Config Cach Args - The IORM settings of the Exadata DB system.
- Last
Update stringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- License
Model string - (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Listener
Port string - The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
- Node
Config ExadbVm Cluster Node Config Args - (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- Node
Resources []ExadbVm Cluster Node Resource Args - Each
node_resource
represents a node in the Exadata VM cluster on Exascale Infrastructure. - Nsg
Ids []string - (Updatable) The list of OCIDs 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. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- Private
Zone stringId - The private zone ID in which you want DNS records to be created.
- Scan
Dns stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- Scan
Dns stringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- Scan
Ip []stringIds - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP 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.
- Scan
Listener intPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- Scan
Listener intPort Tcp Ssl - The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- Shape string
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- Ssh
Public []stringKeys - (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- State string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- Subnet
Id string - The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- System
Version string - (Updatable) Operating system version of the image.
- Time
Created string - The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- Time
Zone string The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
** 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
- Vip
Ids []string - The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
- Zone
Id string - The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
- availability
Domain String - The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backup
Network List<String>Nsg Ids - (Updatable) A list of the OCIDs 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. Applicable only to Exadata systems.
- backup
Subnet StringId - The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- cluster
Name String - The cluster name for Exadata VM cluster on Exascale Infrastructure. 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.
- compartment
Id String - (Updatable) The OCID of the compartment.
- data
Collection ExadbOptions Vm Cluster Data Collection Options - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- domain String
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then 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 Database Service on Exascale Infrastructure only.
- exascale
Db StringStorage Vault Id - The OCID of the Exadata Database Storage Vault.
- Map<String,String>
- (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. Example:
{"Department": "Finance"}
- gi
Version String - A valid Oracle Grid Infrastructure (GI) software version.
- grid
Image StringId - (Updatable) Grid Setup will be done using this grid image id
- grid
Image StringType - The type of Grid Image
- hostname String
The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
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, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.
- iorm
Config List<ExadbCaches Vm Cluster Iorm Config Cach> - The IORM settings of the Exadata DB system.
- last
Update StringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- license
Model String - (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle
Details String - Additional information about the current lifecycle state.
- listener
Port String - The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
- node
Config ExadbVm Cluster Node Config - (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- node
Resources List<ExadbVm Cluster Node Resource> - Each
node_resource
represents a node in the Exadata VM cluster on Exascale Infrastructure. - nsg
Ids List<String> - (Updatable) The list of OCIDs 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. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- private
Zone StringId - The private zone ID in which you want DNS records to be created.
- scan
Dns StringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan
Dns StringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan
Ip List<String>Ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP 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.
- scan
Listener IntegerPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scan
Listener IntegerPort Tcp Ssl - The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- shape String
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- ssh
Public List<String>Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- state String
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- subnet
Id String - The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- system
Version String - (Updatable) Operating system version of the image.
- time
Created String - The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- time
Zone String The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
** 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
- vip
Ids List<String> - The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
- zone
Id String - The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
- availability
Domain string - The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backup
Network string[]Nsg Ids - (Updatable) A list of the OCIDs 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. Applicable only to Exadata systems.
- backup
Subnet stringId - The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- cluster
Name string - The cluster name for Exadata VM cluster on Exascale Infrastructure. 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.
- compartment
Id string - (Updatable) The OCID of the compartment.
- data
Collection ExadbOptions Vm Cluster Data Collection Options - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name string - (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- domain string
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then 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 Database Service on Exascale Infrastructure only.
- exascale
Db stringStorage Vault Id - The OCID of the Exadata Database Storage Vault.
- {[key: string]: string}
- (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. Example:
{"Department": "Finance"}
- gi
Version string - A valid Oracle Grid Infrastructure (GI) software version.
- grid
Image stringId - (Updatable) Grid Setup will be done using this grid image id
- grid
Image stringType - The type of Grid Image
- hostname string
The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
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, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.
- iorm
Config ExadbCaches Vm Cluster Iorm Config Cach[] - The IORM settings of the Exadata DB system.
- last
Update stringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- license
Model string - (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle
Details string - Additional information about the current lifecycle state.
- listener
Port string - The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
- node
Config ExadbVm Cluster Node Config - (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- node
Resources ExadbVm Cluster Node Resource[] - Each
node_resource
represents a node in the Exadata VM cluster on Exascale Infrastructure. - nsg
Ids string[] - (Updatable) The list of OCIDs 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. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- private
Zone stringId - The private zone ID in which you want DNS records to be created.
- scan
Dns stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan
Dns stringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan
Ip string[]Ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP 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.
- scan
Listener numberPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scan
Listener numberPort Tcp Ssl - The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- shape string
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- ssh
Public string[]Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- state string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- subnet
Id string - The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- system
Version string - (Updatable) Operating system version of the image.
- time
Created string - The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- time
Zone string The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
** 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
- vip
Ids string[] - The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
- zone
Id string - The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
- availability_
domain str - The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backup_
network_ Sequence[str]nsg_ ids - (Updatable) A list of the OCIDs 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. Applicable only to Exadata systems.
- backup_
subnet_ strid - The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- cluster_
name str - The cluster name for Exadata VM cluster on Exascale Infrastructure. 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.
- compartment_
id str - (Updatable) The OCID of the compartment.
- data_
collection_ database.options Exadb Vm Cluster Data Collection Options Args - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display_
name str - (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- domain str
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then 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 Database Service on Exascale Infrastructure only.
- exascale_
db_ strstorage_ vault_ id - The OCID of the Exadata Database Storage Vault.
- Mapping[str, str]
- (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. Example:
{"Department": "Finance"}
- gi_
version str - A valid Oracle Grid Infrastructure (GI) software version.
- grid_
image_ strid - (Updatable) Grid Setup will be done using this grid image id
- grid_
image_ strtype - The type of Grid Image
- hostname str
The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
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, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.
- iorm_
config_ Sequence[database.caches Exadb Vm Cluster Iorm Config Cach Args] - The IORM settings of the Exadata DB system.
- last_
update_ strhistory_ entry_ id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- license_
model str - (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle_
details str - Additional information about the current lifecycle state.
- listener_
port str - The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
- node_
config database.Exadb Vm Cluster Node Config Args - (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- node_
resources Sequence[database.Exadb Vm Cluster Node Resource Args] - Each
node_resource
represents a node in the Exadata VM cluster on Exascale Infrastructure. - nsg_
ids Sequence[str] - (Updatable) The list of OCIDs 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. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- private_
zone_ strid - The private zone ID in which you want DNS records to be created.
- scan_
dns_ strname - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan_
dns_ strrecord_ id - The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan_
ip_ Sequence[str]ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP 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.
- scan_
listener_ intport_ tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scan_
listener_ intport_ tcp_ ssl - The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- shape str
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- ssh_
public_ Sequence[str]keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- state str
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- subnet_
id str - The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- system_
version str - (Updatable) Operating system version of the image.
- time_
created str - The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- time_
zone str The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
** 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
- vip_
ids Sequence[str] - The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
- zone_
id str - The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
- availability
Domain String - The name of the availability domain in which the Exadata VM cluster on Exascale Infrastructure is located.
- backup
Network List<String>Nsg Ids - (Updatable) A list of the OCIDs 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. Applicable only to Exadata systems.
- backup
Subnet StringId - The OCID of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- cluster
Name String - The cluster name for Exadata VM cluster on Exascale Infrastructure. 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.
- compartment
Id String - (Updatable) The OCID of the compartment.
- data
Collection Property MapOptions - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - (Updatable) The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique.
- domain String
- A domain name used for the Exadata VM cluster on Exascale Infrastructure. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, then 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 Database Service on Exascale Infrastructure only.
- exascale
Db StringStorage Vault Id - The OCID of the Exadata Database Storage Vault.
- Map<String>
- (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. Example:
{"Department": "Finance"}
- gi
Version String - A valid Oracle Grid Infrastructure (GI) software version.
- grid
Image StringId - (Updatable) Grid Setup will be done using this grid image id
- grid
Image StringType - The type of Grid Image
- hostname String
The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
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, then the Exadata VM cluster on Exascale Infrastructure will fail to provision.
- iorm
Config List<Property Map>Caches - The IORM settings of the Exadata DB system.
- last
Update StringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- license
Model String - (Updatable) The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle
Details String - Additional information about the current lifecycle state.
- listener
Port String - The port number configured for the listener on the Exadata VM cluster on Exascale Infrastructure.
- node
Config Property Map - (Updatable) The configuration of each node in the Exadata VM cluster on Exascale Infrastructure.
- node
Resources List<Property Map> - Each
node_resource
represents a node in the Exadata VM cluster on Exascale Infrastructure. - nsg
Ids List<String> - (Updatable) The list of OCIDs 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. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- private
Zone StringId - The private zone ID in which you want DNS records to be created.
- scan
Dns StringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan
Dns StringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the Exadata VM cluster on Exascale Infrastructure.
- scan
Ip List<String>Ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the Exadata VM cluster on Exascale Infrastructure. SCAN IP 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.
- scan
Listener NumberPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scan
Listener NumberPort Tcp Ssl - The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
- shape String
- The shape of the Exadata VM cluster on Exascale Infrastructure resource
- ssh
Public List<String>Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
- state String
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- subnet
Id String - The OCID of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- system
Version String - (Updatable) Operating system version of the image.
- time
Created String - The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
- time
Zone String The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see Time Zones.
** 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
- vip
Ids List<String> - The OCID of the virtual IP (VIP) addresses associated with the Exadata VM cluster on Exascale Infrastructure. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, then the VIP is reassigned to another active node in the cluster.
- zone
Id String - The OCID of the zone with which the Exadata VM cluster on Exascale Infrastructure is associated.
Supporting Types
ExadbVmClusterDataCollectionOptions, ExadbVmClusterDataCollectionOptionsArgs
- Is
Diagnostics boolEvents Enabled - (Updatable) Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the
UpdateVmCluster
orupdateCloudVmCluster
API. - Is
Health boolMonitoring Enabled - (Updatable) Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the
UpdateVmCluster
,UpdateCloudVmCluster
orupdateDbsystem
API. - Is
Incident boolLogs Enabled - (Updatable) Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the
UpdateVmCluster
,updateCloudVmCluster
orupdateDbsystem
API.
- Is
Diagnostics boolEvents Enabled - (Updatable) Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the
UpdateVmCluster
orupdateCloudVmCluster
API. - Is
Health boolMonitoring Enabled - (Updatable) Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the
UpdateVmCluster
,UpdateCloudVmCluster
orupdateDbsystem
API. - Is
Incident boolLogs Enabled - (Updatable) Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the
UpdateVmCluster
,updateCloudVmCluster
orupdateDbsystem
API.
- is
Diagnostics BooleanEvents Enabled - (Updatable) Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the
UpdateVmCluster
orupdateCloudVmCluster
API. - is
Health BooleanMonitoring Enabled - (Updatable) Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the
UpdateVmCluster
,UpdateCloudVmCluster
orupdateDbsystem
API. - is
Incident BooleanLogs Enabled - (Updatable) Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the
UpdateVmCluster
,updateCloudVmCluster
orupdateDbsystem
API.
- is
Diagnostics booleanEvents Enabled - (Updatable) Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the
UpdateVmCluster
orupdateCloudVmCluster
API. - is
Health booleanMonitoring Enabled - (Updatable) Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the
UpdateVmCluster
,UpdateCloudVmCluster
orupdateDbsystem
API. - is
Incident booleanLogs Enabled - (Updatable) Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the
UpdateVmCluster
,updateCloudVmCluster
orupdateDbsystem
API.
- is_
diagnostics_ boolevents_ enabled - (Updatable) Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the
UpdateVmCluster
orupdateCloudVmCluster
API. - is_
health_ boolmonitoring_ enabled - (Updatable) Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the
UpdateVmCluster
,UpdateCloudVmCluster
orupdateDbsystem
API. - is_
incident_ boollogs_ enabled - (Updatable) Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the
UpdateVmCluster
,updateCloudVmCluster
orupdateDbsystem
API.
- is
Diagnostics BooleanEvents Enabled - (Updatable) Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the
UpdateVmCluster
orupdateCloudVmCluster
API. - is
Health BooleanMonitoring Enabled - (Updatable) Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the
UpdateVmCluster
,UpdateCloudVmCluster
orupdateDbsystem
API. - is
Incident BooleanLogs Enabled - (Updatable) Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the
UpdateVmCluster
,updateCloudVmCluster
orupdateDbsystem
API.
ExadbVmClusterIormConfigCach, ExadbVmClusterIormConfigCachArgs
- Db
Plans List<ExadbVm Cluster Iorm Config Cach Db Plan> - An array of IORM settings for all the database in the Exadata DB system.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Objective string
- The current value for the IORM objective. The default is
AUTO
. - State string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- Db
Plans []ExadbVm Cluster Iorm Config Cach Db Plan - An array of IORM settings for all the database in the Exadata DB system.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Objective string
- The current value for the IORM objective. The default is
AUTO
. - State string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- db
Plans List<ExadbVm Cluster Iorm Config Cach Db Plan> - An array of IORM settings for all the database in the Exadata DB system.
- lifecycle
Details String - Additional information about the current lifecycle state.
- objective String
- The current value for the IORM objective. The default is
AUTO
. - state String
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- db
Plans ExadbVm Cluster Iorm Config Cach Db Plan[] - An array of IORM settings for all the database in the Exadata DB system.
- lifecycle
Details string - Additional information about the current lifecycle state.
- objective string
- The current value for the IORM objective. The default is
AUTO
. - state string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- db_
plans Sequence[database.Exadb Vm Cluster Iorm Config Cach Db Plan] - An array of IORM settings for all the database in the Exadata DB system.
- lifecycle_
details str - Additional information about the current lifecycle state.
- objective str
- The current value for the IORM objective. The default is
AUTO
. - state str
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- db
Plans List<Property Map> - An array of IORM settings for all the database in the Exadata DB system.
- lifecycle
Details String - Additional information about the current lifecycle state.
- objective String
- The current value for the IORM objective. The default is
AUTO
. - state String
- The current state of the Exadata VM cluster on Exascale Infrastructure.
ExadbVmClusterIormConfigCachDbPlan, ExadbVmClusterIormConfigCachDbPlanArgs
- Db
Name string - The database name. For the default
DbPlan
, thedbName
isdefault
. - Flash
Cache stringLimit - The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- int
- The relative priority of this database.
- Db
Name string - The database name. For the default
DbPlan
, thedbName
isdefault
. - Flash
Cache stringLimit - The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- int
- The relative priority of this database.
- db
Name String - The database name. For the default
DbPlan
, thedbName
isdefault
. - flash
Cache StringLimit - The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- Integer
- The relative priority of this database.
- db
Name string - The database name. For the default
DbPlan
, thedbName
isdefault
. - flash
Cache stringLimit - The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- number
- The relative priority of this database.
- db_
name str - The database name. For the default
DbPlan
, thedbName
isdefault
. - flash_
cache_ strlimit - The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- int
- The relative priority of this database.
- db
Name String - The database name. For the default
DbPlan
, thedbName
isdefault
. - flash
Cache StringLimit - The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- Number
- The relative priority of this database.
ExadbVmClusterNodeConfig, ExadbVmClusterNodeConfigArgs
- Enabled
Ecpu intCount Per Node - (Updatable) The number of ECPUs to enable for each node.
- Total
Ecpu intCount Per Node - (Updatable) The number of Total ECPUs for each node.
- Vm
File intSystem Storage Size Gbs Per Node - (Updatable) The file system storage in GBs for each node.
- Memory
Size intIn Gbs Per Node - The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
- Snapshot
File intSystem Storage Size Gbs Per Node - The file system storage in GBs for snapshot for each node.
- Total
File intSystem Storage Size Gbs Per Node - Total file system storage in GBs for each node.
- Enabled
Ecpu intCount Per Node - (Updatable) The number of ECPUs to enable for each node.
- Total
Ecpu intCount Per Node - (Updatable) The number of Total ECPUs for each node.
- Vm
File intSystem Storage Size Gbs Per Node - (Updatable) The file system storage in GBs for each node.
- Memory
Size intIn Gbs Per Node - The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
- Snapshot
File intSystem Storage Size Gbs Per Node - The file system storage in GBs for snapshot for each node.
- Total
File intSystem Storage Size Gbs Per Node - Total file system storage in GBs for each node.
- enabled
Ecpu IntegerCount Per Node - (Updatable) The number of ECPUs to enable for each node.
- total
Ecpu IntegerCount Per Node - (Updatable) The number of Total ECPUs for each node.
- vm
File IntegerSystem Storage Size Gbs Per Node - (Updatable) The file system storage in GBs for each node.
- memory
Size IntegerIn Gbs Per Node - The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
- snapshot
File IntegerSystem Storage Size Gbs Per Node - The file system storage in GBs for snapshot for each node.
- total
File IntegerSystem Storage Size Gbs Per Node - Total file system storage in GBs for each node.
- enabled
Ecpu numberCount Per Node - (Updatable) The number of ECPUs to enable for each node.
- total
Ecpu numberCount Per Node - (Updatable) The number of Total ECPUs for each node.
- vm
File numberSystem Storage Size Gbs Per Node - (Updatable) The file system storage in GBs for each node.
- memory
Size numberIn Gbs Per Node - The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
- snapshot
File numberSystem Storage Size Gbs Per Node - The file system storage in GBs for snapshot for each node.
- total
File numberSystem Storage Size Gbs Per Node - Total file system storage in GBs for each node.
- enabled_
ecpu_ intcount_ per_ node - (Updatable) The number of ECPUs to enable for each node.
- total_
ecpu_ intcount_ per_ node - (Updatable) The number of Total ECPUs for each node.
- vm_
file_ intsystem_ storage_ size_ gbs_ per_ node - (Updatable) The file system storage in GBs for each node.
- memory_
size_ intin_ gbs_ per_ node - The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
- snapshot_
file_ intsystem_ storage_ size_ gbs_ per_ node - The file system storage in GBs for snapshot for each node.
- total_
file_ intsystem_ storage_ size_ gbs_ per_ node - Total file system storage in GBs for each node.
- enabled
Ecpu NumberCount Per Node - (Updatable) The number of ECPUs to enable for each node.
- total
Ecpu NumberCount Per Node - (Updatable) The number of Total ECPUs for each node.
- vm
File NumberSystem Storage Size Gbs Per Node - (Updatable) The file system storage in GBs for each node.
- memory
Size NumberIn Gbs Per Node - The memory that you want to be allocated in GBs to each node. Memory is calculated based on 11 GB per VM core reserved.
- snapshot
File NumberSystem Storage Size Gbs Per Node - The file system storage in GBs for snapshot for each node.
- total
File NumberSystem Storage Size Gbs Per Node - Total file system storage in GBs for each node.
ExadbVmClusterNodeResource, ExadbVmClusterNodeResourceArgs
- Node
Name string - Node
Hostname string - The host name for the node.
- Node
Id string - The OCID of the node.
- State string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- Node
Name string - Node
Hostname string - The host name for the node.
- Node
Id string - The OCID of the node.
- State string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- node
Name String - node
Hostname String - The host name for the node.
- node
Id String - The OCID of the node.
- state String
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- node
Name string - node
Hostname string - The host name for the node.
- node
Id string - The OCID of the node.
- state string
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- node_
name str - node_
hostname str - The host name for the node.
- node_
id str - The OCID of the node.
- state str
- The current state of the Exadata VM cluster on Exascale Infrastructure.
- node
Name String - node
Hostname String - The host name for the node.
- node
Id String - The OCID of the node.
- state String
- The current state of the Exadata VM cluster on Exascale Infrastructure.
Import
ExadbVmClusters can be imported using the id
, e.g.
$ pulumi import oci:Database/exadbVmCluster:ExadbVmCluster test_exadb_vm_cluster "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.