apis.organizations.v1.item.authenticationpolicy.AuthenticationPolicyRequestBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-accounts-sdk Show documentation
Show all versions of service-accounts-sdk Show documentation
Service Accounts SDK for RHOAS API supports interaction with Service Accounts
The newest version!
package com.openshift.cloud.api.serviceaccounts.apis.organizations.v1.item.authenticationpolicy;
import com.microsoft.kiota.HttpMethod;
import com.microsoft.kiota.RequestAdapter;
import com.microsoft.kiota.RequestHeaders;
import com.microsoft.kiota.RequestInformation;
import com.microsoft.kiota.RequestOption;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParsableFactory;
import com.openshift.cloud.api.serviceaccounts.models.AuthenticationPolicy;
import com.openshift.cloud.api.serviceaccounts.models.Error;
import java.net.URISyntaxException;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
/**
* Builds and executes requests for operations under /apis/organizations/v1/{id}/authentication-policy
*/
public class AuthenticationPolicyRequestBuilder {
/** Path parameters for the request */
private HashMap pathParameters;
/** The request adapter to use to execute the requests. */
private RequestAdapter requestAdapter;
/** Url template to use to build the URL for the current request builder */
private String urlTemplate;
/**
* Instantiates a new AuthenticationPolicyRequestBuilder and sets the default values.
* @param pathParameters Path parameters for the request
* @param requestAdapter The request adapter to use to execute the requests.
* @return a void
*/
@javax.annotation.Nullable
public AuthenticationPolicyRequestBuilder(@javax.annotation.Nonnull final HashMap pathParameters, @javax.annotation.Nonnull final RequestAdapter requestAdapter) {
Objects.requireNonNull(pathParameters);
Objects.requireNonNull(requestAdapter);
this.urlTemplate = "{+baseurl}/apis/organizations/v1/{id}/authentication-policy";
final HashMap urlTplParams = new HashMap(pathParameters);
this.pathParameters = urlTplParams;
this.requestAdapter = requestAdapter;
}
/**
* Instantiates a new AuthenticationPolicyRequestBuilder 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.
* @return a void
*/
@javax.annotation.Nullable
public AuthenticationPolicyRequestBuilder(@javax.annotation.Nonnull final String rawUrl, @javax.annotation.Nonnull final RequestAdapter requestAdapter) {
this.urlTemplate = "{+baseurl}/apis/organizations/v1/{id}/authentication-policy";
final HashMap urlTplParams = new HashMap();
urlTplParams.put("request-raw-url", rawUrl);
this.pathParameters = urlTplParams;
this.requestAdapter = requestAdapter;
}
/**
* Get current authentication policy information
* @return a CompletableFuture of AuthenticationPolicy
*/
@javax.annotation.Nonnull
public java.util.concurrent.CompletableFuture get() {
try {
final RequestInformation requestInfo = toGetRequestInformation(null);
final HashMap> errorMapping = new HashMap>();
errorMapping.put("401", Error::createFromDiscriminatorValue);
return this.requestAdapter.sendAsync(requestInfo, AuthenticationPolicy::createFromDiscriminatorValue, errorMapping);
} catch (URISyntaxException ex) {
final java.util.concurrent.CompletableFuture executionException = new java.util.concurrent.CompletableFuture();
executionException.completeExceptionally(ex);
return executionException;
}
}
/**
* Get current authentication policy information
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a CompletableFuture of AuthenticationPolicy
*/
@javax.annotation.Nonnull
public java.util.concurrent.CompletableFuture get(@javax.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
try {
final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
final HashMap> errorMapping = new HashMap>();
errorMapping.put("401", Error::createFromDiscriminatorValue);
return this.requestAdapter.sendAsync(requestInfo, AuthenticationPolicy::createFromDiscriminatorValue, errorMapping);
} catch (URISyntaxException ex) {
final java.util.concurrent.CompletableFuture executionException = new java.util.concurrent.CompletableFuture();
executionException.completeExceptionally(ex);
return executionException;
}
}
/**
* Update current authentication policy information
* @param body The request body
* @return a CompletableFuture of AuthenticationPolicy
*/
@javax.annotation.Nonnull
public java.util.concurrent.CompletableFuture post(@javax.annotation.Nonnull final AuthenticationPolicy body) {
try {
final RequestInformation requestInfo = toPostRequestInformation(body, null);
final HashMap> errorMapping = new HashMap>();
errorMapping.put("401", Error::createFromDiscriminatorValue);
return this.requestAdapter.sendAsync(requestInfo, AuthenticationPolicy::createFromDiscriminatorValue, errorMapping);
} catch (URISyntaxException ex) {
final java.util.concurrent.CompletableFuture executionException = new java.util.concurrent.CompletableFuture();
executionException.completeExceptionally(ex);
return executionException;
}
}
/**
* Update current authentication policy information
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a CompletableFuture of AuthenticationPolicy
*/
@javax.annotation.Nonnull
public java.util.concurrent.CompletableFuture post(@javax.annotation.Nonnull final AuthenticationPolicy body, @javax.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
Objects.requireNonNull(body);
try {
final RequestInformation requestInfo = toPostRequestInformation(body, requestConfiguration);
final HashMap> errorMapping = new HashMap>();
errorMapping.put("401", Error::createFromDiscriminatorValue);
return this.requestAdapter.sendAsync(requestInfo, AuthenticationPolicy::createFromDiscriminatorValue, errorMapping);
} catch (URISyntaxException ex) {
final java.util.concurrent.CompletableFuture executionException = new java.util.concurrent.CompletableFuture();
executionException.completeExceptionally(ex);
return executionException;
}
}
/**
* Get current authentication policy information
* @return a RequestInformation
*/
@javax.annotation.Nonnull
public RequestInformation toGetRequestInformation() throws URISyntaxException {
return toGetRequestInformation(null);
}
/**
* Get current authentication policy information
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a RequestInformation
*/
@javax.annotation.Nonnull
public RequestInformation toGetRequestInformation(@javax.annotation.Nullable final java.util.function.Consumer requestConfiguration) throws URISyntaxException {
final RequestInformation requestInfo = new RequestInformation();
requestInfo.httpMethod = HttpMethod.GET;
requestInfo.urlTemplate = urlTemplate;
requestInfo.pathParameters = pathParameters;
requestInfo.headers.add("Accept", "application/json");
if (requestConfiguration != null) {
final GetRequestConfiguration requestConfig = new GetRequestConfiguration();
requestConfiguration.accept(requestConfig);
requestInfo.headers.putAll(requestConfig.headers);
requestInfo.addRequestOptions(requestConfig.options);
}
return requestInfo;
}
/**
* Update current authentication policy information
* @param body The request body
* @return a RequestInformation
*/
@javax.annotation.Nonnull
public RequestInformation toPostRequestInformation(@javax.annotation.Nonnull final AuthenticationPolicy body) throws URISyntaxException {
return toPostRequestInformation(body, null);
}
/**
* Update current authentication policy information
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a RequestInformation
*/
@javax.annotation.Nonnull
public RequestInformation toPostRequestInformation(@javax.annotation.Nonnull final AuthenticationPolicy body, @javax.annotation.Nullable final java.util.function.Consumer requestConfiguration) throws URISyntaxException {
Objects.requireNonNull(body);
final RequestInformation requestInfo = new RequestInformation();
requestInfo.httpMethod = HttpMethod.POST;
requestInfo.urlTemplate = urlTemplate;
requestInfo.pathParameters = pathParameters;
requestInfo.headers.add("Accept", "application/json");
requestInfo.setContentFromParsable(requestAdapter, "application/json", body);
if (requestConfiguration != null) {
final PostRequestConfiguration requestConfig = new PostRequestConfiguration();
requestConfiguration.accept(requestConfig);
requestInfo.headers.putAll(requestConfig.headers);
requestInfo.addRequestOptions(requestConfig.options);
}
return requestInfo;
}
/**
* Configuration for the request such as headers, query parameters, and middleware options.
*/
public class GetRequestConfiguration {
/** Request headers */
@javax.annotation.Nullable
public RequestHeaders headers = new RequestHeaders();
/** Request options */
@javax.annotation.Nullable
public java.util.List options = Collections.emptyList();
/**
* Instantiates a new GetRequestConfiguration and sets the default values.
* @return a void
*/
@javax.annotation.Nullable
public GetRequestConfiguration() {
}
}
/**
* Configuration for the request such as headers, query parameters, and middleware options.
*/
public class PostRequestConfiguration {
/** Request headers */
@javax.annotation.Nullable
public RequestHeaders headers = new RequestHeaders();
/** Request options */
@javax.annotation.Nullable
public java.util.List options = Collections.emptyList();
/**
* Instantiates a new PostRequestConfiguration and sets the default values.
* @return a void
*/
@javax.annotation.Nullable
public PostRequestConfiguration() {
}
}
}