Conventions used
There are a number of text conventions used throughout this book.
Code in text
: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: “Use Workbook 2
, which provides a list of right-size recommendations for your virtual machines and virtual machine scale sets.”
A block of code is set as follows:
ResourceContainers| where type =~ 'Microsoft.Resources/subscriptions' | extend SubscriptionName=name | join ( ResourceContainers | where type =~ 'microsoft.resources/subscriptions/resourcegroups' | where tags =~ '' or tags =~ '{}' | extend resourceGroupName=id, RGLocation=location) on subscriptionId | project resourceGroupName, RGLocation, SubscriptionName
Any command-line input or output is written as follows:
Set-AzVM -ResourceGroupName "mySpotRG" -Name "mySpotVM" -SimulateEviction
Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: “On the Basics tab, select Flexible for the Orchestration mode.”
Tips or important notes
Appear like this.