com.microsoft.azure.management.network.ExpressRouteLinkMacSecConfig 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;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Definition of ExpressRouteLink Mac Security configuration.
* ExpressRouteLink Mac Security Configuration.
*/
public class ExpressRouteLinkMacSecConfig {
/**
* Keyvault Secret Identifier URL containing Mac security CKN key.
*/
@JsonProperty(value = "cknSecretIdentifier")
private String cknSecretIdentifier;
/**
* Keyvault Secret Identifier URL containing Mac security CAK key.
*/
@JsonProperty(value = "cakSecretIdentifier")
private String cakSecretIdentifier;
/**
* Mac security cipher. Possible values include: 'gcm-aes-128',
* 'gcm-aes-256'.
*/
@JsonProperty(value = "cipher")
private ExpressRouteLinkMacSecCipher cipher;
/**
* Get keyvault Secret Identifier URL containing Mac security CKN key.
*
* @return the cknSecretIdentifier value
*/
public String cknSecretIdentifier() {
return this.cknSecretIdentifier;
}
/**
* Set keyvault Secret Identifier URL containing Mac security CKN key.
*
* @param cknSecretIdentifier the cknSecretIdentifier value to set
* @return the ExpressRouteLinkMacSecConfig object itself.
*/
public ExpressRouteLinkMacSecConfig withCknSecretIdentifier(String cknSecretIdentifier) {
this.cknSecretIdentifier = cknSecretIdentifier;
return this;
}
/**
* Get keyvault Secret Identifier URL containing Mac security CAK key.
*
* @return the cakSecretIdentifier value
*/
public String cakSecretIdentifier() {
return this.cakSecretIdentifier;
}
/**
* Set keyvault Secret Identifier URL containing Mac security CAK key.
*
* @param cakSecretIdentifier the cakSecretIdentifier value to set
* @return the ExpressRouteLinkMacSecConfig object itself.
*/
public ExpressRouteLinkMacSecConfig withCakSecretIdentifier(String cakSecretIdentifier) {
this.cakSecretIdentifier = cakSecretIdentifier;
return this;
}
/**
* Get mac security cipher. Possible values include: 'gcm-aes-128', 'gcm-aes-256'.
*
* @return the cipher value
*/
public ExpressRouteLinkMacSecCipher cipher() {
return this.cipher;
}
/**
* Set mac security cipher. Possible values include: 'gcm-aes-128', 'gcm-aes-256'.
*
* @param cipher the cipher value to set
* @return the ExpressRouteLinkMacSecConfig object itself.
*/
public ExpressRouteLinkMacSecConfig withCipher(ExpressRouteLinkMacSecCipher cipher) {
this.cipher = cipher;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy