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

com.pulumi.azurenative.migrate.inputs.ThirdPartyManagementSettingsArgs Maven / Gradle / Ivy

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

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Double;
import java.util.Objects;


/**
 * Third Party Management settings.
 * 
 */
public final class ThirdPartyManagementSettingsArgs extends com.pulumi.resources.ResourceArgs {

    public static final ThirdPartyManagementSettingsArgs Empty = new ThirdPartyManagementSettingsArgs();

    /**
     * License Cost.
     * 
     */
    @Import(name="licenseCost", required=true)
    private Output licenseCost;

    /**
     * @return License Cost.
     * 
     */
    public Output licenseCost() {
        return this.licenseCost;
    }

    /**
     * Support Cost.
     * 
     */
    @Import(name="supportCost", required=true)
    private Output supportCost;

    /**
     * @return Support Cost.
     * 
     */
    public Output supportCost() {
        return this.supportCost;
    }

    private ThirdPartyManagementSettingsArgs() {}

    private ThirdPartyManagementSettingsArgs(ThirdPartyManagementSettingsArgs $) {
        this.licenseCost = $.licenseCost;
        this.supportCost = $.supportCost;
    }

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

    public static final class Builder {
        private ThirdPartyManagementSettingsArgs $;

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

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

        /**
         * @param licenseCost License Cost.
         * 
         * @return builder
         * 
         */
        public Builder licenseCost(Output licenseCost) {
            $.licenseCost = licenseCost;
            return this;
        }

        /**
         * @param licenseCost License Cost.
         * 
         * @return builder
         * 
         */
        public Builder licenseCost(Double licenseCost) {
            return licenseCost(Output.of(licenseCost));
        }

        /**
         * @param supportCost Support Cost.
         * 
         * @return builder
         * 
         */
        public Builder supportCost(Output supportCost) {
            $.supportCost = supportCost;
            return this;
        }

        /**
         * @param supportCost Support Cost.
         * 
         * @return builder
         * 
         */
        public Builder supportCost(Double supportCost) {
            return supportCost(Output.of(supportCost));
        }

        public ThirdPartyManagementSettingsArgs build() {
            if ($.licenseCost == null) {
                throw new MissingRequiredPropertyException("ThirdPartyManagementSettingsArgs", "licenseCost");
            }
            if ($.supportCost == null) {
                throw new MissingRequiredPropertyException("ThirdPartyManagementSettingsArgs", "supportCost");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy