Package com.okta.sdk.resource.api
Class ProfileMappingApi
java.lang.Object
com.okta.sdk.resource.api.ProfileMappingApi
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen",
date="2024-09-23T08:35:59.300824-05:00[America/Chicago]",
comments="Generator version: 7.8.0")
public class ProfileMappingApi
extends Object
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected static com.fasterxml.jackson.databind.ObjectMapper
getProfileMapping
(String mappingId) Retrieve a Profile Mapping Retrieves a single Profile Mapping referenced by its IDgetProfileMapping
(String mappingId, Map<String, String> additionalHeaders) Retrieve a Profile Mapping Retrieves a single Profile Mapping referenced by its IDlistProfileMappings
(String after, Integer limit, String sourceId, String targetId) List all Profile Mappings Lists all profile mappings in your organization with [pagination](https://developer.okta.com/docs/api/#pagination).listProfileMappings
(String after, Integer limit, String sourceId, String targetId, Map<String, String> additionalHeaders) List all Profile Mappings Lists all profile mappings in your organization with [pagination](https://developer.okta.com/docs/api/#pagination).void
setApiClient
(ApiClient apiClient) updateProfileMapping
(String mappingId, ProfileMappingRequest profileMapping) Update a Profile Mapping Updates an existing profile mapping by adding, updating, or removing one or many property mappingsupdateProfileMapping
(String mappingId, ProfileMappingRequest profileMapping, Map<String, String> additionalHeaders) Update a Profile Mapping Updates an existing profile mapping by adding, updating, or removing one or many property mappings
-
Constructor Details
-
ProfileMappingApi
public ProfileMappingApi() -
ProfileMappingApi
-
-
Method Details
-
getApiClient
-
setApiClient
-
getProfileMapping
Retrieve a Profile Mapping Retrieves a single Profile Mapping referenced by its ID- Parameters:
mappingId
- `id` of the Mapping (required)- Returns:
- ProfileMapping
- Throws:
ApiException
- if fails to make API call
-
getProfileMapping
public ProfileMapping getProfileMapping(String mappingId, Map<String, String> additionalHeaders) throws ApiExceptionRetrieve a Profile Mapping Retrieves a single Profile Mapping referenced by its ID- Parameters:
mappingId
- `id` of the Mapping (required)additionalHeaders
- additionalHeaders for this call- Returns:
- ProfileMapping
- Throws:
ApiException
- if fails to make API call
-
listProfileMappings
public List<ListProfileMappings> listProfileMappings(String after, Integer limit, String sourceId, String targetId) throws ApiException List all Profile Mappings Lists all profile mappings in your organization with [pagination](https://developer.okta.com/docs/api/#pagination). You can return a subset of profile mappings that match a supported `sourceId` and/or `targetId`. The results are [paginated](/#pagination) according to the limit parameter. If there are multiple pages of results, the Link header contains a `next` link that should be treated as an opaque value (follow it, don't parse it). The response is a collection of profile mappings that include a subset of the profile mapping object's parameters. The profile mapping object describes the properties mapping between an Okta User and an App User Profile using [JSON Schema Draft 4](https://datatracker.ietf.org/doc/html/draft-zyp-json-schema-04).- Parameters:
after
- Mapping `id` that specifies the pagination cursor for the next page of mappings (optional)limit
- Specifies the number of results per page (maximum 200) (optional, default to 20)sourceId
- The UserType or App Instance `id` that acts as the source of expressions in a mapping. If this parameter is included, all returned mappings have this as their `source.id`. (optional)targetId
- The UserType or App Instance `id` that acts as the target of expressions in a mapping. If this parameter is included, all returned mappings have this as their `target.id`. (optional)- Returns:
- List<ListProfileMappings>
- Throws:
ApiException
- if fails to make API call
-
listProfileMappings
public List<ListProfileMappings> listProfileMappings(String after, Integer limit, String sourceId, String targetId, Map<String, String> additionalHeaders) throws ApiExceptionList all Profile Mappings Lists all profile mappings in your organization with [pagination](https://developer.okta.com/docs/api/#pagination). You can return a subset of profile mappings that match a supported `sourceId` and/or `targetId`. The results are [paginated](/#pagination) according to the limit parameter. If there are multiple pages of results, the Link header contains a `next` link that should be treated as an opaque value (follow it, don't parse it). The response is a collection of profile mappings that include a subset of the profile mapping object's parameters. The profile mapping object describes the properties mapping between an Okta User and an App User Profile using [JSON Schema Draft 4](https://datatracker.ietf.org/doc/html/draft-zyp-json-schema-04).- Parameters:
after
- Mapping `id` that specifies the pagination cursor for the next page of mappings (optional)limit
- Specifies the number of results per page (maximum 200) (optional, default to 20)sourceId
- The UserType or App Instance `id` that acts as the source of expressions in a mapping. If this parameter is included, all returned mappings have this as their `source.id`. (optional)targetId
- The UserType or App Instance `id` that acts as the target of expressions in a mapping. If this parameter is included, all returned mappings have this as their `target.id`. (optional)additionalHeaders
- additionalHeaders for this call- Returns:
- List<ListProfileMappings>
- Throws:
ApiException
- if fails to make API call
-
updateProfileMapping
public ProfileMapping updateProfileMapping(String mappingId, ProfileMappingRequest profileMapping) throws ApiException Update a Profile Mapping Updates an existing profile mapping by adding, updating, or removing one or many property mappings- Parameters:
mappingId
- `id` of the Mapping (required)profileMapping
- (required)- Returns:
- ProfileMapping
- Throws:
ApiException
- if fails to make API call
-
updateProfileMapping
public ProfileMapping updateProfileMapping(String mappingId, ProfileMappingRequest profileMapping, Map<String, String> additionalHeaders) throws ApiExceptionUpdate a Profile Mapping Updates an existing profile mapping by adding, updating, or removing one or many property mappings- Parameters:
mappingId
- `id` of the Mapping (required)profileMapping
- (required)additionalHeaders
- additionalHeaders for this call- Returns:
- ProfileMapping
- Throws:
ApiException
- if fails to make API call
-
getObjectMapper
protected static com.fasterxml.jackson.databind.ObjectMapper getObjectMapper()
-