We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Given:
The response contains all the required info for the processing on our side:
list of roles (resources.entity.space_roles)
username (resources.entity.username)
In v3 I found that roles endpoint should be used: https://v3-apidocs.cloudfoundry.org/version/3.151.0/index.html#list-roles
It has Include parameter to get user, space, organization
org.cloudfoundry library version is 5.10.0.RELEASE
When:
Then:
My query:
PaginationUtils.requestClientV3Resources(page -> getClient(hostName) .rolesV3() .list(ListRolesRequest.builder().spaceId(spaceId) .types(RoleType.SPACE_AUDITOR, RoleType.SPACE_MANAGER, RoleType.SPACE_DEVELOPER) .build()));
ListRolesRequest.builder() doen not provide any option to specify include parameter. What did I do wrong ? Could you please assist here ?
Thank you!
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Given:
The response contains all the required info for the processing on our side:
list of roles (resources.entity.space_roles)
username (resources.entity.username)
In v3 I found that roles endpoint should be used: https://v3-apidocs.cloudfoundry.org/version/3.151.0/index.html#list-roles
It has Include parameter to get user, space, organization
org.cloudfoundry library version is 5.10.0.RELEASE
When:
Then:
My query:
ListRolesRequest.builder() doen not provide any option to specify include parameter.
What did I do wrong ?
Could you please assist here ?
Thank you!
The text was updated successfully, but these errors were encountered: