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: “It sets a mask on Column01
as a default number mask, from the sixth digit to the fourteenth digit.”
A block of code is set as follows:
1# Grant access to individual user at a Subscription Level 2 function GrantAccessAtSubscription ($userID, $roleDef, $subScope) { 3 New-AzRoleAssignment -SignInName $userID ` 4 -RoleDefinitionName $roleDef ` 5 -Scope $subScope 6}
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: “Each Azure service comes with its own built-in roles. Azure Data Lake comes with three built-in roles: Reader, Contributor, and Owner.”
Tips or important notes
Appear like this.