Adi Zohar

Results 8 comments of Adi Zohar

I wrote python script to do bulk restore and other bulk items https://github.com/oracle/oci-python-sdk/tree/master/examples/object_storage

In order to get the boot volume that attached to the compute, you will need to use oci compute boot-volume-attachment list The source-details will be populate if the instance created...

Added IPSec and CPE, issue can be closed

Hi, The simple way is to create python script list_compartment.py with below code and execute using pytnon3 list_compartment.py ``` import oci config = oci.config.from_file(oci.config.DEFAULT_LOCATION, oci.config.DEFAULT_PROFILE) identity_client = oci.identity.IdentityClient(config) tenant_id =...

Python3.6 is end of life, you need to upgrade to 3.7 or higher, I would recommend to 3.9 or higher to avoid same issue soon Status of Python Versions -...

This works well: ``` oci compute compute-capacity-report create --availability-domain dbTR:US-ASHBURN-AD-3 --compartment-id $T --shape-availabilities file://shape.json shape.json: [ { "faultDomain": "FAULT-DOMAIN-1", "instanceShape": "VM.Standard.E4.Flex", "instanceShapeConfig": { "memoryInGBs": 16.0, "nvmes": null, "ocpus": 4.0 }...

IAM with identity Domains can be manipulate using IDCS REST API only for non default domain IAM Domains REST - https://docs.oracle.com/en/cloud/paas/iam-domains-rest-api/toc.htm Support for OCI CLI for Identity Domains is in...

The only API that support identity domains is IDCS APIs https://docs.oracle.com/en/cloud/paas/iam-domains-rest-api/toc.htm Support for Identity domains will come in future releases About list compartments, below is example using the python SDK...