MixedRealityRemoteRenderingImplBuilder.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.mixedreality.remoterendering.implementation;
import com.azure.core.annotation.ServiceClientBuilder;
import com.azure.core.credential.TokenCredential;
import com.azure.core.http.HttpClient;
import com.azure.core.http.HttpPipeline;
import com.azure.core.http.HttpPipelineBuilder;
import com.azure.core.http.policy.BearerTokenAuthenticationPolicy;
import com.azure.core.http.policy.CookiePolicy;
import com.azure.core.http.policy.HttpLogOptions;
import com.azure.core.http.policy.HttpLoggingPolicy;
import com.azure.core.http.policy.HttpPipelinePolicy;
import com.azure.core.http.policy.HttpPolicyProviders;
import com.azure.core.http.policy.RetryPolicy;
import com.azure.core.http.policy.UserAgentPolicy;
import com.azure.core.util.Configuration;
import com.azure.core.util.CoreUtils;
import com.azure.core.util.serializer.JacksonAdapter;
import com.azure.core.util.serializer.SerializerAdapter;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
/** A builder for creating a new instance of the MixedRealityRemoteRendering type. */
@ServiceClientBuilder(serviceClients = {MixedRealityRemoteRenderingImpl.class})
public final class MixedRealityRemoteRenderingImplBuilder {
private static final String SDK_NAME = "name";
private static final String SDK_VERSION = "version";
private final Map<String, String> properties =
CoreUtils.getProperties("azure-mixedreality-remoterendering.properties");
public MixedRealityRemoteRenderingImplBuilder() {
this.pipelinePolicies = new ArrayList<>();
}
/*
* The endpoint to use e.g.
* https://remoterendering.eastus.mixedreality.azure.com. A list can be
* found at
* https://docs.microsoft.com/azure/remote-rendering/reference/regions.
*/
private String endpoint;
/**
* Sets The endpoint to use e.g. https://remoterendering.eastus.mixedreality.azure.com. A list can be found at
* https://docs.microsoft.com/azure/remote-rendering/reference/regions.
*
* @param endpoint the endpoint value.
* @return the MixedRealityRemoteRenderingImplBuilder.
*/
public MixedRealityRemoteRenderingImplBuilder endpoint(String endpoint) {
this.endpoint = endpoint;
return this;
}
/*
* The HTTP pipeline to send requests through
*/
private HttpPipeline pipeline;
/**
* Sets The HTTP pipeline to send requests through.
*
* @param pipeline the pipeline value.
* @return the MixedRealityRemoteRenderingImplBuilder.
*/
public MixedRealityRemoteRenderingImplBuilder pipeline(HttpPipeline pipeline) {
this.pipeline = pipeline;
return this;
}
/*
* The serializer to serialize an object into a string
*/
private SerializerAdapter serializerAdapter;
/**
* Sets The serializer to serialize an object into a string.
*
* @param serializerAdapter the serializerAdapter value.
* @return the MixedRealityRemoteRenderingImplBuilder.
*/
public MixedRealityRemoteRenderingImplBuilder serializerAdapter(SerializerAdapter serializerAdapter) {
this.serializerAdapter = serializerAdapter;
return this;
}
/*
* The HTTP client used to send the request.
*/
private HttpClient httpClient;
/**
* Sets The HTTP client used to send the request.
*
* @param httpClient the httpClient value.
* @return the MixedRealityRemoteRenderingImplBuilder.
*/
public MixedRealityRemoteRenderingImplBuilder httpClient(HttpClient httpClient) {
this.httpClient = httpClient;
return this;
}
/*
* The configuration store that is used during construction of the service
* client.
*/
private Configuration configuration;
/**
* Sets The configuration store that is used during construction of the service client.
*
* @param configuration the configuration value.
* @return the MixedRealityRemoteRenderingImplBuilder.
*/
public MixedRealityRemoteRenderingImplBuilder configuration(Configuration configuration) {
this.configuration = configuration;
return this;
}
/*
* The TokenCredential used for authentication.
*/
private TokenCredential tokenCredential;
/**
* Sets The TokenCredential used for authentication.
*
* @param tokenCredential the tokenCredential value.
* @return the MixedRealityRemoteRenderingImplBuilder.
*/
public MixedRealityRemoteRenderingImplBuilder credential(TokenCredential tokenCredential) {
this.tokenCredential = tokenCredential;
return this;
}
/*
* The logging configuration for HTTP requests and responses.
*/
private HttpLogOptions httpLogOptions;
/**
* Sets The logging configuration for HTTP requests and responses.
*
* @param httpLogOptions the httpLogOptions value.
* @return the MixedRealityRemoteRenderingImplBuilder.
*/
public MixedRealityRemoteRenderingImplBuilder httpLogOptions(HttpLogOptions httpLogOptions) {
this.httpLogOptions = httpLogOptions;
return this;
}
/*
* The retry policy that will attempt to retry failed requests, if
* applicable.
*/
private RetryPolicy retryPolicy;
/**
* Sets The retry policy that will attempt to retry failed requests, if applicable.
*
* @param retryPolicy the retryPolicy value.
* @return the MixedRealityRemoteRenderingImplBuilder.
*/
public MixedRealityRemoteRenderingImplBuilder retryPolicy(RetryPolicy retryPolicy) {
this.retryPolicy = retryPolicy;
return this;
}
/*
* The list of Http pipeline policies to add.
*/
private List<HttpPipelinePolicy> pipelinePolicies;
/**
* Adds a custom Http pipeline policy.
*
* @param customPolicy The custom Http pipeline policy to add.
* @return the MixedRealityRemoteRenderingImplBuilder.
*/
public MixedRealityRemoteRenderingImplBuilder addPolicy(HttpPipelinePolicy customPolicy) {
pipelinePolicies.add(customPolicy);
return this;
}
/**
* Builds an instance of MixedRealityRemoteRenderingImpl with the provided parameters.
*
* @return an instance of MixedRealityRemoteRenderingImpl.
*/
public MixedRealityRemoteRenderingImpl buildClient() {
if (pipeline == null) {
this.pipeline = createHttpPipeline();
}
if (serializerAdapter == null) {
this.serializerAdapter = JacksonAdapter.createDefaultSerializerAdapter();
}
MixedRealityRemoteRenderingImpl client =
new MixedRealityRemoteRenderingImpl(pipeline, serializerAdapter, endpoint);
return client;
}
private HttpPipeline createHttpPipeline() {
Configuration buildConfiguration =
(configuration == null) ? Configuration.getGlobalConfiguration() : configuration;
if (httpLogOptions == null) {
httpLogOptions = new HttpLogOptions();
}
List<HttpPipelinePolicy> policies = new ArrayList<>();
if (tokenCredential != null) {
policies.add(new BearerTokenAuthenticationPolicy(tokenCredential, String.format("%s/.default", endpoint)));
}
String clientName = properties.getOrDefault(SDK_NAME, "UnknownName");
String clientVersion = properties.getOrDefault(SDK_VERSION, "UnknownVersion");
policies.add(
new UserAgentPolicy(httpLogOptions.getApplicationId(), clientName, clientVersion, buildConfiguration));
HttpPolicyProviders.addBeforeRetryPolicies(policies);
policies.add(retryPolicy == null ? new RetryPolicy() : retryPolicy);
policies.add(new CookiePolicy());
policies.addAll(this.pipelinePolicies);
HttpPolicyProviders.addAfterRetryPolicies(policies);
policies.add(new HttpLoggingPolicy(httpLogOptions));
HttpPipeline httpPipeline =
new HttpPipelineBuilder()
.policies(policies.toArray(new HttpPipelinePolicy[0]))
.httpClient(httpClient)
.build();
return httpPipeline;
}
}