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

com.pulumi.azurenative.machinelearningservices.inputs.StorageAccountDetailsArgs 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.azurenative.machinelearningservices.inputs;

import com.pulumi.azurenative.machinelearningservices.inputs.SystemCreatedStorageAccountArgs;
import com.pulumi.azurenative.machinelearningservices.inputs.UserCreatedStorageAccountArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Details of storage account to be used for the Registry
 * 
 */
public final class StorageAccountDetailsArgs extends com.pulumi.resources.ResourceArgs {

    public static final StorageAccountDetailsArgs Empty = new StorageAccountDetailsArgs();

    /**
     * Details of system created storage account to be used for the registry
     * 
     */
    @Import(name="systemCreatedStorageAccount")
    private @Nullable Output systemCreatedStorageAccount;

    /**
     * @return Details of system created storage account to be used for the registry
     * 
     */
    public Optional> systemCreatedStorageAccount() {
        return Optional.ofNullable(this.systemCreatedStorageAccount);
    }

    /**
     * Details of user created storage account to be used for the registry
     * 
     */
    @Import(name="userCreatedStorageAccount")
    private @Nullable Output userCreatedStorageAccount;

    /**
     * @return Details of user created storage account to be used for the registry
     * 
     */
    public Optional> userCreatedStorageAccount() {
        return Optional.ofNullable(this.userCreatedStorageAccount);
    }

    private StorageAccountDetailsArgs() {}

    private StorageAccountDetailsArgs(StorageAccountDetailsArgs $) {
        this.systemCreatedStorageAccount = $.systemCreatedStorageAccount;
        this.userCreatedStorageAccount = $.userCreatedStorageAccount;
    }

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

    public static final class Builder {
        private StorageAccountDetailsArgs $;

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

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

        /**
         * @param systemCreatedStorageAccount Details of system created storage account to be used for the registry
         * 
         * @return builder
         * 
         */
        public Builder systemCreatedStorageAccount(@Nullable Output systemCreatedStorageAccount) {
            $.systemCreatedStorageAccount = systemCreatedStorageAccount;
            return this;
        }

        /**
         * @param systemCreatedStorageAccount Details of system created storage account to be used for the registry
         * 
         * @return builder
         * 
         */
        public Builder systemCreatedStorageAccount(SystemCreatedStorageAccountArgs systemCreatedStorageAccount) {
            return systemCreatedStorageAccount(Output.of(systemCreatedStorageAccount));
        }

        /**
         * @param userCreatedStorageAccount Details of user created storage account to be used for the registry
         * 
         * @return builder
         * 
         */
        public Builder userCreatedStorageAccount(@Nullable Output userCreatedStorageAccount) {
            $.userCreatedStorageAccount = userCreatedStorageAccount;
            return this;
        }

        /**
         * @param userCreatedStorageAccount Details of user created storage account to be used for the registry
         * 
         * @return builder
         * 
         */
        public Builder userCreatedStorageAccount(UserCreatedStorageAccountArgs userCreatedStorageAccount) {
            return userCreatedStorageAccount(Output.of(userCreatedStorageAccount));
        }

        public StorageAccountDetailsArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy