com.azure.resourcemanager.network.models.NetworkInterfaceIpConfigurationPrivateLinkConnectionProperties 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.models;
import com.azure.core.annotation.Immutable;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* PrivateLinkConnection properties for the network interface.
*/
@Immutable
public final class NetworkInterfaceIpConfigurationPrivateLinkConnectionProperties {
/*
* The group ID for current private link connection.
*/
@JsonProperty(value = "groupId", access = JsonProperty.Access.WRITE_ONLY)
private String groupId;
/*
* The required member name for current private link connection.
*/
@JsonProperty(value = "requiredMemberName", access = JsonProperty.Access.WRITE_ONLY)
private String requiredMemberName;
/*
* List of FQDNs for current private link connection.
*/
@JsonProperty(value = "fqdns", access = JsonProperty.Access.WRITE_ONLY)
private List fqdns;
/**
* Creates an instance of NetworkInterfaceIpConfigurationPrivateLinkConnectionProperties class.
*/
public NetworkInterfaceIpConfigurationPrivateLinkConnectionProperties() {
}
/**
* Get the groupId property: The group ID for current private link connection.
*
* @return the groupId value.
*/
public String groupId() {
return this.groupId;
}
/**
* Get the requiredMemberName property: The required member name for current private link connection.
*
* @return the requiredMemberName value.
*/
public String requiredMemberName() {
return this.requiredMemberName;
}
/**
* Get the fqdns property: List of FQDNs for current private link connection.
*
* @return the fqdns value.
*/
public List fqdns() {
return this.fqdns;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}