Open bogdan-m-darie opened 3 months ago
Hi @bogdan-m-darie looks like the issue is at the service side, I've tagged the Block Volume team. They'll be able to help with the opc-request-id generated in the error message.
It can be done using Python:
#!/usr/bin/env python3
import oci
config = oci.config.from_file()
config["region"] = "${region}"
core_client = oci.core.BlockstorageClient(config)
update_volume_group_response = core_client.update_volume_group(
volume_group_id="${volume_group_id}",
update_volume_group_details=oci.core.models.UpdateVolumeGroupDetails(
volume_group_replicas=[
oci.core.models.VolumeGroupReplicaDetails(
availability_domain="${availability_domain}",
display_name="${display_name}",
)
],
),
)
print(update_volume_group_response.data)
I have a volume group for which I want to enable cross region replication:
The command returns the following:
for several minutes and then stops with the following error message:
Affected version:
Using the web console I'm able to do it.