I have a piece of Python code like this:
oci_config = oci.config.from_file("config_file","profile_name")
identity = oci.identity.IdentityClient(oci_config)
user = identity.get_user(oci_config["user"]).data
The user object returned has an attribute "compartment_id" but it has a value of tenancy OCID "ocid1.tenancy.oc1..aaaaaaaa...." which is obviously wrong. I am hoping that I can get compartment ID of user for calling other APIs. Now I have to store it configuration file instead.
My SDK version is 2.18 on Python 3.8.3.
Does any one know where to file a bug report like this? Thanks