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

com.pulumi.azurenative.migrate.outputs.LinuxServerLicensingSettingsResponse 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.migrate.outputs;

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

@CustomType
public final class LinuxServerLicensingSettingsResponse {
    /**
     * @return Licence Cost.
     * 
     */
    private Double licenseCost;

    private LinuxServerLicensingSettingsResponse() {}
    /**
     * @return Licence Cost.
     * 
     */
    public Double licenseCost() {
        return this.licenseCost;
    }

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

    public static Builder builder(LinuxServerLicensingSettingsResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private Double licenseCost;
        public Builder() {}
        public Builder(LinuxServerLicensingSettingsResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.licenseCost = defaults.licenseCost;
        }

        @CustomType.Setter
        public Builder licenseCost(Double licenseCost) {
            if (licenseCost == null) {
              throw new MissingRequiredPropertyException("LinuxServerLicensingSettingsResponse", "licenseCost");
            }
            this.licenseCost = licenseCost;
            return this;
        }
        public LinuxServerLicensingSettingsResponse build() {
            final var _resultValue = new LinuxServerLicensingSettingsResponse();
            _resultValue.licenseCost = licenseCost;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy