oracle/oci-python-sdk

Missing Composite Operations for Identity Domains

pastyGRB opened this issue · 0 comments

The Client Composite Operations for the Identity Domains client don't exist. When attempting to automate the creation of a user and add existing users to groups, there are no composite operations.

I tried to execute one similar to that which is included with the Identity client and it failed:

identity_domain_client = oci.identity_domains.IdentityDomainsClient(config, i.url)
identity_composite=oci.identity_domains.IdentityDomainsClientCompositeOperations(identity_domain_client)
user_model=oci.identity_domains.models.User( ... )
user_info=identity_composite.create_user_and_wait_for_state(user=user_model, wait_for_states=["ACTIVE","INACTIVE","DELETING"])

Please add this to backlog for this client with priority. Identity domains have proven difficult to work with programatically.