com.pulumi.azure.eventgrid.outputs.SystemTopicEventSubscriptionDeliveryIdentity 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.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class SystemTopicEventSubscriptionDeliveryIdentity {
/**
* @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 SystemTopicEventSubscriptionDeliveryIdentity() {}
/**
* @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(SystemTopicEventSubscriptionDeliveryIdentity defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String type;
private @Nullable String userAssignedIdentity;
public Builder() {}
public Builder(SystemTopicEventSubscriptionDeliveryIdentity 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("SystemTopicEventSubscriptionDeliveryIdentity", "type");
}
this.type = type;
return this;
}
@CustomType.Setter
public Builder userAssignedIdentity(@Nullable String userAssignedIdentity) {
this.userAssignedIdentity = userAssignedIdentity;
return this;
}
public SystemTopicEventSubscriptionDeliveryIdentity build() {
final var _resultValue = new SystemTopicEventSubscriptionDeliveryIdentity();
_resultValue.type = type;
_resultValue.userAssignedIdentity = userAssignedIdentity;
return _resultValue;
}
}
}