com.pulumi.azure.eventgrid.outputs.EventSubscriptionStorageQueueEndpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
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.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class EventSubscriptionStorageQueueEndpoint {
/**
* @return Storage queue message time to live in seconds.
*
*/
private @Nullable Integer queueMessageTimeToLiveInSeconds;
/**
* @return Specifies the name of the storage queue where the Event Subscription will receive events.
*
*/
private String queueName;
/**
* @return Specifies the id of the storage account id where the storage queue is located.
*
*/
private String storageAccountId;
private EventSubscriptionStorageQueueEndpoint() {}
/**
* @return Storage queue message time to live in seconds.
*
*/
public Optional queueMessageTimeToLiveInSeconds() {
return Optional.ofNullable(this.queueMessageTimeToLiveInSeconds);
}
/**
* @return Specifies the name of the storage queue where the Event Subscription will receive events.
*
*/
public String queueName() {
return this.queueName;
}
/**
* @return Specifies the id of the storage account id where the storage queue is located.
*
*/
public String storageAccountId() {
return this.storageAccountId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(EventSubscriptionStorageQueueEndpoint defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Integer queueMessageTimeToLiveInSeconds;
private String queueName;
private String storageAccountId;
public Builder() {}
public Builder(EventSubscriptionStorageQueueEndpoint defaults) {
Objects.requireNonNull(defaults);
this.queueMessageTimeToLiveInSeconds = defaults.queueMessageTimeToLiveInSeconds;
this.queueName = defaults.queueName;
this.storageAccountId = defaults.storageAccountId;
}
@CustomType.Setter
public Builder queueMessageTimeToLiveInSeconds(@Nullable Integer queueMessageTimeToLiveInSeconds) {
this.queueMessageTimeToLiveInSeconds = queueMessageTimeToLiveInSeconds;
return this;
}
@CustomType.Setter
public Builder queueName(String queueName) {
if (queueName == null) {
throw new MissingRequiredPropertyException("EventSubscriptionStorageQueueEndpoint", "queueName");
}
this.queueName = queueName;
return this;
}
@CustomType.Setter
public Builder storageAccountId(String storageAccountId) {
if (storageAccountId == null) {
throw new MissingRequiredPropertyException("EventSubscriptionStorageQueueEndpoint", "storageAccountId");
}
this.storageAccountId = storageAccountId;
return this;
}
public EventSubscriptionStorageQueueEndpoint build() {
final var _resultValue = new EventSubscriptionStorageQueueEndpoint();
_resultValue.queueMessageTimeToLiveInSeconds = queueMessageTimeToLiveInSeconds;
_resultValue.queueName = queueName;
_resultValue.storageAccountId = storageAccountId;
return _resultValue;
}
}
}