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

com.pulumi.azure.appservice.outputs.GetStaticWebAppIdentity 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.appservice.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 GetStaticWebAppIdentity {
    /**
     * @return The list of Managed Identity IDs which are assigned to this Static Web App resource.
     * 
     */
    private List identityIds;
    private String principalId;
    private String tenantId;
    /**
     * @return The Type of Managed Identity assigned to this Static Web App resource.
     * 
     */
    private String type;

    private GetStaticWebAppIdentity() {}
    /**
     * @return The list of Managed Identity IDs which are assigned to this Static Web App resource.
     * 
     */
    public List identityIds() {
        return this.identityIds;
    }
    public String principalId() {
        return this.principalId;
    }
    public String tenantId() {
        return this.tenantId;
    }
    /**
     * @return The Type of Managed Identity assigned to this Static Web App resource.
     * 
     */
    public String type() {
        return this.type;
    }

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

    public static Builder builder(GetStaticWebAppIdentity defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private List identityIds;
        private String principalId;
        private String tenantId;
        private String type;
        public Builder() {}
        public Builder(GetStaticWebAppIdentity 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(List identityIds) {
            if (identityIds == null) {
              throw new MissingRequiredPropertyException("GetStaticWebAppIdentity", "identityIds");
            }
            this.identityIds = identityIds;
            return this;
        }
        public Builder identityIds(String... identityIds) {
            return identityIds(List.of(identityIds));
        }
        @CustomType.Setter
        public Builder principalId(String principalId) {
            if (principalId == null) {
              throw new MissingRequiredPropertyException("GetStaticWebAppIdentity", "principalId");
            }
            this.principalId = principalId;
            return this;
        }
        @CustomType.Setter
        public Builder tenantId(String tenantId) {
            if (tenantId == null) {
              throw new MissingRequiredPropertyException("GetStaticWebAppIdentity", "tenantId");
            }
            this.tenantId = tenantId;
            return this;
        }
        @CustomType.Setter
        public Builder type(String type) {
            if (type == null) {
              throw new MissingRequiredPropertyException("GetStaticWebAppIdentity", "type");
            }
            this.type = type;
            return this;
        }
        public GetStaticWebAppIdentity build() {
            final var _resultValue = new GetStaticWebAppIdentity();
            _resultValue.identityIds = identityIds;
            _resultValue.principalId = principalId;
            _resultValue.tenantId = tenantId;
            _resultValue.type = type;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy