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

com.pulumi.azurenative.connectedcache.outputs.AdditionalCustomerPropertiesResponse 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.connectedcache.outputs;

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

@CustomType
public final class AdditionalCustomerPropertiesResponse {
    /**
     * @return Customer resource Asn (autonomous system number).
     * 
     */
    private @Nullable String customerAsn;
    /**
     * @return Customer resource estimated Asn peering peak in Gbps.
     * 
     */
    private Double customerAsnEstimatedEgressPeekGbps;
    /**
     * @return Customer resource contact email.
     * 
     */
    private @Nullable String customerEmail;
    /**
     * @return Customer resource entitlement expiration date string.
     * 
     */
    private @Nullable String customerEntitlementExpiration;
    /**
     * @return Customer resource entitlement Sku Guid.
     * 
     */
    private @Nullable String customerEntitlementSkuGuid;
    /**
     * @return Customer resource entitlement Sku Id.
     * 
     */
    private @Nullable String customerEntitlementSkuId;
    /**
     * @return Customer resource entitlement Sku name.
     * 
     */
    private @Nullable String customerEntitlementSkuName;
    /**
     * @return Customer resource owner organization name.
     * 
     */
    private String customerOrgName;
    /**
     * @return Customer resource average egress in Mbps.
     * 
     */
    private Double customerPropertiesOverviewAverageEgressMbps;
    /**
     * @return Customer resource average cache miss throughput in Mbps.
     * 
     */
    private Double customerPropertiesOverviewAverageMissMbps;
    /**
     * @return Customer resource cache efficiency.
     * 
     */
    private Double customerPropertiesOverviewCacheEfficiency;
    /**
     * @return Customer resource total healthy cache nodes.
     * 
     */
    private Integer customerPropertiesOverviewCacheNodesHealthyCount;
    /**
     * @return Customer resource total unhealthy cache nodes.
     * 
     */
    private Integer customerPropertiesOverviewCacheNodesUnhealthyCount;
    /**
     * @return Customer resource maximum egress in Mbps.
     * 
     */
    private Double customerPropertiesOverviewEgressMbpsMax;
    /**
     * @return Customer resource peak egress timestamp.
     * 
     */
    private String customerPropertiesOverviewEgressMbpsMaxDateTime;
    /**
     * @return Customer resource maximum cache miss throughput in Mbps.
     * 
     */
    private Double customerPropertiesOverviewMissMbpsMax;
    /**
     * @return Customer resource peak cache miss throughput timestamp.
     * 
     */
    private String customerPropertiesOverviewMissMbpsMaxDateTime;
    /**
     * @return Customer resource transit Asn (autonomous system number).
     * 
     */
    private @Nullable String customerTransitAsn;
    /**
     * @return Customer resource transit state.
     * 
     */
    private @Nullable String customerTransitState;
    /**
     * @return Optional property #1 of Mcc response object.
     * 
     */
    private @Nullable String optionalProperty1;
    /**
     * @return Optional property #2 of Mcc response object.
     * 
     */
    private @Nullable String optionalProperty2;
    /**
     * @return Optional property #3 of Mcc response object.
     * 
     */
    private @Nullable String optionalProperty3;
    /**
     * @return Optional property #4 of Mcc response object.
     * 
     */
    private @Nullable String optionalProperty4;
    /**
     * @return Optional property #5 of Mcc response object.
     * 
     */
    private @Nullable String optionalProperty5;
    /**
     * @return Customer resource last PeeringDB update timestamp.
     * 
     */
    private String peeringDbLastUpdateDate;
    /**
     * @return Customer resource last PeeringDB update timestamp.
     * 
     */
    private String peeringDbLastUpdateTime;
    /**
     * @return Customer resource signup phase status code as integer.
     * 
     */
    private Integer signupPhaseStatusCode;
    /**
     * @return Customer resource signup phase status as string text.
     * 
     */
    private String signupPhaseStatusText;
    /**
     * @return Customer resource signup status as boolean.
     * 
     */
    private Boolean signupStatus;
    /**
     * @return Customer resource signup status as integer code.
     * 
     */
    private Integer signupStatusCode;
    /**
     * @return Customer resource signup status as string text.
     * 
     */
    private String signupStatusText;

    private AdditionalCustomerPropertiesResponse() {}
    /**
     * @return Customer resource Asn (autonomous system number).
     * 
     */
    public Optional customerAsn() {
        return Optional.ofNullable(this.customerAsn);
    }
    /**
     * @return Customer resource estimated Asn peering peak in Gbps.
     * 
     */
    public Double customerAsnEstimatedEgressPeekGbps() {
        return this.customerAsnEstimatedEgressPeekGbps;
    }
    /**
     * @return Customer resource contact email.
     * 
     */
    public Optional customerEmail() {
        return Optional.ofNullable(this.customerEmail);
    }
    /**
     * @return Customer resource entitlement expiration date string.
     * 
     */
    public Optional customerEntitlementExpiration() {
        return Optional.ofNullable(this.customerEntitlementExpiration);
    }
    /**
     * @return Customer resource entitlement Sku Guid.
     * 
     */
    public Optional customerEntitlementSkuGuid() {
        return Optional.ofNullable(this.customerEntitlementSkuGuid);
    }
    /**
     * @return Customer resource entitlement Sku Id.
     * 
     */
    public Optional customerEntitlementSkuId() {
        return Optional.ofNullable(this.customerEntitlementSkuId);
    }
    /**
     * @return Customer resource entitlement Sku name.
     * 
     */
    public Optional customerEntitlementSkuName() {
        return Optional.ofNullable(this.customerEntitlementSkuName);
    }
    /**
     * @return Customer resource owner organization name.
     * 
     */
    public String customerOrgName() {
        return this.customerOrgName;
    }
    /**
     * @return Customer resource average egress in Mbps.
     * 
     */
    public Double customerPropertiesOverviewAverageEgressMbps() {
        return this.customerPropertiesOverviewAverageEgressMbps;
    }
    /**
     * @return Customer resource average cache miss throughput in Mbps.
     * 
     */
    public Double customerPropertiesOverviewAverageMissMbps() {
        return this.customerPropertiesOverviewAverageMissMbps;
    }
    /**
     * @return Customer resource cache efficiency.
     * 
     */
    public Double customerPropertiesOverviewCacheEfficiency() {
        return this.customerPropertiesOverviewCacheEfficiency;
    }
    /**
     * @return Customer resource total healthy cache nodes.
     * 
     */
    public Integer customerPropertiesOverviewCacheNodesHealthyCount() {
        return this.customerPropertiesOverviewCacheNodesHealthyCount;
    }
    /**
     * @return Customer resource total unhealthy cache nodes.
     * 
     */
    public Integer customerPropertiesOverviewCacheNodesUnhealthyCount() {
        return this.customerPropertiesOverviewCacheNodesUnhealthyCount;
    }
    /**
     * @return Customer resource maximum egress in Mbps.
     * 
     */
    public Double customerPropertiesOverviewEgressMbpsMax() {
        return this.customerPropertiesOverviewEgressMbpsMax;
    }
    /**
     * @return Customer resource peak egress timestamp.
     * 
     */
    public String customerPropertiesOverviewEgressMbpsMaxDateTime() {
        return this.customerPropertiesOverviewEgressMbpsMaxDateTime;
    }
    /**
     * @return Customer resource maximum cache miss throughput in Mbps.
     * 
     */
    public Double customerPropertiesOverviewMissMbpsMax() {
        return this.customerPropertiesOverviewMissMbpsMax;
    }
    /**
     * @return Customer resource peak cache miss throughput timestamp.
     * 
     */
    public String customerPropertiesOverviewMissMbpsMaxDateTime() {
        return this.customerPropertiesOverviewMissMbpsMaxDateTime;
    }
    /**
     * @return Customer resource transit Asn (autonomous system number).
     * 
     */
    public Optional customerTransitAsn() {
        return Optional.ofNullable(this.customerTransitAsn);
    }
    /**
     * @return Customer resource transit state.
     * 
     */
    public Optional customerTransitState() {
        return Optional.ofNullable(this.customerTransitState);
    }
    /**
     * @return Optional property #1 of Mcc response object.
     * 
     */
    public Optional optionalProperty1() {
        return Optional.ofNullable(this.optionalProperty1);
    }
    /**
     * @return Optional property #2 of Mcc response object.
     * 
     */
    public Optional optionalProperty2() {
        return Optional.ofNullable(this.optionalProperty2);
    }
    /**
     * @return Optional property #3 of Mcc response object.
     * 
     */
    public Optional optionalProperty3() {
        return Optional.ofNullable(this.optionalProperty3);
    }
    /**
     * @return Optional property #4 of Mcc response object.
     * 
     */
    public Optional optionalProperty4() {
        return Optional.ofNullable(this.optionalProperty4);
    }
    /**
     * @return Optional property #5 of Mcc response object.
     * 
     */
    public Optional optionalProperty5() {
        return Optional.ofNullable(this.optionalProperty5);
    }
    /**
     * @return Customer resource last PeeringDB update timestamp.
     * 
     */
    public String peeringDbLastUpdateDate() {
        return this.peeringDbLastUpdateDate;
    }
    /**
     * @return Customer resource last PeeringDB update timestamp.
     * 
     */
    public String peeringDbLastUpdateTime() {
        return this.peeringDbLastUpdateTime;
    }
    /**
     * @return Customer resource signup phase status code as integer.
     * 
     */
    public Integer signupPhaseStatusCode() {
        return this.signupPhaseStatusCode;
    }
    /**
     * @return Customer resource signup phase status as string text.
     * 
     */
    public String signupPhaseStatusText() {
        return this.signupPhaseStatusText;
    }
    /**
     * @return Customer resource signup status as boolean.
     * 
     */
    public Boolean signupStatus() {
        return this.signupStatus;
    }
    /**
     * @return Customer resource signup status as integer code.
     * 
     */
    public Integer signupStatusCode() {
        return this.signupStatusCode;
    }
    /**
     * @return Customer resource signup status as string text.
     * 
     */
    public String signupStatusText() {
        return this.signupStatusText;
    }

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

    public static Builder builder(AdditionalCustomerPropertiesResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String customerAsn;
        private Double customerAsnEstimatedEgressPeekGbps;
        private @Nullable String customerEmail;
        private @Nullable String customerEntitlementExpiration;
        private @Nullable String customerEntitlementSkuGuid;
        private @Nullable String customerEntitlementSkuId;
        private @Nullable String customerEntitlementSkuName;
        private String customerOrgName;
        private Double customerPropertiesOverviewAverageEgressMbps;
        private Double customerPropertiesOverviewAverageMissMbps;
        private Double customerPropertiesOverviewCacheEfficiency;
        private Integer customerPropertiesOverviewCacheNodesHealthyCount;
        private Integer customerPropertiesOverviewCacheNodesUnhealthyCount;
        private Double customerPropertiesOverviewEgressMbpsMax;
        private String customerPropertiesOverviewEgressMbpsMaxDateTime;
        private Double customerPropertiesOverviewMissMbpsMax;
        private String customerPropertiesOverviewMissMbpsMaxDateTime;
        private @Nullable String customerTransitAsn;
        private @Nullable String customerTransitState;
        private @Nullable String optionalProperty1;
        private @Nullable String optionalProperty2;
        private @Nullable String optionalProperty3;
        private @Nullable String optionalProperty4;
        private @Nullable String optionalProperty5;
        private String peeringDbLastUpdateDate;
        private String peeringDbLastUpdateTime;
        private Integer signupPhaseStatusCode;
        private String signupPhaseStatusText;
        private Boolean signupStatus;
        private Integer signupStatusCode;
        private String signupStatusText;
        public Builder() {}
        public Builder(AdditionalCustomerPropertiesResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.customerAsn = defaults.customerAsn;
    	      this.customerAsnEstimatedEgressPeekGbps = defaults.customerAsnEstimatedEgressPeekGbps;
    	      this.customerEmail = defaults.customerEmail;
    	      this.customerEntitlementExpiration = defaults.customerEntitlementExpiration;
    	      this.customerEntitlementSkuGuid = defaults.customerEntitlementSkuGuid;
    	      this.customerEntitlementSkuId = defaults.customerEntitlementSkuId;
    	      this.customerEntitlementSkuName = defaults.customerEntitlementSkuName;
    	      this.customerOrgName = defaults.customerOrgName;
    	      this.customerPropertiesOverviewAverageEgressMbps = defaults.customerPropertiesOverviewAverageEgressMbps;
    	      this.customerPropertiesOverviewAverageMissMbps = defaults.customerPropertiesOverviewAverageMissMbps;
    	      this.customerPropertiesOverviewCacheEfficiency = defaults.customerPropertiesOverviewCacheEfficiency;
    	      this.customerPropertiesOverviewCacheNodesHealthyCount = defaults.customerPropertiesOverviewCacheNodesHealthyCount;
    	      this.customerPropertiesOverviewCacheNodesUnhealthyCount = defaults.customerPropertiesOverviewCacheNodesUnhealthyCount;
    	      this.customerPropertiesOverviewEgressMbpsMax = defaults.customerPropertiesOverviewEgressMbpsMax;
    	      this.customerPropertiesOverviewEgressMbpsMaxDateTime = defaults.customerPropertiesOverviewEgressMbpsMaxDateTime;
    	      this.customerPropertiesOverviewMissMbpsMax = defaults.customerPropertiesOverviewMissMbpsMax;
    	      this.customerPropertiesOverviewMissMbpsMaxDateTime = defaults.customerPropertiesOverviewMissMbpsMaxDateTime;
    	      this.customerTransitAsn = defaults.customerTransitAsn;
    	      this.customerTransitState = defaults.customerTransitState;
    	      this.optionalProperty1 = defaults.optionalProperty1;
    	      this.optionalProperty2 = defaults.optionalProperty2;
    	      this.optionalProperty3 = defaults.optionalProperty3;
    	      this.optionalProperty4 = defaults.optionalProperty4;
    	      this.optionalProperty5 = defaults.optionalProperty5;
    	      this.peeringDbLastUpdateDate = defaults.peeringDbLastUpdateDate;
    	      this.peeringDbLastUpdateTime = defaults.peeringDbLastUpdateTime;
    	      this.signupPhaseStatusCode = defaults.signupPhaseStatusCode;
    	      this.signupPhaseStatusText = defaults.signupPhaseStatusText;
    	      this.signupStatus = defaults.signupStatus;
    	      this.signupStatusCode = defaults.signupStatusCode;
    	      this.signupStatusText = defaults.signupStatusText;
        }

        @CustomType.Setter
        public Builder customerAsn(@Nullable String customerAsn) {

            this.customerAsn = customerAsn;
            return this;
        }
        @CustomType.Setter
        public Builder customerAsnEstimatedEgressPeekGbps(Double customerAsnEstimatedEgressPeekGbps) {
            if (customerAsnEstimatedEgressPeekGbps == null) {
              throw new MissingRequiredPropertyException("AdditionalCustomerPropertiesResponse", "customerAsnEstimatedEgressPeekGbps");
            }
            this.customerAsnEstimatedEgressPeekGbps = customerAsnEstimatedEgressPeekGbps;
            return this;
        }
        @CustomType.Setter
        public Builder customerEmail(@Nullable String customerEmail) {

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

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

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

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

            this.customerEntitlementSkuName = customerEntitlementSkuName;
            return this;
        }
        @CustomType.Setter
        public Builder customerOrgName(String customerOrgName) {
            if (customerOrgName == null) {
              throw new MissingRequiredPropertyException("AdditionalCustomerPropertiesResponse", "customerOrgName");
            }
            this.customerOrgName = customerOrgName;
            return this;
        }
        @CustomType.Setter
        public Builder customerPropertiesOverviewAverageEgressMbps(Double customerPropertiesOverviewAverageEgressMbps) {
            if (customerPropertiesOverviewAverageEgressMbps == null) {
              throw new MissingRequiredPropertyException("AdditionalCustomerPropertiesResponse", "customerPropertiesOverviewAverageEgressMbps");
            }
            this.customerPropertiesOverviewAverageEgressMbps = customerPropertiesOverviewAverageEgressMbps;
            return this;
        }
        @CustomType.Setter
        public Builder customerPropertiesOverviewAverageMissMbps(Double customerPropertiesOverviewAverageMissMbps) {
            if (customerPropertiesOverviewAverageMissMbps == null) {
              throw new MissingRequiredPropertyException("AdditionalCustomerPropertiesResponse", "customerPropertiesOverviewAverageMissMbps");
            }
            this.customerPropertiesOverviewAverageMissMbps = customerPropertiesOverviewAverageMissMbps;
            return this;
        }
        @CustomType.Setter
        public Builder customerPropertiesOverviewCacheEfficiency(Double customerPropertiesOverviewCacheEfficiency) {
            if (customerPropertiesOverviewCacheEfficiency == null) {
              throw new MissingRequiredPropertyException("AdditionalCustomerPropertiesResponse", "customerPropertiesOverviewCacheEfficiency");
            }
            this.customerPropertiesOverviewCacheEfficiency = customerPropertiesOverviewCacheEfficiency;
            return this;
        }
        @CustomType.Setter
        public Builder customerPropertiesOverviewCacheNodesHealthyCount(Integer customerPropertiesOverviewCacheNodesHealthyCount) {
            if (customerPropertiesOverviewCacheNodesHealthyCount == null) {
              throw new MissingRequiredPropertyException("AdditionalCustomerPropertiesResponse", "customerPropertiesOverviewCacheNodesHealthyCount");
            }
            this.customerPropertiesOverviewCacheNodesHealthyCount = customerPropertiesOverviewCacheNodesHealthyCount;
            return this;
        }
        @CustomType.Setter
        public Builder customerPropertiesOverviewCacheNodesUnhealthyCount(Integer customerPropertiesOverviewCacheNodesUnhealthyCount) {
            if (customerPropertiesOverviewCacheNodesUnhealthyCount == null) {
              throw new MissingRequiredPropertyException("AdditionalCustomerPropertiesResponse", "customerPropertiesOverviewCacheNodesUnhealthyCount");
            }
            this.customerPropertiesOverviewCacheNodesUnhealthyCount = customerPropertiesOverviewCacheNodesUnhealthyCount;
            return this;
        }
        @CustomType.Setter
        public Builder customerPropertiesOverviewEgressMbpsMax(Double customerPropertiesOverviewEgressMbpsMax) {
            if (customerPropertiesOverviewEgressMbpsMax == null) {
              throw new MissingRequiredPropertyException("AdditionalCustomerPropertiesResponse", "customerPropertiesOverviewEgressMbpsMax");
            }
            this.customerPropertiesOverviewEgressMbpsMax = customerPropertiesOverviewEgressMbpsMax;
            return this;
        }
        @CustomType.Setter
        public Builder customerPropertiesOverviewEgressMbpsMaxDateTime(String customerPropertiesOverviewEgressMbpsMaxDateTime) {
            if (customerPropertiesOverviewEgressMbpsMaxDateTime == null) {
              throw new MissingRequiredPropertyException("AdditionalCustomerPropertiesResponse", "customerPropertiesOverviewEgressMbpsMaxDateTime");
            }
            this.customerPropertiesOverviewEgressMbpsMaxDateTime = customerPropertiesOverviewEgressMbpsMaxDateTime;
            return this;
        }
        @CustomType.Setter
        public Builder customerPropertiesOverviewMissMbpsMax(Double customerPropertiesOverviewMissMbpsMax) {
            if (customerPropertiesOverviewMissMbpsMax == null) {
              throw new MissingRequiredPropertyException("AdditionalCustomerPropertiesResponse", "customerPropertiesOverviewMissMbpsMax");
            }
            this.customerPropertiesOverviewMissMbpsMax = customerPropertiesOverviewMissMbpsMax;
            return this;
        }
        @CustomType.Setter
        public Builder customerPropertiesOverviewMissMbpsMaxDateTime(String customerPropertiesOverviewMissMbpsMaxDateTime) {
            if (customerPropertiesOverviewMissMbpsMaxDateTime == null) {
              throw new MissingRequiredPropertyException("AdditionalCustomerPropertiesResponse", "customerPropertiesOverviewMissMbpsMaxDateTime");
            }
            this.customerPropertiesOverviewMissMbpsMaxDateTime = customerPropertiesOverviewMissMbpsMaxDateTime;
            return this;
        }
        @CustomType.Setter
        public Builder customerTransitAsn(@Nullable String customerTransitAsn) {

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

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

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

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

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

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

            this.optionalProperty5 = optionalProperty5;
            return this;
        }
        @CustomType.Setter
        public Builder peeringDbLastUpdateDate(String peeringDbLastUpdateDate) {
            if (peeringDbLastUpdateDate == null) {
              throw new MissingRequiredPropertyException("AdditionalCustomerPropertiesResponse", "peeringDbLastUpdateDate");
            }
            this.peeringDbLastUpdateDate = peeringDbLastUpdateDate;
            return this;
        }
        @CustomType.Setter
        public Builder peeringDbLastUpdateTime(String peeringDbLastUpdateTime) {
            if (peeringDbLastUpdateTime == null) {
              throw new MissingRequiredPropertyException("AdditionalCustomerPropertiesResponse", "peeringDbLastUpdateTime");
            }
            this.peeringDbLastUpdateTime = peeringDbLastUpdateTime;
            return this;
        }
        @CustomType.Setter
        public Builder signupPhaseStatusCode(Integer signupPhaseStatusCode) {
            if (signupPhaseStatusCode == null) {
              throw new MissingRequiredPropertyException("AdditionalCustomerPropertiesResponse", "signupPhaseStatusCode");
            }
            this.signupPhaseStatusCode = signupPhaseStatusCode;
            return this;
        }
        @CustomType.Setter
        public Builder signupPhaseStatusText(String signupPhaseStatusText) {
            if (signupPhaseStatusText == null) {
              throw new MissingRequiredPropertyException("AdditionalCustomerPropertiesResponse", "signupPhaseStatusText");
            }
            this.signupPhaseStatusText = signupPhaseStatusText;
            return this;
        }
        @CustomType.Setter
        public Builder signupStatus(Boolean signupStatus) {
            if (signupStatus == null) {
              throw new MissingRequiredPropertyException("AdditionalCustomerPropertiesResponse", "signupStatus");
            }
            this.signupStatus = signupStatus;
            return this;
        }
        @CustomType.Setter
        public Builder signupStatusCode(Integer signupStatusCode) {
            if (signupStatusCode == null) {
              throw new MissingRequiredPropertyException("AdditionalCustomerPropertiesResponse", "signupStatusCode");
            }
            this.signupStatusCode = signupStatusCode;
            return this;
        }
        @CustomType.Setter
        public Builder signupStatusText(String signupStatusText) {
            if (signupStatusText == null) {
              throw new MissingRequiredPropertyException("AdditionalCustomerPropertiesResponse", "signupStatusText");
            }
            this.signupStatusText = signupStatusText;
            return this;
        }
        public AdditionalCustomerPropertiesResponse build() {
            final var _resultValue = new AdditionalCustomerPropertiesResponse();
            _resultValue.customerAsn = customerAsn;
            _resultValue.customerAsnEstimatedEgressPeekGbps = customerAsnEstimatedEgressPeekGbps;
            _resultValue.customerEmail = customerEmail;
            _resultValue.customerEntitlementExpiration = customerEntitlementExpiration;
            _resultValue.customerEntitlementSkuGuid = customerEntitlementSkuGuid;
            _resultValue.customerEntitlementSkuId = customerEntitlementSkuId;
            _resultValue.customerEntitlementSkuName = customerEntitlementSkuName;
            _resultValue.customerOrgName = customerOrgName;
            _resultValue.customerPropertiesOverviewAverageEgressMbps = customerPropertiesOverviewAverageEgressMbps;
            _resultValue.customerPropertiesOverviewAverageMissMbps = customerPropertiesOverviewAverageMissMbps;
            _resultValue.customerPropertiesOverviewCacheEfficiency = customerPropertiesOverviewCacheEfficiency;
            _resultValue.customerPropertiesOverviewCacheNodesHealthyCount = customerPropertiesOverviewCacheNodesHealthyCount;
            _resultValue.customerPropertiesOverviewCacheNodesUnhealthyCount = customerPropertiesOverviewCacheNodesUnhealthyCount;
            _resultValue.customerPropertiesOverviewEgressMbpsMax = customerPropertiesOverviewEgressMbpsMax;
            _resultValue.customerPropertiesOverviewEgressMbpsMaxDateTime = customerPropertiesOverviewEgressMbpsMaxDateTime;
            _resultValue.customerPropertiesOverviewMissMbpsMax = customerPropertiesOverviewMissMbpsMax;
            _resultValue.customerPropertiesOverviewMissMbpsMaxDateTime = customerPropertiesOverviewMissMbpsMaxDateTime;
            _resultValue.customerTransitAsn = customerTransitAsn;
            _resultValue.customerTransitState = customerTransitState;
            _resultValue.optionalProperty1 = optionalProperty1;
            _resultValue.optionalProperty2 = optionalProperty2;
            _resultValue.optionalProperty3 = optionalProperty3;
            _resultValue.optionalProperty4 = optionalProperty4;
            _resultValue.optionalProperty5 = optionalProperty5;
            _resultValue.peeringDbLastUpdateDate = peeringDbLastUpdateDate;
            _resultValue.peeringDbLastUpdateTime = peeringDbLastUpdateTime;
            _resultValue.signupPhaseStatusCode = signupPhaseStatusCode;
            _resultValue.signupPhaseStatusText = signupPhaseStatusText;
            _resultValue.signupStatus = signupStatus;
            _resultValue.signupStatusCode = signupStatusCode;
            _resultValue.signupStatusText = signupStatusText;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy