# 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
globally_distributed_database_client = oci.globally_distributed_database.ShardedDatabaseServiceClient(
    config)


# Send the request to service, some parameters are not required, see API
# doc for more info
create_sharded_database_response = globally_distributed_database_client.create_sharded_database(
    create_sharded_database_details=oci.globally_distributed_database.models.CreateDedicatedShardedDatabase(
        db_deployment_type="DEDICATED",
        compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
        display_name="EXAMPLE-displayName-Value",
        db_workload="OLTP",
        sharding_method="SYSTEM",
        db_version="EXAMPLE-dbVersion-Value",
        character_set="EXAMPLE-characterSet-Value",
        ncharacter_set="EXAMPLE-ncharacterSet-Value",
        listener_port=48037,
        listener_port_tls=32998,
        ons_port_local=17544,
        ons_port_remote=64723,
        prefix="bU8",
        shard_details=[
            oci.globally_distributed_database.models.CreateDedicatedShardDetail(
                admin_password="EXAMPLE-adminPassword-Value",
                compute_count=70.61303,
                data_storage_size_in_gbs=8369.525,
                is_auto_scaling_enabled=False,
                cloud_autonomous_vm_cluster_id="ocid1.test.oc1..<unique_ID>EXAMPLE-cloudAutonomousVmClusterId-Value",
                encryption_key_details=oci.globally_distributed_database.models.DedicatedShardOrCatalogEncryptionKeyDetails(
                    vault_id="ocid1.test.oc1..<unique_ID>EXAMPLE-vaultId-Value",
                    kms_key_id="ocid1.test.oc1..<unique_ID>EXAMPLE-kmsKeyId-Value",
                    kms_key_version_id="ocid1.test.oc1..<unique_ID>EXAMPLE-kmsKeyVersionId-Value"),
                shard_space="EXAMPLE-shardSpace-Value",
                peer_cloud_autonomous_vm_cluster_id="ocid1.test.oc1..<unique_ID>EXAMPLE-peerCloudAutonomousVmClusterId-Value")],
        catalog_details=[
            oci.globally_distributed_database.models.CreateDedicatedCatalogDetail(
                admin_password="EXAMPLE-adminPassword-Value",
                compute_count=5826.9487,
                data_storage_size_in_gbs=9260.239,
                is_auto_scaling_enabled=True,
                cloud_autonomous_vm_cluster_id="ocid1.test.oc1..<unique_ID>EXAMPLE-cloudAutonomousVmClusterId-Value",
                encryption_key_details=oci.globally_distributed_database.models.DedicatedShardOrCatalogEncryptionKeyDetails(
                    vault_id="ocid1.test.oc1..<unique_ID>EXAMPLE-vaultId-Value",
                    kms_key_id="ocid1.test.oc1..<unique_ID>EXAMPLE-kmsKeyId-Value",
                    kms_key_version_id="ocid1.test.oc1..<unique_ID>EXAMPLE-kmsKeyVersionId-Value"),
                peer_cloud_autonomous_vm_cluster_id="ocid1.test.oc1..<unique_ID>EXAMPLE-peerCloudAutonomousVmClusterId-Value")],
        freeform_tags={
            'EXAMPLE_KEY_On734': 'EXAMPLE_VALUE_I7zZLGv53yU0J8ZhSDaD'},
        defined_tags={
            'EXAMPLE_KEY_mr2sO': {
                'EXAMPLE_KEY_D5cnv': 'EXAMPLE--Value'}},
        replication_method="RAFT",
        replication_factor=4,
        replication_unit=808,
        cluster_certificate_common_name="EXAMPLE-clusterCertificateCommonName-Value",
        chunks=251),
    opc_retry_token="EXAMPLE-opcRetryToken-Value",
    opc_request_id="RFCGCXRDXDPD2VXYJRPU<unique_ID>")

# Get the data from response
print(create_sharded_database_response.data)