Java tutorial
/** * Copyright (c) Microsoft Corporation * * All rights reserved. * * MIT License * * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files * (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, * publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH * THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ package com.microsoft.azure.shortcuts.resources.samples; import java.util.Map; import org.apache.commons.lang3.StringUtils; import com.microsoft.azure.management.network.models.NetworkInterfaceIpConfiguration; import com.microsoft.azure.shortcuts.resources.Network; import com.microsoft.azure.shortcuts.resources.NetworkInterface; import com.microsoft.azure.shortcuts.resources.NetworkSecurityGroup; import com.microsoft.azure.shortcuts.resources.Protocol; import com.microsoft.azure.shortcuts.resources.PublicIpAddress; import com.microsoft.azure.shortcuts.resources.Region; import com.microsoft.azure.shortcuts.resources.implementation.Subscription; public class NetworkInterfacesSample { public static void main(String[] args) { try { Subscription subscription = Subscription.authenticate("my.azureauth", null); test(subscription); } catch (Exception e) { e.printStackTrace(); } } public static void test(Subscription subscription) throws Exception { testProvisionMinimal(subscription); testProvisionWithExistingNetworkAndNSG(subscription); testProvisionWithNewNSG(subscription); } // Tests minimal NIC creation public static void testProvisionMinimal(Subscription subscription) throws Exception { String suffix = String.valueOf(System.currentTimeMillis()); String newNICName = "nic" + suffix; NetworkInterface nic = subscription.networkInterfaces().define(newNICName).withRegion(Region.US_WEST) .withNewResourceGroup().withNewNetwork("10.0.0.0/28").withPrivateIpAddressDynamic() .withoutPublicIpAddress().create(); String newGroupName = nic.resourceGroup(); nic = subscription.networkInterfaces().get(nic.id()); printNetworkInterface(nic); // Listing all network interfaces Map<String, NetworkInterface> nics = subscription.networkInterfaces().asMap(); System.out.println("Network interfaces:"); for (NetworkInterface n : nics.values()) { printNetworkInterface(n); } // Listing network interfaces in a specific resource group nics = subscription.networkInterfaces().asMap(newGroupName); System.out.println(String.format("Network interface ids in group '%s': \n\t%s", newGroupName, StringUtils.join(nics.keySet(), ",\n\t"))); nic.delete(); } // Tests NIC creation with existing Vnet and NSG public static void testProvisionWithExistingNetworkAndNSG(Subscription subscription) throws Exception { String suffix = String.valueOf(System.currentTimeMillis()); String existingNetworkName = "net" + suffix; String existingGroupName = "rg" + suffix; String existingNSGName = "nsg" + suffix; String newNicName = "nic" + suffix; // Create a virtual network to test the network interface with Network network = subscription.networks().define(existingNetworkName).withRegion(Region.US_WEST) .withNewResourceGroup(existingGroupName).withAddressSpace("10.0.0.0/28") .withSubnet("subnet1", "10.0.0.0/29").withSubnet("subnet2", "10.0.0.8/29").create(); // Create a NSG to test the NIC with NetworkSecurityGroup nsg = subscription.networkSecurityGroups().define(existingNSGName) .withRegion(Region.US_WEST).withExistingResourceGroup(existingGroupName).defineRule("httpIn") .allowOutbound().fromAnyAddress().fromPort(80).toAnyAddress().toAnyPort().withProtocol(Protocol.TCP) .attach().create(); // More detailed NIC definition NetworkInterface nic = subscription.networkInterfaces().define(newNicName).withRegion(Region.US_WEST) .withExistingResourceGroup(existingGroupName).withExistingNetwork(network).withSubnet("subnet1") .withPrivateIpAddressStatic("10.0.0.5").withNewPublicIpAddress() .withExistingNetworkSecurityGroup(nsg).withTag("hello", "world").create(); printNetworkInterface(nic); subscription.resourceGroups(existingGroupName).delete(); } public static void testProvisionWithNewNSG(Subscription subscription) throws Exception { String suffix = String.valueOf(System.currentTimeMillis()); String newNicName = "nic" + suffix; // NIC with new NSG NetworkInterface nic = subscription.networkInterfaces().define(newNicName).withRegion(Region.US_WEST) .withNewResourceGroup().withNewNetwork("10.0.0.0/29").withPrivateIpAddressDynamic() .withNewPublicIpAddress().withNewNetworkSecurityGroup().create(); // Get info about a specific NIC using its resource ID nic = subscription.networkInterfaces(nic.resourceGroup(), nic.name()); printNetworkInterface(nic); // Clean up nic.delete(); subscription.resourceGroups(nic.resourceGroup()).delete(); } private static void printNetworkInterface(NetworkInterface nic) throws Exception { StringBuilder output = new StringBuilder(); NetworkInterfaceIpConfiguration ipConfig = nic.inner().getIpConfigurations().get(0); Map<String, PublicIpAddress> pips = nic.publicIpAddresses(); output.append(String.format("Network interface ID: %s\n", nic.id())) .append(String.format("\tName: %s\n", nic.name())) .append(String.format("\tGroup: %s\n", nic.resourceGroup())) .append(String.format("\tRegion: %s\n", nic.region())) .append(String.format("\tPrimary subnet ID: %s\n", ipConfig.getSubnet().getId())) .append(String.format("\tPrimary private IP: %s\n", ipConfig.getPrivateIpAddress())) .append(String.format("\tPublic IPs:\n")); for (PublicIpAddress pip : pips.values()) { output.append(String.format("\t\tName:%s\n", pip.name())) .append(String.format("\t\tLeaf domain label:%s\n", pip.leafDomainLabel())) .append(String.format("\t\tIP address:%s\n", pip.ipAddress())); } System.out.println(output.toString()); } }