/**
* 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.cdn.implementation;
import java.util.List;
import com.microsoft.azure.management.cdn.IpAddressGroup;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.rest.serializer.JsonFlatten;
import com.microsoft.azure.Resource;
/**
* Edge node of CDN service.
*/
@JsonFlatten
public class EdgeNodeInner extends Resource {
/**
* List of ip address groups.
*/
@JsonProperty(value = "properties.ipAddressGroups", required = true)
private List<IpAddressGroup> ipAddressGroups;
/**
* Get the ipAddressGroups value.
*
* @return the ipAddressGroups value
*/
public List<IpAddressGroup> ipAddressGroups() {
return this.ipAddressGroups;
}
/**
* Set the ipAddressGroups value.
*
* @param ipAddressGroups the ipAddressGroups value to set
* @return the EdgeNodeInner object itself.
*/
public EdgeNodeInner withIpAddressGroups(List<IpAddressGroup> ipAddressGroups) {
this.ipAddressGroups = ipAddressGroups;
return this;
}
}