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

com.pulumi.azurenative.azuresphere.ProductArgs 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.azuresphere;

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


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

    public static final ProductArgs Empty = new ProductArgs();

    /**
     * Name of catalog
     * 
     */
    @Import(name="catalogName", required=true)
    private Output catalogName;

    /**
     * @return Name of catalog
     * 
     */
    public Output catalogName() {
        return this.catalogName;
    }

    /**
     * Description of the product
     * 
     */
    @Import(name="description", required=true)
    private Output description;

    /**
     * @return Description of the product
     * 
     */
    public Output description() {
        return this.description;
    }

    /**
     * Name of product.
     * 
     */
    @Import(name="productName")
    private @Nullable Output productName;

    /**
     * @return Name of product.
     * 
     */
    public Optional> productName() {
        return Optional.ofNullable(this.productName);
    }

    /**
     * The name of the resource group. The name is case insensitive.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the resource group. The name is case insensitive.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    private ProductArgs() {}

    private ProductArgs(ProductArgs $) {
        this.catalogName = $.catalogName;
        this.description = $.description;
        this.productName = $.productName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private ProductArgs $;

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

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

        /**
         * @param catalogName Name of catalog
         * 
         * @return builder
         * 
         */
        public Builder catalogName(Output catalogName) {
            $.catalogName = catalogName;
            return this;
        }

        /**
         * @param catalogName Name of catalog
         * 
         * @return builder
         * 
         */
        public Builder catalogName(String catalogName) {
            return catalogName(Output.of(catalogName));
        }

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

        /**
         * @param description Description of the product
         * 
         * @return builder
         * 
         */
        public Builder description(String description) {
            return description(Output.of(description));
        }

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

        /**
         * @param productName Name of product.
         * 
         * @return builder
         * 
         */
        public Builder productName(String productName) {
            return productName(Output.of(productName));
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy