com.azure.resourcemanager.hybridcompute.models.NetworkInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-hybridcompute Show documentation
Show all versions of azure-resourcemanager-hybridcompute Show documentation
This package contains Microsoft Azure SDK for HybridCompute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Hybrid Compute Management Client. Package tag package-preview-2024-07.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.hybridcompute.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* Describes a network interface.
*/
@Fluent
public final class NetworkInterface {
/*
* The list of IP addresses in this interface.
*/
@JsonProperty(value = "ipAddresses")
private List ipAddresses;
/**
* Creates an instance of NetworkInterface class.
*/
public NetworkInterface() {
}
/**
* Get the ipAddresses property: The list of IP addresses in this interface.
*
* @return the ipAddresses value.
*/
public List ipAddresses() {
return this.ipAddresses;
}
/**
* Set the ipAddresses property: The list of IP addresses in this interface.
*
* @param ipAddresses the ipAddresses value to set.
* @return the NetworkInterface object itself.
*/
public NetworkInterface withIpAddresses(List ipAddresses) {
this.ipAddresses = ipAddresses;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (ipAddresses() != null) {
ipAddresses().forEach(e -> e.validate());
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy