-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2540 from microsoftgraph/WeeklyExamplesUpdate/202…
…401231709 [v2] Examples Update
- Loading branch information
Showing
4 changed files
with
68 additions
and
17 deletions.
There are no files selected for viewing
29 changes: 18 additions & 11 deletions
29
src/Bookings/beta/examples/Get-MgBetaBookingBusinessStaffAvailability.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,25 @@ | ||
### Example 1: {{ Add title here }} | ||
### Example 1: Code snippet | ||
|
||
```powershell | ||
PS C:\> {{ Add code here }} | ||
{{ Add output here }} | ||
``` | ||
Import-Module Microsoft.Graph.Beta.Bookings | ||
{{ Add description here }} | ||
$params = @{ | ||
staffIds = @( | ||
"311a5454-08b2-4560-ba1c-f715e938cb79" | ||
) | ||
startDateTime = @{ | ||
dateTime = "2022-01-25T00:00:00" | ||
timeZone = "India Standard Time" | ||
} | ||
endDateTime = @{ | ||
dateTime = "2022-01-26T17:00:00" | ||
timeZone = "Pacific Standard Time" | ||
} | ||
} | ||
### Example 2: {{ Add title here }} | ||
```powershell | ||
PS C:\> {{ Add code here }} | ||
Get-MgBetaBookingBusinessStaffAvailability -BookingBusinessId $bookingBusinessId -BodyParameter $params | ||
{{ Add output here }} | ||
``` | ||
|
||
{{ Add description here }} | ||
This example shows how to use the Get-MgBetaBookingBusinessStaffAvailability Cmdlet. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters