Skip to content

Commit 5cd6e1c

Browse files
Move Resources to main (#19647)
1 parent f1f5c81 commit 5cd6e1c

38 files changed

+179
-61
lines changed

src/Resources/Authorization.Autorest/docs/Az.Authorization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
Module Name: Az.Authorization
3-
Module Guid: 9a7f9619-b38e-4642-a74d-2298096962a0
3+
Module Guid: d3d396b9-c02d-407b-b0ce-c83a1289ce6c
44
Download Help Link: https://docs.microsoft.com/powershell/module/az.authorization
55
Help Version: 1.0.0.0
66
Locale: en-US
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2+
"autorest": "`-- (empty)",
23
"node": "v14.15.5",
34
"autorest_powershell": "3.0.494",
4-
"swagger_commit": "6b08774c89877269e73e11ac3ecbd1bd4e14f5a0",
5-
"autorest": "`-- (empty)",
65
"autorest_modelerfour": "4.15.414",
7-
"autorest_core": "3.9.2"
6+
"autorest_core": "3.9.2",
7+
"swagger_commit": "99977890f7a2e8cf9b4e229f452c1af7b30184e4"
88
}

src/Resources/MSGraph.Autorest/custom/Get-AzADAppFederatedIdentityCredential.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ function Get-AzADAppFederatedCredential {
7272
[Parameter(ParameterSetName='ListByApplicationObject')]
7373
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Query')]
7474
[System.String]
75-
# Filter items by property values
75+
# Filter items by property values, for more detail about filter query please see: https://learn.microsoft.com/en-us/graph/filter-query-parameter
7676
${Filter},
7777

7878
[Parameter(ParameterSetName='ListByApplicationObjectId')]

src/Resources/MSGraph.Autorest/custom/Get-AzADApplication.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ param(
7474
[Parameter(ParameterSetName='EmptyParameterSet')]
7575
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Query')]
7676
[System.String]
77-
# Filter items by property values
77+
# Filter items by property values, for more detail about filter query please see: https://learn.microsoft.com/en-us/graph/filter-query-parameter
7878
${Filter},
7979

8080
[Parameter(ParameterSetName='EmptyParameterSet')]

src/Resources/MSGraph.Autorest/custom/Get-AzADGroup.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function Get-AzADGroup {
5555

5656
[Parameter(ParameterSetName='EmptyParameterSet')]
5757
[System.String]
58-
# Filter items by property values
58+
# Filter items by property values, for more detail about filter query please see: https://learn.microsoft.com/en-us/graph/filter-query-parameter
5959
${Filter},
6060

6161
[Parameter(ParameterSetName='EmptyParameterSet')]

src/Resources/MSGraph.Autorest/custom/Get-AzADGroupMember.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function Get-AzADGroupMember {
4343

4444
[Parameter()]
4545
[System.String]
46-
# Filter items by property values
46+
# Filter items by property values, for more detail about filter query please see: https://learn.microsoft.com/en-us/graph/filter-query-parameter
4747
${Filter},
4848

4949
[Parameter()]

src/Resources/MSGraph.Autorest/custom/Get-AzADServicePrincipal.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ param(
7575
[Parameter(ParameterSetName='EmptyParameterSet')]
7676
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Query')]
7777
[System.String]
78-
# Filter items by property values
78+
# Filter items by property values, for more detail about filter query please see: https://learn.microsoft.com/en-us/graph/filter-query-parameter
7979
${Filter},
8080

8181
[Parameter(ParameterSetName='EmptyParameterSet')]

src/Resources/MSGraph.Autorest/custom/Get-AzADUser.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ function Get-AzADUser {
9898

9999
[Parameter(ParameterSetName='List')]
100100
[System.String]
101-
# Filter items by property values
101+
# Filter items by property values, for more detail about filter query please see: https://learn.microsoft.com/en-us/graph/filter-query-parameter
102102
${Filter},
103103

104104
[Parameter(ParameterSetName='List')]

src/Resources/MSGraph.Autorest/docs/Get-AzADAppFederatedCredential.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ Accept wildcard characters: False
151151
```
152152
153153
### -Filter
154-
Filter items by property values
154+
Filter items by property values, for more detail about filter query please see: https://learn.microsoft.com/en-us/graph/filter-query-parameter
155155
156156
```yaml
157157
Type: System.String

src/Resources/MSGraph.Autorest/docs/Get-AzADApplication.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,18 +83,25 @@ Search for application display name starts with
8383

8484
### Example 4: Get application by object Id
8585
```powershell
86-
Get-AzADapplication -ObjectId $id -Select Tags -AppendSelected
86+
Get-AzADApplication -ObjectId $id -Select Tags -AppendSelected
8787
```
8888

8989
Get application by object Id and append property 'Tags' after default properties: 'DisplayName', 'Id', 'DeletedDateTime', 'IdentifierUris', 'Web', 'AppId', 'SignInAudience'
9090

91-
### Example 4: Get applications owned by current user
91+
### Example 5: Get applications owned by current user
9292
```powershell
93-
Get-AzADapplication -OwnedApplication
93+
Get-AzADApplication -OwnedApplication
9494
```
9595

9696
Get applications owned by current user
9797

98+
### Example 6: Get applications with filter
99+
```powershell
100+
Get-AzADApplication -Filter "startsWith(DisplayName,'some-name')"
101+
```
102+
103+
Get applications with filter
104+
98105
## PARAMETERS
99106

100107
### -AppendSelected
@@ -189,7 +196,7 @@ Accept wildcard characters: False
189196
```
190197
191198
### -Filter
192-
Filter items by property values
199+
Filter items by property values, for more detail about filter query please see: https://learn.microsoft.com/en-us/graph/filter-query-parameter
193200
194201
```yaml
195202
Type: System.String

src/Resources/MSGraph.Autorest/docs/Get-AzADGroup.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,13 @@ Get-AzADGroup -ObjectId $id -Select groupTypes -AppendSelected
6464

6565
Get group by object id and append property 'groupTypes' after default properties: 'DisplayName', 'Id', 'DeletedDateTime', 'SecurityEnabled', 'MailEnabled', 'MailNickname', 'Description'
6666

67+
### Example 4: Get group with filter
68+
```powershell
69+
Get-AzADGroup -Filter "startsWith(DisplayName,'some-name')"
70+
```
71+
72+
Get group with filter
73+
6774
## PARAMETERS
6875

6976
### -AppendSelected
@@ -158,7 +165,7 @@ Accept wildcard characters: False
158165
```
159166
160167
### -Filter
161-
Filter items by property values
168+
Filter items by property values, for more detail about filter query please see: https://learn.microsoft.com/en-us/graph/filter-query-parameter
162169
163170
```yaml
164171
Type: System.String

src/Resources/MSGraph.Autorest/docs/Get-AzADGroupMember.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Accept wildcard characters: False
8585
```
8686
8787
### -Filter
88-
Filter items by property values
88+
Filter items by property values, for more detail about filter query please see: https://learn.microsoft.com/en-us/graph/filter-query-parameter
8989
9090
```yaml
9191
Type: System.String

src/Resources/MSGraph.Autorest/docs/Get-AzADServicePrincipal.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,13 @@ Get-AzADApplication -DisplayName $name | Get-AzADServicePrincipal
9595

9696
Get service principal by pipeline input
9797

98+
### Example 6: Get service principal with filter
99+
```powershell
100+
Get-AzADServicePrincipal -Filter "startsWith(DisplayName,'some-name')"
101+
```
102+
103+
Get service principal with filter
104+
98105
## PARAMETERS
99106

100107
### -AppendSelected
@@ -205,7 +212,7 @@ Accept wildcard characters: False
205212
```
206213
207214
### -Filter
208-
Filter items by property values
215+
Filter items by property values, for more detail about filter query please see: https://learn.microsoft.com/en-us/graph/filter-query-parameter
209216
210217
```yaml
211218
Type: System.String

src/Resources/MSGraph.Autorest/docs/Get-AzADUser.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,13 @@ Get-AzADUser -DisplayName $name
8181

8282
Get user by display name
8383

84+
### Example 4: Get user with filter
85+
```powershell
86+
Get-AzADUser -Filter "startsWith(DisplayName,'some-name')"
87+
```
88+
89+
Get user with filter
90+
8491
## PARAMETERS
8592

8693
### -AppendSelected
@@ -175,7 +182,7 @@ Accept wildcard characters: False
175182
```
176183
177184
### -Filter
178-
Filter items by property values
185+
Filter items by property values, for more detail about filter query please see: https://learn.microsoft.com/en-us/graph/filter-query-parameter
179186
180187
```yaml
181188
Type: System.String

src/Resources/MSGraph.Autorest/examples/Get-AzADApplication.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,21 @@ Search for application display name starts with
2121

2222
### Example 4: Get application by object Id
2323
```powershell
24-
Get-AzADapplication -ObjectId $id -Select Tags -AppendSelected
24+
Get-AzADApplication -ObjectId $id -Select Tags -AppendSelected
2525
```
2626

2727
Get application by object Id and append property 'Tags' after default properties: 'DisplayName', 'Id', 'DeletedDateTime', 'IdentifierUris', 'Web', 'AppId', 'SignInAudience'
2828

29-
### Example 4: Get applications owned by current user
29+
### Example 5: Get applications owned by current user
3030
```powershell
31-
Get-AzADapplication -OwnedApplication
31+
Get-AzADApplication -OwnedApplication
3232
```
3333

34-
Get applications owned by current user
34+
Get applications owned by current user
35+
36+
### Example 6: Get applications with filter
37+
```powershell
38+
Get-AzADApplication -Filter "startsWith(DisplayName,'some-name')"
39+
```
40+
41+
Get applications with filter

src/Resources/MSGraph.Autorest/examples/Get-AzADGroup.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,11 @@ List first 10 groups
1717
Get-AzADGroup -ObjectId $id -Select groupTypes -AppendSelected
1818
```
1919

20-
Get group by object id and append property 'groupTypes' after default properties: 'DisplayName', 'Id', 'DeletedDateTime', 'SecurityEnabled', 'MailEnabled', 'MailNickname', 'Description'
20+
Get group by object id and append property 'groupTypes' after default properties: 'DisplayName', 'Id', 'DeletedDateTime', 'SecurityEnabled', 'MailEnabled', 'MailNickname', 'Description'
21+
22+
### Example 4: Get group with filter
23+
```powershell
24+
Get-AzADGroup -Filter "startsWith(DisplayName,'some-name')"
25+
```
26+
27+
Get group with filter

src/Resources/MSGraph.Autorest/examples/Get-AzADServicePrincipal.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,11 @@ Get service principal by application Id
3131
Get-AzADApplication -DisplayName $name | Get-AzADServicePrincipal
3232
```
3333

34-
Get service principal by pipeline input
34+
Get service principal by pipeline input
35+
36+
### Example 6: Get service principal with filter
37+
```powershell
38+
Get-AzADServicePrincipal -Filter "startsWith(DisplayName,'some-name')"
39+
```
40+
41+
Get service principal with filter

src/Resources/MSGraph.Autorest/examples/Get-AzADUser.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,11 @@ List first 10 users and append property 'City' after default properties: 'Displa
1717
Get-AzADUser -DisplayName $name
1818
```
1919

20-
Get user by display name
20+
Get user by display name
21+
22+
### Example 4: Get user with filter
23+
```powershell
24+
Get-AzADUser -Filter "startsWith(DisplayName,'some-name')"
25+
```
26+
27+
Get user with filter

src/Resources/MSGraph.Autorest/exports/Get-AzADAppFederatedCredential.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ param(
218218
[Parameter(ParameterSetName='ListByApplicationObject')]
219219
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Query')]
220220
[System.String]
221-
# Filter items by property values
221+
# Filter items by property values, for more detail about filter query please see: https://learn.microsoft.com/en-us/graph/filter-query-parameter
222222
${Filter},
223223

224224
[Parameter(ParameterSetName='ListByApplicationObjectId')]

src/Resources/MSGraph.Autorest/exports/Get-AzADApplication.ps1

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@ Get-AzADApplication -First 10
2626
.Example
2727
Get-AzADApplication -DisplayNameStartsWith $prefix
2828
.Example
29-
Get-AzADapplication -ObjectId $id -Select Tags -AppendSelected
29+
Get-AzADApplication -ObjectId $id -Select Tags -AppendSelected
3030
.Example
31-
Get-AzADapplication -OwnedApplication
31+
Get-AzADApplication -OwnedApplication
32+
.Example
33+
Get-AzADApplication -Filter "startsWith(DisplayName,'some-name')"
3234
3335
.Outputs
3436
Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphApplication
@@ -62,7 +64,7 @@ param(
6264
[Parameter(ParameterSetName='EmptyParameterSet')]
6365
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Query')]
6466
[System.String]
65-
# Filter items by property values
67+
# Filter items by property values, for more detail about filter query please see: https://learn.microsoft.com/en-us/graph/filter-query-parameter
6668
${Filter},
6769

6870
[Parameter(ParameterSetName='EmptyParameterSet')]

src/Resources/MSGraph.Autorest/exports/Get-AzADGroup.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ Get-AzADGroup -DisplayName $gname
2525
Get-AzADGroup -First 10
2626
.Example
2727
Get-AzADGroup -ObjectId $id -Select groupTypes -AppendSelected
28+
.Example
29+
Get-AzADGroup -Filter "startsWith(DisplayName,'some-name')"
2830
2931
.Outputs
3032
Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphGroup
@@ -52,7 +54,7 @@ param(
5254
[Parameter(ParameterSetName='EmptyParameterSet')]
5355
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
5456
[System.String]
55-
# Filter items by property values
57+
# Filter items by property values, for more detail about filter query please see: https://learn.microsoft.com/en-us/graph/filter-query-parameter
5658
${Filter},
5759

5860
[Parameter(ParameterSetName='EmptyParameterSet')]

src/Resources/MSGraph.Autorest/exports/Get-AzADGroupMember.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ param(
9898
[Parameter()]
9999
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
100100
[System.String]
101-
# Filter items by property values
101+
# Filter items by property values, for more detail about filter query please see: https://learn.microsoft.com/en-us/graph/filter-query-parameter
102102
${Filter},
103103

104104
[Parameter()]

src/Resources/MSGraph.Autorest/exports/Get-AzADServicePrincipal.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ Get-AzADServicePrincipal -First 10 -Select Tags -AppendSelected
2929
Get-AzADServicePrincipal -ApplicationId $appId
3030
.Example
3131
Get-AzADApplication -DisplayName $name | Get-AzADServicePrincipal
32+
.Example
33+
Get-AzADServicePrincipal -Filter "startsWith(DisplayName,'some-name')"
3234
3335
.Inputs
3436
Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphApplication
@@ -196,7 +198,7 @@ param(
196198
[Parameter(ParameterSetName='EmptyParameterSet')]
197199
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Query')]
198200
[System.String]
199-
# Filter items by property values
201+
# Filter items by property values, for more detail about filter query please see: https://learn.microsoft.com/en-us/graph/filter-query-parameter
200202
${Filter},
201203

202204
[Parameter(ParameterSetName='EmptyParameterSet')]

src/Resources/MSGraph.Autorest/exports/Get-AzADUser.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ Get-AzADUser -SignedIn
2525
Get-AzADUser -First 10 -Select 'City' -AppendSelected
2626
.Example
2727
Get-AzADUser -DisplayName $name
28+
.Example
29+
Get-AzADUser -Filter "startsWith(DisplayName,'some-name')"
2830
2931
.Outputs
3032
Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphUser
@@ -82,7 +84,7 @@ param(
8284
[Parameter(ParameterSetName='List')]
8385
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
8486
[System.String]
85-
# Filter items by property values
87+
# Filter items by property values, for more detail about filter query please see: https://learn.microsoft.com/en-us/graph/filter-query-parameter
8688
${Filter},
8789

8890
[Parameter(ParameterSetName='List')]

0 commit comments

Comments
 (0)