# This is an automatically generated code sample.
# To make this code sample work in your Oracle Cloud tenancy,
# please replace the values for any parameters whose current values do not fit
# your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
# boolean, number, and enum parameters with values not fitting your use case).
import oci
# Create a default config using DEFAULT profile in default location
# Refer to
# https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File
# for more info
config = oci.config.from_file()
# Initialize service client with default config file
database_client = oci.database.DatabaseClient(config)
# Send the request to service, some parameters are not required, see API
# doc for more info
create_autonomous_vm_cluster_response = database_client.create_autonomous_vm_cluster(
create_autonomous_vm_cluster_details=oci.database.models.CreateAutonomousVmClusterDetails(
compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
display_name="EXAMPLE-displayName-Value",
exadata_infrastructure_id="ocid1.test.oc1..<unique_ID>EXAMPLE-exadataInfrastructureId-Value",
vm_cluster_network_id="ocid1.test.oc1..<unique_ID>EXAMPLE-vmClusterNetworkId-Value",
time_zone="EXAMPLE-timeZone-Value",
is_local_backup_enabled=True,
license_model="LICENSE_INCLUDED",
total_container_databases=364,
cpu_core_count_per_node=760,
compute_model="OCPU",
memory_per_oracle_compute_unit_in_gbs=682,
autonomous_data_storage_size_in_tbs=9380.461,
maintenance_window_details=oci.database.models.MaintenanceWindow(
preference="NO_PREFERENCE",
patching_mode="NONROLLING",
is_custom_action_timeout_enabled=True,
custom_action_timeout_in_mins=34,
is_monthly_patching_enabled=True,
months=[
oci.database.models.Month(
name="DECEMBER")],
weeks_of_month=[3],
days_of_week=[
oci.database.models.DayOfWeek(
name="SUNDAY")],
hours_of_day=[9],
lead_time_in_weeks=2,
skip_ru=[
True,
False]),
db_servers=["EXAMPLE--Value"],
freeform_tags={
'EXAMPLE_KEY_h3VRD': 'EXAMPLE_VALUE_xP1i3L1URiwlCNSBw7Am'},
defined_tags={
'EXAMPLE_KEY_TZhvX': {
'EXAMPLE_KEY_RpeZq': 'EXAMPLE--Value'}},
scan_listener_port_tls=1102,
scan_listener_port_non_tls=8899,
is_mtls_enabled=True),
opc_retry_token="EXAMPLE-opcRetryToken-Value",
opc_request_id="XZJJGBUILMIUHLBTN2TP<unique_ID>")
# Get the data from response
print(create_autonomous_vm_cluster_response.data)