Skip to content

Commit 321dbe2

Browse files
authored
Merge pull request #3242 from microsoftgraph/3241-missing-get-mgalluseronlinemeetingrecording-in-2261
Adds aliases to avoid conflicting cmdlets calling the same Api path.
2 parents fc91851 + d6dc4a1 commit 321dbe2

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

src/Calendar/Calendar.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,9 @@ directive:
4242
verb: Get
4343
subject: ^(UserCalendarSchedule)$
4444
remove: true
45+
#Remove cmdlet to avoid conflicts where alias has been set:[#3241](https://github.com/microsoftgraph/msgraph-sdk-powershell/issues/3241)
46+
- where:
47+
verb: Get
48+
subject: ^UserCalendarEventDelta$
49+
remove: true
4550
```

src/CloudCommunications/CloudCommunications.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,15 @@ directive:
3838
subject: ^UserOnlineMeeting$
3939
variant: ^(Create|CreateExpanded|CreateViaIdentity|CreateViaIdentityExpanded)([1-9]{1,2})$
4040
remove: true
41+
42+
#Remove cmdlet to avoid conflicts where alias has been set: [#3241](https://github.com/microsoftgraph/msgraph-sdk-powershell/issues/3241)
43+
- where:
44+
verb: Get
45+
subject: ^AllUserOnlineMeetingRecording$
46+
remove: true
47+
- where:
48+
verb: Get
49+
subject: ^AllUserOnlineMeetingTranscript$
50+
remove: true
51+
4152
```

src/readme.graph.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -962,5 +962,23 @@ directive:
962962
subject: ^(.*)(OnPremise)(.*)$
963963
set:
964964
alias: ^(.*)(OnPremises)(.*)$
965+
966+
# Setting the alias below as per the request on issue [#3241](https://github.com/microsoftgraph/msgraph-sdk-powershell/issues/3241)
967+
968+
- where:
969+
verb: Get
970+
subject: UserOnlineMeetingTranscript
971+
set:
972+
alias: Get-Mg${subject-prefix}AllUserOnlineMeetingTranscript
973+
- where:
974+
verb: Get
975+
subject: UserEventDelta
976+
set:
977+
alias: Get-Mg${subject-prefix}UserCalendarEventDelta
978+
- where:
979+
verb: Get
980+
subject: UserOnlineMeetingRecording
981+
set:
982+
alias: Get-Mg${subject-prefix}AllUserOnlineMeetingRecording
965983

966984
```

0 commit comments

Comments
 (0)