com.microsoft.azure.management.network.implementation.P2SVpnConnectionHealthInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-network Show documentation
Show all versions of azure-mgmt-network Show documentation
This package contains Microsoft Azure Network Management SDK. A new set of management libraries are now Generally Available. For documentation on how to use the new libraries, please see https://aka.ms/azsdk/java/mgmt
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.network.implementation;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* P2S Vpn connection detailed health written to sas url.
*/
public class P2SVpnConnectionHealthInner {
/**
* Returned sas url of the blob to which the p2s vpn connection detailed
* health will be written.
*/
@JsonProperty(value = "sasUrl")
private String sasUrl;
/**
* Get returned sas url of the blob to which the p2s vpn connection detailed health will be written.
*
* @return the sasUrl value
*/
public String sasUrl() {
return this.sasUrl;
}
/**
* Set returned sas url of the blob to which the p2s vpn connection detailed health will be written.
*
* @param sasUrl the sasUrl value to set
* @return the P2SVpnConnectionHealthInner object itself.
*/
public P2SVpnConnectionHealthInner withSasUrl(String sasUrl) {
this.sasUrl = sasUrl;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy