我有一段这样的 Python 代码:
oci_config = oci.config.from_file("config_file","profile_name")
identity = oci.identity.IdentityClient(oci_config)
user = identity.get_user(oci_config["user"]).data
返回的用户对象有一个属性“compartment_id”,但它的值是tenancy OCID“ocid1.tenancy.oc1..aaaaaaaa....”,这显然是错误的。我希望我可以获取用户的隔间 ID 以调用其他 API。现在我必须存储它的配置文件。
我的 SDK 版本是 Python 3.8.3 上的 2.18。
有谁知道在哪里提交这样的错误报告?谢谢