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

com.pulumi.azurenative.mixedreality.RemoteRenderingAccountArgs Maven / Gradle / Ivy

There is a newer version: 2.72.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.mixedreality;

import com.pulumi.azurenative.mixedreality.inputs.IdentityArgs;
import com.pulumi.azurenative.mixedreality.inputs.SkuArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
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;


public final class RemoteRenderingAccountArgs extends com.pulumi.resources.ResourceArgs {

    public static final RemoteRenderingAccountArgs Empty = new RemoteRenderingAccountArgs();

    /**
     * Name of an Mixed Reality Account.
     * 
     */
    @Import(name="accountName")
    private @Nullable Output accountName;

    /**
     * @return Name of an Mixed Reality Account.
     * 
     */
    public Optional> accountName() {
        return Optional.ofNullable(this.accountName);
    }

    /**
     * The identity associated with this account
     * 
     */
    @Import(name="identity")
    private @Nullable Output identity;

    /**
     * @return The identity associated with this account
     * 
     */
    public Optional> identity() {
        return Optional.ofNullable(this.identity);
    }

    /**
     * The kind of account, if supported
     * 
     */
    @Import(name="kind")
    private @Nullable Output kind;

    /**
     * @return The kind of account, if supported
     * 
     */
    public Optional> kind() {
        return Optional.ofNullable(this.kind);
    }

    /**
     * The geo-location where the resource lives
     * 
     */
    @Import(name="location")
    private @Nullable Output location;

    /**
     * @return The geo-location where the resource lives
     * 
     */
    public Optional> location() {
        return Optional.ofNullable(this.location);
    }

    /**
     * The plan associated with this account
     * 
     */
    @Import(name="plan")
    private @Nullable Output plan;

    /**
     * @return The plan associated with this account
     * 
     */
    public Optional> plan() {
        return Optional.ofNullable(this.plan);
    }

    /**
     * Name of an Azure resource group.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return Name of an Azure resource group.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * The sku associated with this account
     * 
     */
    @Import(name="sku")
    private @Nullable Output sku;

    /**
     * @return The sku associated with this account
     * 
     */
    public Optional> sku() {
        return Optional.ofNullable(this.sku);
    }

    /**
     * The name of the storage account associated with this accountId
     * 
     */
    @Import(name="storageAccountName")
    private @Nullable Output storageAccountName;

    /**
     * @return The name of the storage account associated with this accountId
     * 
     */
    public Optional> storageAccountName() {
        return Optional.ofNullable(this.storageAccountName);
    }

    /**
     * Resource tags.
     * 
     */
    @Import(name="tags")
    private @Nullable Output> tags;

    /**
     * @return Resource tags.
     * 
     */
    public Optional>> tags() {
        return Optional.ofNullable(this.tags);
    }

    private RemoteRenderingAccountArgs() {}

    private RemoteRenderingAccountArgs(RemoteRenderingAccountArgs $) {
        this.accountName = $.accountName;
        this.identity = $.identity;
        this.kind = $.kind;
        this.location = $.location;
        this.plan = $.plan;
        this.resourceGroupName = $.resourceGroupName;
        this.sku = $.sku;
        this.storageAccountName = $.storageAccountName;
        this.tags = $.tags;
    }

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

    public static final class Builder {
        private RemoteRenderingAccountArgs $;

        public Builder() {
            $ = new RemoteRenderingAccountArgs();
        }

        public Builder(RemoteRenderingAccountArgs defaults) {
            $ = new RemoteRenderingAccountArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param accountName Name of an Mixed Reality Account.
         * 
         * @return builder
         * 
         */
        public Builder accountName(@Nullable Output accountName) {
            $.accountName = accountName;
            return this;
        }

        /**
         * @param accountName Name of an Mixed Reality Account.
         * 
         * @return builder
         * 
         */
        public Builder accountName(String accountName) {
            return accountName(Output.of(accountName));
        }

        /**
         * @param identity The identity associated with this account
         * 
         * @return builder
         * 
         */
        public Builder identity(@Nullable Output identity) {
            $.identity = identity;
            return this;
        }

        /**
         * @param identity The identity associated with this account
         * 
         * @return builder
         * 
         */
        public Builder identity(IdentityArgs identity) {
            return identity(Output.of(identity));
        }

        /**
         * @param kind The kind of account, if supported
         * 
         * @return builder
         * 
         */
        public Builder kind(@Nullable Output kind) {
            $.kind = kind;
            return this;
        }

        /**
         * @param kind The kind of account, if supported
         * 
         * @return builder
         * 
         */
        public Builder kind(SkuArgs kind) {
            return kind(Output.of(kind));
        }

        /**
         * @param location The geo-location where the resource lives
         * 
         * @return builder
         * 
         */
        public Builder location(@Nullable Output location) {
            $.location = location;
            return this;
        }

        /**
         * @param location The geo-location where the resource lives
         * 
         * @return builder
         * 
         */
        public Builder location(String location) {
            return location(Output.of(location));
        }

        /**
         * @param plan The plan associated with this account
         * 
         * @return builder
         * 
         */
        public Builder plan(@Nullable Output plan) {
            $.plan = plan;
            return this;
        }

        /**
         * @param plan The plan associated with this account
         * 
         * @return builder
         * 
         */
        public Builder plan(IdentityArgs plan) {
            return plan(Output.of(plan));
        }

        /**
         * @param resourceGroupName Name of an Azure resource group.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName Name of an Azure resource group.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param sku The sku associated with this account
         * 
         * @return builder
         * 
         */
        public Builder sku(@Nullable Output sku) {
            $.sku = sku;
            return this;
        }

        /**
         * @param sku The sku associated with this account
         * 
         * @return builder
         * 
         */
        public Builder sku(SkuArgs sku) {
            return sku(Output.of(sku));
        }

        /**
         * @param storageAccountName The name of the storage account associated with this accountId
         * 
         * @return builder
         * 
         */
        public Builder storageAccountName(@Nullable Output storageAccountName) {
            $.storageAccountName = storageAccountName;
            return this;
        }

        /**
         * @param storageAccountName The name of the storage account associated with this accountId
         * 
         * @return builder
         * 
         */
        public Builder storageAccountName(String storageAccountName) {
            return storageAccountName(Output.of(storageAccountName));
        }

        /**
         * @param tags Resource tags.
         * 
         * @return builder
         * 
         */
        public Builder tags(@Nullable Output> tags) {
            $.tags = tags;
            return this;
        }

        /**
         * @param tags Resource tags.
         * 
         * @return builder
         * 
         */
        public Builder tags(Map tags) {
            return tags(Output.of(tags));
        }

        public RemoteRenderingAccountArgs build() {
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("RemoteRenderingAccountArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy