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

com.pulumi.azure.network.outputs.GetVpnServerConfigurationRadiusServer Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.

There is a newer version: 6.10.0-alpha.1731737215
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.azure.network.outputs;

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

@CustomType
public final class GetVpnServerConfigurationRadiusServer {
    /**
     * @return The Address of the Radius Server.
     * 
     */
    private String address;
    /**
     * @return The Score of the Radius Server determines the priority of the server.
     * 
     */
    private Integer score;
    /**
     * @return The Secret used to communicate with the Radius Server.
     * 
     */
    private String secret;

    private GetVpnServerConfigurationRadiusServer() {}
    /**
     * @return The Address of the Radius Server.
     * 
     */
    public String address() {
        return this.address;
    }
    /**
     * @return The Score of the Radius Server determines the priority of the server.
     * 
     */
    public Integer score() {
        return this.score;
    }
    /**
     * @return The Secret used to communicate with the Radius Server.
     * 
     */
    public String secret() {
        return this.secret;
    }

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

    public static Builder builder(GetVpnServerConfigurationRadiusServer defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String address;
        private Integer score;
        private String secret;
        public Builder() {}
        public Builder(GetVpnServerConfigurationRadiusServer defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.address = defaults.address;
    	      this.score = defaults.score;
    	      this.secret = defaults.secret;
        }

        @CustomType.Setter
        public Builder address(String address) {
            if (address == null) {
              throw new MissingRequiredPropertyException("GetVpnServerConfigurationRadiusServer", "address");
            }
            this.address = address;
            return this;
        }
        @CustomType.Setter
        public Builder score(Integer score) {
            if (score == null) {
              throw new MissingRequiredPropertyException("GetVpnServerConfigurationRadiusServer", "score");
            }
            this.score = score;
            return this;
        }
        @CustomType.Setter
        public Builder secret(String secret) {
            if (secret == null) {
              throw new MissingRequiredPropertyException("GetVpnServerConfigurationRadiusServer", "secret");
            }
            this.secret = secret;
            return this;
        }
        public GetVpnServerConfigurationRadiusServer build() {
            final var _resultValue = new GetVpnServerConfigurationRadiusServer();
            _resultValue.address = address;
            _resultValue.score = score;
            _resultValue.secret = secret;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy