com.azure.resourcemanager.network.fluent.models.VpnProfileResponseInner 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.fasterxml.jackson.annotation.JsonProperty;
/**
* Vpn Profile Response for package generation.
*/
@Fluent
public final class VpnProfileResponseInner {
/*
* URL to the VPN profile.
*/
@JsonProperty(value = "profileUrl")
private String profileUrl;
/**
* Creates an instance of VpnProfileResponseInner class.
*/
public VpnProfileResponseInner() {
}
/**
* Get the profileUrl property: URL to the VPN profile.
*
* @return the profileUrl value.
*/
public String profileUrl() {
return this.profileUrl;
}
/**
* Set the profileUrl property: URL to the VPN profile.
*
* @param profileUrl the profileUrl value to set.
* @return the VpnProfileResponseInner object itself.
*/
public VpnProfileResponseInner withProfileUrl(String profileUrl) {
this.profileUrl = profileUrl;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}