All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.pulumi.azure.eventgrid.inputs.EventSubscriptionState Maven / Gradle / Ivy
Go to download
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azure.eventgrid.inputs;
import com.pulumi.azure.eventgrid.inputs.EventSubscriptionAdvancedFilterArgs;
import com.pulumi.azure.eventgrid.inputs.EventSubscriptionAzureFunctionEndpointArgs;
import com.pulumi.azure.eventgrid.inputs.EventSubscriptionDeadLetterIdentityArgs;
import com.pulumi.azure.eventgrid.inputs.EventSubscriptionDeliveryIdentityArgs;
import com.pulumi.azure.eventgrid.inputs.EventSubscriptionDeliveryPropertyArgs;
import com.pulumi.azure.eventgrid.inputs.EventSubscriptionRetryPolicyArgs;
import com.pulumi.azure.eventgrid.inputs.EventSubscriptionStorageBlobDeadLetterDestinationArgs;
import com.pulumi.azure.eventgrid.inputs.EventSubscriptionStorageQueueEndpointArgs;
import com.pulumi.azure.eventgrid.inputs.EventSubscriptionSubjectFilterArgs;
import com.pulumi.azure.eventgrid.inputs.EventSubscriptionWebhookEndpointArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class EventSubscriptionState extends com.pulumi.resources.ResourceArgs {
public static final EventSubscriptionState Empty = new EventSubscriptionState();
/**
* A `advanced_filter` block as defined below.
*
*/
@Import(name="advancedFilter")
private @Nullable Output advancedFilter;
/**
* @return A `advanced_filter` block as defined below.
*
*/
public Optional> advancedFilter() {
return Optional.ofNullable(this.advancedFilter);
}
/**
* Specifies whether advanced filters should be evaluated against an array of values instead of expecting a singular value. Defaults to `false`.
*
*/
@Import(name="advancedFilteringOnArraysEnabled")
private @Nullable Output advancedFilteringOnArraysEnabled;
/**
* @return Specifies whether advanced filters should be evaluated against an array of values instead of expecting a singular value. Defaults to `false`.
*
*/
public Optional> advancedFilteringOnArraysEnabled() {
return Optional.ofNullable(this.advancedFilteringOnArraysEnabled);
}
/**
* An `azure_function_endpoint` block as defined below.
*
*/
@Import(name="azureFunctionEndpoint")
private @Nullable Output azureFunctionEndpoint;
/**
* @return An `azure_function_endpoint` block as defined below.
*
*/
public Optional> azureFunctionEndpoint() {
return Optional.ofNullable(this.azureFunctionEndpoint);
}
/**
* A `dead_letter_identity` block as defined below.
*
* > **Note:** `storage_blob_dead_letter_destination` must be specified when a `dead_letter_identity` is specified
*
*/
@Import(name="deadLetterIdentity")
private @Nullable Output deadLetterIdentity;
/**
* @return A `dead_letter_identity` block as defined below.
*
* > **Note:** `storage_blob_dead_letter_destination` must be specified when a `dead_letter_identity` is specified
*
*/
public Optional> deadLetterIdentity() {
return Optional.ofNullable(this.deadLetterIdentity);
}
/**
* A `delivery_identity` block as defined below.
*
*/
@Import(name="deliveryIdentity")
private @Nullable Output deliveryIdentity;
/**
* @return A `delivery_identity` block as defined below.
*
*/
public Optional> deliveryIdentity() {
return Optional.ofNullable(this.deliveryIdentity);
}
/**
* One or more `delivery_property` blocks as defined below.
*
*/
@Import(name="deliveryProperties")
private @Nullable Output> deliveryProperties;
/**
* @return One or more `delivery_property` blocks as defined below.
*
*/
public Optional>> deliveryProperties() {
return Optional.ofNullable(this.deliveryProperties);
}
/**
* Specifies the event delivery schema for the event subscription. Possible values include: `EventGridSchema`, `CloudEventSchemaV1_0`, `CustomInputSchema`. Defaults to `EventGridSchema`. Changing this forces a new resource to be created.
*
*/
@Import(name="eventDeliverySchema")
private @Nullable Output eventDeliverySchema;
/**
* @return Specifies the event delivery schema for the event subscription. Possible values include: `EventGridSchema`, `CloudEventSchemaV1_0`, `CustomInputSchema`. Defaults to `EventGridSchema`. Changing this forces a new resource to be created.
*
*/
public Optional> eventDeliverySchema() {
return Optional.ofNullable(this.eventDeliverySchema);
}
/**
* Specifies the id where the Event Hub is located.
*
*/
@Import(name="eventhubEndpointId")
private @Nullable Output eventhubEndpointId;
/**
* @return Specifies the id where the Event Hub is located.
*
*/
public Optional> eventhubEndpointId() {
return Optional.ofNullable(this.eventhubEndpointId);
}
/**
* Specifies the expiration time of the event subscription (Datetime Format `RFC 3339`).
*
*/
@Import(name="expirationTimeUtc")
private @Nullable Output expirationTimeUtc;
/**
* @return Specifies the expiration time of the event subscription (Datetime Format `RFC 3339`).
*
*/
public Optional> expirationTimeUtc() {
return Optional.ofNullable(this.expirationTimeUtc);
}
/**
* Specifies the id where the Hybrid Connection is located.
*
*/
@Import(name="hybridConnectionEndpointId")
private @Nullable Output hybridConnectionEndpointId;
/**
* @return Specifies the id where the Hybrid Connection is located.
*
*/
public Optional> hybridConnectionEndpointId() {
return Optional.ofNullable(this.hybridConnectionEndpointId);
}
/**
* A list of applicable event types that need to be part of the event subscription.
*
*/
@Import(name="includedEventTypes")
private @Nullable Output> includedEventTypes;
/**
* @return A list of applicable event types that need to be part of the event subscription.
*
*/
public Optional>> includedEventTypes() {
return Optional.ofNullable(this.includedEventTypes);
}
/**
* A list of labels to assign to the event subscription.
*
*/
@Import(name="labels")
private @Nullable Output> labels;
/**
* @return A list of labels to assign to the event subscription.
*
*/
public Optional>> labels() {
return Optional.ofNullable(this.labels);
}
/**
* Specifies the name of the EventGrid Event Subscription resource. Changing this forces a new resource to be created.
*
*/
@Import(name="name")
private @Nullable Output name;
/**
* @return Specifies the name of the EventGrid Event Subscription resource. Changing this forces a new resource to be created.
*
*/
public Optional> name() {
return Optional.ofNullable(this.name);
}
/**
* A `retry_policy` block as defined below.
*
*/
@Import(name="retryPolicy")
private @Nullable Output retryPolicy;
/**
* @return A `retry_policy` block as defined below.
*
*/
public Optional> retryPolicy() {
return Optional.ofNullable(this.retryPolicy);
}
/**
* Specifies the scope at which the EventGrid Event Subscription should be created. Changing this forces a new resource to be created.
*
*/
@Import(name="scope")
private @Nullable Output scope;
/**
* @return Specifies the scope at which the EventGrid Event Subscription should be created. Changing this forces a new resource to be created.
*
*/
public Optional> scope() {
return Optional.ofNullable(this.scope);
}
/**
* Specifies the id where the Service Bus Queue is located.
*
*/
@Import(name="serviceBusQueueEndpointId")
private @Nullable Output serviceBusQueueEndpointId;
/**
* @return Specifies the id where the Service Bus Queue is located.
*
*/
public Optional> serviceBusQueueEndpointId() {
return Optional.ofNullable(this.serviceBusQueueEndpointId);
}
/**
* Specifies the id where the Service Bus Topic is located.
*
*/
@Import(name="serviceBusTopicEndpointId")
private @Nullable Output serviceBusTopicEndpointId;
/**
* @return Specifies the id where the Service Bus Topic is located.
*
*/
public Optional> serviceBusTopicEndpointId() {
return Optional.ofNullable(this.serviceBusTopicEndpointId);
}
/**
* A `storage_blob_dead_letter_destination` block as defined below.
*
*/
@Import(name="storageBlobDeadLetterDestination")
private @Nullable Output storageBlobDeadLetterDestination;
/**
* @return A `storage_blob_dead_letter_destination` block as defined below.
*
*/
public Optional> storageBlobDeadLetterDestination() {
return Optional.ofNullable(this.storageBlobDeadLetterDestination);
}
/**
* A `storage_queue_endpoint` block as defined below.
*
*/
@Import(name="storageQueueEndpoint")
private @Nullable Output storageQueueEndpoint;
/**
* @return A `storage_queue_endpoint` block as defined below.
*
*/
public Optional> storageQueueEndpoint() {
return Optional.ofNullable(this.storageQueueEndpoint);
}
/**
* A `subject_filter` block as defined below.
*
*/
@Import(name="subjectFilter")
private @Nullable Output subjectFilter;
/**
* @return A `subject_filter` block as defined below.
*
*/
public Optional> subjectFilter() {
return Optional.ofNullable(this.subjectFilter);
}
/**
* A `webhook_endpoint` block as defined below.
*
* > **NOTE:** One of `eventhub_endpoint_id`, `hybrid_connection_endpoint_id`, `service_bus_queue_endpoint_id`, `service_bus_topic_endpoint_id`, `storage_queue_endpoint`, `webhook_endpoint` or `azure_function_endpoint` must be specified.
*
*/
@Import(name="webhookEndpoint")
private @Nullable Output webhookEndpoint;
/**
* @return A `webhook_endpoint` block as defined below.
*
* > **NOTE:** One of `eventhub_endpoint_id`, `hybrid_connection_endpoint_id`, `service_bus_queue_endpoint_id`, `service_bus_topic_endpoint_id`, `storage_queue_endpoint`, `webhook_endpoint` or `azure_function_endpoint` must be specified.
*
*/
public Optional> webhookEndpoint() {
return Optional.ofNullable(this.webhookEndpoint);
}
private EventSubscriptionState() {}
private EventSubscriptionState(EventSubscriptionState $) {
this.advancedFilter = $.advancedFilter;
this.advancedFilteringOnArraysEnabled = $.advancedFilteringOnArraysEnabled;
this.azureFunctionEndpoint = $.azureFunctionEndpoint;
this.deadLetterIdentity = $.deadLetterIdentity;
this.deliveryIdentity = $.deliveryIdentity;
this.deliveryProperties = $.deliveryProperties;
this.eventDeliverySchema = $.eventDeliverySchema;
this.eventhubEndpointId = $.eventhubEndpointId;
this.expirationTimeUtc = $.expirationTimeUtc;
this.hybridConnectionEndpointId = $.hybridConnectionEndpointId;
this.includedEventTypes = $.includedEventTypes;
this.labels = $.labels;
this.name = $.name;
this.retryPolicy = $.retryPolicy;
this.scope = $.scope;
this.serviceBusQueueEndpointId = $.serviceBusQueueEndpointId;
this.serviceBusTopicEndpointId = $.serviceBusTopicEndpointId;
this.storageBlobDeadLetterDestination = $.storageBlobDeadLetterDestination;
this.storageQueueEndpoint = $.storageQueueEndpoint;
this.subjectFilter = $.subjectFilter;
this.webhookEndpoint = $.webhookEndpoint;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(EventSubscriptionState defaults) {
return new Builder(defaults);
}
public static final class Builder {
private EventSubscriptionState $;
public Builder() {
$ = new EventSubscriptionState();
}
public Builder(EventSubscriptionState defaults) {
$ = new EventSubscriptionState(Objects.requireNonNull(defaults));
}
/**
* @param advancedFilter A `advanced_filter` block as defined below.
*
* @return builder
*
*/
public Builder advancedFilter(@Nullable Output advancedFilter) {
$.advancedFilter = advancedFilter;
return this;
}
/**
* @param advancedFilter A `advanced_filter` block as defined below.
*
* @return builder
*
*/
public Builder advancedFilter(EventSubscriptionAdvancedFilterArgs advancedFilter) {
return advancedFilter(Output.of(advancedFilter));
}
/**
* @param advancedFilteringOnArraysEnabled Specifies whether advanced filters should be evaluated against an array of values instead of expecting a singular value. Defaults to `false`.
*
* @return builder
*
*/
public Builder advancedFilteringOnArraysEnabled(@Nullable Output advancedFilteringOnArraysEnabled) {
$.advancedFilteringOnArraysEnabled = advancedFilteringOnArraysEnabled;
return this;
}
/**
* @param advancedFilteringOnArraysEnabled Specifies whether advanced filters should be evaluated against an array of values instead of expecting a singular value. Defaults to `false`.
*
* @return builder
*
*/
public Builder advancedFilteringOnArraysEnabled(Boolean advancedFilteringOnArraysEnabled) {
return advancedFilteringOnArraysEnabled(Output.of(advancedFilteringOnArraysEnabled));
}
/**
* @param azureFunctionEndpoint An `azure_function_endpoint` block as defined below.
*
* @return builder
*
*/
public Builder azureFunctionEndpoint(@Nullable Output azureFunctionEndpoint) {
$.azureFunctionEndpoint = azureFunctionEndpoint;
return this;
}
/**
* @param azureFunctionEndpoint An `azure_function_endpoint` block as defined below.
*
* @return builder
*
*/
public Builder azureFunctionEndpoint(EventSubscriptionAzureFunctionEndpointArgs azureFunctionEndpoint) {
return azureFunctionEndpoint(Output.of(azureFunctionEndpoint));
}
/**
* @param deadLetterIdentity A `dead_letter_identity` block as defined below.
*
* > **Note:** `storage_blob_dead_letter_destination` must be specified when a `dead_letter_identity` is specified
*
* @return builder
*
*/
public Builder deadLetterIdentity(@Nullable Output deadLetterIdentity) {
$.deadLetterIdentity = deadLetterIdentity;
return this;
}
/**
* @param deadLetterIdentity A `dead_letter_identity` block as defined below.
*
* > **Note:** `storage_blob_dead_letter_destination` must be specified when a `dead_letter_identity` is specified
*
* @return builder
*
*/
public Builder deadLetterIdentity(EventSubscriptionDeadLetterIdentityArgs deadLetterIdentity) {
return deadLetterIdentity(Output.of(deadLetterIdentity));
}
/**
* @param deliveryIdentity A `delivery_identity` block as defined below.
*
* @return builder
*
*/
public Builder deliveryIdentity(@Nullable Output deliveryIdentity) {
$.deliveryIdentity = deliveryIdentity;
return this;
}
/**
* @param deliveryIdentity A `delivery_identity` block as defined below.
*
* @return builder
*
*/
public Builder deliveryIdentity(EventSubscriptionDeliveryIdentityArgs deliveryIdentity) {
return deliveryIdentity(Output.of(deliveryIdentity));
}
/**
* @param deliveryProperties One or more `delivery_property` blocks as defined below.
*
* @return builder
*
*/
public Builder deliveryProperties(@Nullable Output> deliveryProperties) {
$.deliveryProperties = deliveryProperties;
return this;
}
/**
* @param deliveryProperties One or more `delivery_property` blocks as defined below.
*
* @return builder
*
*/
public Builder deliveryProperties(List deliveryProperties) {
return deliveryProperties(Output.of(deliveryProperties));
}
/**
* @param deliveryProperties One or more `delivery_property` blocks as defined below.
*
* @return builder
*
*/
public Builder deliveryProperties(EventSubscriptionDeliveryPropertyArgs... deliveryProperties) {
return deliveryProperties(List.of(deliveryProperties));
}
/**
* @param eventDeliverySchema Specifies the event delivery schema for the event subscription. Possible values include: `EventGridSchema`, `CloudEventSchemaV1_0`, `CustomInputSchema`. Defaults to `EventGridSchema`. Changing this forces a new resource to be created.
*
* @return builder
*
*/
public Builder eventDeliverySchema(@Nullable Output eventDeliverySchema) {
$.eventDeliverySchema = eventDeliverySchema;
return this;
}
/**
* @param eventDeliverySchema Specifies the event delivery schema for the event subscription. Possible values include: `EventGridSchema`, `CloudEventSchemaV1_0`, `CustomInputSchema`. Defaults to `EventGridSchema`. Changing this forces a new resource to be created.
*
* @return builder
*
*/
public Builder eventDeliverySchema(String eventDeliverySchema) {
return eventDeliverySchema(Output.of(eventDeliverySchema));
}
/**
* @param eventhubEndpointId Specifies the id where the Event Hub is located.
*
* @return builder
*
*/
public Builder eventhubEndpointId(@Nullable Output eventhubEndpointId) {
$.eventhubEndpointId = eventhubEndpointId;
return this;
}
/**
* @param eventhubEndpointId Specifies the id where the Event Hub is located.
*
* @return builder
*
*/
public Builder eventhubEndpointId(String eventhubEndpointId) {
return eventhubEndpointId(Output.of(eventhubEndpointId));
}
/**
* @param expirationTimeUtc Specifies the expiration time of the event subscription (Datetime Format `RFC 3339`).
*
* @return builder
*
*/
public Builder expirationTimeUtc(@Nullable Output expirationTimeUtc) {
$.expirationTimeUtc = expirationTimeUtc;
return this;
}
/**
* @param expirationTimeUtc Specifies the expiration time of the event subscription (Datetime Format `RFC 3339`).
*
* @return builder
*
*/
public Builder expirationTimeUtc(String expirationTimeUtc) {
return expirationTimeUtc(Output.of(expirationTimeUtc));
}
/**
* @param hybridConnectionEndpointId Specifies the id where the Hybrid Connection is located.
*
* @return builder
*
*/
public Builder hybridConnectionEndpointId(@Nullable Output hybridConnectionEndpointId) {
$.hybridConnectionEndpointId = hybridConnectionEndpointId;
return this;
}
/**
* @param hybridConnectionEndpointId Specifies the id where the Hybrid Connection is located.
*
* @return builder
*
*/
public Builder hybridConnectionEndpointId(String hybridConnectionEndpointId) {
return hybridConnectionEndpointId(Output.of(hybridConnectionEndpointId));
}
/**
* @param includedEventTypes A list of applicable event types that need to be part of the event subscription.
*
* @return builder
*
*/
public Builder includedEventTypes(@Nullable Output> includedEventTypes) {
$.includedEventTypes = includedEventTypes;
return this;
}
/**
* @param includedEventTypes A list of applicable event types that need to be part of the event subscription.
*
* @return builder
*
*/
public Builder includedEventTypes(List includedEventTypes) {
return includedEventTypes(Output.of(includedEventTypes));
}
/**
* @param includedEventTypes A list of applicable event types that need to be part of the event subscription.
*
* @return builder
*
*/
public Builder includedEventTypes(String... includedEventTypes) {
return includedEventTypes(List.of(includedEventTypes));
}
/**
* @param labels A list of labels to assign to the event subscription.
*
* @return builder
*
*/
public Builder labels(@Nullable Output> labels) {
$.labels = labels;
return this;
}
/**
* @param labels A list of labels to assign to the event subscription.
*
* @return builder
*
*/
public Builder labels(List labels) {
return labels(Output.of(labels));
}
/**
* @param labels A list of labels to assign to the event subscription.
*
* @return builder
*
*/
public Builder labels(String... labels) {
return labels(List.of(labels));
}
/**
* @param name Specifies the name of the EventGrid Event Subscription resource. Changing this forces a new resource to be created.
*
* @return builder
*
*/
public Builder name(@Nullable Output name) {
$.name = name;
return this;
}
/**
* @param name Specifies the name of the EventGrid Event Subscription resource. Changing this forces a new resource to be created.
*
* @return builder
*
*/
public Builder name(String name) {
return name(Output.of(name));
}
/**
* @param retryPolicy A `retry_policy` block as defined below.
*
* @return builder
*
*/
public Builder retryPolicy(@Nullable Output retryPolicy) {
$.retryPolicy = retryPolicy;
return this;
}
/**
* @param retryPolicy A `retry_policy` block as defined below.
*
* @return builder
*
*/
public Builder retryPolicy(EventSubscriptionRetryPolicyArgs retryPolicy) {
return retryPolicy(Output.of(retryPolicy));
}
/**
* @param scope Specifies the scope at which the EventGrid Event Subscription should be created. Changing this forces a new resource to be created.
*
* @return builder
*
*/
public Builder scope(@Nullable Output scope) {
$.scope = scope;
return this;
}
/**
* @param scope Specifies the scope at which the EventGrid Event Subscription should be created. Changing this forces a new resource to be created.
*
* @return builder
*
*/
public Builder scope(String scope) {
return scope(Output.of(scope));
}
/**
* @param serviceBusQueueEndpointId Specifies the id where the Service Bus Queue is located.
*
* @return builder
*
*/
public Builder serviceBusQueueEndpointId(@Nullable Output serviceBusQueueEndpointId) {
$.serviceBusQueueEndpointId = serviceBusQueueEndpointId;
return this;
}
/**
* @param serviceBusQueueEndpointId Specifies the id where the Service Bus Queue is located.
*
* @return builder
*
*/
public Builder serviceBusQueueEndpointId(String serviceBusQueueEndpointId) {
return serviceBusQueueEndpointId(Output.of(serviceBusQueueEndpointId));
}
/**
* @param serviceBusTopicEndpointId Specifies the id where the Service Bus Topic is located.
*
* @return builder
*
*/
public Builder serviceBusTopicEndpointId(@Nullable Output serviceBusTopicEndpointId) {
$.serviceBusTopicEndpointId = serviceBusTopicEndpointId;
return this;
}
/**
* @param serviceBusTopicEndpointId Specifies the id where the Service Bus Topic is located.
*
* @return builder
*
*/
public Builder serviceBusTopicEndpointId(String serviceBusTopicEndpointId) {
return serviceBusTopicEndpointId(Output.of(serviceBusTopicEndpointId));
}
/**
* @param storageBlobDeadLetterDestination A `storage_blob_dead_letter_destination` block as defined below.
*
* @return builder
*
*/
public Builder storageBlobDeadLetterDestination(@Nullable Output storageBlobDeadLetterDestination) {
$.storageBlobDeadLetterDestination = storageBlobDeadLetterDestination;
return this;
}
/**
* @param storageBlobDeadLetterDestination A `storage_blob_dead_letter_destination` block as defined below.
*
* @return builder
*
*/
public Builder storageBlobDeadLetterDestination(EventSubscriptionStorageBlobDeadLetterDestinationArgs storageBlobDeadLetterDestination) {
return storageBlobDeadLetterDestination(Output.of(storageBlobDeadLetterDestination));
}
/**
* @param storageQueueEndpoint A `storage_queue_endpoint` block as defined below.
*
* @return builder
*
*/
public Builder storageQueueEndpoint(@Nullable Output storageQueueEndpoint) {
$.storageQueueEndpoint = storageQueueEndpoint;
return this;
}
/**
* @param storageQueueEndpoint A `storage_queue_endpoint` block as defined below.
*
* @return builder
*
*/
public Builder storageQueueEndpoint(EventSubscriptionStorageQueueEndpointArgs storageQueueEndpoint) {
return storageQueueEndpoint(Output.of(storageQueueEndpoint));
}
/**
* @param subjectFilter A `subject_filter` block as defined below.
*
* @return builder
*
*/
public Builder subjectFilter(@Nullable Output subjectFilter) {
$.subjectFilter = subjectFilter;
return this;
}
/**
* @param subjectFilter A `subject_filter` block as defined below.
*
* @return builder
*
*/
public Builder subjectFilter(EventSubscriptionSubjectFilterArgs subjectFilter) {
return subjectFilter(Output.of(subjectFilter));
}
/**
* @param webhookEndpoint A `webhook_endpoint` block as defined below.
*
* > **NOTE:** One of `eventhub_endpoint_id`, `hybrid_connection_endpoint_id`, `service_bus_queue_endpoint_id`, `service_bus_topic_endpoint_id`, `storage_queue_endpoint`, `webhook_endpoint` or `azure_function_endpoint` must be specified.
*
* @return builder
*
*/
public Builder webhookEndpoint(@Nullable Output webhookEndpoint) {
$.webhookEndpoint = webhookEndpoint;
return this;
}
/**
* @param webhookEndpoint A `webhook_endpoint` block as defined below.
*
* > **NOTE:** One of `eventhub_endpoint_id`, `hybrid_connection_endpoint_id`, `service_bus_queue_endpoint_id`, `service_bus_topic_endpoint_id`, `storage_queue_endpoint`, `webhook_endpoint` or `azure_function_endpoint` must be specified.
*
* @return builder
*
*/
public Builder webhookEndpoint(EventSubscriptionWebhookEndpointArgs webhookEndpoint) {
return webhookEndpoint(Output.of(webhookEndpoint));
}
public EventSubscriptionState build() {
return $;
}
}
}