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

com.pulumi.azurenative.storagecache.inputs.ClfsTargetArgs 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.storagecache.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Properties pertaining to the ClfsTarget
 * 
 */
public final class ClfsTargetArgs extends com.pulumi.resources.ResourceArgs {

    public static final ClfsTargetArgs Empty = new ClfsTargetArgs();

    /**
     * Resource ID of storage container.
     * 
     */
    @Import(name="target")
    private @Nullable Output target;

    /**
     * @return Resource ID of storage container.
     * 
     */
    public Optional> target() {
        return Optional.ofNullable(this.target);
    }

    private ClfsTargetArgs() {}

    private ClfsTargetArgs(ClfsTargetArgs $) {
        this.target = $.target;
    }

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

    public static final class Builder {
        private ClfsTargetArgs $;

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

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

        /**
         * @param target Resource ID of storage container.
         * 
         * @return builder
         * 
         */
        public Builder target(@Nullable Output target) {
            $.target = target;
            return this;
        }

        /**
         * @param target Resource ID of storage container.
         * 
         * @return builder
         * 
         */
        public Builder target(String target) {
            return target(Output.of(target));
        }

        public ClfsTargetArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy