EventGridPublisherClientImpl.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.messaging.eventgrid.implementation;
import com.azure.core.annotation.BodyParam;
import com.azure.core.annotation.ExpectedResponses;
import com.azure.core.annotation.Host;
import com.azure.core.annotation.HostParam;
import com.azure.core.annotation.Post;
import com.azure.core.annotation.QueryParam;
import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceInterface;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.annotation.UnexpectedResponseExceptionType;
import com.azure.core.exception.HttpResponseException;
import com.azure.core.http.HttpPipeline;
import com.azure.core.http.HttpPipelineBuilder;
import com.azure.core.http.policy.CookiePolicy;
import com.azure.core.http.policy.RetryPolicy;
import com.azure.core.http.policy.UserAgentPolicy;
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.RestProxy;
import com.azure.core.util.Context;
import com.azure.core.util.FluxUtil;
import com.azure.core.util.serializer.JacksonAdapter;
import com.azure.core.util.serializer.SerializerAdapter;
import com.azure.messaging.eventgrid.implementation.models.CloudEvent;
import com.azure.messaging.eventgrid.implementation.models.EventGridEvent;
import java.util.List;
import reactor.core.publisher.Mono;
/** Initializes a new instance of the EventGridPublisherClient type. */
public final class EventGridPublisherClientImpl {
/** The proxy service used to perform REST calls. */
private final EventGridPublisherClientService service;
/** Api Version. */
private final String apiVersion;
/**
* Gets Api Version.
*
* @return the apiVersion value.
*/
public String getApiVersion() {
return this.apiVersion;
}
/** The HTTP pipeline to send requests through. */
private final HttpPipeline httpPipeline;
/**
* Gets The HTTP pipeline to send requests through.
*
* @return the httpPipeline value.
*/
public HttpPipeline getHttpPipeline() {
return this.httpPipeline;
}
/** The serializer to serialize an object into a string. */
private final SerializerAdapter serializerAdapter;
/**
* Gets The serializer to serialize an object into a string.
*
* @return the serializerAdapter value.
*/
public SerializerAdapter getSerializerAdapter() {
return this.serializerAdapter;
}
/** Initializes an instance of EventGridPublisherClient client. */
EventGridPublisherClientImpl() {
this(
new HttpPipelineBuilder()
.policies(new UserAgentPolicy(), new RetryPolicy(), new CookiePolicy())
.build(),
JacksonAdapter.createDefaultSerializerAdapter());
}
/**
* Initializes an instance of EventGridPublisherClient client.
*
* @param httpPipeline The HTTP pipeline to send requests through.
*/
EventGridPublisherClientImpl(HttpPipeline httpPipeline) {
this(httpPipeline, JacksonAdapter.createDefaultSerializerAdapter());
}
/**
* Initializes an instance of EventGridPublisherClient client.
*
* @param httpPipeline The HTTP pipeline to send requests through.
* @param serializerAdapter The serializer to serialize an object into a string.
*/
EventGridPublisherClientImpl(HttpPipeline httpPipeline, SerializerAdapter serializerAdapter) {
this.httpPipeline = httpPipeline;
this.serializerAdapter = serializerAdapter;
this.apiVersion = "2018-01-01";
this.service =
RestProxy.create(EventGridPublisherClientService.class, this.httpPipeline, this.getSerializerAdapter());
}
/**
* The interface defining all the services for EventGridPublisherClient to be used by the proxy service to perform
* REST calls.
*/
@Host("https://{topicHostname}")
@ServiceInterface(name = "EventGridPublisherCl")
private interface EventGridPublisherClientService {
@Post("/api/events")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(HttpResponseException.class)
Mono<Response<Void>> publishEvents(
@HostParam("topicHostname") String topicHostname,
@QueryParam("api-version") String apiVersion,
@BodyParam("application/json") List<EventGridEvent> events,
Context context);
@Post("/api/events")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(HttpResponseException.class)
Mono<Response<Void>> publishCloudEventEvents(
@HostParam("topicHostname") String topicHostname,
@QueryParam("api-version") String apiVersion,
@BodyParam("application/cloudevents-batch+json; charset=utf-8") List<CloudEvent> events,
Context context);
@Post("/api/events")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(HttpResponseException.class)
Mono<Response<Void>> publishCustomEventEvents(
@HostParam("topicHostname") String topicHostname,
@QueryParam("api-version") String apiVersion,
@BodyParam("application/json") List<Object> events,
Context context);
}
/**
* Publishes a batch of events to an Azure Event Grid topic.
*
* @param topicHostname simple string.
* @param events Array of EventGridEvent.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Void>> publishEventsWithResponseAsync(String topicHostname, List<EventGridEvent> events) {
return FluxUtil.withContext(
context -> service.publishEvents(topicHostname, this.getApiVersion(), events, context));
}
/**
* Publishes a batch of events to an Azure Event Grid topic.
*
* @param topicHostname simple string.
* @param events Array of EventGridEvent.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Void>> publishEventsWithResponseAsync(
String topicHostname, List<EventGridEvent> events, Context context) {
return service.publishEvents(topicHostname, this.getApiVersion(), events, context);
}
/**
* Publishes a batch of events to an Azure Event Grid topic.
*
* @param topicHostname simple string.
* @param events Array of EventGridEvent.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Void> publishEventsAsync(String topicHostname, List<EventGridEvent> events) {
return publishEventsWithResponseAsync(topicHostname, events).flatMap((Response<Void> res) -> Mono.empty());
}
/**
* Publishes a batch of events to an Azure Event Grid topic.
*
* @param topicHostname simple string.
* @param events Array of EventGridEvent.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Void> publishEventsAsync(String topicHostname, List<EventGridEvent> events, Context context) {
return publishEventsWithResponseAsync(topicHostname, events, context)
.flatMap((Response<Void> res) -> Mono.empty());
}
/**
* Publishes a batch of events to an Azure Event Grid topic.
*
* @param topicHostname simple string.
* @param events Array of CloudEventEvent.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Void>> publishCloudEventEventsWithResponseAsync(
String topicHostname, List<CloudEvent> events) {
return FluxUtil.withContext(
context -> service.publishCloudEventEvents(topicHostname, this.getApiVersion(), events, context));
}
/**
* Publishes a batch of events to an Azure Event Grid topic.
*
* @param topicHostname simple string.
* @param events Array of CloudEventEvent.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Void>> publishCloudEventEventsWithResponseAsync(
String topicHostname, List<CloudEvent> events, Context context) {
return service.publishCloudEventEvents(topicHostname, this.getApiVersion(), events, context);
}
/**
* Publishes a batch of events to an Azure Event Grid topic.
*
* @param topicHostname simple string.
* @param events Array of CloudEventEvent.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Void> publishCloudEventEventsAsync(String topicHostname, List<CloudEvent> events) {
return publishCloudEventEventsWithResponseAsync(topicHostname, events)
.flatMap((Response<Void> res) -> Mono.empty());
}
/**
* Publishes a batch of events to an Azure Event Grid topic.
*
* @param topicHostname simple string.
* @param events Array of CloudEventEvent.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Void> publishCloudEventEventsAsync(String topicHostname, List<CloudEvent> events, Context context) {
return publishCloudEventEventsWithResponseAsync(topicHostname, events, context)
.flatMap((Response<Void> res) -> Mono.empty());
}
/**
* Publishes a batch of events to an Azure Event Grid topic.
*
* @param topicHostname simple string.
* @param events Array of any.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Void>> publishCustomEventEventsWithResponseAsync(String topicHostname, List<Object> events) {
return FluxUtil.withContext(
context -> service.publishCustomEventEvents(topicHostname, this.getApiVersion(), events, context));
}
/**
* Publishes a batch of events to an Azure Event Grid topic.
*
* @param topicHostname simple string.
* @param events Array of any.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Void>> publishCustomEventEventsWithResponseAsync(
String topicHostname, List<Object> events, Context context) {
return service.publishCustomEventEvents(topicHostname, this.getApiVersion(), events, context);
}
/**
* Publishes a batch of events to an Azure Event Grid topic.
*
* @param topicHostname simple string.
* @param events Array of any.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Void> publishCustomEventEventsAsync(String topicHostname, List<Object> events) {
return publishCustomEventEventsWithResponseAsync(topicHostname, events)
.flatMap((Response<Void> res) -> Mono.empty());
}
/**
* Publishes a batch of events to an Azure Event Grid topic.
*
* @param topicHostname simple string.
* @param events Array of any.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Void> publishCustomEventEventsAsync(String topicHostname, List<Object> events, Context context) {
return publishCustomEventEventsWithResponseAsync(topicHostname, events, context)
.flatMap((Response<Void> res) -> Mono.empty());
}
}