
com.pulumi.azurenative.eventgrid.outputs.GetEventSubscriptionResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.azurenative.eventgrid.outputs;
import com.pulumi.azurenative.eventgrid.outputs.AzureFunctionEventSubscriptionDestinationResponse;
import com.pulumi.azurenative.eventgrid.outputs.DeadLetterWithResourceIdentityResponse;
import com.pulumi.azurenative.eventgrid.outputs.DeliveryWithResourceIdentityResponse;
import com.pulumi.azurenative.eventgrid.outputs.EventHubEventSubscriptionDestinationResponse;
import com.pulumi.azurenative.eventgrid.outputs.EventSubscriptionFilterResponse;
import com.pulumi.azurenative.eventgrid.outputs.HybridConnectionEventSubscriptionDestinationResponse;
import com.pulumi.azurenative.eventgrid.outputs.RetryPolicyResponse;
import com.pulumi.azurenative.eventgrid.outputs.ServiceBusQueueEventSubscriptionDestinationResponse;
import com.pulumi.azurenative.eventgrid.outputs.ServiceBusTopicEventSubscriptionDestinationResponse;
import com.pulumi.azurenative.eventgrid.outputs.StorageBlobDeadLetterDestinationResponse;
import com.pulumi.azurenative.eventgrid.outputs.StorageQueueEventSubscriptionDestinationResponse;
import com.pulumi.azurenative.eventgrid.outputs.SystemDataResponse;
import com.pulumi.azurenative.eventgrid.outputs.WebHookEventSubscriptionDestinationResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetEventSubscriptionResult {
/**
* @return The dead letter destination of the event subscription. Any event that cannot be delivered to its' destination is sent to the dead letter destination.
* Uses Azure Event Grid's identity to acquire the authentication tokens being used during delivery / dead-lettering.
*
*/
private @Nullable StorageBlobDeadLetterDestinationResponse deadLetterDestination;
/**
* @return The dead letter destination of the event subscription. Any event that cannot be delivered to its' destination is sent to the dead letter destination.
* Uses the managed identity setup on the parent resource (namely, topic or domain) to acquire the authentication tokens being used during delivery / dead-lettering.
*
*/
private @Nullable DeadLetterWithResourceIdentityResponse deadLetterWithResourceIdentity;
/**
* @return Information about the destination where events have to be delivered for the event subscription.
* Uses the managed identity setup on the parent resource (namely, topic or domain) to acquire the authentication tokens being used during delivery / dead-lettering.
*
*/
private @Nullable DeliveryWithResourceIdentityResponse deliveryWithResourceIdentity;
/**
* @return Information about the destination where events have to be delivered for the event subscription.
* Uses Azure Event Grid's identity to acquire the authentication tokens being used during delivery / dead-lettering.
*
*/
private @Nullable Object destination;
/**
* @return The event delivery schema for the event subscription.
*
*/
private @Nullable String eventDeliverySchema;
/**
* @return Expiration time of the event subscription.
*
*/
private @Nullable String expirationTimeUtc;
/**
* @return Information about the filter for the event subscription.
*
*/
private @Nullable EventSubscriptionFilterResponse filter;
/**
* @return Fully qualified identifier of the resource.
*
*/
private String id;
/**
* @return List of user defined labels.
*
*/
private @Nullable List labels;
/**
* @return Name of the resource.
*
*/
private String name;
/**
* @return Provisioning state of the event subscription.
*
*/
private String provisioningState;
/**
* @return The retry policy for events. This can be used to configure maximum number of delivery attempts and time to live for events.
*
*/
private @Nullable RetryPolicyResponse retryPolicy;
/**
* @return The system metadata relating to Event Subscription resource.
*
*/
private SystemDataResponse systemData;
/**
* @return Name of the topic of the event subscription.
*
*/
private String topic;
/**
* @return Type of the resource.
*
*/
private String type;
private GetEventSubscriptionResult() {}
/**
* @return The dead letter destination of the event subscription. Any event that cannot be delivered to its' destination is sent to the dead letter destination.
* Uses Azure Event Grid's identity to acquire the authentication tokens being used during delivery / dead-lettering.
*
*/
public Optional deadLetterDestination() {
return Optional.ofNullable(this.deadLetterDestination);
}
/**
* @return The dead letter destination of the event subscription. Any event that cannot be delivered to its' destination is sent to the dead letter destination.
* Uses the managed identity setup on the parent resource (namely, topic or domain) to acquire the authentication tokens being used during delivery / dead-lettering.
*
*/
public Optional deadLetterWithResourceIdentity() {
return Optional.ofNullable(this.deadLetterWithResourceIdentity);
}
/**
* @return Information about the destination where events have to be delivered for the event subscription.
* Uses the managed identity setup on the parent resource (namely, topic or domain) to acquire the authentication tokens being used during delivery / dead-lettering.
*
*/
public Optional deliveryWithResourceIdentity() {
return Optional.ofNullable(this.deliveryWithResourceIdentity);
}
/**
* @return Information about the destination where events have to be delivered for the event subscription.
* Uses Azure Event Grid's identity to acquire the authentication tokens being used during delivery / dead-lettering.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy