Java Code Examples for com.microsoft.azure.management.apigeneration.Beta.SinceVersion#V1_3_0

The following examples show how to use com.microsoft.azure.management.apigeneration.Beta.SinceVersion#V1_3_0 . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: NetworkManager.java    From azure-libraries-for-java with MIT License 5 votes vote down vote up
/**
 * @return entry point to virtual network gateways management
 */
@Beta(SinceVersion.V1_3_0)
public VirtualNetworkGateways virtualNetworkGateways() {
    if (this.virtualNetworkGateways == null) {
        this.virtualNetworkGateways = new VirtualNetworkGatewaysImpl(this);
    }
    return this.virtualNetworkGateways;
}
 
Example 2
Source File: NetworkManager.java    From azure-libraries-for-java with MIT License 5 votes vote down vote up
/**
 * @return entry point to local network gateway management
 */
@Beta(SinceVersion.V1_3_0)
public LocalNetworkGateways localNetworkGateways() {
    if (this.localNetworkGateways == null) {
        this.localNetworkGateways = new LocalNetworkGatewaysImpl(this);
    }
    return this.localNetworkGateways;
}
 
Example 3
Source File: Azure.java    From azure-libraries-for-java with MIT License 4 votes vote down vote up
/**
 * @return entry point to managing Azure Container Instances.
 */
@Beta(SinceVersion.V1_3_0)
public ContainerGroups containerGroups() {
    return containerInstanceManager.containerGroups();
}
 
Example 4
Source File: LoadBalancer.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return load balancer sku.
 */
@Beta(SinceVersion.V1_3_0)
LoadBalancerSkuType sku();
 
Example 5
Source File: Network.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Checks if the specified private IP address is available in this network.
 * @param ipAddress an IP address from this network's address space
 * @return true if the address is within this network's address space and is available
 */
@Beta(SinceVersion.V1_3_0)
boolean isPrivateIPAddressAvailable(String ipAddress);
 
Example 6
Source File: Network.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Checks if the specified private IP address is within this network's address space.
 * @param ipAddress an IP address
 * @return true if the specified IP address is within this network's address space, otherwise false
 */
@Beta(SinceVersion.V1_3_0)
boolean isPrivateIPAddressInNetwork(String ipAddress);
 
Example 7
Source File: Network.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return entry point to managing virtual network peerings for this network
 */
@Beta(SinceVersion.V1_3_0)
NetworkPeerings peerings();
 
Example 8
Source File: Subnet.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return available private IP addresses within this network
 */
@Beta(SinceVersion.V1_3_0)
Set<String> listAvailablePrivateIPAddresses();