All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.blueprint.outputs.ManagedServiceIdentityResponse Maven / Gradle / Ivy

There is a newer version: 2.82.0
Show newest version
// *** 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.azurenative.blueprint.outputs;

import com.pulumi.azurenative.blueprint.outputs.UserAssignedIdentityResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class ManagedServiceIdentityResponse {
    /**
     * @return Azure Active Directory principal ID associated with this Identity.
     * 
     */
    private @Nullable String principalId;
    /**
     * @return ID of the Azure Active Directory.
     * 
     */
    private @Nullable String tenantId;
    /**
     * @return Type of the managed identity.
     * 
     */
    private String type;
    /**
     * @return The list of user-assigned managed identities associated with the resource. Key is the Azure resource Id of the managed identity.
     * 
     */
    private @Nullable Map userAssignedIdentities;

    private ManagedServiceIdentityResponse() {}
    /**
     * @return Azure Active Directory principal ID associated with this Identity.
     * 
     */
    public Optional principalId() {
        return Optional.ofNullable(this.principalId);
    }
    /**
     * @return ID of the Azure Active Directory.
     * 
     */
    public Optional tenantId() {
        return Optional.ofNullable(this.tenantId);
    }
    /**
     * @return Type of the managed identity.
     * 
     */
    public String type() {
        return this.type;
    }
    /**
     * @return The list of user-assigned managed identities associated with the resource. Key is the Azure resource Id of the managed identity.
     * 
     */
    public Map userAssignedIdentities() {
        return this.userAssignedIdentities == null ? Map.of() : this.userAssignedIdentities;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(ManagedServiceIdentityResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String principalId;
        private @Nullable String tenantId;
        private String type;
        private @Nullable Map userAssignedIdentities;
        public Builder() {}
        public Builder(ManagedServiceIdentityResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.principalId = defaults.principalId;
    	      this.tenantId = defaults.tenantId;
    	      this.type = defaults.type;
    	      this.userAssignedIdentities = defaults.userAssignedIdentities;
        }

        @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("ManagedServiceIdentityResponse", "type");
            }
            this.type = type;
            return this;
        }
        @CustomType.Setter
        public Builder userAssignedIdentities(@Nullable Map userAssignedIdentities) {

            this.userAssignedIdentities = userAssignedIdentities;
            return this;
        }
        public ManagedServiceIdentityResponse build() {
            final var _resultValue = new ManagedServiceIdentityResponse();
            _resultValue.principalId = principalId;
            _resultValue.tenantId = tenantId;
            _resultValue.type = type;
            _resultValue.userAssignedIdentities = userAssignedIdentities;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy