
io.apicurio.registry.rest.client.v2.admin.rolemappings.RoleMappingsRequestBuilder Maven / Gradle / Ivy
package io.apicurio.registry.rest.client.v2.admin.rolemappings;
import com.microsoft.kiota.BaseRequestBuilder;
import com.microsoft.kiota.BaseRequestConfiguration;
import com.microsoft.kiota.HttpMethod;
import com.microsoft.kiota.RequestAdapter;
import com.microsoft.kiota.RequestInformation;
import com.microsoft.kiota.RequestOption;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParsableFactory;
import io.apicurio.registry.rest.client.v2.admin.rolemappings.item.WithPrincipalItemRequestBuilder;
import io.apicurio.registry.rest.client.v2.models.Error;
import io.apicurio.registry.rest.client.v2.models.RoleMapping;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
/**
* Collection to manage role mappings for authenticated principals
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class RoleMappingsRequestBuilder extends BaseRequestBuilder {
/**
* Manage the configuration of a single role mapping.
* @param principalId Unique id of a principal (typically either a user or service account).
* @return a {@link WithPrincipalItemRequestBuilder}
*/
@jakarta.annotation.Nonnull
public WithPrincipalItemRequestBuilder byPrincipalId(@jakarta.annotation.Nonnull final String principalId) {
Objects.requireNonNull(principalId);
final HashMap urlTplParams = new HashMap(this.pathParameters);
urlTplParams.put("principalId", principalId);
return new WithPrincipalItemRequestBuilder(urlTplParams, requestAdapter);
}
/**
* Instantiates a new {@link RoleMappingsRequestBuilder} and sets the default values.
* @param pathParameters Path parameters for the request
* @param requestAdapter The request adapter to use to execute the requests.
*/
public RoleMappingsRequestBuilder(@jakarta.annotation.Nonnull final HashMap pathParameters, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
super(requestAdapter, "{+baseurl}/admin/roleMappings", pathParameters);
}
/**
* Instantiates a new {@link RoleMappingsRequestBuilder} and sets the default values.
* @param rawUrl The raw URL to use for the request builder.
* @param requestAdapter The request adapter to use to execute the requests.
*/
public RoleMappingsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
super(requestAdapter, "{+baseurl}/admin/roleMappings", rawUrl);
}
/**
* Gets a list of all role mappings configured in the registry (if any).This operation can fail for the following reasons:* A server error occurred (HTTP error `500`)
* @return a {@link java.util.List}
* @throws Error When receiving a 500 status code
*/
@jakarta.annotation.Nullable
public java.util.List get() {
return get(null);
}
/**
* Gets a list of all role mappings configured in the registry (if any).This operation can fail for the following reasons:* A server error occurred (HTTP error `500`)
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link java.util.List}
* @throws Error When receiving a 500 status code
*/
@jakarta.annotation.Nullable
public java.util.List get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
final HashMap> errorMapping = new HashMap>();
errorMapping.put("500", Error::createFromDiscriminatorValue);
return this.requestAdapter.sendCollection(requestInfo, errorMapping, RoleMapping::createFromDiscriminatorValue);
}
/**
* Creates a new mapping between a user/principal and a role.This operation can fail for the following reasons:* A server error occurred (HTTP error `500`)
* @param body The mapping between a user/principal and their role.
* @throws Error When receiving a 500 status code
*/
public void post(@jakarta.annotation.Nonnull final RoleMapping body) {
post(body, null);
}
/**
* Creates a new mapping between a user/principal and a role.This operation can fail for the following reasons:* A server error occurred (HTTP error `500`)
* @param body The mapping between a user/principal and their role.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws Error When receiving a 500 status code
*/
public void post(@jakarta.annotation.Nonnull final RoleMapping body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
Objects.requireNonNull(body);
final RequestInformation requestInfo = toPostRequestInformation(body, requestConfiguration);
final HashMap> errorMapping = new HashMap>();
errorMapping.put("500", Error::createFromDiscriminatorValue);
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
* Gets a list of all role mappings configured in the registry (if any).This operation can fail for the following reasons:* A server error occurred (HTTP error `500`)
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
* Gets a list of all role mappings configured in the registry (if any).This operation can fail for the following reasons:* A server error occurred (HTTP error `500`)
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = new RequestInformation(HttpMethod.GET, urlTemplate, pathParameters);
requestInfo.configure(requestConfiguration, GetRequestConfiguration::new);
requestInfo.headers.tryAdd("Accept", "application/json");
return requestInfo;
}
/**
* Creates a new mapping between a user/principal and a role.This operation can fail for the following reasons:* A server error occurred (HTTP error `500`)
* @param body The mapping between a user/principal and their role.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull final RoleMapping body) {
return toPostRequestInformation(body, null);
}
/**
* Creates a new mapping between a user/principal and a role.This operation can fail for the following reasons:* A server error occurred (HTTP error `500`)
* @param body The mapping between a user/principal and their role.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull final RoleMapping body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
Objects.requireNonNull(body);
final RequestInformation requestInfo = new RequestInformation(HttpMethod.POST, urlTemplate, pathParameters);
requestInfo.configure(requestConfiguration, PostRequestConfiguration::new);
requestInfo.headers.tryAdd("Accept", "application/json");
requestInfo.setContentFromParsable(requestAdapter, "application/json", body);
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link RoleMappingsRequestBuilder}
*/
@jakarta.annotation.Nonnull
public RoleMappingsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new RoleMappingsRequestBuilder(rawUrl, requestAdapter);
}
/**
* Configuration for the request such as headers, query parameters, and middleware options.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetRequestConfiguration extends BaseRequestConfiguration {
}
/**
* Configuration for the request such as headers, query parameters, and middleware options.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class PostRequestConfiguration extends BaseRequestConfiguration {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy