
com.microsoft.azure.management.network.implementation.ConnectionResetSharedKeyInner Maven / Gradle / Ivy
/**
* 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;
/**
* The ConnectionResetSharedKeyInner model.
*/
public class ConnectionResetSharedKeyInner {
/**
* The virtual network connection reset shared key length, should between 1
* and 128.
*/
@JsonProperty(value = "keyLength", required = true)
private int keyLength;
/**
* Get the keyLength value.
*
* @return the keyLength value
*/
public int keyLength() {
return this.keyLength;
}
/**
* Set the keyLength value.
*
* @param keyLength the keyLength value to set
* @return the ConnectionResetSharedKeyInner object itself.
*/
public ConnectionResetSharedKeyInner withKeyLength(int keyLength) {
this.keyLength = keyLength;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy