lib/fog/azurerm/docs/compute.md in fog-azure-rm-0.4.1 vs lib/fog/azurerm/docs/compute.md in fog-azure-rm-0.4.2
- old
+ new
@@ -221,9 +221,34 @@
.get('<Resource Group Name>', '<Server Name>')
.vm_status
puts status
```
+## Start a Server
+```ruby
+server.start
+```
+
+## Power Off a Server
+```ruby
+server.power_off
+```
+
+## Restart a Server
+```ruby
+server.restart
+```
+
+## Deallocate a Server
+```ruby
+server.deallocate
+```
+
+## Redeploy a Server
+```ruby
+server.redeploy
+```
+
## Destroy a single Server
Get a server object from the get method (described above) and then destroy that server.
```ruby