com.pulumi.azure.workloadssap.outputs.DiscoveryVirtualInstanceIdentity 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.workloadssap.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
@CustomType
public final class DiscoveryVirtualInstanceIdentity {
/**
* @return A list of User Assigned Managed Identity IDs to be assigned to this SAP Discovery Virtual Instance.
*
*/
private List identityIds;
/**
* @return The type of Managed Service Identity that should be configured on this SAP Discovery Virtual Instance. The only possible value is `UserAssigned`.
*
*/
private String type;
private DiscoveryVirtualInstanceIdentity() {}
/**
* @return A list of User Assigned Managed Identity IDs to be assigned to this SAP Discovery Virtual Instance.
*
*/
public List identityIds() {
return this.identityIds;
}
/**
* @return The type of Managed Service Identity that should be configured on this SAP Discovery Virtual Instance. The only possible value is `UserAssigned`.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DiscoveryVirtualInstanceIdentity defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private List identityIds;
private String type;
public Builder() {}
public Builder(DiscoveryVirtualInstanceIdentity defaults) {
Objects.requireNonNull(defaults);
this.identityIds = defaults.identityIds;
this.type = defaults.type;
}
@CustomType.Setter
public Builder identityIds(List identityIds) {
if (identityIds == null) {
throw new MissingRequiredPropertyException("DiscoveryVirtualInstanceIdentity", "identityIds");
}
this.identityIds = identityIds;
return this;
}
public Builder identityIds(String... identityIds) {
return identityIds(List.of(identityIds));
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("DiscoveryVirtualInstanceIdentity", "type");
}
this.type = type;
return this;
}
public DiscoveryVirtualInstanceIdentity build() {
final var _resultValue = new DiscoveryVirtualInstanceIdentity();
_resultValue.identityIds = identityIds;
_resultValue.type = type;
return _resultValue;
}
}
}