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

com.pulumi.azurenative.network.outputs.ExpressRouteCircuitServiceProviderPropertiesResponse 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.network.outputs;

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

@CustomType
public final class ExpressRouteCircuitServiceProviderPropertiesResponse {
    /**
     * @return The BandwidthInMbps.
     * 
     */
    private @Nullable Integer bandwidthInMbps;
    /**
     * @return The peering location.
     * 
     */
    private @Nullable String peeringLocation;
    /**
     * @return The serviceProviderName.
     * 
     */
    private @Nullable String serviceProviderName;

    private ExpressRouteCircuitServiceProviderPropertiesResponse() {}
    /**
     * @return The BandwidthInMbps.
     * 
     */
    public Optional bandwidthInMbps() {
        return Optional.ofNullable(this.bandwidthInMbps);
    }
    /**
     * @return The peering location.
     * 
     */
    public Optional peeringLocation() {
        return Optional.ofNullable(this.peeringLocation);
    }
    /**
     * @return The serviceProviderName.
     * 
     */
    public Optional serviceProviderName() {
        return Optional.ofNullable(this.serviceProviderName);
    }

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

    public static Builder builder(ExpressRouteCircuitServiceProviderPropertiesResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable Integer bandwidthInMbps;
        private @Nullable String peeringLocation;
        private @Nullable String serviceProviderName;
        public Builder() {}
        public Builder(ExpressRouteCircuitServiceProviderPropertiesResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.bandwidthInMbps = defaults.bandwidthInMbps;
    	      this.peeringLocation = defaults.peeringLocation;
    	      this.serviceProviderName = defaults.serviceProviderName;
        }

        @CustomType.Setter
        public Builder bandwidthInMbps(@Nullable Integer bandwidthInMbps) {

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

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

            this.serviceProviderName = serviceProviderName;
            return this;
        }
        public ExpressRouteCircuitServiceProviderPropertiesResponse build() {
            final var _resultValue = new ExpressRouteCircuitServiceProviderPropertiesResponse();
            _resultValue.bandwidthInMbps = bandwidthInMbps;
            _resultValue.peeringLocation = peeringLocation;
            _resultValue.serviceProviderName = serviceProviderName;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy