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

com.pulumi.azurenative.workloads.outputs.SAPSupportedSkuResponse 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.workloads.outputs;

import com.pulumi.core.annotations.CustomType;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class SAPSupportedSkuResponse {
    /**
     * @return True if the Sku is certified for App server in the SAP system.
     * 
     */
    private @Nullable Boolean isAppServerCertified;
    /**
     * @return True if the Sku is certified for Database server in the SAP system.
     * 
     */
    private @Nullable Boolean isDatabaseCertified;
    /**
     * @return The VM Sku.
     * 
     */
    private @Nullable String vmSku;

    private SAPSupportedSkuResponse() {}
    /**
     * @return True if the Sku is certified for App server in the SAP system.
     * 
     */
    public Optional isAppServerCertified() {
        return Optional.ofNullable(this.isAppServerCertified);
    }
    /**
     * @return True if the Sku is certified for Database server in the SAP system.
     * 
     */
    public Optional isDatabaseCertified() {
        return Optional.ofNullable(this.isDatabaseCertified);
    }
    /**
     * @return The VM Sku.
     * 
     */
    public Optional vmSku() {
        return Optional.ofNullable(this.vmSku);
    }

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

    public static Builder builder(SAPSupportedSkuResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable Boolean isAppServerCertified;
        private @Nullable Boolean isDatabaseCertified;
        private @Nullable String vmSku;
        public Builder() {}
        public Builder(SAPSupportedSkuResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.isAppServerCertified = defaults.isAppServerCertified;
    	      this.isDatabaseCertified = defaults.isDatabaseCertified;
    	      this.vmSku = defaults.vmSku;
        }

        @CustomType.Setter
        public Builder isAppServerCertified(@Nullable Boolean isAppServerCertified) {

            this.isAppServerCertified = isAppServerCertified;
            return this;
        }
        @CustomType.Setter
        public Builder isDatabaseCertified(@Nullable Boolean isDatabaseCertified) {

            this.isDatabaseCertified = isDatabaseCertified;
            return this;
        }
        @CustomType.Setter
        public Builder vmSku(@Nullable String vmSku) {

            this.vmSku = vmSku;
            return this;
        }
        public SAPSupportedSkuResponse build() {
            final var _resultValue = new SAPSupportedSkuResponse();
            _resultValue.isAppServerCertified = isAppServerCertified;
            _resultValue.isDatabaseCertified = isDatabaseCertified;
            _resultValue.vmSku = vmSku;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy