com.pulumi.azure.eventhub.outputs.EventSubscriptionDeliveryIdentity Maven / Gradle / Ivy
// *** 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.eventhub.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class EventSubscriptionDeliveryIdentity {
/**
* @return Specifies the type of Managed Service Identity that is used for event delivery. Allowed value is `SystemAssigned`, `UserAssigned`.
*
*/
private String type;
/**
* @return The user identity associated with the resource.
*
*/
private @Nullable String userAssignedIdentity;
private EventSubscriptionDeliveryIdentity() {}
/**
* @return Specifies the type of Managed Service Identity that is used for event delivery. Allowed value is `SystemAssigned`, `UserAssigned`.
*
*/
public String type() {
return this.type;
}
/**
* @return The user identity associated with the resource.
*
*/
public Optional userAssignedIdentity() {
return Optional.ofNullable(this.userAssignedIdentity);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(EventSubscriptionDeliveryIdentity defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String type;
private @Nullable String userAssignedIdentity;
public Builder() {}
public Builder(EventSubscriptionDeliveryIdentity defaults) {
Objects.requireNonNull(defaults);
this.type = defaults.type;
this.userAssignedIdentity = defaults.userAssignedIdentity;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("EventSubscriptionDeliveryIdentity", "type");
}
this.type = type;
return this;
}
@CustomType.Setter
public Builder userAssignedIdentity(@Nullable String userAssignedIdentity) {
this.userAssignedIdentity = userAssignedIdentity;
return this;
}
public EventSubscriptionDeliveryIdentity build() {
final var _resultValue = new EventSubscriptionDeliveryIdentity();
_resultValue.type = type;
_resultValue.userAssignedIdentity = userAssignedIdentity;
return _resultValue;
}
}
}