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

0 commit comments

Comments
 (0)