com.azure.messaging.eventgrid.namespaces.EventGridSenderClientBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-messaging-eventgrid-namespaces Show documentation
Show all versions of azure-messaging-eventgrid-namespaces Show documentation
This package contains the Microsoft Azure EventGrid Namespaces client library.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) TypeSpec Code Generator.
package com.azure.messaging.eventgrid.namespaces;
import com.azure.core.annotation.Generated;
import com.azure.core.annotation.ServiceClientBuilder;
import com.azure.core.client.traits.ConfigurationTrait;
import com.azure.core.client.traits.EndpointTrait;
import com.azure.core.client.traits.HttpTrait;
import com.azure.core.client.traits.KeyCredentialTrait;
import com.azure.core.client.traits.TokenCredentialTrait;
import com.azure.core.credential.KeyCredential;
import com.azure.core.credential.TokenCredential;
import com.azure.core.http.HttpClient;
import com.azure.core.http.HttpHeaders;
import com.azure.core.http.HttpPipeline;
import com.azure.core.http.HttpPipelineBuilder;
import com.azure.core.http.HttpPipelinePosition;
import com.azure.core.http.policy.AddDatePolicy;
import com.azure.core.http.policy.AddHeadersFromContextPolicy;
import com.azure.core.http.policy.AddHeadersPolicy;
import com.azure.core.http.policy.BearerTokenAuthenticationPolicy;
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.KeyCredentialPolicy;
import com.azure.core.http.policy.RequestIdPolicy;
import com.azure.core.http.policy.RetryOptions;
import com.azure.core.http.policy.RetryPolicy;
import com.azure.core.http.policy.UserAgentPolicy;
import com.azure.core.util.ClientOptions;
import com.azure.core.util.Configuration;
import com.azure.core.util.CoreUtils;
import com.azure.core.util.builder.ClientBuilderUtil;
import com.azure.core.util.logging.ClientLogger;
import com.azure.core.util.serializer.JacksonAdapter;
import com.azure.messaging.eventgrid.namespaces.implementation.EventGridSenderClientImpl;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Objects;
/**
* A builder for creating a new instance of the EventGridSenderClient type.
*/
@ServiceClientBuilder(serviceClients = { EventGridSenderClient.class, EventGridSenderAsyncClient.class })
public final class EventGridSenderClientBuilder implements HttpTrait,
ConfigurationTrait, TokenCredentialTrait,
KeyCredentialTrait, EndpointTrait {
@Generated
private static final String SDK_NAME = "name";
@Generated
private static final String SDK_VERSION = "version";
@Generated
private static final String[] DEFAULT_SCOPES = new String[] { "https://eventgrid.azure.net/.default" };
@Generated
private static final Map PROPERTIES
= CoreUtils.getProperties("azure-messaging-eventgrid-namespaces.properties");
@Generated
private final List pipelinePolicies;
/**
* Create an instance of the EventGridSenderClientBuilder.
*/
@Generated
public EventGridSenderClientBuilder() {
this.pipelinePolicies = new ArrayList<>();
}
/*
* The HTTP pipeline to send requests through.
*/
@Generated
private HttpPipeline pipeline;
/**
* {@inheritDoc}.
*/
@Generated
@Override
public EventGridSenderClientBuilder pipeline(HttpPipeline pipeline) {
if (this.pipeline != null && pipeline == null) {
LOGGER.atInfo().log("HttpPipeline is being set to 'null' when it was previously configured.");
}
this.pipeline = pipeline;
return this;
}
/*
* The HTTP client used to send the request.
*/
@Generated
private HttpClient httpClient;
/**
* {@inheritDoc}.
*/
@Generated
@Override
public EventGridSenderClientBuilder httpClient(HttpClient httpClient) {
this.httpClient = httpClient;
return this;
}
/*
* The logging configuration for HTTP requests and responses.
*/
@Generated
private HttpLogOptions httpLogOptions;
/**
* {@inheritDoc}.
*/
@Generated
@Override
public EventGridSenderClientBuilder httpLogOptions(HttpLogOptions httpLogOptions) {
this.httpLogOptions = httpLogOptions;
return this;
}
/*
* The client options such as application ID and custom headers to set on a request.
*/
@Generated
private ClientOptions clientOptions;
/**
* {@inheritDoc}.
*/
@Generated
@Override
public EventGridSenderClientBuilder clientOptions(ClientOptions clientOptions) {
this.clientOptions = clientOptions;
return this;
}
/*
* The retry options to configure retry policy for failed requests.
*/
@Generated
private RetryOptions retryOptions;
/**
* {@inheritDoc}.
*/
@Generated
@Override
public EventGridSenderClientBuilder retryOptions(RetryOptions retryOptions) {
this.retryOptions = retryOptions;
return this;
}
/**
* {@inheritDoc}.
*/
@Generated
@Override
public EventGridSenderClientBuilder addPolicy(HttpPipelinePolicy customPolicy) {
Objects.requireNonNull(customPolicy, "'customPolicy' cannot be null.");
pipelinePolicies.add(customPolicy);
return this;
}
/*
* The configuration store that is used during construction of the service client.
*/
@Generated
private Configuration configuration;
/**
* {@inheritDoc}.
*/
@Generated
@Override
public EventGridSenderClientBuilder configuration(Configuration configuration) {
this.configuration = configuration;
return this;
}
/*
* The TokenCredential used for authentication.
*/
@Generated
private TokenCredential tokenCredential;
/**
* {@inheritDoc}.
*/
@Generated
@Override
public EventGridSenderClientBuilder credential(TokenCredential tokenCredential) {
this.tokenCredential = tokenCredential;
return this;
}
/*
* The KeyCredential used for authentication.
*/
@Generated
private KeyCredential keyCredential;
/**
* {@inheritDoc}.
*/
@Generated
@Override
public EventGridSenderClientBuilder credential(KeyCredential keyCredential) {
this.keyCredential = keyCredential;
return this;
}
/*
* The service endpoint
*/
@Generated
private String endpoint;
/**
* {@inheritDoc}.
*/
@Generated
@Override
public EventGridSenderClientBuilder endpoint(String endpoint) {
this.endpoint = endpoint;
return this;
}
/*
* Service version
*/
@Generated
private EventGridServiceVersion serviceVersion;
/**
* Sets Service version.
*
* @param serviceVersion the serviceVersion value.
* @return the EventGridSenderClientBuilder.
*/
@Generated
public EventGridSenderClientBuilder serviceVersion(EventGridServiceVersion serviceVersion) {
this.serviceVersion = serviceVersion;
return this;
}
/*
* The retry policy that will attempt to retry failed requests, if applicable.
*/
@Generated
private RetryPolicy retryPolicy;
/**
* Sets The retry policy that will attempt to retry failed requests, if applicable.
*
* @param retryPolicy the retryPolicy value.
* @return the EventGridSenderClientBuilder.
*/
@Generated
public EventGridSenderClientBuilder retryPolicy(RetryPolicy retryPolicy) {
this.retryPolicy = retryPolicy;
return this;
}
private String topicName;
/**
* Sets the topic name.
*
* @param topicName the topic name.
* @return the EventGridSenderClientBuilder.
*/
public EventGridSenderClientBuilder topicName(String topicName) {
this.topicName = topicName;
return this;
}
/**
* Builds an instance of EventGridSenderClientImpl with the provided parameters.
*
* @return an instance of EventGridSenderClientImpl.
*/
@Generated
private EventGridSenderClientImpl buildInnerClient() {
this.validateClient();
HttpPipeline localPipeline = (pipeline != null) ? pipeline : createHttpPipeline();
EventGridServiceVersion localServiceVersion
= (serviceVersion != null) ? serviceVersion : EventGridServiceVersion.getLatest();
EventGridSenderClientImpl client = new EventGridSenderClientImpl(localPipeline,
JacksonAdapter.createDefaultSerializerAdapter(), this.endpoint, localServiceVersion);
return client;
}
@Generated
private HttpPipeline createHttpPipeline() {
Configuration buildConfiguration
= (configuration == null) ? Configuration.getGlobalConfiguration() : configuration;
HttpLogOptions localHttpLogOptions = this.httpLogOptions == null ? new HttpLogOptions() : this.httpLogOptions;
ClientOptions localClientOptions = this.clientOptions == null ? new ClientOptions() : this.clientOptions;
List policies = new ArrayList<>();
String clientName = PROPERTIES.getOrDefault(SDK_NAME, "UnknownName");
String clientVersion = PROPERTIES.getOrDefault(SDK_VERSION, "UnknownVersion");
String applicationId = CoreUtils.getApplicationId(localClientOptions, localHttpLogOptions);
policies.add(new UserAgentPolicy(applicationId, clientName, clientVersion, buildConfiguration));
policies.add(new RequestIdPolicy());
policies.add(new AddHeadersFromContextPolicy());
HttpHeaders headers = CoreUtils.createHttpHeadersFromClientOptions(localClientOptions);
if (headers != null) {
policies.add(new AddHeadersPolicy(headers));
}
this.pipelinePolicies.stream()
.filter(p -> p.getPipelinePosition() == HttpPipelinePosition.PER_CALL)
.forEach(p -> policies.add(p));
HttpPolicyProviders.addBeforeRetryPolicies(policies);
policies.add(ClientBuilderUtil.validateAndGetRetryPolicy(retryPolicy, retryOptions, new RetryPolicy()));
policies.add(new AddDatePolicy());
if (keyCredential != null) {
policies.add(new KeyCredentialPolicy("authorization", keyCredential, "SharedAccessKey"));
}
if (tokenCredential != null) {
policies.add(new BearerTokenAuthenticationPolicy(tokenCredential, DEFAULT_SCOPES));
}
this.pipelinePolicies.stream()
.filter(p -> p.getPipelinePosition() == HttpPipelinePosition.PER_RETRY)
.forEach(p -> policies.add(p));
HttpPolicyProviders.addAfterRetryPolicies(policies);
policies.add(new HttpLoggingPolicy(localHttpLogOptions));
HttpPipeline httpPipeline = new HttpPipelineBuilder().policies(policies.toArray(new HttpPipelinePolicy[0]))
.httpClient(httpClient)
.clientOptions(localClientOptions)
.build();
return httpPipeline;
}
/**
* Builds an instance of EventGridSenderAsyncClient class.
*
* @return an instance of EventGridSenderAsyncClient.
*/
public EventGridSenderAsyncClient buildAsyncClient() {
if (CoreUtils.isNullOrEmpty(topicName)) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException("Topic name cannot be null or empty"));
}
return new EventGridSenderAsyncClient(buildInnerClient(), topicName);
}
/**
* Builds an instance of EventGridSenderClient class.
*
* @return an instance of EventGridSenderClient.
*/
public EventGridSenderClient buildClient() {
if (CoreUtils.isNullOrEmpty(topicName)) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException("Topic name cannot be null or empty"));
}
return new EventGridSenderClient(buildInnerClient(), topicName);
}
private static final ClientLogger LOGGER = new ClientLogger(EventGridSenderClientBuilder.class);
@Generated
private void validateClient() {
// This method is invoked from 'buildInnerClient'/'buildClient' method.
// Developer can customize this method, to validate that the necessary conditions are met for the new client.
Objects.requireNonNull(endpoint, "'endpoint' cannot be null.");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy