Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 4 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
---
services: compute
services: Compute
platforms: java
author: selvasingh
---

#Getting Started with Compute - List Virtual Machine Images - in Java #

Compute Manage Virtual Machine Sample (for 1.0.0-beta2) - demonstrates how to perform common tasks using the Microsoft Azure Compute service.


- List all virtual machine image publishers and
- List all virtual machine images published by Canonical, Red Hat and SUSE by browsing through locations, publishers, offers, SKUs and images.
List all virtual machine image publishers and
list all virtual machine images published by Canonical, Red Hat and
SUSE by browsing through locations, publishers, offers, SKUs and images.


## Running this Sample ##
Expand All @@ -29,12 +28,6 @@ Set the environment variable `AZURE_AUTH_LOCATION` with the full path for an aut

[http://azure.com/java] (http://azure.com/java)

[Virtual Machines](https://azure.microsoft.com/en-us/services/virtual-machines/)

[Virtual Machines - Learning Path](https://azure.microsoft.com/en-us/documentation/learning-paths/virtual-machines/)

[Virtual Machines Marketplace](https://azure.microsoft.com/en-us/marketplace/virtual-machines/)

If you don't have a Microsoft Azure subscription you can get a FREE trial account [here](http://go.microsoft.com/fwlink/?LinkId=330212)

---
Expand Down
11 changes: 5 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure</groupId>
<artifactId>compute-java-list-vm-images</artifactId>
<version>1.0.0-beta2</version>
<version>0.0.1-SNAPSHOT</version>
<name>ListVirtualMachineImages</name>
<description></description>
<url>https://github.com/Azure/compute-java-list-vm-images</url>
<dependencies>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure</artifactId>
<version>1.0.0-beta2</version>
<version>1.0.0-beta3</version>
</dependency>
</dependencies>
<build>
Expand All @@ -27,16 +27,15 @@
<version>1.4.0</version>
<configuration>
<mainClass>com.microsoft.azure.management.compute.samples.ListVirtualMachineImages</mainClass>
<cleanupDaemonThreads>false</cleanupDaemonThreads>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -64,4 +63,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

package com.microsoft.azure.management.compute.samples;

import com.microsoft.azure.Azure;
import com.microsoft.azure.management.Azure;
import com.microsoft.azure.management.compute.VirtualMachineOffer;
import com.microsoft.azure.management.compute.VirtualMachinePublisher;
import com.microsoft.azure.management.compute.VirtualMachineImage;
Expand Down
Loading