@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2023-01-18T04:14:02.238-06:00[America/Chicago]") @Component(value="org.openapitools.client.api.ResourceSetApi") public class ResourceSetApi extends Object
Constructor and Description |
---|
ResourceSetApi() |
ResourceSetApi(ApiClient apiClient) |
Modifier and Type | Method and Description |
---|---|
<T> T |
addMembersToBinding(Class<?> T,
String resourceSetId,
String roleIdOrLabel,
ResourceSetBindingAddMembersRequest instance)
Add more Members to a binding
Creates more members to a resource set binding
|
ResourceSetBindingResponse |
addMembersToBinding(String resourceSetId,
String roleIdOrLabel,
ResourceSetBindingAddMembersRequest instance)
Add more Members to a binding
Creates more members to a resource set binding
|
PagedList |
addMembersToBindingWithPaginationInfo(String resourceSetId,
String roleIdOrLabel,
ResourceSetBindingAddMembersRequest instance)
Add more Members to a binding
Creates more members to a resource set binding
|
<T> T |
addResourceSetResource(Class<?> T,
String resourceSetId,
ResourceSetResourcePatchRequest instance)
Add a Resource to a resource set
Creates more resources to a resource set
|
ResourceSet |
addResourceSetResource(String resourceSetId,
ResourceSetResourcePatchRequest instance)
Add a Resource to a resource set
Creates more resources to a resource set
|
PagedList |
addResourceSetResourceWithPaginationInfo(String resourceSetId,
ResourceSetResourcePatchRequest instance)
Add a Resource to a resource set
Creates more resources to a resource set
|
<T> T |
createResourceSet(Class<?> T,
ResourceSet instance)
Create a Resource Set
Creates a new resource set
|
ResourceSet |
createResourceSet(ResourceSet instance)
Create a Resource Set
Creates a new resource set
|
<T> T |
createResourceSetBinding(Class<?> T,
String resourceSetId,
ResourceSetBindingCreateRequest instance)
Create a Resource Set Binding
Creates a new resource set binding
|
ResourceSetBindingResponse |
createResourceSetBinding(String resourceSetId,
ResourceSetBindingCreateRequest instance)
Create a Resource Set Binding
Creates a new resource set binding
|
PagedList |
createResourceSetBindingWithPaginationInfo(String resourceSetId,
ResourceSetBindingCreateRequest instance)
Create a Resource Set Binding
Creates a new resource set binding
|
PagedList |
createResourceSetWithPaginationInfo(ResourceSet instance)
Create a Resource Set
Creates a new resource set
|
void |
deleteBinding(String resourceSetId,
String roleIdOrLabel)
Delete a Binding
Deletes a resource set binding by `resourceSetId` and `roleIdOrLabel`
|
void |
deleteResourceSet(String resourceSetId)
Delete a Resource Set
Deletes a role by `resourceSetId`
|
void |
deleteResourceSetResource(String resourceSetId,
String resourceId)
Delete a Resource from a resource set
Deletes a resource identified by `resourceId` from a resource set
|
ApiClient |
getApiClient() |
ResourceSetBindingResponse |
getBinding(String resourceSetId,
String roleIdOrLabel)
Retrieve a Binding
Retrieves a resource set binding by `resourceSetId` and `roleIdOrLabel`
|
PagedList |
getBindingWithPaginationInfo(String resourceSetId,
String roleIdOrLabel)
Retrieve a Binding
Retrieves a resource set binding by `resourceSetId` and `roleIdOrLabel`
|
ResourceSetBindingMember |
getMemberOfBinding(String resourceSetId,
String roleIdOrLabel,
String memberId)
Retrieve a Member of a binding
Retreieves a member identified by `memberId` for a binding
|
PagedList |
getMemberOfBindingWithPaginationInfo(String resourceSetId,
String roleIdOrLabel,
String memberId)
Retrieve a Member of a binding
Retreieves a member identified by `memberId` for a binding
|
ResourceSet |
getResourceSet(String resourceSetId)
Retrieve a Resource Set
Retrieves a resource set by `resourceSetId`
|
PagedList |
getResourceSetWithPaginationInfo(String resourceSetId)
Retrieve a Resource Set
Retrieves a resource set by `resourceSetId`
|
ResourceSetBindings |
listBindings(String resourceSetId,
String after)
List all Bindings
Lists all resource set bindings with pagination support
|
PagedList |
listBindingsWithPaginationInfo(String resourceSetId,
String after)
List all Bindings
Lists all resource set bindings with pagination support
|
ResourceSetBindingMembers |
listMembersOfBinding(String resourceSetId,
String roleIdOrLabel,
String after)
List all Members of a binding
Lists all members of a resource set binding with pagination support
|
PagedList |
listMembersOfBindingWithPaginationInfo(String resourceSetId,
String roleIdOrLabel,
String after)
List all Members of a binding
Lists all members of a resource set binding with pagination support
|
ResourceSetResources |
listResourceSetResources(String resourceSetId)
List all Resources of a resource set
Lists all resources that make up the resource set
|
PagedList |
listResourceSetResourcesWithPaginationInfo(String resourceSetId)
List all Resources of a resource set
Lists all resources that make up the resource set
|
ResourceSets |
listResourceSets(String after)
List all Resource Sets
Lists all resource sets with pagination support
|
PagedList |
listResourceSetsWithPaginationInfo(String after)
List all Resource Sets
Lists all resource sets with pagination support
|
<T> T |
replaceResourceSet(Class<?> T,
String resourceSetId,
ResourceSet instance)
Replace a Resource Set
Replaces a resource set by `resourceSetId`
|
ResourceSet |
replaceResourceSet(String resourceSetId,
ResourceSet instance)
Replace a Resource Set
Replaces a resource set by `resourceSetId`
|
PagedList |
replaceResourceSetWithPaginationInfo(String resourceSetId,
ResourceSet instance)
Replace a Resource Set
Replaces a resource set by `resourceSetId`
|
void |
setApiClient(ApiClient apiClient) |
void |
unassignMemberFromBinding(String resourceSetId,
String roleIdOrLabel,
String memberId)
Unassign a Member from a binding
Unassigns a member identified by `memberId` from a binding
|
public ResourceSetApi()
@Autowired public ResourceSetApi(ApiClient apiClient)
public ApiClient getApiClient()
public void setApiClient(ApiClient apiClient)
public ResourceSetBindingResponse addMembersToBinding(String resourceSetId, String roleIdOrLabel, ResourceSetBindingAddMembersRequest instance) throws org.springframework.web.client.RestClientException
200 - Success
400 - Bad Request
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)roleIdOrLabel
- `id` or `label` of the role (required)instance
- (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic <T> T addMembersToBinding(Class<?> T, String resourceSetId, String roleIdOrLabel, ResourceSetBindingAddMembersRequest instance) throws org.springframework.web.client.RestClientException
200 - Success
400 - Bad Request
403 - Forbidden
404 - Not Found
429 - Too Many Requests
T
- (required) - the assignable return typeresourceSetId
- `id` of a resource set (required)roleIdOrLabel
- `id` or `label` of the role (required)instance
- (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic PagedList addMembersToBindingWithPaginationInfo(String resourceSetId, String roleIdOrLabel, ResourceSetBindingAddMembersRequest instance) throws org.springframework.web.client.RestClientException
200 - Success
400 - Bad Request
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)roleIdOrLabel
- `id` or `label` of the role (required)instance
- (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic ResourceSet addResourceSetResource(String resourceSetId, ResourceSetResourcePatchRequest instance) throws org.springframework.web.client.RestClientException
200 - Success
400 - Bad Request
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)instance
- (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic <T> T addResourceSetResource(Class<?> T, String resourceSetId, ResourceSetResourcePatchRequest instance) throws org.springframework.web.client.RestClientException
200 - Success
400 - Bad Request
403 - Forbidden
404 - Not Found
429 - Too Many Requests
T
- (required) - the assignable return typeresourceSetId
- `id` of a resource set (required)instance
- (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic PagedList addResourceSetResourceWithPaginationInfo(String resourceSetId, ResourceSetResourcePatchRequest instance) throws org.springframework.web.client.RestClientException
200 - Success
400 - Bad Request
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)instance
- (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic ResourceSet createResourceSet(ResourceSet instance) throws org.springframework.web.client.RestClientException
200 - Success
400 - Bad Request
403 - Forbidden
429 - Too Many Requests
instance
- (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic <T> T createResourceSet(Class<?> T, ResourceSet instance) throws org.springframework.web.client.RestClientException
200 - Success
400 - Bad Request
403 - Forbidden
429 - Too Many Requests
T
- (required) - the assignable return typeinstance
- (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic PagedList createResourceSetWithPaginationInfo(ResourceSet instance) throws org.springframework.web.client.RestClientException
200 - Success
400 - Bad Request
403 - Forbidden
429 - Too Many Requests
instance
- (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic ResourceSetBindingResponse createResourceSetBinding(String resourceSetId, ResourceSetBindingCreateRequest instance) throws org.springframework.web.client.RestClientException
200 - Success
400 - Bad Request
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)instance
- (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic <T> T createResourceSetBinding(Class<?> T, String resourceSetId, ResourceSetBindingCreateRequest instance) throws org.springframework.web.client.RestClientException
200 - Success
400 - Bad Request
403 - Forbidden
404 - Not Found
429 - Too Many Requests
T
- (required) - the assignable return typeresourceSetId
- `id` of a resource set (required)instance
- (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic PagedList createResourceSetBindingWithPaginationInfo(String resourceSetId, ResourceSetBindingCreateRequest instance) throws org.springframework.web.client.RestClientException
200 - Success
400 - Bad Request
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)instance
- (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic void deleteBinding(String resourceSetId, String roleIdOrLabel) throws org.springframework.web.client.RestClientException
204 - No Content
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)roleIdOrLabel
- `id` or `label` of the role (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic void deleteResourceSet(String resourceSetId) throws org.springframework.web.client.RestClientException
204 - No Content
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic void deleteResourceSetResource(String resourceSetId, String resourceId) throws org.springframework.web.client.RestClientException
204 - No Content
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)resourceId
- `id` of a resource (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic ResourceSetBindingResponse getBinding(String resourceSetId, String roleIdOrLabel) throws org.springframework.web.client.RestClientException
200 - OK
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)roleIdOrLabel
- `id` or `label` of the role (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic PagedList getBindingWithPaginationInfo(String resourceSetId, String roleIdOrLabel) throws org.springframework.web.client.RestClientException
200 - OK
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)roleIdOrLabel
- `id` or `label` of the role (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic ResourceSetBindingMember getMemberOfBinding(String resourceSetId, String roleIdOrLabel, String memberId) throws org.springframework.web.client.RestClientException
200 - OK
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)roleIdOrLabel
- `id` or `label` of the role (required)memberId
- `id` of a member (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic PagedList getMemberOfBindingWithPaginationInfo(String resourceSetId, String roleIdOrLabel, String memberId) throws org.springframework.web.client.RestClientException
200 - OK
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)roleIdOrLabel
- `id` or `label` of the role (required)memberId
- `id` of a member (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic ResourceSet getResourceSet(String resourceSetId) throws org.springframework.web.client.RestClientException
200 - OK
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic PagedList getResourceSetWithPaginationInfo(String resourceSetId) throws org.springframework.web.client.RestClientException
200 - OK
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic ResourceSetBindings listBindings(String resourceSetId, String after) throws org.springframework.web.client.RestClientException
200 - OK
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)after
- The cursor to use for pagination. It is an opaque string that specifies your current location in the list and is obtained from the `Link` response header. See [Pagination](/#pagination) for more information. (optional)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic PagedList listBindingsWithPaginationInfo(String resourceSetId, String after) throws org.springframework.web.client.RestClientException
200 - OK
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)after
- The cursor to use for pagination. It is an opaque string that specifies your current location in the list and is obtained from the `Link` response header. See [Pagination](/#pagination) for more information. (optional)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic ResourceSetBindingMembers listMembersOfBinding(String resourceSetId, String roleIdOrLabel, String after) throws org.springframework.web.client.RestClientException
200 - OK
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)roleIdOrLabel
- `id` or `label` of the role (required)after
- The cursor to use for pagination. It is an opaque string that specifies your current location in the list and is obtained from the `Link` response header. See [Pagination](/#pagination) for more information. (optional)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic PagedList listMembersOfBindingWithPaginationInfo(String resourceSetId, String roleIdOrLabel, String after) throws org.springframework.web.client.RestClientException
200 - OK
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)roleIdOrLabel
- `id` or `label` of the role (required)after
- The cursor to use for pagination. It is an opaque string that specifies your current location in the list and is obtained from the `Link` response header. See [Pagination](/#pagination) for more information. (optional)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic ResourceSetResources listResourceSetResources(String resourceSetId) throws org.springframework.web.client.RestClientException
200 - OK
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic PagedList listResourceSetResourcesWithPaginationInfo(String resourceSetId) throws org.springframework.web.client.RestClientException
200 - OK
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic ResourceSets listResourceSets(String after) throws org.springframework.web.client.RestClientException
200 - OK
403 - Forbidden
429 - Too Many Requests
after
- The cursor to use for pagination. It is an opaque string that specifies your current location in the list and is obtained from the `Link` response header. See [Pagination](/#pagination) for more information. (optional)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic PagedList listResourceSetsWithPaginationInfo(String after) throws org.springframework.web.client.RestClientException
200 - OK
403 - Forbidden
429 - Too Many Requests
after
- The cursor to use for pagination. It is an opaque string that specifies your current location in the list and is obtained from the `Link` response header. See [Pagination](/#pagination) for more information. (optional)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic ResourceSet replaceResourceSet(String resourceSetId, ResourceSet instance) throws org.springframework.web.client.RestClientException
200 - OK
400 - Bad Request
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)instance
- (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic <T> T replaceResourceSet(Class<?> T, String resourceSetId, ResourceSet instance) throws org.springframework.web.client.RestClientException
200 - OK
400 - Bad Request
403 - Forbidden
404 - Not Found
429 - Too Many Requests
T
- (required) - the assignable return typeresourceSetId
- `id` of a resource set (required)instance
- (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic PagedList replaceResourceSetWithPaginationInfo(String resourceSetId, ResourceSet instance) throws org.springframework.web.client.RestClientException
200 - OK
400 - Bad Request
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)instance
- (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APIpublic void unassignMemberFromBinding(String resourceSetId, String roleIdOrLabel, String memberId) throws org.springframework.web.client.RestClientException
204 - No Content
403 - Forbidden
404 - Not Found
429 - Too Many Requests
resourceSetId
- `id` of a resource set (required)roleIdOrLabel
- `id` or `label` of the role (required)memberId
- `id` of a member (required)org.springframework.web.client.RestClientException
- if an error occurs while attempting to invoke the APICopyright © 2017–2023 Okta. All rights reserved.