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

com.pulumi.azurenative.billing.inputs.AzurePlanArgs 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.billing.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;


/**
 * Details of the Azure plan.
 * 
 */
public final class AzurePlanArgs extends com.pulumi.resources.ResourceArgs {

    public static final AzurePlanArgs Empty = new AzurePlanArgs();

    /**
     * The ID that uniquely identifies a product.
     * 
     */
    @Import(name="productId")
    private @Nullable Output productId;

    /**
     * @return The ID that uniquely identifies a product.
     * 
     */
    public Optional> productId() {
        return Optional.ofNullable(this.productId);
    }

    /**
     * The sku description.
     * 
     */
    @Import(name="skuDescription")
    private @Nullable Output skuDescription;

    /**
     * @return The sku description.
     * 
     */
    public Optional> skuDescription() {
        return Optional.ofNullable(this.skuDescription);
    }

    /**
     * The ID that uniquely identifies a sku.
     * 
     */
    @Import(name="skuId")
    private @Nullable Output skuId;

    /**
     * @return The ID that uniquely identifies a sku.
     * 
     */
    public Optional> skuId() {
        return Optional.ofNullable(this.skuId);
    }

    private AzurePlanArgs() {}

    private AzurePlanArgs(AzurePlanArgs $) {
        this.productId = $.productId;
        this.skuDescription = $.skuDescription;
        this.skuId = $.skuId;
    }

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

    public static final class Builder {
        private AzurePlanArgs $;

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

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

        /**
         * @param productId The ID that uniquely identifies a product.
         * 
         * @return builder
         * 
         */
        public Builder productId(@Nullable Output productId) {
            $.productId = productId;
            return this;
        }

        /**
         * @param productId The ID that uniquely identifies a product.
         * 
         * @return builder
         * 
         */
        public Builder productId(String productId) {
            return productId(Output.of(productId));
        }

        /**
         * @param skuDescription The sku description.
         * 
         * @return builder
         * 
         */
        public Builder skuDescription(@Nullable Output skuDescription) {
            $.skuDescription = skuDescription;
            return this;
        }

        /**
         * @param skuDescription The sku description.
         * 
         * @return builder
         * 
         */
        public Builder skuDescription(String skuDescription) {
            return skuDescription(Output.of(skuDescription));
        }

        /**
         * @param skuId The ID that uniquely identifies a sku.
         * 
         * @return builder
         * 
         */
        public Builder skuId(@Nullable Output skuId) {
            $.skuId = skuId;
            return this;
        }

        /**
         * @param skuId The ID that uniquely identifies a sku.
         * 
         * @return builder
         * 
         */
        public Builder skuId(String skuId) {
            return skuId(Output.of(skuId));
        }

        public AzurePlanArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy