-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Cloud Identity #10604
Comments
Hi @kbroughton, Thanks for opening an issue. It looks like Googlers see internal issue 179725617. You may be able to use the older library
from googleapiclient import discovery
service = discovery.build("cloudidentity", "v1")
service.groups().memberships().list(parent="groups/abc").execute() |
It looks like there are no major blockers to getting a |
@busunkim96 Are they available now? |
I'm keen for this also: using |
We would also like Cloud Identity APIs to be available through a Cloud Client Library for Python. |
Hi, any updates on this library? |
Also looking for an update. It's been a year since this issue was opened. |
@busunkim96 I have a problem with the groups().search() API. response = service.groups().search(query="parent == 'organization/{org_id}' && 'cloudidentity.googleapis.com/groups.discussion_forum' in labels").execute() But I've received a googleapiclient.errors.HttpError: HttpError 400 with "Request contains an invalid argument." as error detail. Can you help me? |
A friendly november bump. Feel free to delete or hide this comment. |
I'm still having this problem. Has anybody taken a look at this issue again? |
would like this too |
Googlers see internal feature request: b/365129966 |
I can see the gcloud client has python code for cloud identity at
~/google-cloud-sdk/lib/googlecloudsdk/command_lib/identity/groups
I want to run
gcloud identity groups describe
type calls using the python SDK but it doesn't appear to be supported in the new googleapis libs.I can see this in mirrors of the googlecloudsdk at
https://github.com/twistedpair/google-cloud-sdk/blob/master/google-cloud-sdk/lib/googlecloudsdk/command_lib/identity/groups/memberships/hooks.py
But it is no longer available. So it appears that the gcloud experience and the API experience will now diverge substantially.
One thing AWS did very well was match the boto3 experience with the awscli. Azure did a terrible job of this requiring cobbling together various APIs to get coverage. I hope GCP is not going down this path.
The text was updated successfully, but these errors were encountered: