com.azure.resourcemanager.network.fluent.models.VpnServerConfigurationProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-network Show documentation
Show all versions of azure-resourcemanager-network Show documentation
This package contains Microsoft Azure Network Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.network.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.resourcemanager.network.models.AadAuthenticationParameters;
import com.azure.resourcemanager.network.models.IpsecPolicy;
import com.azure.resourcemanager.network.models.RadiusServer;
import com.azure.resourcemanager.network.models.VpnAuthenticationType;
import com.azure.resourcemanager.network.models.VpnGatewayTunnelingProtocol;
import com.azure.resourcemanager.network.models.VpnServerConfigRadiusClientRootCertificate;
import com.azure.resourcemanager.network.models.VpnServerConfigRadiusServerRootCertificate;
import com.azure.resourcemanager.network.models.VpnServerConfigVpnClientRevokedCertificate;
import com.azure.resourcemanager.network.models.VpnServerConfigVpnClientRootCertificate;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* Parameters for VpnServerConfiguration.
*/
@Fluent
public final class VpnServerConfigurationProperties {
/*
* The name of the VpnServerConfiguration that is unique within a resource group.
*/
@JsonProperty(value = "name")
private String name;
/*
* VPN protocols for the VpnServerConfiguration.
*/
@JsonProperty(value = "vpnProtocols")
private List vpnProtocols;
/*
* VPN authentication types for the VpnServerConfiguration.
*/
@JsonProperty(value = "vpnAuthenticationTypes")
private List vpnAuthenticationTypes;
/*
* VPN client root certificate of VpnServerConfiguration.
*/
@JsonProperty(value = "vpnClientRootCertificates")
private List vpnClientRootCertificates;
/*
* VPN client revoked certificate of VpnServerConfiguration.
*/
@JsonProperty(value = "vpnClientRevokedCertificates")
private List vpnClientRevokedCertificates;
/*
* Radius Server root certificate of VpnServerConfiguration.
*/
@JsonProperty(value = "radiusServerRootCertificates")
private List radiusServerRootCertificates;
/*
* Radius client root certificate of VpnServerConfiguration.
*/
@JsonProperty(value = "radiusClientRootCertificates")
private List radiusClientRootCertificates;
/*
* VpnClientIpsecPolicies for VpnServerConfiguration.
*/
@JsonProperty(value = "vpnClientIpsecPolicies")
private List vpnClientIpsecPolicies;
/*
* The radius server address property of the VpnServerConfiguration resource for point to site client connection.
*/
@JsonProperty(value = "radiusServerAddress")
private String radiusServerAddress;
/*
* The radius secret property of the VpnServerConfiguration resource for point to site client connection.
*/
@JsonProperty(value = "radiusServerSecret")
private String radiusServerSecret;
/*
* Multiple Radius Server configuration for VpnServerConfiguration.
*/
@JsonProperty(value = "radiusServers")
private List radiusServers;
/*
* The set of aad vpn authentication parameters.
*/
@JsonProperty(value = "aadAuthenticationParameters")
private AadAuthenticationParameters aadAuthenticationParameters;
/*
* The provisioning state of the VpnServerConfiguration resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.
*/
@JsonProperty(value = "provisioningState", access = JsonProperty.Access.WRITE_ONLY)
private String provisioningState;
/*
* List of references to P2SVpnGateways.
*/
@JsonProperty(value = "p2SVpnGateways", access = JsonProperty.Access.WRITE_ONLY)
private List p2SVpnGateways;
/*
* List of all VpnServerConfigurationPolicyGroups.
*/
@JsonProperty(value = "configurationPolicyGroups")
private List configurationPolicyGroups;
/*
* A unique read-only string that changes whenever the resource is updated.
*/
@JsonProperty(value = "etag", access = JsonProperty.Access.WRITE_ONLY)
private String etag;
/**
* Creates an instance of VpnServerConfigurationProperties class.
*/
public VpnServerConfigurationProperties() {
}
/**
* Get the name property: The name of the VpnServerConfiguration that is unique within a resource group.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: The name of the VpnServerConfiguration that is unique within a resource group.
*
* @param name the name value to set.
* @return the VpnServerConfigurationProperties object itself.
*/
public VpnServerConfigurationProperties withName(String name) {
this.name = name;
return this;
}
/**
* Get the vpnProtocols property: VPN protocols for the VpnServerConfiguration.
*
* @return the vpnProtocols value.
*/
public List vpnProtocols() {
return this.vpnProtocols;
}
/**
* Set the vpnProtocols property: VPN protocols for the VpnServerConfiguration.
*
* @param vpnProtocols the vpnProtocols value to set.
* @return the VpnServerConfigurationProperties object itself.
*/
public VpnServerConfigurationProperties withVpnProtocols(List vpnProtocols) {
this.vpnProtocols = vpnProtocols;
return this;
}
/**
* Get the vpnAuthenticationTypes property: VPN authentication types for the VpnServerConfiguration.
*
* @return the vpnAuthenticationTypes value.
*/
public List vpnAuthenticationTypes() {
return this.vpnAuthenticationTypes;
}
/**
* Set the vpnAuthenticationTypes property: VPN authentication types for the VpnServerConfiguration.
*
* @param vpnAuthenticationTypes the vpnAuthenticationTypes value to set.
* @return the VpnServerConfigurationProperties object itself.
*/
public VpnServerConfigurationProperties
withVpnAuthenticationTypes(List vpnAuthenticationTypes) {
this.vpnAuthenticationTypes = vpnAuthenticationTypes;
return this;
}
/**
* Get the vpnClientRootCertificates property: VPN client root certificate of VpnServerConfiguration.
*
* @return the vpnClientRootCertificates value.
*/
public List vpnClientRootCertificates() {
return this.vpnClientRootCertificates;
}
/**
* Set the vpnClientRootCertificates property: VPN client root certificate of VpnServerConfiguration.
*
* @param vpnClientRootCertificates the vpnClientRootCertificates value to set.
* @return the VpnServerConfigurationProperties object itself.
*/
public VpnServerConfigurationProperties
withVpnClientRootCertificates(List vpnClientRootCertificates) {
this.vpnClientRootCertificates = vpnClientRootCertificates;
return this;
}
/**
* Get the vpnClientRevokedCertificates property: VPN client revoked certificate of VpnServerConfiguration.
*
* @return the vpnClientRevokedCertificates value.
*/
public List vpnClientRevokedCertificates() {
return this.vpnClientRevokedCertificates;
}
/**
* Set the vpnClientRevokedCertificates property: VPN client revoked certificate of VpnServerConfiguration.
*
* @param vpnClientRevokedCertificates the vpnClientRevokedCertificates value to set.
* @return the VpnServerConfigurationProperties object itself.
*/
public VpnServerConfigurationProperties withVpnClientRevokedCertificates(
List vpnClientRevokedCertificates) {
this.vpnClientRevokedCertificates = vpnClientRevokedCertificates;
return this;
}
/**
* Get the radiusServerRootCertificates property: Radius Server root certificate of VpnServerConfiguration.
*
* @return the radiusServerRootCertificates value.
*/
public List radiusServerRootCertificates() {
return this.radiusServerRootCertificates;
}
/**
* Set the radiusServerRootCertificates property: Radius Server root certificate of VpnServerConfiguration.
*
* @param radiusServerRootCertificates the radiusServerRootCertificates value to set.
* @return the VpnServerConfigurationProperties object itself.
*/
public VpnServerConfigurationProperties withRadiusServerRootCertificates(
List radiusServerRootCertificates) {
this.radiusServerRootCertificates = radiusServerRootCertificates;
return this;
}
/**
* Get the radiusClientRootCertificates property: Radius client root certificate of VpnServerConfiguration.
*
* @return the radiusClientRootCertificates value.
*/
public List radiusClientRootCertificates() {
return this.radiusClientRootCertificates;
}
/**
* Set the radiusClientRootCertificates property: Radius client root certificate of VpnServerConfiguration.
*
* @param radiusClientRootCertificates the radiusClientRootCertificates value to set.
* @return the VpnServerConfigurationProperties object itself.
*/
public VpnServerConfigurationProperties withRadiusClientRootCertificates(
List radiusClientRootCertificates) {
this.radiusClientRootCertificates = radiusClientRootCertificates;
return this;
}
/**
* Get the vpnClientIpsecPolicies property: VpnClientIpsecPolicies for VpnServerConfiguration.
*
* @return the vpnClientIpsecPolicies value.
*/
public List vpnClientIpsecPolicies() {
return this.vpnClientIpsecPolicies;
}
/**
* Set the vpnClientIpsecPolicies property: VpnClientIpsecPolicies for VpnServerConfiguration.
*
* @param vpnClientIpsecPolicies the vpnClientIpsecPolicies value to set.
* @return the VpnServerConfigurationProperties object itself.
*/
public VpnServerConfigurationProperties withVpnClientIpsecPolicies(List vpnClientIpsecPolicies) {
this.vpnClientIpsecPolicies = vpnClientIpsecPolicies;
return this;
}
/**
* Get the radiusServerAddress property: The radius server address property of the VpnServerConfiguration resource
* for point to site client connection.
*
* @return the radiusServerAddress value.
*/
public String radiusServerAddress() {
return this.radiusServerAddress;
}
/**
* Set the radiusServerAddress property: The radius server address property of the VpnServerConfiguration resource
* for point to site client connection.
*
* @param radiusServerAddress the radiusServerAddress value to set.
* @return the VpnServerConfigurationProperties object itself.
*/
public VpnServerConfigurationProperties withRadiusServerAddress(String radiusServerAddress) {
this.radiusServerAddress = radiusServerAddress;
return this;
}
/**
* Get the radiusServerSecret property: The radius secret property of the VpnServerConfiguration resource for point
* to site client connection.
*
* @return the radiusServerSecret value.
*/
public String radiusServerSecret() {
return this.radiusServerSecret;
}
/**
* Set the radiusServerSecret property: The radius secret property of the VpnServerConfiguration resource for point
* to site client connection.
*
* @param radiusServerSecret the radiusServerSecret value to set.
* @return the VpnServerConfigurationProperties object itself.
*/
public VpnServerConfigurationProperties withRadiusServerSecret(String radiusServerSecret) {
this.radiusServerSecret = radiusServerSecret;
return this;
}
/**
* Get the radiusServers property: Multiple Radius Server configuration for VpnServerConfiguration.
*
* @return the radiusServers value.
*/
public List radiusServers() {
return this.radiusServers;
}
/**
* Set the radiusServers property: Multiple Radius Server configuration for VpnServerConfiguration.
*
* @param radiusServers the radiusServers value to set.
* @return the VpnServerConfigurationProperties object itself.
*/
public VpnServerConfigurationProperties withRadiusServers(List radiusServers) {
this.radiusServers = radiusServers;
return this;
}
/**
* Get the aadAuthenticationParameters property: The set of aad vpn authentication parameters.
*
* @return the aadAuthenticationParameters value.
*/
public AadAuthenticationParameters aadAuthenticationParameters() {
return this.aadAuthenticationParameters;
}
/**
* Set the aadAuthenticationParameters property: The set of aad vpn authentication parameters.
*
* @param aadAuthenticationParameters the aadAuthenticationParameters value to set.
* @return the VpnServerConfigurationProperties object itself.
*/
public VpnServerConfigurationProperties
withAadAuthenticationParameters(AadAuthenticationParameters aadAuthenticationParameters) {
this.aadAuthenticationParameters = aadAuthenticationParameters;
return this;
}
/**
* Get the provisioningState property: The provisioning state of the VpnServerConfiguration resource. Possible
* values are: 'Updating', 'Deleting', and 'Failed'.
*
* @return the provisioningState value.
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* Get the p2SVpnGateways property: List of references to P2SVpnGateways.
*
* @return the p2SVpnGateways value.
*/
public List p2SVpnGateways() {
return this.p2SVpnGateways;
}
/**
* Get the configurationPolicyGroups property: List of all VpnServerConfigurationPolicyGroups.
*
* @return the configurationPolicyGroups value.
*/
public List configurationPolicyGroups() {
return this.configurationPolicyGroups;
}
/**
* Set the configurationPolicyGroups property: List of all VpnServerConfigurationPolicyGroups.
*
* @param configurationPolicyGroups the configurationPolicyGroups value to set.
* @return the VpnServerConfigurationProperties object itself.
*/
public VpnServerConfigurationProperties
withConfigurationPolicyGroups(List configurationPolicyGroups) {
this.configurationPolicyGroups = configurationPolicyGroups;
return this;
}
/**
* Get the etag property: A unique read-only string that changes whenever the resource is updated.
*
* @return the etag value.
*/
public String etag() {
return this.etag;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (vpnClientRootCertificates() != null) {
vpnClientRootCertificates().forEach(e -> e.validate());
}
if (vpnClientRevokedCertificates() != null) {
vpnClientRevokedCertificates().forEach(e -> e.validate());
}
if (radiusServerRootCertificates() != null) {
radiusServerRootCertificates().forEach(e -> e.validate());
}
if (radiusClientRootCertificates() != null) {
radiusClientRootCertificates().forEach(e -> e.validate());
}
if (vpnClientIpsecPolicies() != null) {
vpnClientIpsecPolicies().forEach(e -> e.validate());
}
if (radiusServers() != null) {
radiusServers().forEach(e -> e.validate());
}
if (aadAuthenticationParameters() != null) {
aadAuthenticationParameters().validate();
}
if (p2SVpnGateways() != null) {
p2SVpnGateways().forEach(e -> e.validate());
}
if (configurationPolicyGroups() != null) {
configurationPolicyGroups().forEach(e -> e.validate());
}
}
}