com.azure.resourcemanager.network.models.AddressSpace 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.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* AddressSpace contains an array of IP address ranges that can be used by subnets of the virtual network.
*/
@Fluent
public final class AddressSpace {
/*
* A list of address blocks reserved for this virtual network in CIDR notation.
*/
@JsonProperty(value = "addressPrefixes")
private List addressPrefixes;
/**
* Creates an instance of AddressSpace class.
*/
public AddressSpace() {
}
/**
* Get the addressPrefixes property: A list of address blocks reserved for this virtual network in CIDR notation.
*
* @return the addressPrefixes value.
*/
public List addressPrefixes() {
return this.addressPrefixes;
}
/**
* Set the addressPrefixes property: A list of address blocks reserved for this virtual network in CIDR notation.
*
* @param addressPrefixes the addressPrefixes value to set.
* @return the AddressSpace object itself.
*/
public AddressSpace withAddressPrefixes(List addressPrefixes) {
this.addressPrefixes = addressPrefixes;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}