com.pulumi.azure.healthcare.outputs.DicomServiceIdentity 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.healthcare.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class DicomServiceIdentity {
/**
* @return A list of User Assigned Identity IDs which should be assigned to this Healthcare DICOM service.
*
*/
private @Nullable List identityIds;
private @Nullable String principalId;
private @Nullable String tenantId;
/**
* @return The type of identity used for the Healthcare DICOM service. Possible values are `UserAssigned`, `SystemAssigned` and `SystemAssigned, UserAssigned`. If `UserAssigned` is set, an `identity_ids` must be set as well.
*
*/
private String type;
private DicomServiceIdentity() {}
/**
* @return A list of User Assigned Identity IDs which should be assigned to this Healthcare DICOM service.
*
*/
public List identityIds() {
return this.identityIds == null ? List.of() : this.identityIds;
}
public Optional principalId() {
return Optional.ofNullable(this.principalId);
}
public Optional tenantId() {
return Optional.ofNullable(this.tenantId);
}
/**
* @return The type of identity used for the Healthcare DICOM service. Possible values are `UserAssigned`, `SystemAssigned` and `SystemAssigned, UserAssigned`. If `UserAssigned` is set, an `identity_ids` must be set as well.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DicomServiceIdentity defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List identityIds;
private @Nullable String principalId;
private @Nullable String tenantId;
private String type;
public Builder() {}
public Builder(DicomServiceIdentity defaults) {
Objects.requireNonNull(defaults);
this.identityIds = defaults.identityIds;
this.principalId = defaults.principalId;
this.tenantId = defaults.tenantId;
this.type = defaults.type;
}
@CustomType.Setter
public Builder identityIds(@Nullable List identityIds) {
this.identityIds = identityIds;
return this;
}
public Builder identityIds(String... identityIds) {
return identityIds(List.of(identityIds));
}
@CustomType.Setter
public Builder principalId(@Nullable String principalId) {
this.principalId = principalId;
return this;
}
@CustomType.Setter
public Builder tenantId(@Nullable String tenantId) {
this.tenantId = tenantId;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("DicomServiceIdentity", "type");
}
this.type = type;
return this;
}
public DicomServiceIdentity build() {
final var _resultValue = new DicomServiceIdentity();
_resultValue.identityIds = identityIds;
_resultValue.principalId = principalId;
_resultValue.tenantId = tenantId;
_resultValue.type = type;
return _resultValue;
}
}
}