Class: Aws::Odb::Types::CloudVmCluster
- Inherits:
-
Struct
- Object
- Struct
- Aws::Odb::Types::CloudVmCluster
- Defined in:
- gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb
Overview
Information about a VM cluster.
Constant Summary collapse
- SENSITIVE =
[:ssh_public_keys]
Instance Attribute Summary collapse
-
#cloud_exadata_infrastructure_id ⇒ String
The unique identifier of the Exadata infrastructure that this VM cluster belongs to.
-
#cloud_vm_cluster_arn ⇒ String
The Amazon Resource Name (ARN) of the VM cluster.
-
#cloud_vm_cluster_id ⇒ String
The unique identifier of the VM cluster.
-
#cluster_name ⇒ String
The name of the Grid Infrastructure (GI) cluster.
-
#compute_model ⇒ String
The OCI model compute model used when you create or clone an instance: ECPU or OCPU.
-
#cpu_core_count ⇒ Integer
The number of CPU cores enabled on the VM cluster.
-
#created_at ⇒ Time
The date and time when the VM cluster was created.
-
#data_collection_options ⇒ Types::DataCollectionOptions
The set of diagnostic collection options enabled for the VM cluster.
-
#data_storage_size_in_t_bs ⇒ Float
The size of the data disk group, in terabytes (TB), that's allocated for the VM cluster.
-
#db_node_storage_size_in_g_bs ⇒ Integer
The amount of local node storage, in gigabytes (GB), that's allocated for the VM cluster.
-
#db_servers ⇒ Array<String>
The list of database servers for the VM cluster.
-
#disk_redundancy ⇒ String
The type of redundancy configured for the VM cluster.
-
#display_name ⇒ String
The user-friendly name for the VM cluster.
-
#domain ⇒ String
The domain of the VM cluster.
-
#gi_version ⇒ String
The software version of the Oracle Grid Infrastructure (GI) for the VM cluster.
-
#hostname ⇒ String
The host name for the VM cluster.
-
#iorm_config_cache ⇒ Types::ExadataIormConfig
The ExadataIormConfig cache details for the VM cluster.
-
#is_local_backup_enabled ⇒ Boolean
Indicates whether database backups to local Exadata storage is enabled for the VM cluster.
-
#is_sparse_diskgroup_enabled ⇒ Boolean
Indicates whether the VM cluster is configured with a sparse disk group.
-
#last_update_history_entry_id ⇒ String
The Oracle Cloud ID (OCID) of the last maintenance update history entry.
-
#license_model ⇒ String
The Oracle license model applied to the VM cluster.
-
#listener_port ⇒ Integer
The port number configured for the listener on the VM cluster.
-
#memory_size_in_g_bs ⇒ Integer
The amount of memory, in gigabytes (GB), that's allocated for the VM cluster.
-
#node_count ⇒ Integer
The number of nodes in the VM cluster.
-
#oci_resource_anchor_name ⇒ String
The name of the OCI resource anchor for the VM cluster.
-
#oci_url ⇒ String
The HTTPS link to the VM cluster in OCI.
-
#ocid ⇒ String
The OCID of the VM cluster.
-
#odb_network_id ⇒ String
The unique identifier of the ODB network for the VM cluster.
-
#percent_progress ⇒ Float
The amount of progress made on the current operation on the VM cluster, expressed as a percentage.
-
#scan_dns_name ⇒ String
The FQDN of the DNS record for the Single Client Access Name (SCAN) IP addresses that are associated with the VM cluster.
-
#scan_dns_record_id ⇒ String
The OCID of the DNS record for the SCAN IP addresses that are associated with the VM cluster.
-
#scan_ip_ids ⇒ Array<String>
The OCID of the SCAN IP addresses that are associated with the VM cluster.
-
#shape ⇒ String
The hardware model name of the Exadata infrastructure that's running the VM cluster.
-
#ssh_public_keys ⇒ Array<String>
The public key portion of one or more key pairs used for SSH access to the VM cluster.
-
#status ⇒ String
The current status of the VM cluster.
-
#status_reason ⇒ String
Additional information about the status of the VM cluster.
-
#storage_size_in_g_bs ⇒ Integer
The amount of local node storage, in gigabytes (GB), that's allocated to the VM cluster.
-
#system_version ⇒ String
The operating system version of the image chosen for the VM cluster.
-
#time_zone ⇒ String
The time zone of the VM cluster.
-
#vip_ids ⇒ Array<String>
The virtual IP (VIP) addresses that are associated with the VM cluster.
Instance Attribute Details
#cloud_exadata_infrastructure_id ⇒ String
The unique identifier of the Exadata infrastructure that this VM cluster belongs to.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#cloud_vm_cluster_arn ⇒ String
The Amazon Resource Name (ARN) of the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#cloud_vm_cluster_id ⇒ String
The unique identifier of the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#cluster_name ⇒ String
The name of the Grid Infrastructure (GI) cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#compute_model ⇒ String
The OCI model compute model used when you create or clone an instance: ECPU or OCPU. An ECPU is an abstracted measure of compute resources. ECPUs are based on the number of cores elastically allocated from a pool of compute and storage servers. An OCPU is a legacy physical measure of compute resources. OCPUs are based on the physical core of a processor with hyper-threading enabled.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#cpu_core_count ⇒ Integer
The number of CPU cores enabled on the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#created_at ⇒ Time
The date and time when the VM cluster was created.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#data_collection_options ⇒ Types::DataCollectionOptions
The set of diagnostic collection options enabled for the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#data_storage_size_in_t_bs ⇒ Float
The size of the data disk group, in terabytes (TB), that's allocated for the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#db_node_storage_size_in_g_bs ⇒ Integer
The amount of local node storage, in gigabytes (GB), that's allocated for the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#db_servers ⇒ Array<String>
The list of database servers for the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#disk_redundancy ⇒ String
The type of redundancy configured for the VM cluster. NORMAL
is
2-way redundancy. HIGH
is 3-way redundancy.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#display_name ⇒ String
The user-friendly name for the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#domain ⇒ String
The domain of the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#gi_version ⇒ String
The software version of the Oracle Grid Infrastructure (GI) for the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#hostname ⇒ String
The host name for the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#iorm_config_cache ⇒ Types::ExadataIormConfig
The ExadataIormConfig cache details for the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#is_local_backup_enabled ⇒ Boolean
Indicates whether database backups to local Exadata storage is enabled for the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#is_sparse_diskgroup_enabled ⇒ Boolean
Indicates whether the VM cluster is configured with a sparse disk group.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#last_update_history_entry_id ⇒ String
The Oracle Cloud ID (OCID) of the last maintenance update history entry.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#license_model ⇒ String
The Oracle license model applied to the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#listener_port ⇒ Integer
The port number configured for the listener on the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#memory_size_in_g_bs ⇒ Integer
The amount of memory, in gigabytes (GB), that's allocated for the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#node_count ⇒ Integer
The number of nodes in the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#oci_resource_anchor_name ⇒ String
The name of the OCI resource anchor for the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#oci_url ⇒ String
The HTTPS link to the VM cluster in OCI.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#ocid ⇒ String
The OCID of the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#odb_network_id ⇒ String
The unique identifier of the ODB network for the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#percent_progress ⇒ Float
The amount of progress made on the current operation on the VM cluster, expressed as a percentage.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#scan_dns_name ⇒ String
The FQDN of the DNS record for the Single Client Access Name (SCAN) IP addresses that are associated with the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#scan_dns_record_id ⇒ String
The OCID of the DNS record for the SCAN IP addresses that are associated with the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#scan_ip_ids ⇒ Array<String>
The OCID of the SCAN IP addresses that are associated with the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#shape ⇒ String
The hardware model name of the Exadata infrastructure that's running the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#ssh_public_keys ⇒ Array<String>
The public key portion of one or more key pairs used for SSH access to the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#status ⇒ String
The current status of the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#status_reason ⇒ String
Additional information about the status of the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#storage_size_in_g_bs ⇒ Integer
The amount of local node storage, in gigabytes (GB), that's allocated to the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#system_version ⇒ String
The operating system version of the image chosen for the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#time_zone ⇒ String
The time zone of the VM cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |
#vip_ids ⇒ Array<String>
The virtual IP (VIP) addresses that are associated with the VM cluster. Oracle's Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the VM cluster to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 1413 class CloudVmCluster < Struct.new( :cloud_vm_cluster_id, :display_name, :status, :status_reason, :cloud_vm_cluster_arn, :cloud_exadata_infrastructure_id, :cluster_name, :cpu_core_count, :data_collection_options, :data_storage_size_in_t_bs, :db_node_storage_size_in_g_bs, :db_servers, :disk_redundancy, :gi_version, :hostname, :iorm_config_cache, :is_local_backup_enabled, :is_sparse_diskgroup_enabled, :last_update_history_entry_id, :license_model, :listener_port, :memory_size_in_g_bs, :node_count, :ocid, :oci_resource_anchor_name, :oci_url, :domain, :scan_dns_name, :scan_dns_record_id, :scan_ip_ids, :shape, :ssh_public_keys, :storage_size_in_g_bs, :system_version, :created_at, :time_zone, :vip_ids, :odb_network_id, :percent_progress, :compute_model) SENSITIVE = [:ssh_public_keys] include Aws::Structure end |