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.
/**
* 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;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
CDN Ip address group.
/**
* CDN Ip address group.
*/
public class IpAddressGroup {
The delivery region of the ip address group.
/**
* The delivery region of the ip address group.
*/
@JsonProperty(value = "deliveryRegion")
private String deliveryRegion;
The list of ip v4 addresses.
/**
* The list of ip v4 addresses.
*/
@JsonProperty(value = "ipv4Addresses")
private List<CidrIpAddress> ipv4Addresses;
The list of ip v6 addresses.
/**
* The list of ip v6 addresses.
*/
@JsonProperty(value = "ipv6Addresses")
private List<CidrIpAddress> ipv6Addresses;
Get the delivery region of the ip address group.
Returns: the deliveryRegion value
/**
* Get the delivery region of the ip address group.
*
* @return the deliveryRegion value
*/
public String deliveryRegion() {
return this.deliveryRegion;
}
Set the delivery region of the ip address group.
Params: - deliveryRegion – the deliveryRegion value to set
Returns: the IpAddressGroup object itself.
/**
* Set the delivery region of the ip address group.
*
* @param deliveryRegion the deliveryRegion value to set
* @return the IpAddressGroup object itself.
*/
public IpAddressGroup withDeliveryRegion(String deliveryRegion) {
this.deliveryRegion = deliveryRegion;
return this;
}
Get the list of ip v4 addresses.
Returns: the ipv4Addresses value
/**
* Get the list of ip v4 addresses.
*
* @return the ipv4Addresses value
*/
public List<CidrIpAddress> ipv4Addresses() {
return this.ipv4Addresses;
}
Set the list of ip v4 addresses.
Params: - ipv4Addresses – the ipv4Addresses value to set
Returns: the IpAddressGroup object itself.
/**
* Set the list of ip v4 addresses.
*
* @param ipv4Addresses the ipv4Addresses value to set
* @return the IpAddressGroup object itself.
*/
public IpAddressGroup withIpv4Addresses(List<CidrIpAddress> ipv4Addresses) {
this.ipv4Addresses = ipv4Addresses;
return this;
}
Get the list of ip v6 addresses.
Returns: the ipv6Addresses value
/**
* Get the list of ip v6 addresses.
*
* @return the ipv6Addresses value
*/
public List<CidrIpAddress> ipv6Addresses() {
return this.ipv6Addresses;
}
Set the list of ip v6 addresses.
Params: - ipv6Addresses – the ipv6Addresses value to set
Returns: the IpAddressGroup object itself.
/**
* Set the list of ip v6 addresses.
*
* @param ipv6Addresses the ipv6Addresses value to set
* @return the IpAddressGroup object itself.
*/
public IpAddressGroup withIpv6Addresses(List<CidrIpAddress> ipv6Addresses) {
this.ipv6Addresses = ipv6Addresses;
return this;
}
}