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

com.pulumi.azurenative.devhub.inputs.IacTemplateDetailsArgs Maven / Gradle / Ivy

The 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.devhub.inputs;

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


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

    public static final IacTemplateDetailsArgs Empty = new IacTemplateDetailsArgs();

    /**
     * Count of the product
     * 
     */
    @Import(name="count")
    private @Nullable Output count;

    /**
     * @return Count of the product
     * 
     */
    public Optional> count() {
        return Optional.ofNullable(this.count);
    }

    /**
     * Naming convention of this product
     * 
     */
    @Import(name="namingConvention")
    private @Nullable Output namingConvention;

    /**
     * @return Naming convention of this product
     * 
     */
    public Optional> namingConvention() {
        return Optional.ofNullable(this.namingConvention);
    }

    /**
     * The name of the products.
     * 
     */
    @Import(name="productName")
    private @Nullable Output productName;

    /**
     * @return The name of the products.
     * 
     */
    public Optional> productName() {
        return Optional.ofNullable(this.productName);
    }

    private IacTemplateDetailsArgs() {}

    private IacTemplateDetailsArgs(IacTemplateDetailsArgs $) {
        this.count = $.count;
        this.namingConvention = $.namingConvention;
        this.productName = $.productName;
    }

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

    public static final class Builder {
        private IacTemplateDetailsArgs $;

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

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

        /**
         * @param count Count of the product
         * 
         * @return builder
         * 
         */
        public Builder count(@Nullable Output count) {
            $.count = count;
            return this;
        }

        /**
         * @param count Count of the product
         * 
         * @return builder
         * 
         */
        public Builder count(Integer count) {
            return count(Output.of(count));
        }

        /**
         * @param namingConvention Naming convention of this product
         * 
         * @return builder
         * 
         */
        public Builder namingConvention(@Nullable Output namingConvention) {
            $.namingConvention = namingConvention;
            return this;
        }

        /**
         * @param namingConvention Naming convention of this product
         * 
         * @return builder
         * 
         */
        public Builder namingConvention(String namingConvention) {
            return namingConvention(Output.of(namingConvention));
        }

        /**
         * @param productName The name of the products.
         * 
         * @return builder
         * 
         */
        public Builder productName(@Nullable Output productName) {
            $.productName = productName;
            return this;
        }

        /**
         * @param productName The name of the products.
         * 
         * @return builder
         * 
         */
        public Builder productName(String productName) {
            return productName(Output.of(productName));
        }

        public IacTemplateDetailsArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy