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.
/**
* 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.
/**
* 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.
/**
* 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.
Returns: the sasUrl value
/**
* 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.
Params: - sasUrl – the sasUrl value to set
Returns: the P2SVpnConnectionHealthInner object itself.
/**
* 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;
}
}