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

com.pulumi.azurenative.storage.inputs.EncryptionServicesArgs Maven / Gradle / Ivy

There is a newer version: 2.78.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.storage.inputs;

import com.pulumi.azurenative.storage.inputs.EncryptionServiceArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * A list of services that support encryption.
 * 
 */
public final class EncryptionServicesArgs extends com.pulumi.resources.ResourceArgs {

    public static final EncryptionServicesArgs Empty = new EncryptionServicesArgs();

    /**
     * The encryption function of the blob storage service.
     * 
     */
    @Import(name="blob")
    private @Nullable Output blob;

    /**
     * @return The encryption function of the blob storage service.
     * 
     */
    public Optional> blob() {
        return Optional.ofNullable(this.blob);
    }

    /**
     * The encryption function of the file storage service.
     * 
     */
    @Import(name="file")
    private @Nullable Output file;

    /**
     * @return The encryption function of the file storage service.
     * 
     */
    public Optional> file() {
        return Optional.ofNullable(this.file);
    }

    /**
     * The encryption function of the queue storage service.
     * 
     */
    @Import(name="queue")
    private @Nullable Output queue;

    /**
     * @return The encryption function of the queue storage service.
     * 
     */
    public Optional> queue() {
        return Optional.ofNullable(this.queue);
    }

    /**
     * The encryption function of the table storage service.
     * 
     */
    @Import(name="table")
    private @Nullable Output table;

    /**
     * @return The encryption function of the table storage service.
     * 
     */
    public Optional> table() {
        return Optional.ofNullable(this.table);
    }

    private EncryptionServicesArgs() {}

    private EncryptionServicesArgs(EncryptionServicesArgs $) {
        this.blob = $.blob;
        this.file = $.file;
        this.queue = $.queue;
        this.table = $.table;
    }

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

    public static final class Builder {
        private EncryptionServicesArgs $;

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

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

        /**
         * @param blob The encryption function of the blob storage service.
         * 
         * @return builder
         * 
         */
        public Builder blob(@Nullable Output blob) {
            $.blob = blob;
            return this;
        }

        /**
         * @param blob The encryption function of the blob storage service.
         * 
         * @return builder
         * 
         */
        public Builder blob(EncryptionServiceArgs blob) {
            return blob(Output.of(blob));
        }

        /**
         * @param file The encryption function of the file storage service.
         * 
         * @return builder
         * 
         */
        public Builder file(@Nullable Output file) {
            $.file = file;
            return this;
        }

        /**
         * @param file The encryption function of the file storage service.
         * 
         * @return builder
         * 
         */
        public Builder file(EncryptionServiceArgs file) {
            return file(Output.of(file));
        }

        /**
         * @param queue The encryption function of the queue storage service.
         * 
         * @return builder
         * 
         */
        public Builder queue(@Nullable Output queue) {
            $.queue = queue;
            return this;
        }

        /**
         * @param queue The encryption function of the queue storage service.
         * 
         * @return builder
         * 
         */
        public Builder queue(EncryptionServiceArgs queue) {
            return queue(Output.of(queue));
        }

        /**
         * @param table The encryption function of the table storage service.
         * 
         * @return builder
         * 
         */
        public Builder table(@Nullable Output table) {
            $.table = table;
            return this;
        }

        /**
         * @param table The encryption function of the table storage service.
         * 
         * @return builder
         * 
         */
        public Builder table(EncryptionServiceArgs table) {
            return table(Output.of(table));
        }

        public EncryptionServicesArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy